Merge lp:~inkscape.dev/inkscape/bspline+spirolive into lp:~inkscape.dev/inkscape/trunk

Proposed by Jabiertxof
Status: Merged
Merged at revision: 13342
Proposed branch: lp:~inkscape.dev/inkscape/bspline+spirolive
Merge into: lp:~inkscape.dev/inkscape/trunk
Diff against target: 60496 lines (+10641/-48461)
28 files modified
po/POTFILES.in (+2/-0)
share/icons/icons.svg (+18/-42)
share/icons/symbolic_icons.svg (+104/-100)
share/icons/tango_icons.svg (+8284/-48237)
src/live_effects/CMakeLists.txt (+2/-0)
src/live_effects/Makefile_insert (+2/-0)
src/live_effects/effect-enum.h (+1/-0)
src/live_effects/effect.cpp (+5/-0)
src/live_effects/effect.h (+1/-0)
src/live_effects/lpe-bspline.cpp (+719/-0)
src/live_effects/lpe-bspline.h (+58/-0)
src/sp-lpe-item.cpp (+16/-0)
src/sp-lpe-item.h (+1/-0)
src/ui/tool/curve-drag-point.cpp (+11/-6)
src/ui/tool/multi-path-manipulator.cpp (+12/-1)
src/ui/tool/node.cpp (+186/-15)
src/ui/tool/node.h (+11/-1)
src/ui/tool/path-manipulator.cpp (+97/-4)
src/ui/tool/path-manipulator.h (+9/-0)
src/ui/tools/freehand-base.cpp (+69/-5)
src/ui/tools/freehand-base.h (+9/-0)
src/ui/tools/node-tool.h (+3/-0)
src/ui/tools/pen-tool.cpp (+949/-45)
src/ui/tools/pen-tool.h (+31/-0)
src/ui/tools/pencil-tool.cpp (+33/-4)
src/widgets/icon.cpp (+1/-0)
src/widgets/mappings.xml (+1/-0)
src/widgets/pencil-toolbar.cpp (+6/-1)
To merge this branch: bzr merge lp:~inkscape.dev/inkscape/bspline+spirolive
Reviewer Review Type Date Requested Status
Vinipsmaker Approve
Martin Owens Approve
Review via email: mp+159721@code.launchpad.net

Description of the change

Added BSpline node editing by a live effect and Spiro preview while drawing.

To post a comment you must log in.
Revision history for this message
Martin Owens (doctormo) wrote :

The edited svg should be saved using the inkscape compact options like the previous revision.

review: Needs Fixing (code review)
Revision history for this message
Martin Owens (doctormo) wrote :

Actually I think this has already been merged, just a bit of fluff in the diff there.

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Im sorry Martin, dont undertand well. the last revision diff includes all po files i start translating. It make a big diff. Finaly i decide focus in code and take the translation work after. And reload in branch the original po folder.
Focusing, im not sure about what i need to do with "inkscape compact options" or it is removed by "a bit of fluff".

Hi, and thanks for the review.

Revision history for this message
Martin Owens (doctormo) wrote :

Look below. The only difference between your branch and trunk is one svg file. This svg file has been broken by opening it without the inkscape compact options and then saving it. Not a problem. But it suggests quite strongly that your code has already been merged.

Revision history for this message
su_v (suv-lp) wrote :

This branch has _not_ been merged yet - there is no option to create bspline curves in trunk (pen, pencil tool), or to see spiro-curves live when drawing paths with the pen or pencil tool?

@Martin, scroll down to the end of the page, there's message telling this:
«The diff has been truncated for viewing. »
or download the diff and check yourself:

Diffstat:
 share/icons/icons.svg |26094 ++++++++++++++++++++++++++++-----
 share/icons/symbolic_icons.svg |23875 +++++++++++++++++++++++++-----
 share/icons/tango_icons.svg | 97
 src/draw-context.cpp | 35
 src/draw-context.h | 2
 src/libavoid/makefile | 17
 src/live_effects/CMakeLists.txt | 2
 src/live_effects/Makefile_insert | 2
 src/live_effects/effect-enum.h | 3
 src/live_effects/effect.cpp | 11
 src/live_effects/lpe-bspline.cpp | 647
 src/live_effects/lpe-bspline.h | 59
 src/pen-context.cpp | 1066 +
 src/pen-context.h | 5
 src/pencil-context.cpp | 40
 src/ui/tool/curve-drag-point.cpp | 20
 src/ui/tool/multi-path-manipulator.cpp | 13
 src/ui/tool/multi-path-manipulator.h | 2
 src/ui/tool/node.cpp | 179
 src/ui/tool/node.h | 9
 src/ui/tool/path-manipulator.cpp | 118
 src/ui/tool/path-manipulator.h | 17
 src/widgets/icon.cpp | 1
 src/widgets/mappings.xml | 1
 src/widgets/pencil-toolbar.cpp | 9
 src/widgets/toolbox.cpp | 2
 26 files changed, 44789 insertions(+), 7537 deletions(-)

Revision history for this message
su_v (suv-lp) wrote :

@jabertox - trying to compile your branch 12091 fails for me (on OS X) with this error:

  CXX live_effects/lpe-bspline.o
In file included from ../../src/live_effects/lpe-bspline.cpp:20:
../../src/ui/tool/node-tool.h:78: error: ‘Inkscape::Selection’ has not been declared
make[3]: *** [live_effects/lpe-bspline.o] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

Revision history for this message
su_v (suv-lp) wrote :

> @jabertox - <…>

@Jabiertxo - sorry for mistyping your name!

Revision history for this message
ScislaC (scislac) wrote :

Beat me to it ~suv (as usual though, you were much more thorough than I would have been)...

This definitely needs code review as well as UX review...

Krzysztof had mentioned a desire to implement B-Splines a while back but had some reservations about how to handle certain things. If I recall correctly he brought up issues such as what the controls for them look like, as well as how to handle connecting to adjacent segments of a path which aren't B-splines (straight segments, etc). Essentially, it wouldn't be an all or nothing approach, but B-Spline segments which could mix in with lines and regular curves on a path.

Revision history for this message
Jabiertxof (jabiertxof) wrote :

No problem ~suv!

El jue, 19-09-2013 a las 23:36 +0000, ~suv escribió:
> > @jabertox - <…>
>
> @Jabiertxo - sorry for mistyping your name!

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Thanks ~suv, soon is fixed

El jue, 19-09-2013 a las 23:33 +0000, ~suv escribió:
> @jabertox - trying to compile your branch 12091 fails for me (on OS X) with this error:
>
> CXX live_effects/lpe-bspline.o
> In file included from ../../src/live_effects/lpe-bspline.cpp:20:
> ../../src/ui/tool/node-tool.h:78: error: ‘Inkscape::Selection’ has not been declared
> make[3]: *** [live_effects/lpe-bspline.o] Error 1
> make[2]: *** [all] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all] Error 2
>
>

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Fixed

El vie, 20-09-2013 a las 00:06 +0000, Jabiertxo Arraiza Cenoz escribió:
> Thanks ~suv, soon is fixed
>
> El jue, 19-09-2013 a las 23:33 +0000, ~suv escribió:
> > @jabertox - trying to compile your branch 12091 fails for me (on OS X) with this error:
> >
> > CXX live_effects/lpe-bspline.o
> > In file included from ../../src/live_effects/lpe-bspline.cpp:20:
> > ../../src/ui/tool/node-tool.h:78: error: ‘Inkscape::Selection’ has not been declared
> > make[3]: *** [live_effects/lpe-bspline.o] Error 1
> > make[2]: *** [all] Error 2
> > make[1]: *** [all-recursive] Error 1
> > make: *** [all] Error 2
> >
> >
>
>
>

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El jue, 19-09-2013 a las 23:39 +0000, ScislaC escribió:
> Beat me to it ~suv (as usual though, you were much more thorough than I would have been)...
>
> This definitely needs code review as well as UX review...
>
> Krzysztof had mentioned a desire to implement B-Splines a while back but had some reservations about how to

> handle certain things. If I recall correctly he brought up issues such as what the controls for them look like,

> as well as how to handle connecting to adjacent segments of a path which aren't B-splines (straight segments, etc).

> Essentially, it wouldn't be an all or nothing approach, but B-Spline segments which could mix in with lines and regular curves on a path.

Hello and yes ScislaC, it need a full review, i never touch C++ before.
I think is a problem have a path with mixed types, you always can make
straight lines pressing the shift key, but if is necesary two kinds of
curves in the same "line", maybe the live effect way isnt a solution and
we want to wait to SVG adopt BSplines. For me this isn`t a problem, is
like spiro ones, coulden`t be mixed with regular curves.

Another cuestion, whats UX review?

Hi and thanks for contribute.

Revision history for this message
ScislaC (scislac) wrote :

UX is User Experience design... and it may not be applicable in this case given the way you went about implementing it. I guess I should have realized that this was handled via a live effect (hence the spiro related changes too). Spiro seems usable enough for people, so given that this is a similar effect it's seemingly a non-issue.

It's definitely less of an "incomplete" implementation than I was assuming.

Revision history for this message
Martin Owens (doctormo) wrote :

Many apologies everyone.

Half my time is spent interpreting Launchpad and the other half committing to getting it wrong ;-)

Carry on everyone! ScislaC, let me know if you change your mind about the UX review.

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El vie, 20-09-2013 a las 02:19 +0000, ScislaC escribió:
> UX is User Experience design... and it may not be applicable in this
> case given the way you went about implementing it. I guess I should
> have realized that this was handled via a live effect (hence the spiro
> related changes too). Spiro seems usable enough for people, so given
> that this is a similar effect it's seemingly a non-issue.
>
> It's definitely less of an "incomplete" implementation than I was
> assuming.

Ok, thanks for the new review.

12094. By Jabiertxof <email address hidden>

Martin Owens review: svg icons saved whith trunk instead 0.48.3

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El jue, 19-09-2013 a las 13:37 +0000, Martin Owens escribió:
> Review: Needs Fixing code review
>
> The edited svg should be saved using the inkscape compact options like the previous revision.

Hi, icons.svg saved whith trunk instead 0.48.3. Martin, think it fix.

Revision history for this message
su_v (suv-lp) wrote :

On 2013-09-20 12:37 +0200, Jabiertxo Arraiza Cenoz wrote:
> El jue, 19-09-2013 a las 13:37 +0000, Martin Owens escribió:
>> Review: Needs Fixing code review
>>
>> The edited svg should be saved using the inkscape compact options like the previous revision.
>
> Hi, icons.svg saved whith trunk instead 0.48.3. Martin, think it fix.

@Jabiertxo - 'compact' refers to the Inkscape settings used to save the
icons.svg file (to keep the changes between revisions minimal, and the
size of the icons.svg file overall small):

<http://wiki.inkscape.org/wiki/index.php/HowToEditIcons>

12095. By Jabiertxof <email address hidden>

Compact of SVG icons whith the help of ~suv and Martin Owens

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El vie, 20-09-2013 a las 11:03 +0000, ~suv escribió:
> On 2013-09-20 12:37 +0200, Jabiertxo Arraiza Cenoz wrote:
> > El jue, 19-09-2013 a las 13:37 +0000, Martin Owens escribió:
> >> Review: Needs Fixing code review
> >>
> >> The edited svg should be saved using the inkscape compact options like the previous revision.
> >
> > Hi, icons.svg saved whith trunk instead 0.48.3. Martin, think it fix.
>
> @Jabiertxo - 'compact' refers to the Inkscape settings used to save the
> icons.svg file (to keep the changes between revisions minimal, and the
> size of the icons.svg file overall small):
>
> <http://wiki.inkscape.org/wiki/index.php/HowToEditIcons>
>
>
@~suv and @doctormo thanks and done!

Revision history for this message
su_v (suv-lp) wrote :

On 2013-09-20 13:48 +0200, Jabiertxo Arraiza Cenoz wrote:
> El vie, 20-09-2013 a las 11:03 +0000, ~suv escribió:
>> On 2013-09-20 12:37 +0200, Jabiertxo Arraiza Cenoz wrote:
>>> El jue, 19-09-2013 a las 13:37 +0000, Martin Owens escribió:
>>>> Review: Needs Fixing code review
>>>>
>>>> The edited svg should be saved using the inkscape compact options like the previous revision.
>>>
>>> Hi, icons.svg saved whith trunk instead 0.48.3. Martin, think it fix.
>>
>> @Jabiertxo - 'compact' refers to the Inkscape settings used to save the
>> icons.svg file (to keep the changes between revisions minimal, and the
>> size of the icons.svg file overall small):
>>
>> <http://wiki.inkscape.org/wiki/index.php/HowToEditIcons>
>>
>>
> @~suv and @doctormo thanks and done!

hmm - looks like the last commit to 'share/icons/icons.svg' in trunk already broke with that rule and committed a version saved with different preferences:
<http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/revision/12533>

(@Jabiertxo - that's not your fault, this need to be fixed in trunk first AFAIU)

Revision history for this message
Vinipsmaker (vinipsmaker) wrote :

> hmm - looks like the last commit to 'share/icons/icons.svg' in trunk already broke with that rule and committed a version saved with different preferences:
<http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/revision/12533>

> (@Jabiertxo - that's not your fault, this need to be fixed in trunk first AFAIU)

Right, this is my fault.

Fixed in rev 12553.

12096. By Jabiertxof <email address hidden>

Update to trunk

12097. By Jabiertxof <email address hidden>

update to trunk

12098. By Jabiertxof <email address hidden>

Update to trunk

Revision history for this message
su_v (suv-lp) wrote :

r12098 fails to build:

  CXX ui/tool/path-manipulator.o
../../src/ui/tool/path-manipulator.cpp: In constructor ‘Inkscape::UI::PathManipulator::PathManipulator(Inkscape::UI::MultiPathManipulator&, SPPath*, const Geom::Affine&, guint32, Glib::ustring)’:
../../src/ui/tool/path-manipulator.cpp:155: error: ‘sp_lpe_item_has_path_effect’ was not declared in this scope
../../src/ui/tool/path-manipulator.cpp:156: error: ‘sp_lpe_item_has_path_effect_of_type’ was not declared in this scope
make[3]: *** [ui/tool/path-manipulator.o] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El jue, 26-09-2013 a las 10:30 +0000, ~suv escribió:
> r12098 fails to build:
>
> CXX ui/tool/path-manipulator.o
> ../../src/ui/tool/path-manipulator.cpp: In constructor ‘Inkscape::UI::PathManipulator::PathManipulator(Inkscape::UI::MultiPathManipulator&, SPPath*, const Geom::Affine&, guint32, Glib::ustring)’:
> ../../src/ui/tool/path-manipulator.cpp:155: error: ‘sp_lpe_item_has_path_effect’ was not declared in this scope
> ../../src/ui/tool/path-manipulator.cpp:156: error: ‘sp_lpe_item_has_path_effect_of_type’ was not declared in this scope
> make[3]: *** [ui/tool/path-manipulator.o] Error 1
> make[2]: *** [all] Error 2
> make[1]: *** [all-recursive] Error 1
> make: *** [all] Error 2
>
Thanks i know it im searching solutions, i think both functions
disappear from code.
Regards, Jabier.

Revision history for this message
su_v (suv-lp) wrote :

On 2013-09-26 12:48 +0200, Jabiertxo Arraiza Cenoz wrote:
> El jue, 26-09-2013 a las 10:30 +0000, ~suv escribió:
>> r12098 fails to build:
>>
>> CXX ui/tool/path-manipulator.o
>> ../../src/ui/tool/path-manipulator.cpp: In constructor ‘Inkscape::UI::PathManipulator::PathManipulator(Inkscape::UI::MultiPathManipulator&, SPPath*, const Geom::Affine&, guint32, Glib::ustring)’:
>> ../../src/ui/tool/path-manipulator.cpp:155: error: ‘sp_lpe_item_has_path_effect’ was not declared in this scope
>> ../../src/ui/tool/path-manipulator.cpp:156: error: ‘sp_lpe_item_has_path_effect_of_type’ was not declared in this scope
>> make[3]: *** [ui/tool/path-manipulator.o] Error 1
>> make[2]: *** [all] Error 2
>> make[1]: *** [all-recursive] Error 1
>> make: *** [all] Error 2
>>
> Thanks i know it im searching solutions, i think both functions
> disappear from code.

r12098 compiled for me successfully with attached diff, and in a quick
test bspline-node-editing seems to work ok, as with earlier builds.

Please review (I don't speak C++ ;-) ).

=== modified file 'src/ui/tool/path-manipulator.cpp'
--- src/ui/tool/path-manipulator.cpp 2013-09-25 22:56:32 +0000
+++ src/ui/tool/path-manipulator.cpp 2013-09-26 11:13:45 +0000
@@ -152,8 +152,8 @@
152 _createControlPointsFromGeometry();152 _createControlPointsFromGeometry();
153 //BSpline153 //BSpline
154 lpe_bsp = NULL;154 lpe_bsp = NULL;
155 if (SP_IS_LPE_ITEM(_path) && sp_lpe_item_has_path_effect(SP_LPE_ITEM(_path))){155 if (_path->hasPathEffect()){
156 Inkscape::LivePathEffect::Effect* thisEffect = sp_lpe_item_has_path_effect_of_type(SP_LPE_ITEM(_path),Inkscape::LivePathEffect::BSPLINE);156 Inkscape::LivePathEffect::Effect* thisEffect = SP_LPE_ITEM(_path)->getPathEffectOfType(Inkscape::LivePathEffect::BSPLINE);
157 if(thisEffect){157 if(thisEffect){
158 lpe_bsp = dynamic_cast<LivePathEffect::LPEBSpline*>(thisEffect->getLPEObj()->get_lpe());158 lpe_bsp = dynamic_cast<LivePathEffect::LPEBSpline*>(thisEffect->getLPEObj()->get_lpe());
159 }159 }
Revision history for this message
Jabiertxof (jabiertxof) wrote :

Thanks ~suv for the help! Think today fix with your work.
Regards, Jabier.

El jue, 26-09-2013 a las 12:09 +0000, ~suv escribió:
> On 2013-09-26 12:48 +0200, Jabiertxo Arraiza Cenoz wrote:
> > El jue, 26-09-2013 a las 10:30 +0000, ~suv escribió:
> >> r12098 fails to build:
> >>
> >> CXX ui/tool/path-manipulator.o
> >> ../../src/ui/tool/path-manipulator.cpp: In constructor ‘Inkscape::UI::PathManipulator::PathManipulator(Inkscape::UI::MultiPathManipulator&, SPPath*, const Geom::Affine&, guint32, Glib::ustring)’:
> >> ../../src/ui/tool/path-manipulator.cpp:155: error: ‘sp_lpe_item_has_path_effect’ was not declared in this scope
> >> ../../src/ui/tool/path-manipulator.cpp:156: error: ‘sp_lpe_item_has_path_effect_of_type’ was not declared in this scope
> >> make[3]: *** [ui/tool/path-manipulator.o] Error 1
> >> make[2]: *** [all] Error 2
> >> make[1]: *** [all-recursive] Error 1
> >> make: *** [all] Error 2
> >>
> > Thanks i know it im searching solutions, i think both functions
> > disappear from code.
>
> r12098 compiled for me successfully with attached diff, and in a quick
> test bspline-node-editing seems to work ok, as with earlier builds.
>
> Please review (I don't speak C++ ;-) ).
>
>
>

12099. By Jabiertxof <email address hidden>

Compiling problem solved thaks to ~suv

12100. By Jabiertxof <email address hidden>

update to trunk

12101. By Jabiertxof <email address hidden>

update to trunk

12102. By Jabiertxof <email address hidden>

update to trunk

12103. By Jabiertxof <email address hidden>

error bend lpe

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Martin i request a change status of "SVG icons" for fix. I think its fixed.

12104. By Jabiertxof <email address hidden>

Fix editing paths in live effect

12105. By Jabiertxof <email address hidden>

update to trunk

Revision history for this message
Jabiertxof (jabiertxof) wrote :

Hi ~suv, I add to your code "if (SP_IS_LPE_ITEM(_path) && _path->hasPathEffect()){" Because a path editing crash in bend lpe.
Thanks again for your work.

Revision history for this message
Martin Owens (doctormo) :
review: Approve
Revision history for this message
Jabiertxof (jabiertxof) wrote :

El vie, 27-09-2013 a las 12:06 +0000, Martin Owens escribió:
> Review: Approve
>
>
Thanks.

12106. By Jabiertxof <email address hidden>

Update to trunk

12107. By Jabiertxof <email address hidden>

Fixed a bug editing paths in others LPE -envelope-

12108. By Jabiertxof <email address hidden>

update to trunk

Revision history for this message
Martin Owens (doctormo) wrote :

Hey Jabiertxof,

How are you doing with this merge? Is it read or complete?

Revision history for this message
Jabiertxof (jabiertxof) wrote :

El jue, 03-10-2013 a las 20:22 +0000, Martin Owens escribió:
> Hey Jabiertxof,
>
> How are you doing with this merge? Is it read or complete?

Hi Martin!

Its working but its pending for a full review -first code in c++-, im
updating but only to follow the trunk.

Regards, Jabier.

12109. By root <email address hidden>

update to trunk

12110. By Jabiertxof <email address hidden>

Fix moving handles

12111. By Jabiertxof <email address hidden>

update to trunk

12112. By Jabiertxof <email address hidden>

fix whith bspline handles

12113. By Jabiertxof <email address hidden>

Fix in BSpline

12114. By Jabiertxof <email address hidden>

update to trunk

12115. By root <email address hidden>

Fix in bsplines

12116. By Jabiertxof <email address hidden>

UX improvements

12117. By Jabiertxof <email address hidden>

Adding bspline file to POTFILES.IN

12118. By Jabiertxof <email address hidden>

Fix bspline and strip multi node bspline power editing whith node tool because UX

12119. By Jabiertxof <email address hidden>

update to trunk

12120. By Jabiertxof <email address hidden>

Fix scaling handles

12121. By Jabiertxof <email address hidden>

Fix scaling handles

12122. By Jabiertxof <email address hidden>

fix in nodes

12123. By Jabiertxof <email address hidden>

update to trunk

12124. By Jabiertxof <email address hidden>

Fixing BSplines

12125. By Jabiertxof <email address hidden>

fix bsplines

12126. By Jabiertxof <email address hidden>

fix bsplines

12127. By Jabiertxof <email address hidden>

fix bsplines

12128. By Jabiertxof <email address hidden>

fix bsplines

12129. By Jabiertxof <email address hidden>

fix bsplines

12130. By Jabiertxof <email address hidden>

Update to trunk

12131. By Jabiertxof <email address hidden>

Update to trunk

12132. By Jabiertxof <email address hidden>

Update to trunk

12133. By Jabiertxof <email address hidden>

Update motion redraw of bsplines

12134. By Jabiertxof <email address hidden>

Update to trunk

12135. By Jabiertxof <email address hidden>

Update to trunk

12136. By Jabiertxof <email address hidden>

Update to trunk

12137. By Jabiertxof <email address hidden>

Update to trunk

12138. By Jabiertxof <email address hidden>

Update to trunk

12139. By Jabiertxof <email address hidden>

Update to trunk

12140. By Jabiertxof <email address hidden>

Update to trunk

12141. By Jabiertxof <email address hidden>

Update to trunk

12142. By Jabiertxof <email address hidden>

Update to trunk

12143. By Jabiertxof <email address hidden>

Update to trunk

12144. By Jabiertxof <email address hidden>

Fixing bugs on update to trunk

12145. By Jabiertxof <email address hidden>

Update to trunk

12146. By Jabiertxof <email address hidden>

Update to trunk

12147. By Jabiertxof <email address hidden>

Update to trunk

12148. By Jabiertxof <email address hidden>

Update to trunk

12149. By Jabiertxof <email address hidden>

Update to trunk

12150. By Jabiertxof <email address hidden>

Update to trunk

12151. By Jabiertxof <email address hidden>

Update to trunk

12152. By Jabiertxof <email address hidden>

Update to trunk

12153. By Jabiertxof <email address hidden>

Update to trunk

12154. By Jabiertxof <email address hidden>

Update to trunk

12155. By Jabiertxof <email address hidden>

Update to trunk

12156. By Jabiertxof <email address hidden>

Fix a bug delete BSpline LPE from a path retain some BSpline properties

12157. By Jabiertxof <email address hidden>

Update to trunk

12158. By Jabiertxof <email address hidden>

Update to trunk

12159. By Jabiertxof <email address hidden>

Update to trunk

12160. By Jabiertxof <email address hidden>

Fix crash bug continuing empty paths

12161. By Jabiertxof <email address hidden>

Refactorizing

12162. By Jabiertxof <email address hidden>

Refactorizing

12163. By Jabiertxof <email address hidden>

Refactorizing

12164. By Jabiertxof <email address hidden>

Start refactor, simplify node.cpp operations,general cleanup, changed brehabiour to need 'Shift' Key to move handles because it handle better operations with small zoom

12165. By Jabiertxof <email address hidden>

Updated tip strings

12166. By Jabiertxof <email address hidden>

Refact

12167. By Jabiertxof <email address hidden>

Spanish comment of node.cpp

12168. By Jabiertxof <email address hidden>

Spanish comment of node.h

12169. By Jabiertxof <email address hidden>

refactor, fixing some diff diferences

12170. By Jabiertxof <email address hidden>

update to trunk

12171. By Jabiertxof <email address hidden>

Spanish comment of curve-drag-point-cpp

12172. By Jabiertxof <email address hidden>

Spanish comment of multi-path-manipulator-cpp

12173. By Jabiertxof <email address hidden>

Spanish comment of path-manipulator-cpp

12174. By Jabiertxof <email address hidden>

Spanish comment of freehand-base.cpp

12175. By Jabiertxof <email address hidden>

Spanish comment of node-tool.cpp

12176. By Jabiertxof <email address hidden>

Spanish comment of pencil-tool.cpp/.h

12177. By Jabiertxof <email address hidden>

Spanish comment of pencil-tool.cpp

12178. By Jabiertxof <email address hidden>

refactor, fixing some diff diferences

12179. By Jabiertxof <email address hidden>

fix a bug whith degenerate handles

12180. By Jabiertxof <email address hidden>

Fixed a boring bug sometimes curves be converted to lines, increasing a bit the distance from the handle to the line

12181. By Jabiertxof <email address hidden>

update to trunk

12182. By Jabiertxof <email address hidden>

Fix a bug whith oposite handles on node move,and a little cleanup

12183. By Jabiertxof <email address hidden>

update to trunk

12184. By Jabiertxof <email address hidden>

update to trunk

12185. By Jabiertxof <email address hidden>

update to trunk

12186. By Jabiertxof <email address hidden>

update to trunk

12187. By Jabiertxof <email address hidden>

update to trunk

12188. By Jabiertxof <email address hidden>

update to trunk

12189. By Jabiertxof <email address hidden>

show outline like normal paths, by good su_v suggestion

12190. By Jabiertxof <email address hidden>

update to trunk

12191. By Jabiertxof <email address hidden>

show outline by default in bspline, tnx to su_v suggestion

12192. By Jabiertxof <email address hidden>

fix bug compiling

12193. By Jabiertxof <email address hidden>

Hack to can show/hide bspline lines

12194. By Jabiertxof <email address hidden>

add comment to bspline red outline hack

12195. By Jabiertxof <email address hidden>

Add correct preview for coninuing paths whith pencil and draw modes

12196. By Jabiertxof <email address hidden>

update to trunk

12197. By Jabiertxof <email address hidden>

fixing su_v advertising memory bug

12198. By Jabiertxof <email address hidden>

update to trunk

12199. By Jabiertxof <email address hidden>

update to trunk

12200. By Jabiertxof <email address hidden>

update to trunk

12201. By Jabiertxof <email address hidden>

Removing hack for force show red lines in bspline mode

12202. By Jabiertxof <email address hidden>

update to trunk

12203. By Jabiertxof <email address hidden>

update to trunk

12204. By Jabiertxof <email address hidden>

update to trunk

12205. By Jabiertxof <email address hidden>

update to trunk

12206. By Jabiertxof <email address hidden>

update to trunk

12207. By Jabiertxof <email address hidden>

Fixed some/all bugs related to continuing bspline/spiro curves advertaising by suv

12208. By Jabiertxof <email address hidden>

update to trunk

12209. By Jabiertxof <email address hidden>

update to trunk

12210. By Jabiertxof <email address hidden>

adding some comments

12211. By Jabiertxof <email address hidden>

Substitute isBSpline property by a cached function isBSpline(bool)

12212. By Jabiertxof <email address hidden>

update to trunk

12213. By Jabiertxof <email address hidden>

update to trunk

12214. By Jabiertxof <email address hidden>

Resolving conflicts, maybe broken

12215. By Jabiertxof <email address hidden>

Fixed update to trunk, lot of changes vinícius

12216. By Jabiertxof <email address hidden>

Add new curve structure to show temporay item while draw on bspline and spiro, maybe the previous usage of the blue_curve give the strange errors in mac noticed by suv

12217. By Jabiertxof <email address hidden>

update to trunk

12218. By Jabiertxof <email address hidden>

update to trunk

12219. By Jabiertxof <email address hidden>

update to trunk

12220. By Jabiertxof <email address hidden>

update to trunk

12221. By Jabiertxof <email address hidden>

update to trunk

12222. By Jabiertxof <email address hidden>

update to trunk

12223. By Jabiertxof <email address hidden>

Reduce a half the spiro distance to redraw

12224. By Jabiertxof <email address hidden>

update to trunk

12225. By Jabiertxof <email address hidden>

Change tooltip to one more explicit to make cusp nodes

12226. By Jabiertxof <email address hidden>

update to trunk

12227. By Jabiertxof <email address hidden>

update to trunk

12228. By Jabiertxof <email address hidden>

Translations

12229. By Jabiertxof <email address hidden>

Translations

12230. By Jabiertxof <email address hidden>

Fixing branch problems

12231. By Jabiertxof <email address hidden>

Fixing branch problems

12232. By Jabiertxof <email address hidden>

Branch problem introduced by me fixed, thanks Guiu for the translations

12233. By Jabiertxof <email address hidden>

update to trunk

12234. By Jabiertxof <email address hidden>

update to trunk

12235. By root <email address hidden>

Fixed a bug when click over the previuos node in bspline/spiro mode

12236. By Jabiertxof <email address hidden>

update to trunk

12237. By Jabiertxof <email address hidden>

update to trunk

12238. By Jabiertxof <email address hidden>

Update to Vinipsmaker changes

12239. By Jabiertxof <email address hidden>

update to trunk

12240. By Jabiertxof <email address hidden>

update to trunk

12241. By Jabiertxof <email address hidden>

update to trunk

12242. By Jabiertxof <email address hidden>

update to trunk

12243. By Jabiertxof <email address hidden>

update to trunk

12244. By Jabiertxof <email address hidden>

commit Vinícius code

12245. By Jabiertxof <email address hidden>

update to trunk

12246. By Jabiertxof <email address hidden>

disabling cache approach for isBSpline function, pointed by Vinícius

12247. By Jabiertxof <email address hidden>

simplify the code in isBSpline

12248. By Jabiertxof <email address hidden>

Fix to solve static var in isBSpline function

12249. By Jabiertxof <email address hidden>

update to trunk

12250. By Jabiertxof <email address hidden>

update to trunk

12251. By Jabiertxof <email address hidden>

This think fix su_v related bug on continuous paths in BSpline or Spiro mode

12252. By Jabiertxof <email address hidden>

update to trunk

12253. By root <email address hidden>

Fixing suv mac bug continuing existing bsplines/spiro paths

12254. By Jabiertxof <email address hidden>

Fix a bug when starting path with change from bspline to spiro and inverse

12255. By Jabiertxof <email address hidden>

update to trunk

12256. By Jabiertxof <email address hidden>

Refactor of anchors

12257. By Jabiertxof <email address hidden>

update to trunk

12258. By Jabiertxof <email address hidden>

Full refactor of path continuations in bspline-spirolive mode, I think no more suv mac crashes, but need to be full tested again because a lot of things changed.

12259. By Jabiertxof <email address hidden>

Removed persistent blue line

12260. By Jabiertxof <email address hidden>

Fixed bug continuing cusp nodes

12261. By Jabiertxof <email address hidden>

update to trunk

12262. By Jabiertxof <email address hidden>

update to trunk

12263. By Jabiertxof <email address hidden>

update to trunk

12264. By Jabiertxof <email address hidden>

Adding cout << output to check bug in Geom::are_near

12265. By Jabiertxof <email address hidden>

update to trunk

12266. By Jabiertxof <email address hidden>

clang-format bspline lpe files

12267. By Jabiertxof <email address hidden>

update to trunk

12268. By Jabiertxof <email address hidden>

Fixed bug in LPE Bspline widget, on apply selected nodes, because a rounding problem. Thanks very much to Johan Engelen for point me to the correct direction. maybe is better round it previously to the are_near function, not sure

12269. By Jabiertxof <email address hidden>

update to trunk

12270. By Jabiertxof <email address hidden>

clarify the 'sc' and 'ec' SPCurve, by point of Vinícius, whith the result of one curve less in the header

12271. By Jabiertxof <email address hidden>

use <cmath> instead <math.h> by point of Vinícius

12272. By Jabiertxof <email address hidden>

Some node.cpp/h work moved to path_manipulator.
Header variable bsplineWeight removed from all.
Simplification of code with less functions in path_manipulator.

To fix: tips stop working because is handled by two static functions and
couldent call to path_manipulator from here. Vinícius, any work arround? lines
480,481,1426,1427,1462 of node.cpp.

gez: ¿Puedes probar si notas algun bug o problema? principalmente con
la herramienta nodo, gracias.

12273. By Jabiertxof <email address hidden>

A refactor for fixing some issues. Pending how to handle static functions
Vinícius for handle tips in his static functions i know two ways:
A: A bool property in node class of node.h to handle if curve is bspline
B: Call another non static function from the static tips one -not tested-

12274. By Jabiertxof <email address hidden>

update to trunk

12275. By Jabiertxof <email address hidden>

Refactor of end anchors.

12276. By Jabiertxof <email address hidden>

update to trunk

12277. By Jabiertxof <email address hidden>

update to trunk

12278. By Jabiertxof <email address hidden>

update to trunk

12279. By Jabiertxof <email address hidden>

update to trunk

12280. By Jabiertxof <email address hidden>

update to trunk

12281. By Jabiertxof <email address hidden>

update to trunk

12282. By Jabiertxof <email address hidden>

update to trunk

12283. By Jabiertxof <email address hidden>

update to trunk

12284. By Jabiertxof <email address hidden>

align two buttons in LPE widget

12285. By Jabiertxof <email address hidden>

Redesign of the BSpline LPE widgets

12286. By Jabiertxof <email address hidden>

update to trunk

12287. By Jabiertxof <email address hidden>

update to trunk

12288. By Jabiertxof <email address hidden>

update to trunk

Revision history for this message
Vinipsmaker (vinipsmaker) wrote :

There are a few things that could be improved, like the use of enum to represent widget mode (instead of plain and magical int numbers) and the use of new and delete (that we still need to keep, but hopefully will go away when we migrate to C++11), but none of this has anything to do with Jabier's changes. I think the branch can be merged already.

I discussed changes I thought worth through private emails with Jabier and they were already done.

Possibly some devs would like to see the use of SPCurve migrated to Geom::PathVector, but (1) I don't think it's important here and (2) looks like Geom::PathVector will receive breaking changes from KK soon.

Possibly other devs would like to see some asserts after some unchecked dynamic_cast, but I don't think this is important.

Any bugs related to this branch or has it become stable already?

Anyway, I'll move to another task within the Inkscape project.

It was a lot of code to review and took me some time.
=)

review: Approve
Revision history for this message
Jabiertxof (jabiertxof) wrote :

> It was a lot of code to review and took me some time.
> =)

Thanks very much for the review!

Revision history for this message
Jabiertxof (jabiertxof) wrote :

> It was a lot of code to review and took me some time.
> =)

Thanks very much for the review!

12289. By Jabiertxof <email address hidden>

adding Vinícius work whith node tips

12290. By Jabiertxof <email address hidden>

update to trunk

12291. By Jabiertxof <email address hidden>

adding const _pathmanipulatos staff to handles (handles also have tips)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'po/POTFILES.in'
--- po/POTFILES.in 2014-04-09 22:45:19 +0000
+++ po/POTFILES.in 2014-05-05 09:51:15 +0000
@@ -143,6 +143,8 @@
143src/live_effects/lpe-powerstroke.cpp143src/live_effects/lpe-powerstroke.cpp
144src/live_effects/lpe-rough-hatches.cpp144src/live_effects/lpe-rough-hatches.cpp
145src/live_effects/lpe-ruler.cpp145src/live_effects/lpe-ruler.cpp
146src/live_effects/lpe-bspline.cpp
147src/live_effects/lpe-skeleton.cpp
146src/live_effects/lpe-sketch.cpp148src/live_effects/lpe-sketch.cpp
147src/live_effects/lpe-vonkoch.cpp149src/live_effects/lpe-vonkoch.cpp
148src/live_effects/parameter/bool.cpp150src/live_effects/parameter/bool.cpp
149151
=== modified file 'share/icons/icons.svg'
--- share/icons/icons.svg 2014-03-27 19:22:24 +0000
+++ share/icons/icons.svg 2014-05-05 09:51:15 +0000
@@ -821,50 +821,19 @@
821<stop id="stop3482-77-2" offset="0.0000000" style="stop-color:#646464;stop-opacity:1.0000000;" />821<stop id="stop3482-77-2" offset="0.0000000" style="stop-color:#646464;stop-opacity:1.0000000;" />
822<stop id="stop3484-3-2" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" />822<stop id="stop3484-3-2" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" />
823</linearGradient>823</linearGradient>
824<linearGradient id="linearGradient5740-1-4">
825<stop id="stop5742-8-4" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" />
826<stop id="stop5744-32-6" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" />
827</linearGradient>
828<linearGradient id="linearGradient5740-1-4-4">
829<stop id="stop5742-8-4-5" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" />
830<stop id="stop5744-32-6-7" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" />
831</linearGradient>
832<linearGradient xlink:href="#linearGradient5740-1-4-6" y2="180.6826" x2="164.3598" y1="172.2059" x1="161.736" gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" gradientUnits="userSpaceOnUse" id="linearGradient5545-0-70" inkscape:collect="always" />824<linearGradient xlink:href="#linearGradient5740-1-4-6" y2="180.6826" x2="164.3598" y1="172.2059" x1="161.736" gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" gradientUnits="userSpaceOnUse" id="linearGradient5545-0-70" inkscape:collect="always" />
833<linearGradient id="linearGradient5740-1-4-6">825<linearGradient id="linearGradient5740-1-4-6">
834<stop id="stop5742-8-4-8" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" />826<stop id="stop5742-8-4-8" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" />
835<stop id="stop5744-32-6-3" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" />827<stop id="stop5744-32-6-3" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" />
836</linearGradient>828</linearGradient>
837<linearGradient id="linearGradient1887-1">
838<stop id="stop1888-0" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
839<stop id="stop1889-9" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
840</linearGradient>
841<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" gradientUnits="userSpaceOnUse" id="linearGradient10926" xlink:href="#linearGradient1887-1" inkscape:collect="always" />
842<linearGradient id="linearGradient1887-4">
843<stop id="stop1888-8" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
844<stop id="stop1889-7" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
845</linearGradient>
846<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(0.533827,0,0,0.532126,-61.18771,-178.1669)" gradientUnits="userSpaceOnUse" id="linearGradient11010" xlink:href="#linearGradient1887-4" inkscape:collect="always" />
847<linearGradient id="linearGradient1887-1-0">
848<stop id="stop1888-0-6" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
849<stop id="stop1889-9-4" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
850</linearGradient>
851<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11070" xlink:href="#linearGradient1887-1-0" inkscape:collect="always" />
852<linearGradient id="linearGradient1887-1-0-3">
853<stop id="stop1888-0-6-7" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
854<stop id="stop1889-9-4-2" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
855</linearGradient>
856<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11130" xlink:href="#linearGradient1887-1-0-3" inkscape:collect="always" />
857<linearGradient xlink:href="#linearGradient1887-3" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient15175-8" inkscape:collect="always" />829<linearGradient xlink:href="#linearGradient1887-3" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient15175-8" inkscape:collect="always" />
858<linearGradient id="linearGradient1887-3">830<linearGradient id="linearGradient1887-3">
859<stop id="stop1888-2" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />831<stop id="stop1888-2" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
860<stop id="stop1889-94" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />832<stop id="stop1889-94" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
861</linearGradient>833</linearGradient>
862<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11238" xlink:href="#linearGradient1887-3" inkscape:collect="always" />
863<linearGradient inkscape:collect="always" xlink:href="#linearGradient10331" id="linearGradient10337" x1="255.513" y1="92.579002" x2="264.6582" y2="83.394058" gradientUnits="userSpaceOnUse" />
864<linearGradient inkscape:collect="always" xlink:href="#linearGradient10331" id="linearGradient10372" gradientUnits="userSpaceOnUse" x1="255.513" y1="92.579002" x2="264.6582" y2="83.394058" />
865<linearGradient inkscape:collect="always" xlink:href="#linearGradient10331" id="linearGradient10399" gradientUnits="userSpaceOnUse" x1="255.513" y1="92.579002" x2="264.6582" y2="83.394058" />834<linearGradient inkscape:collect="always" xlink:href="#linearGradient10331" id="linearGradient10399" gradientUnits="userSpaceOnUse" x1="255.513" y1="92.579002" x2="264.6582" y2="83.394058" />
866</defs>835</defs>
867<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="svg1" inkscape:grid-bbox="true" inkscape:pageopacity="1.0000000" pagecolor="#e8e8e4" snaptoguides="true" showguides="true" inkscape:window-y="0" inkscape:window-x="40" inkscape:window-height="745" inkscape:window-width="1326" inkscape:cy="417.9499" inkscape:cx="364.8285" inkscape:zoom="3.343024" gridtolerance="6" snaptogrid="false" showgrid="false" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="8" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="false" objecttolerance="11" inkscape:snap-bbox="false" inkscape:snap-nodes="true" inkscape:bbox-nodes="false" inkscape:bbox-paths="false" inkscape:snap-global="false" inkscape:snap-center="false" inkscape:snap-midpoints="false" inkscape:snap-intersection-paths="true" inkscape:object-paths="false" inkscape:snap-object-midpoints="true" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:snap-smooth-nodes="false" inkscape:snap-text-baseline="false" inkscape:snap-page="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-bbox-edge-midpoints="false">836<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="svg1" inkscape:grid-bbox="true" inkscape:pageopacity="1.0000000" pagecolor="#e8e8e4" snaptoguides="true" showguides="true" inkscape:window-y="27" inkscape:window-x="0" inkscape:window-height="894" inkscape:window-width="1280" inkscape:cy="489.8736" inkscape:cx="1010.206" inkscape:zoom="2.759271" gridtolerance="6" snaptogrid="false" showgrid="false" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="8" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="false" objecttolerance="11" inkscape:snap-bbox="false" inkscape:snap-nodes="true" inkscape:bbox-nodes="false" inkscape:bbox-paths="false" inkscape:snap-global="false" inkscape:snap-center="false" inkscape:snap-midpoints="false" inkscape:snap-intersection-paths="true" inkscape:object-paths="false" inkscape:snap-object-midpoints="true" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:snap-smooth-nodes="false" inkscape:snap-text-baseline="false" inkscape:snap-page="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-bbox-edge-midpoints="false">
868<inkscape:grid type="xygrid" id="grid9252" originx="0px" originy="0px" spacingx="0.5px" spacingy="0.5px" empspacing="2" visible="true" enabled="true" snapvisiblegridlinesonly="true" />837<inkscape:grid type="xygrid" id="grid9252" originx="0px" originy="0px" spacingx="0.5px" spacingy="0.5px" empspacing="2" visible="true" enabled="true" snapvisiblegridlinesonly="true" />
869<sodipodi:guide orientation="0,1" position="630.08101,968.02815" id="guide4946" />838<sodipodi:guide orientation="0,1" position="630.08101,968.02815" id="guide4946" />
870<sodipodi:guide orientation="0,1" position="618.47896,943.93157" id="guide4948" />839<sodipodi:guide orientation="0,1" position="618.47896,943.93157" id="guide4948" />
@@ -887,7 +856,7 @@
887<dc:title>Inkscape Developers</dc:title>856<dc:title>Inkscape Developers</dc:title>
888</cc:Agent>857</cc:Agent>
889</dc:rights>858</dc:rights>
890<dc:title></dc:title>859<dc:title />
891</cc:Work>860</cc:Work>
892<cc:License rdf:about="http://creativecommons.org/licenses/GPL/2.0/">861<cc:License rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
893<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" />862<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" />
@@ -3859,45 +3828,52 @@
3859<g id="boundingbox_top_left" transform="translate(998.14709,-107)" inkscape:label="#boundingbox_top_left" style="display:inline">3828<g id="boundingbox_top_left" transform="translate(998.14709,-107)" inkscape:label="#boundingbox_top_left" style="display:inline">
3860<rect y="475" x="-262.14709" height="16" width="16" id="rect7835" style="fill:none;stroke:none" />3829<rect y="475" x="-262.14709" height="16" width="16" id="rect7835" style="fill:none;stroke:none" />
3861<path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path7837" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />3830<path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path7837" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
3862<path transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7824" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />3831<path transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7824" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
3863</g>3832</g>
3864<g id="boundingbox_top" transform="translate(1022.1471,-107)" style="display:inline">3833<g id="boundingbox_top" transform="translate(1022.1471,-107)" style="display:inline">
3865<rect style="fill:none;stroke:none" id="rect7846" width="16" height="16" x="-262.14709" y="475" />3834<rect style="fill:none;stroke:none" id="rect7846" width="16" height="16" x="-262.14709" y="475" />
3866<path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -260.64708,479.5 13,0 0,2 -13,0 z" id="path7848" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />3835<path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -260.64708,479.5 13,0 0,2 -13,0 z" id="path7848" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
3867<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7850" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" />3836<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7850" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" />
3868</g>3837</g>
3869<g id="boundingbox_top_right" transform="matrix(0,1,-1,0,1275,630.14709)" style="display:inline">3838<g id="boundingbox_top_right" transform="matrix(0,1,-1,0,1275,630.14709)" style="display:inline">
3870<rect style="fill:none;stroke:none" id="rect7856" width="16" height="16" x="-262.14709" y="475" />3839<rect style="fill:none;stroke:none" id="rect7856" width="16" height="16" x="-262.14709" y="475" />
3871<path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" id="path7858" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" />3840<path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" id="path7858" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" />
3872<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7860" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" />3841<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7860" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" />
3873</g>3842</g>
3874<g transform="matrix(0,1,-1,0,1275,654.14709)" id="boundingbox_right" style="display:inline">3843<g transform="matrix(0,1,-1,0,1275,654.14709)" id="boundingbox_right" style="display:inline">
3875<rect y="475" x="-262.14709" height="16" width="16" id="rect7864" style="fill:none;stroke:none" />3844<rect y="475" x="-262.14709" height="16" width="16" id="rect7864" style="fill:none;stroke:none" />
3876<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path7866" d="m -260.64708,479.5 13,0 0,2 -13,0 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />3845<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path7866" d="m -260.64708,479.5 13,0 0,2 -13,0 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
3877<path transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7868" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />3846<path transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7868" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
3878</g>3847</g>
3879<g transform="matrix(-1,0,0,-1,537.85291,907)" id="boundingbox_bottom_right" style="display:inline">3848<g transform="matrix(-1,0,0,-1,537.85291,907)" id="boundingbox_bottom_right" style="display:inline">
3880<rect y="475" x="-262.14709" height="16" width="16" id="rect7876" style="fill:none;stroke:none" />3849<rect y="475" x="-262.14709" height="16" width="16" id="rect7876" style="fill:none;stroke:none" />
3881<path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path7878" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />3850<path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path7878" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
3882<path transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7880" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />3851<path transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7880" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
3883</g>3852</g>
3884<g id="boundingbox_bottom" transform="matrix(-1,0,0,-1,513.85291,907)" style="display:inline">3853<g id="boundingbox_bottom" transform="matrix(-1,0,0,-1,513.85291,907)" style="display:inline">
3885<rect style="fill:none;stroke:none" id="rect7884" width="16" height="16" x="-262.14709" y="475" />3854<rect style="fill:none;stroke:none" id="rect7884" width="16" height="16" x="-262.14709" y="475" />
3886<path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -260.64708,479.5 13,0 0,2 -13,0 z" id="path7886" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />3855<path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -260.64708,479.5 13,0 0,2 -13,0 z" id="path7886" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
3887<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7888" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" />3856<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7888" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" />
3888</g>3857</g>
3889<g id="boundingbox_bottom_left" transform="matrix(0,-1,1,0,261,169.85291)" style="display:inline">3858<g id="boundingbox_bottom_left" transform="matrix(0,-1,1,0,261,169.85291)" style="display:inline">
3890<rect style="fill:none;stroke:none" id="rect7896" width="16" height="16" x="-262.14709" y="475" />3859<rect style="fill:none;stroke:none" id="rect7896" width="16" height="16" x="-262.14709" y="475" />
3891<path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" id="path7898" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" />3860<path style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m -257.64708,489.5 0,-10 10,0 0,2 -8,0 0,8 z" id="path7898" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" />
3892<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7900" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" />3861<path sodipodi:type="arc" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path7900" sodipodi:cx="366.78745" sodipodi:cy="1670.7562" sodipodi:rx="3.7757924" sodipodi:ry="3.7757924" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" transform="matrix(1.05938,0,0,1.0593804,-645.21436,-1289.4664)" />
3893</g>3862</g>
3894<g transform="matrix(0,-1,1,0,261,145.85291)" id="boundingbox_left" style="display:inline">3863<g transform="matrix(0,-1,1,0,261,145.85291)" id="boundingbox_left" style="display:inline">
3895<rect y="475" x="-262.14709" height="16" width="16" id="rect7905" style="fill:none;stroke:none" />3864<rect y="475" x="-262.14709" height="16" width="16" id="rect7905" style="fill:none;stroke:none" />
3896<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path7907" d="m -260.64708,479.5 13,0 0,2 -13,0 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />3865<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path7907" d="m -260.64708,479.5 13,0 0,2 -13,0 z" style="fill:#ffffff;fill-opacity:1;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
3897<path transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7909" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />3866<path transform="matrix(1.05938,0,0,1.0593804,-642.71436,-1289.4664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7909" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
3898</g>3867</g>
3899<g transform="translate(1022.1471,-83)" id="boundingbox_center" style="display:inline">3868<g transform="translate(1022.1471,-83)" id="boundingbox_center" style="display:inline">
3900<rect y="475" x="-262.14709" height="16" width="16" id="rect7917" style="fill:none;stroke:none" />3869<rect y="475" x="-262.14709" height="16" width="16" id="rect7917" style="fill:none;stroke:none" />
3901<path transform="matrix(1.05938,0,0,1.0593804,-642.71438,-1286.9664)" d="m 370.56324,1670.7562 a 3.7757924,3.7757924 0 0 1 -3.77579,3.7758 3.7757924,3.7757924 0 0 1 -3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.7758,-3.7758 3.7757924,3.7757924 0 0 1 3.77579,3.7758 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7922" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />3870<path transform="matrix(1.05938,0,0,1.0593804,-642.71438,-1286.9664)" d="m 370.5632,1670.756 c 0,2.086 -1.6904,3.776 -3.7758,3.776 -2.0853,0 -3.7757,-1.69 -3.7757,-3.776 0,-2.085 1.6904,-3.776 3.7757,-3.776 2.0854,0 3.7758,1.691 3.7758,3.776 z" sodipodi:ry="3.7757924" sodipodi:rx="3.7757924" sodipodi:cy="1670.7562" sodipodi:cx="366.78745" id="path7922" style="fill:url(#radialSnotBall);fill-opacity:1;stroke:#3a7304;stroke-width:0.94394815;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.33333325;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" />
3871</g>
3872<g id="path-mode-bspline" transform="matrix(1.395066,-1.366399,1.366399,1.395066,-466.9364,1306.511)" inkscape:label="#bspline_mode">
3873<path inkscape:connector-curvature="0" style="color:#000000;fill:none;stroke:#0000ff;stroke-width:0.9960949;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 961.8604,56.03607 c 0,0 1.3781,-1.49823 3.2604,-1.76058 1.8823,-0.26235 3.5841,1.78013 3.5841,1.78013" id="path-mode-spiro-3-8-8" sodipodi:nodetypes="czc" inkscape:label="#spiro_splines_mode" />
3874<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" id="path6177-8-2" d="m 960.716,54.82044 4.5038,-4.57407 4.5738,4.47984" style="fill:none;stroke:#646464;stroke-width:0.7501467;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
3875<rect y="-639.9971" x="724.2002" height="1.022964" width="1.022542" id="rect8372-9-8" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(0.7144089,0.6997285,-0.6997285,0.7144089,0,0)" />
3876<rect transform="matrix(0.7144089,0.6997285,-0.6997285,0.7144089,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6941" width="1.022542" height="1.022964" x="724.2002" y="-633.3398" />
3877<rect y="-639.9971" x="730.8575" height="1.022964" width="1.022542" id="rect6954" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(0.7144089,0.6997285,-0.6997285,0.7144089,0,0)" />
3902</g>3878</g>
3903</svg>3879</svg>
39043880
=== modified file 'share/icons/symbolic_icons.svg'
--- share/icons/symbolic_icons.svg 2013-05-16 22:38:41 +0000
+++ share/icons/symbolic_icons.svg 2014-05-05 09:51:15 +0000
@@ -1,7 +1,7 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- Created with Inkscape (http://www.inkscape.org/) -->2<!-- Created with Inkscape (http://www.inkscape.org/) -->
33
4<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="1250" height="540" id="svg15638" version="1.1" inkscape:version="0.48+devel r" sodipodi:docname="symbolic_icons.svg">4<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="1250" height="540" id="svg15638" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="symbolic_icons.svg">
5<title id="title9623">Inkscape Icon Theme</title>5<title id="title9623">Inkscape Icon Theme</title>
6<defs id="defs15640">6<defs id="defs15640">
7<inkscape:path-effect effect="spiro" id="path-effect36695" is_visible="true" />7<inkscape:path-effect effect="spiro" id="path-effect36695" is_visible="true" />
@@ -13,7 +13,7 @@
13<linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29996" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />13<linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29996" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />
14<linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29998" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />14<linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29998" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />
15</defs>15</defs>
16<sodipodi:namedview id="base" pagecolor="#f2f2f2" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:zoom="4.956897" inkscape:cx="668" inkscape:cy="196" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1301" inkscape:window-height="744" inkscape:window-x="65" inkscape:window-y="24" inkscape:window-maximized="1" inkscape:snap-bbox="true" inkscape:bbox-paths="false" inkscape:bbox-nodes="false" inkscape:snap-global="true" showguides="true" inkscape:guide-bbox="true" inkscape:snap-nodes="false" inkscape:snap-object-midpoints="false" inkscape:snap-grids="true" inkscape:snap-to-guides="true" borderlayer="true" inkscape:showpageshadow="false" showborder="false" inkscape:snap-bbox-edge-midpoints="false">16<sodipodi:namedview id="base" pagecolor="#f2f2f2" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:zoom="4.387182" inkscape:cx="861.2528" inkscape:cy="372.3775" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1280" inkscape:window-height="901" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="1" inkscape:snap-bbox="true" inkscape:bbox-paths="false" inkscape:bbox-nodes="false" inkscape:snap-global="true" showguides="true" inkscape:guide-bbox="true" inkscape:snap-nodes="false" inkscape:snap-object-midpoints="false" inkscape:snap-grids="true" inkscape:snap-to-guides="true" borderlayer="true" inkscape:showpageshadow="false" showborder="false" inkscape:snap-bbox-edge-midpoints="false">
17<inkscape:grid type="xygrid" id="grid15646" empspacing="5" visible="true" enabled="true" snapvisiblegridlinesonly="true" />17<inkscape:grid type="xygrid" id="grid15646" empspacing="5" visible="true" enabled="true" snapvisiblegridlinesonly="true" />
18</sodipodi:namedview>18</sodipodi:namedview>
19<metadata id="metadata15643">19<metadata id="metadata15643">
@@ -55,9 +55,9 @@
55</g>55</g>
56<g id="document-cleanup" inkscape:label="#file_vacuum" transform="matrix(0.99690056,0,0,1.0000002,0.04649158,2.0001197)">56<g id="document-cleanup" inkscape:label="#file_vacuum" transform="matrix(0.99690056,0,0,1.0000002,0.04649158,2.0001197)">
57<path sodipodi:nodetypes="ccsscsscccccsccssccc" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 24.733638,588.18037 c 0,0 -0.01281,0.54666 -0.303251,1.0909 -0.29048,0.54426 -0.801932,1.09091 -2.122758,1.09091 -1.116653,0 -3.307629,0 -3.881615,0.13637 -0.638443,0.15168 -1.238624,0.44092 -1.698207,0.95455 -0.459583,0.51361 -0.727803,1.25369 -0.727803,2.18181 0,0.70749 0.130199,1.27268 0.394227,1.70454 0.264027,0.43186 0.655158,0.70901 1.031054,0.85227 0.751791,0.28653 1.535247,0.17046 1.971133,0.17046 l 0,-1.09091 c -0.534518,0 -1.206668,0.0736 -1.667882,-0.10229 -0.230607,-0.0879 -0.385328,-0.23022 -0.515527,-0.44318 -0.130199,-0.21295 -0.242601,-0.54118 -0.242601,-1.0909 0,-0.70824 0.182368,-1.12727 0.454877,-1.43182 0.272509,-0.30457 0.684115,-0.49013 1.213005,-0.61364 0.36171,-0.22726 2.484486,-0.13636 3.669339,-0.13636 1.590385,0 2.534539,-0.81699 2.971862,-1.63637 0.437322,-0.81938 0.424551,-1.63636 0.424551,-1.63636 l -0.970404,0 z" id="path11319" inkscape:connector-curvature="0" />57<path sodipodi:nodetypes="ccsscsscccccsccssccc" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 24.733638,588.18037 c 0,0 -0.01281,0.54666 -0.303251,1.0909 -0.29048,0.54426 -0.801932,1.09091 -2.122758,1.09091 -1.116653,0 -3.307629,0 -3.881615,0.13637 -0.638443,0.15168 -1.238624,0.44092 -1.698207,0.95455 -0.459583,0.51361 -0.727803,1.25369 -0.727803,2.18181 0,0.70749 0.130199,1.27268 0.394227,1.70454 0.264027,0.43186 0.655158,0.70901 1.031054,0.85227 0.751791,0.28653 1.535247,0.17046 1.971133,0.17046 l 0,-1.09091 c -0.534518,0 -1.206668,0.0736 -1.667882,-0.10229 -0.230607,-0.0879 -0.385328,-0.23022 -0.515527,-0.44318 -0.130199,-0.21295 -0.242601,-0.54118 -0.242601,-1.0909 0,-0.70824 0.182368,-1.12727 0.454877,-1.43182 0.272509,-0.30457 0.684115,-0.49013 1.213005,-0.61364 0.36171,-0.22726 2.484486,-0.13636 3.669339,-0.13636 1.590385,0 2.534539,-0.81699 2.971862,-1.63637 0.437322,-0.81938 0.424551,-1.63636 0.424551,-1.63636 l -0.970404,0 z" id="path11319" inkscape:connector-curvature="0" />
58<path transform="matrix(0.15999997,0,0,0.15384586,-23.799991,585.36221)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 C 277.2018,91 280,93.91015 280,97.5 Z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11327" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.87804985000000002;marker:none;display:inline" sodipodi:type="arc" />58<path transform="matrix(0.15999997,0,0,0.15384586,-23.799991,585.36221)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 3.4518,0 6.25,2.91015 6.25,6.5 z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11327" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.87804985000000002;marker:none;display:inline" sodipodi:type="arc" />
59<path inkscape:connector-curvature="0" sodipodi:nodetypes="scccs" id="rect11314" d="m 19,595.36218 c 4,-2 10,-1 10,-1 l 0,6.00035 c 0,0 0.01874,-0.018 -11,-3.5e-4 -2,0 -1,-4 1,-5 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" />59<path inkscape:connector-curvature="0" sodipodi:nodetypes="scccs" id="rect11314" d="m 19,595.36218 c 4,-2 10,-1 10,-1 l 0,6.00035 c 0,0 0.01874,-0.018 -11,-3.5e-4 -2,0 -1,-4 1,-5 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" />
60<path transform="matrix(0.38951329,0,0,0.38130207,-78.013976,561.70654)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 C 277.2018,91 280,93.91015 280,97.5 Z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11312" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.54062963000000019;marker:none;display:inline" sodipodi:type="arc" />60<path transform="matrix(0.38951329,0,0,0.38130207,-78.013976,561.70654)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 3.4518,0 6.25,2.91015 6.25,6.5 z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11312" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.54062963000000019;marker:none;display:inline" sodipodi:type="arc" />
61<rect y="586.40131" x="21.293545" height="2.0342929" width="7.8504539" id="rect11317" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999928000000005;marker:none;display:inline" />61<rect y="586.40131" x="21.293545" height="2.0342929" width="7.8504539" id="rect11317" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999928000000005;marker:none;display:inline" />
62<rect y="585.36218" x="15" height="15.999997" width="16" id="rect29219" style="fill:none;stroke:none" />62<rect y="585.36218" x="15" height="15.999997" width="16" id="rect29219" style="fill:none;stroke:none" />
63</g>63</g>
@@ -195,7 +195,7 @@
195<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55503" width="1" height="1" x="55" y="721.36218" />195<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55503" width="1" height="1" x="55" y="721.36218" />
196<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55505" width="1" height="1" x="57" y="721.36218" />196<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55505" width="1" height="1" x="57" y="721.36218" />
197<path id="rect55539" transform="translate(0,512.36218)" d="M 47 203 L 47 208 L 55 208 L 55 205.5 C 54.833229 205.519 54.671777 205.5625 54.5 205.5625 C 52.723448 205.5625 51.20038 204.5157 50.46875 203 L 47 203 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:1" />197<path id="rect55539" transform="translate(0,512.36218)" d="M 47 203 L 47 208 L 55 208 L 55 205.5 C 54.833229 205.519 54.671777 205.5625 54.5 205.5625 C 52.723448 205.5625 51.20038 204.5157 50.46875 203 L 47 203 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:1" />
198<path transform="matrix(1.0000003,0,0,1.1666667,0.9999829,478.86217)" d="m 57,201 c 0,1.6569 -1.567,3 -3.5,3 -1.933,0 -3.5,-1.3431 -3.5,-3 0,-1.6569 1.567,-3 3.5,-3 C 55.433,198 57,199.3431 57,201 Z" sodipodi:ry="3" sodipodi:rx="3.5" sodipodi:cy="201" sodipodi:cx="53.5" id="path55541" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:1" sodipodi:type="arc" />198<path transform="matrix(1.0000003,0,0,1.1666667,0.9999829,478.86217)" d="m 57,201 c 0,1.6569 -1.567,3 -3.5,3 -1.933,0 -3.5,-1.3431 -3.5,-3 0,-1.6569 1.567,-3 3.5,-3 1.933,0 3.5,1.3431 3.5,3 z" sodipodi:ry="3" sodipodi:rx="3.5" sodipodi:cy="201" sodipodi:cx="53.5" id="path55541" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:1" sodipodi:type="arc" />
199</g>199</g>
200<g id="edit-select-none" inkscape:label="#selection_deselect">200<g id="edit-select-none" inkscape:label="#selection_deselect">
201<g transform="translate(0,20)" id="g55605" inkscape:label="#selection_select_all">201<g transform="translate(0,20)" id="g55605" inkscape:label="#selection_select_all">
@@ -229,7 +229,7 @@
229<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" id="rect55661" width="1" height="1" x="55" y="721.36218" />229<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" id="rect55661" width="1" height="1" x="55" y="721.36218" />
230<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" id="rect55663" width="1" height="1" x="57" y="721.36218" />230<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" id="rect55663" width="1" height="1" x="57" y="721.36218" />
231<path inkscape:connector-curvature="0" id="path55665" transform="translate(0,512.36218)" d="m 47,203 0,5 8,0 0,-2.5 c -0.166771,0.019 -0.328223,0.0625 -0.5,0.0625 -1.776552,0 -3.29962,-1.0468 -4.03125,-2.5625 L 47,203 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" />231<path inkscape:connector-curvature="0" id="path55665" transform="translate(0,512.36218)" d="m 47,203 0,5 8,0 0,-2.5 c -0.166771,0.019 -0.328223,0.0625 -0.5,0.0625 -1.776552,0 -3.29962,-1.0468 -4.03125,-2.5625 L 47,203 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" />
232<path transform="matrix(1.0000003,0,0,1.1666667,0.9999829,478.86217)" d="m 57,201 c 0,1.6569 -1.567,3 -3.5,3 -1.933,0 -3.5,-1.3431 -3.5,-3 0,-1.6569 1.567,-3 3.5,-3 C 55.433,198 57,199.3431 57,201 Z" sodipodi:ry="3" sodipodi:rx="3.5" sodipodi:cy="201" sodipodi:cx="53.5" id="path55667" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" sodipodi:type="arc" />232<path transform="matrix(1.0000003,0,0,1.1666667,0.9999829,478.86217)" d="m 57,201 c 0,1.6569 -1.567,3 -3.5,3 -1.933,0 -3.5,-1.3431 -3.5,-3 0,-1.6569 1.567,-3 3.5,-3 1.933,0 3.5,1.3431 3.5,3 z" sodipodi:ry="3" sodipodi:rx="3.5" sodipodi:cy="201" sodipodi:cx="53.5" id="path55667" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;opacity:0.29999999999999999" sodipodi:type="arc" />
233</g>233</g>
234</g>234</g>
235<g id="edit-select-invert" inkscape:label="#selection_invert">235<g id="edit-select-invert" inkscape:label="#selection_invert">
@@ -579,7 +579,7 @@
579</g>579</g>
580</g>580</g>
581<path id="path23473" transform="translate(0,512.36218)" d="M 83 381 C 79.686292 381 79 382.99999 77 384.5 C 79 386 79.686292 388 83 388 C 86.313708 388 87 386 89 384.5 C 87 382.99999 86.313708 381 83 381 z M 83 382 C 84.656854 382 86 383.11929 86 384.5 C 86 385.88071 84.656854 387 83 387 C 81.343146 387 80 385.88071 80 384.5 C 80 383.11929 81.343146 382 83 382 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />581<path id="path23473" transform="translate(0,512.36218)" d="M 83 381 C 79.686292 381 79 382.99999 77 384.5 C 79 386 79.686292 388 83 388 C 86.313708 388 87 386 89 384.5 C 87 382.99999 86.313708 381 83 381 z M 83 382 C 84.656854 382 86 383.11929 86 384.5 C 86 385.88071 84.656854 387 83 387 C 81.343146 387 80 385.88071 80 384.5 C 80 383.11929 81.343146 382 83 382 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
582<path transform="matrix(1.21875,0,0,1.5,-18.125,319.36218)" d="m 84,385 c 0,0.5523 -0.44772,1 -1,1 -0.55228,0 -1,-0.4477 -1,-1 0,-0.5523 0.44772,-1 1,-1 C 83.55228,384 84,384.4477 84,385 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="385" sodipodi:cx="83" id="path23477" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />582<path transform="matrix(1.21875,0,0,1.5,-18.125,319.36218)" d="m 84,385 c 0,0.5523 -0.44772,1 -1,1 -0.55228,0 -1,-0.4477 -1,-1 0,-0.5523 0.44772,-1 1,-1 0.55228,0 1,0.4477 1,1 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="385" sodipodi:cx="83" id="path23477" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
583</g>583</g>
584<g id="layer-new" inkscape:label="#new_layer">584<g id="layer-new" inkscape:label="#new_layer">
585<rect ry="1" rx="0" transform="translate(0,512.36218)" y="15" x="105" height="16" width="16" id="rect10817" style="fill:none;fill-opacity:1;stroke:none" />585<rect ry="1" rx="0" transform="translate(0,512.36218)" y="15" x="105" height="16" width="16" id="rect10817" style="fill:none;fill-opacity:1;stroke:none" />
@@ -734,7 +734,7 @@
734<rect y="587.36218" x="148" height="3" width="3" id="rect11967" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />734<rect y="587.36218" x="148" height="3" width="3" id="rect11967" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />
735<rect y="600.36218" x="135" height="3.0000026" width="3" id="rect11969" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />735<rect y="600.36218" x="135" height="3.0000026" width="3" id="rect11969" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />
736<rect y="600.36218" x="148" height="3.0000026" width="3" id="rect11971" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />736<rect y="600.36218" x="148" height="3.0000026" width="3" id="rect11971" style="fill:url(#linearGradient19282);stroke:none;fill-opacity:1" />
737<path transform="translate(0,512.36218)" d="m 144,82.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 C 142.433,79 144,80.567 144,82.5 Z" sodipodi:ry="3.5" sodipodi:rx="3.5" sodipodi:cy="82.5" sodipodi:cx="140.5" id="path11973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />737<path transform="translate(0,512.36218)" d="m 144,82.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 1.933,0 3.5,1.567 3.5,3.5 z" sodipodi:ry="3.5" sodipodi:rx="3.5" sodipodi:cy="82.5" sodipodi:cx="140.5" id="path11973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
738<path id="rect11975" transform="translate(0,512.36218)" d="M 144.9375 82 C 144.95624 82.166771 145 82.328223 145 82.5 C 145 84.813505 143.24609 86.685111 141 86.9375 L 141 88 L 147 88 L 147 82 L 144.9375 82 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />738<path id="rect11975" transform="translate(0,512.36218)" d="M 144.9375 82 C 144.95624 82.166771 145 82.328223 145 82.5 C 145 84.813505 143.24609 86.685111 141 86.9375 L 141 88 L 147 88 L 147 82 L 144.9375 82 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
739</g>739</g>
740<g id="object-ungroup" inkscape:label="#selection_ungroup">740<g id="object-ungroup" inkscape:label="#selection_ungroup">
@@ -742,7 +742,7 @@
742<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12013" width="2" height="1.9999974" x="136" y="608.36218" />742<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12013" width="2" height="1.9999974" x="136" y="608.36218" />
743<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12015" width="2" height="1.9999974" x="148" y="610.36218" />743<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12015" width="2" height="1.9999974" x="148" y="610.36218" />
744<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12019" width="2" height="2.0000026" x="148" y="620.36218" />744<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12019" width="2" height="2.0000026" x="148" y="620.36218" />
745<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path12021" sodipodi:cx="140.5" sodipodi:cy="82.5" sodipodi:rx="3.5" sodipodi:ry="3.5" d="m 144,82.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 C 142.433,79 144,80.567 144,82.5 Z" transform="translate(0.5,531.36218)" />745<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path12021" sodipodi:cx="140.5" sodipodi:cy="82.5" sodipodi:rx="3.5" sodipodi:ry="3.5" d="m 144,82.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 1.933,0 3.5,1.567 3.5,3.5 z" transform="translate(0.5,531.36218)" />
746<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="m 145.9375,613.36218 c 0.0187,0.16677 0.0625,0.32822 0.0625,0.5 0,2.3135 -1.75391,4.18511 -4,4.4375 l 0,1.0625 6,0 0,-6 -2.0625,0 z" id="path12023" inkscape:connector-curvature="0" />746<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="m 145.9375,613.36218 c 0.0187,0.16677 0.0625,0.32822 0.0625,0.5 0,2.3135 -1.75391,4.18511 -4,4.4375 l 0,1.0625 6,0 0,-6 -2.0625,0 z" id="path12023" inkscape:connector-curvature="0" />
747<rect y="608.36218" x="144" height="1.9999974" width="2" id="rect12039" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />747<rect y="608.36218" x="144" height="1.9999974" width="2" id="rect12039" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
748<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12041" width="2" height="1.9999974" x="136" y="617.36218" />748<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12041" width="2" height="1.9999974" x="136" y="617.36218" />
@@ -821,7 +821,7 @@
821<g id="dialog-transform" inkscape:label="#object_transform">821<g id="dialog-transform" inkscape:label="#object_transform">
822<rect transform="translate(0,512.36218)" y="275" x="135" height="16" width="16" id="rect18662" style="fill:none;fill-opacity:1;stroke:none" />822<rect transform="translate(0,512.36218)" y="275" x="135" height="16" width="16" id="rect18662" style="fill:none;fill-opacity:1;stroke:none" />
823<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 143.5 275 C 139.91014 275 137 277.91015 137 281.5 C 137 281.67107 137.01825 281.83226 137.03125 282 L 135 282 L 138 285 L 141 282 L 139.0625 282 C 139.0438 281.83323 139 281.67178 139 281.5 C 139 279.01472 141.01472 277 143.5 277 C 143.67178 277 143.83323 277.0438 144 277.0625 C 144.16677 277.0438 144.32822 277 144.5 277 C 146.98528 277 149 279.01472 149 281.5 C 149 281.67178 148.9562 281.83323 148.9375 282 C 148.9562 282.16677 149 282.32822 149 282.5 C 149 284.98528 146.98528 287 144.5 287 C 144.32822 287 144.16677 286.9562 144 286.9375 L 144 288.96875 C 144.16774 288.98175 144.32893 289 144.5 289 C 148.08986 289 151 286.08985 151 282.5 C 151 282.32893 150.98175 282.16774 150.96875 282 C 150.98175 281.83226 151 281.67107 151 281.5 C 151 277.91015 148.08986 275 144.5 275 C 144.32893 275 144.16774 275.01825 144 275.03125 C 143.83226 275.01825 143.67107 275 143.5 275 z " transform="translate(0,512.36218)" id="path18678" />823<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 143.5 275 C 139.91014 275 137 277.91015 137 281.5 C 137 281.67107 137.01825 281.83226 137.03125 282 L 135 282 L 138 285 L 141 282 L 139.0625 282 C 139.0438 281.83323 139 281.67178 139 281.5 C 139 279.01472 141.01472 277 143.5 277 C 143.67178 277 143.83323 277.0438 144 277.0625 C 144.16677 277.0438 144.32822 277 144.5 277 C 146.98528 277 149 279.01472 149 281.5 C 149 281.67178 148.9562 281.83323 148.9375 282 C 148.9562 282.16677 149 282.32822 149 282.5 C 149 284.98528 146.98528 287 144.5 287 C 144.32822 287 144.16677 286.9562 144 286.9375 L 144 288.96875 C 144.16774 288.98175 144.32893 289 144.5 289 C 148.08986 289 151 286.08985 151 282.5 C 151 282.32893 150.98175 282.16774 150.96875 282 C 150.98175 281.83226 151 281.67107 151 281.5 C 151 277.91015 148.08986 275 144.5 275 C 144.32893 275 144.16774 275.01825 144 275.03125 C 143.83226 275.01825 143.67107 275 143.5 275 z " transform="translate(0,512.36218)" id="path18678" />
824<path transform="matrix(1.3333333,0,0,1.3333333,-48.666667,417.69551)" d="m 146,282.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 145.3284,281 146,281.6716 146,282.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="282.5" sodipodi:cx="144.5" id="path18701" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />824<path transform="matrix(1.3333333,0,0,1.3333333,-48.666667,417.69551)" d="m 146,282.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="282.5" sodipodi:cx="144.5" id="path18701" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
825<rect transform="translate(0,512.36218)" y="286" x="135" height="5" width="6" id="rect18705" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />825<rect transform="translate(0,512.36218)" y="286" x="135" height="5" width="6" id="rect18705" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
826</g>826</g>
827<g id="dialog-align-and-distribute" inkscape:label="#object_align">827<g id="dialog-align-and-distribute" inkscape:label="#object_align">
@@ -847,8 +847,8 @@
847<path inkscape:connector-curvature="0" id="path8587" d="m 43.059524,-18.992857 c -2.202823,0 -3.992858,1.790033 -3.992858,3.992857 0,2.202825 1.790035,3.992858 3.992858,3.992858 2.202822,0 3.992857,-1.790033 3.992857,-3.992858 0,-2.202824 -1.790035,-3.992857 -3.992857,-3.992857 z m 0,1.052381 C 44.685876,-17.940476 46,-16.626352 46,-15 c 0,1.626353 -1.314124,2.940477 -2.940476,2.940477 -1.626353,0 -2.940477,-1.314124 -2.940477,-2.940477 0,-1.626352 1.314124,-2.940476 2.940477,-2.940476 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />847<path inkscape:connector-curvature="0" id="path8587" d="m 43.059524,-18.992857 c -2.202823,0 -3.992858,1.790033 -3.992858,3.992857 0,2.202825 1.790035,3.992858 3.992858,3.992858 2.202822,0 3.992857,-1.790033 3.992857,-3.992858 0,-2.202824 -1.790035,-3.992857 -3.992857,-3.992857 z m 0,1.052381 C 44.685876,-17.940476 46,-16.626352 46,-15 c 0,1.626353 -1.314124,2.940477 -2.940476,2.940477 -1.626353,0 -2.940477,-1.314124 -2.940477,-2.940477 0,-1.626352 1.314124,-2.940476 2.940477,-2.940476 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />
848<path inkscape:connector-curvature="0" id="path8591" d="m 39.045327,-11.923578 c -2.202823,0 -3.992858,1.790033 -3.992858,3.9928574 0,2.2028242 1.790035,3.9928576 3.992858,3.9928576 2.202822,0 3.992857,-1.7900334 3.992857,-3.9928576 0,-2.2028244 -1.790035,-3.9928574 -3.992857,-3.9928574 z m 0,1.052381 c 1.626352,0 2.940476,1.3141241 2.940476,2.9404764 0,1.6263522 -1.314124,2.9404765 -2.940476,2.9404765 -1.626353,0 -2.940477,-1.3141243 -2.940477,-2.9404765 0,-1.6263523 1.314124,-2.9404764 2.940477,-2.9404764 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />848<path inkscape:connector-curvature="0" id="path8591" d="m 39.045327,-11.923578 c -2.202823,0 -3.992858,1.790033 -3.992858,3.9928574 0,2.2028242 1.790035,3.9928576 3.992858,3.9928576 2.202822,0 3.992857,-1.7900334 3.992857,-3.9928576 0,-2.2028244 -1.790035,-3.9928574 -3.992857,-3.9928574 z m 0,1.052381 c 1.626352,0 2.940476,1.3141241 2.940476,2.9404764 0,1.6263522 -1.314124,2.9404765 -2.940476,2.9404765 -1.626353,0 -2.940477,-1.3141243 -2.940477,-2.9404765 0,-1.6263523 1.314124,-2.9404764 2.940477,-2.9404764 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />
849<path inkscape:connector-curvature="0" id="path8593" d="m 47.044477,-11.923578 c -2.202823,0 -3.992858,1.790033 -3.992858,3.9928574 0,2.2028242 1.790035,3.9928576 3.992858,3.9928576 2.202822,0 3.992857,-1.7900334 3.992857,-3.9928576 0,-2.2028244 -1.790035,-3.9928574 -3.992857,-3.9928574 z m 0,1.052381 c 1.626352,0 2.940476,1.3141241 2.940476,2.9404764 0,1.6263522 -1.314124,2.9404765 -2.940476,2.9404765 -1.626353,0 -2.940477,-1.3141243 -2.940477,-2.9404765 0,-1.6263523 1.314124,-2.9404764 2.940477,-2.9404764 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />849<path inkscape:connector-curvature="0" id="path8593" d="m 47.044477,-11.923578 c -2.202823,0 -3.992858,1.790033 -3.992858,3.9928574 0,2.2028242 1.790035,3.9928576 3.992858,3.9928576 2.202822,0 3.992857,-1.7900334 3.992857,-3.9928576 0,-2.2028244 -1.790035,-3.9928574 -3.992857,-3.9928574 z m 0,1.052381 c 1.626352,0 2.940476,1.3141241 2.940476,2.9404764 0,1.6263522 -1.314124,2.9404765 -2.940476,2.9404765 -1.626353,0 -2.940477,-1.3141243 -2.940477,-2.9404765 0,-1.6263523 1.314124,-2.9404764 2.940477,-2.9404764 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.15384626;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans" />
850<path transform="matrix(0.87028524,0,0,0.80812198,4.9230797,-1.8942386)" d="m 41.45413,-7.555495 c 0,1.366835 -1.02889,2.474874 -2.29809,2.474874 -1.26921,0 -2.2981,-1.108039 -2.2981,-2.474874 0,-1.366835 1.02889,-2.474875 2.2981,-2.474875 C 40.42524,-10.03037 41.45413,-8.92233 41.45413,-7.555495 Z" sodipodi:ry="2.4748738" sodipodi:rx="2.2980971" sodipodi:cy="-7.5554948" sodipodi:cx="39.156036" id="path14494" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />850<path transform="matrix(0.87028524,0,0,0.80812198,4.9230797,-1.8942386)" d="m 41.45413,-7.555495 c 0,1.366835 -1.02889,2.474874 -2.29809,2.474874 -1.26921,0 -2.2981,-1.108039 -2.2981,-2.474874 0,-1.366835 1.02889,-2.474875 2.2981,-2.474875 1.2692,0 2.29809,1.10804 2.29809,2.474875 z" sodipodi:ry="2.4748738" sodipodi:rx="2.2980971" sodipodi:cy="-7.5554948" sodipodi:cx="39.156036" id="path14494" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
851<path transform="matrix(0.72180426,0,0,0.8,13.240611,-2)" d="m 49.54167,-7.5 c 0,1.380712 -1.24054,2.5 -2.77083,2.5 C 45.24055,-5 44,-6.119288 44,-7.5 44,-8.880712 45.24055,-10 46.77084,-10 48.30113,-10 49.54167,-8.880712 49.54167,-7.5 Z" sodipodi:ry="2.5" sodipodi:rx="2.7708344" sodipodi:cy="-7.5" sodipodi:cx="46.770836" id="path14496" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />851<path transform="matrix(0.72180426,0,0,0.8,13.240611,-2)" d="m 49.54167,-7.5 c 0,1.380712 -1.24054,2.5 -2.77083,2.5 C 45.24055,-5 44,-6.119288 44,-7.5 c 0,-1.380712 1.24055,-2.5 2.77084,-2.5 1.53029,0 2.77083,1.119288 2.77083,2.5 z" sodipodi:ry="2.5" sodipodi:rx="2.7708344" sodipodi:cy="-7.5" sodipodi:cx="46.770836" id="path14496" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
852</g>852</g>
853</g>853</g>
854</g>854</g>
@@ -1195,7 +1195,7 @@
1195<g id="object-tweak-push" inkscape:label="#g15982">1195<g id="object-tweak-push" inkscape:label="#g15982">
1196<rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4991" width="16" height="16" x="255" y="687.36218" />1196<rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4991" width="16" height="16" x="255" y="687.36218" />
1197<g id="g5135" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="translate(-116.8263,551.36338)">1197<g id="g5135" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="translate(-116.8263,551.36338)">
1198<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5011" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735790999999999;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" />1198<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5011" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735790999999999;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" />
1199<use xlink:href="#path5011" transform="translate(4.825002e-8,2.41142)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5085" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />1199<use xlink:href="#path5011" transform="translate(4.825002e-8,2.41142)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5085" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />
1200<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0067742,5.089253)" id="use5087" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />1200<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0067742,5.089253)" id="use5087" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />
1201<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0027824,7.946541)" id="use5091" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />1201<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0027824,7.946541)" id="use5091" style="fill:url(#linearGradient19282);stroke:none;stroke-width:0.27735790999999999;fill-opacity:1" width="1250" height="1250" />
@@ -1230,7 +1230,7 @@
1230<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.0383,9.082095)" id="use5126" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />1230<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.0383,9.082095)" id="use5126" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
1231<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090" transform="translate(10.38143,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />1231<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090" transform="translate(10.38143,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
1232<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,10.40446)" id="use5132" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />1232<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,10.40446)" id="use5132" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
1233<path transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path5084" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />1233<path transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path5084" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
1234<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.706381,0.9318868)" xlink:href="#path5084" />1234<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.706381,0.9318868)" xlink:href="#path5084" />
1235<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5092" transform="translate(2.953795,0.8543842)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />1235<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5092" transform="translate(2.953795,0.8543842)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
1236<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5094" transform="translate(11.81518,0)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />1236<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5094" transform="translate(11.81518,0)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
@@ -1253,7 +1253,7 @@
1253</g>1253</g>
1254<g id="g16249">1254<g id="g16249">
1255<g inkscape:label="#g5082-9" transform="translate(-116.79862,590.73072)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="object-tweak-randomize">1255<g inkscape:label="#g5082-9" transform="translate(-116.79862,590.73072)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="object-tweak-randomize">
1256<path transform="matrix(1.20571,0,0,1.20571,-78.426537,-27.790612)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path5084-3" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />1256<path transform="matrix(1.20571,0,0,1.20571,-78.426537,-27.790612)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path5084-3" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
1257<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086-7" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.561625,0.49145)" xlink:href="#path5084-3" />1257<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086-7" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.561625,0.49145)" xlink:href="#path5084-3" />
1258<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5088-6" transform="translate(11.84313,2.65475)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />1258<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5088-6" transform="translate(11.84313,2.65475)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
1259<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090-6" transform="translate(11.465,6.015863)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />1259<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090-6" transform="translate(11.465,6.015863)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
@@ -1282,7 +1282,7 @@
1282<rect y="727.36218" x="255" height="15.999997" width="16" id="rect16247" style="opacity:0.29999999999999999;fill:none;fill-opacity:1;stroke:none" />1282<rect y="727.36218" x="255" height="15.999997" width="16" id="rect16247" style="opacity:0.29999999999999999;fill:none;fill-opacity:1;stroke:none" />
1283</g>1283</g>
1284<g id="object-tweak-shrink" inkscape:label="#g17007">1284<g id="object-tweak-shrink" inkscape:label="#g17007">
1285<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5084-2" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.3307731,0,0,1.3042956,-242.68549,568.84293)" />1285<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5084-2" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.3307731,0,0,1.3042956,-242.68549,568.84293)" />
1286<use xlink:href="#path5084-2" transform="matrix(0.9860759,0,0,0.9860759,13.351987,10.42661)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />1286<use xlink:href="#path5084-2" transform="matrix(0.9860759,0,0,0.9860759,13.351987,10.42661)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
1287<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9791266,0,0,0.9791266,18.394269,18.905142)" id="use5088-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />1287<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9791266,0,0,0.9791266,18.394269,18.905142)" id="use5088-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
1288<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9025255,0,0,0.9025255,38.040921,79.539899)" id="use5090-1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />1288<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9025255,0,0,0.9025255,38.040921,79.539899)" id="use5090-1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
@@ -1344,7 +1344,7 @@
1344<g id="object-tweak-duplicate" inkscape:label="#g17291">1344<g id="object-tweak-duplicate" inkscape:label="#g17291">
1345<rect inkscape:label="#rect5080-7" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="tweak_moreless_mode" width="16" height="16" x="255" y="787.36218" />1345<rect inkscape:label="#rect5080-7" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="tweak_moreless_mode" width="16" height="16" x="255" y="787.36218" />
1346<path inkscape:connector-curvature="0" id="use5685" d="m 260.40625,788.36218 c 0.12731,1.33115 1.22924,2.375 2.59375,2.375 1.36451,0 2.46644,-1.04385 2.59375,-2.375 l -5.1875,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />1346<path inkscape:connector-curvature="0" id="use5685" d="m 260.40625,788.36218 c 0.12731,1.33115 1.22924,2.375 2.59375,2.375 1.36451,0 2.46644,-1.04385 2.59375,-2.375 l -5.1875,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
1347<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use5687" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.2020973,0,0,2.1623495,-563.99367,496.4009)" />1347<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use5687" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.2020973,0,0,2.1623495,-563.99367,496.4009)" />
1348<path inkscape:connector-curvature="0" id="use5828" d="m 263,799.58093 c -1.45162,0 -2.625,1.20463 -2.625,2.65625 0,0.0447 -0.002,0.0809 0,0.125 l 5.25,0 c 0.002,-0.0446 0,-0.0798 0,-0.125 0,-1.45162 -1.17338,-2.65625 -2.625,-2.65625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />1348<path inkscape:connector-curvature="0" id="use5828" d="m 263,799.58093 c -1.45162,0 -2.625,1.20463 -2.625,2.65625 0,0.0447 -0.002,0.0809 0,0.125 l 5.25,0 c 0.002,-0.0446 0,-0.0798 0,-0.125 0,-1.45162 -1.17338,-2.65625 -2.625,-2.65625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
1349<path inkscape:connector-curvature="0" id="path5885" d="m 270,792.54968 c -1.4208,0.0334 -2.5625,1.19616 -2.5625,2.625 0,1.42884 1.1417,2.59158 2.5625,2.625 l 0,-5.25 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />1349<path inkscape:connector-curvature="0" id="path5885" d="m 270,792.54968 c -1.4208,0.0334 -2.5625,1.19616 -2.5625,2.625 0,1.42884 1.1417,2.59158 2.5625,2.625 l 0,-5.25 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
1350<path inkscape:connector-curvature="0" id="path5889" d="m 256,792.54968 0,5.25 c 1.42252,-0.0335 2.5625,-1.19443 2.5625,-2.625 0,-1.43035 -1.14028,-2.5912 -2.5625,-2.625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />1350<path inkscape:connector-curvature="0" id="path5889" d="m 256,792.54968 0,5.25 c 1.42252,-0.0335 2.5625,-1.19443 2.5625,-2.625 0,-1.43035 -1.14028,-2.5912 -2.5625,-2.625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
@@ -1352,39 +1352,39 @@
1352<path inkscape:connector-curvature="0" id="path5895" d="m 256,788.36218 0,2.375 c 1.33849,-0.0318 2.40769,-1.06152 2.53125,-2.375 l -2.53125,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />1352<path inkscape:connector-curvature="0" id="path5895" d="m 256,788.36218 0,2.375 c 1.33849,-0.0318 2.40769,-1.06152 2.53125,-2.375 l -2.53125,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
1353<path inkscape:connector-curvature="0" id="path5897" d="m 270,799.61218 c -1.4205,0.0337 -2.5625,1.19638 -2.5625,2.625 0,0.0414 -0.002,0.084 0,0.125 l 2.5625,0 0,-2.75 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />1353<path inkscape:connector-curvature="0" id="path5897" d="m 270,799.61218 c -1.4205,0.0337 -2.5625,1.19638 -2.5625,2.625 0,0.0414 -0.002,0.084 0,0.125 l 2.5625,0 0,-2.75 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
1354<path inkscape:connector-curvature="0" id="path5899" d="m 256,799.58093 0,2.78125 2.5625,0 c 0.002,-0.0446 0,-0.0798 0,-0.125 0,-1.43056 -1.14008,-2.62201 -2.5625,-2.65625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />1354<path inkscape:connector-curvature="0" id="path5899" d="m 256,799.58093 0,2.78125 2.5625,0 c 0.002,-0.0446 0,-0.0798 0,-0.125 0,-1.43056 -1.14008,-2.62201 -2.5625,-2.65625 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" />
1355<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5911" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.0869437,0,0,2.0869437,-519.12064,507.91517)" />1355<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5911" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.0869437,0,0,2.0869437,-519.12064,507.91517)" />
1356</g>1356</g>
1357<g id="object-tweak-blur" inkscape:label="#g18302">1357<g id="object-tweak-blur" inkscape:label="#g18302">
1358<path transform="matrix(1.20571,0,0,1.20571,-195.22344,642.99262)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path7657" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />1358<path transform="matrix(1.20571,0,0,1.20571,-195.22344,642.99262)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path7657" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
1359<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7660" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.93596932,0,0,0.93596932,-85.183574,680.21213)" />1359<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7660" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.93596932,0,0,0.93596932,-85.183574,680.21213)" />
1360<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7662" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.95569617,0,0,0.95569617,-89.629494,680.51744)" />1360<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7662" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.95569617,0,0,0.95569617,-89.629494,680.51744)" />
1361<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7664" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.088184,0,0,1.088184,-139.32498,665.26382)" />1361<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7664" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.088184,0,0,1.088184,-139.32498,665.26382)" />
1362<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7666" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.85164475,0,0,0.85164475,-59.461916,691.84727)" />1362<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7666" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.85164475,0,0,0.85164475,-59.461916,691.84727)" />
1363<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7668" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-183.40826,642.99262)" />1363<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7668" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-183.40826,642.99262)" />
1364<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7670" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.093412,0,0,1.093412,-153.10114,664.54246)" />1364<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7670" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.093412,0,0,1.093412,-153.10114,664.54246)" />
1365<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7672" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.93202132,0,0,0.93202132,-92.564554,689.83883)" />1365<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7672" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.93202132,0,0,0.93202132,-92.564554,689.83883)" />
1366<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7674" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-154.06152,655.96126)" />1366<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7674" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-154.06152,655.96126)" />
1367<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7676" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.95698217,0,0,0.95698217,-101.92698,680.34002)" />1367<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7676" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.95698217,0,0,0.95698217,-101.92698,680.34002)" />
1368<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7696" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.99499803,0,0,0.99499803,-107.32534,684.1765)" />1368<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7696" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.99499803,0,0,0.99499803,-107.32534,684.1765)" />
1369<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7698" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.98523203,0,0,0.98523203,-100.70816,682.49677)" />1369<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7698" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.98523203,0,0,0.98523203,-100.70816,682.49677)" />
1370<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7700" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-195.22344,655.10208)" />1370<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7700" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-195.22344,655.10208)" />
1371<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7702" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.94043332,0,0,0.94043332,-92.766074,691.70543)" />1371<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7702" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.94043332,0,0,0.94043332,-92.766074,691.70543)" />
1372<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7704" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.121575,0,0,1.121575,-157.75711,666.71126)" />1372<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7704" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.121575,0,0,1.121575,-157.75711,666.71126)" />
1373<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7706" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-183.40826,655.10208)" />1373<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7706" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-183.40826,655.10208)" />
1374<path transform="matrix(0,0,0,0,257.93883,809.12291)" d="m 250,293 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 C 249.5523,292 250,292.4477 250,293 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="293" sodipodi:cx="249" id="path18244" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />1374<path transform="matrix(0,0,0,0,257.93883,809.12291)" d="m 250,293 c 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 0.5523,0 1,0.4477 1,1 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="293" sodipodi:cx="249" id="path18244" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
1375<path transform="matrix(1.188915,0,0,1.188915,-185.8816,648.4478)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" id="path18274" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />1375<path transform="matrix(1.188915,0,0,1.188915,-185.8816,648.4478)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" id="path18274" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
1376<path transform="matrix(0.78686415,0,0,0.78686415,-32.120872,703.92362)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18276" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />1376<path transform="matrix(0.78686415,0,0,0.78686415,-32.120872,703.92362)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18276" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
1377<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18278" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-180.00377,648.40361)" />1377<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18278" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-180.00377,648.40361)" />
1378<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18280" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.76410089,0,0,0.76410089,-26.53634,710.06454)" />1378<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18280" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0.76410089,0,0,0.76410089,-26.53634,710.06454)" />
1379<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18282" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-153.97313,662.09905)" />1379<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18282" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-153.97313,662.09905)" />
1380<path transform="matrix(0.73911182,0,0,0.73911182,-11.285259,713.4684)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18284" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />1380<path transform="matrix(0.73911182,0,0,0.73911182,-11.285259,713.4684)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18284" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
1381<path transform="matrix(1.188915,0,0,1.188915,-185.8816,654.4478)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" id="path18286" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />1381<path transform="matrix(1.188915,0,0,1.188915,-185.8816,654.4478)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" id="path18286" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
1382<path transform="matrix(0.71189696,0,0,0.71189696,-4.0011204,720.26775)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18288" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />1382<path transform="matrix(0.71189696,0,0,0.71189696,-4.0011204,720.26775)" sodipodi:type="arc" style="opacity:0.3;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path18288" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" />
1383<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18290" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-180.00377,654.40361)" />1383<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 0.6141,0 1.1119,0.4978 1.1119,1.1119 z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path18290" style="opacity:0.3;color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:0.27735791;stroke-opacity:1;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-180.00377,654.40361)" />
1384<path transform="matrix(3.2413793,0,0,2.6666667,-552.88963,22.622911)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 C 250.9161,295.9687 251,296.0737 251,296.2031 Z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18292" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />1384<path transform="matrix(3.2413793,0,0,2.6666667,-552.88963,22.622911)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 0.1036,0 0.1875,0.105 0.1875,0.2344 z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18292" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
1385<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path18294" sodipodi:cx="250.8125" sodipodi:cy="296.20312" sodipodi:rx="0.1875" sodipodi:ry="0.234375" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 C 250.9161,295.9687 251,296.0737 251,296.2031 Z" transform="matrix(3.2413793,0,0,2.6666667,-552.95213,28.591661)" />1385<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path18294" sodipodi:cx="250.8125" sodipodi:cy="296.20312" sodipodi:rx="0.1875" sodipodi:ry="0.234375" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 0.1036,0 0.1875,0.105 0.1875,0.2344 z" transform="matrix(3.2413793,0,0,2.6666667,-552.95213,28.591661)" />
1386<path transform="matrix(3.2413793,0,0,2.6666667,-547.04588,22.560411)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 C 250.9161,295.9687 251,296.0737 251,296.2031 Z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18296" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />1386<path transform="matrix(3.2413793,0,0,2.6666667,-547.04588,22.560411)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 0.1036,0 0.1875,0.105 0.1875,0.2344 z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18296" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
1387<path transform="matrix(3.2413793,0,0,2.6666667,-547.04588,28.622911)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 C 250.9161,295.9687 251,296.0737 251,296.2031 Z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18298" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />1387<path transform="matrix(3.2413793,0,0,2.6666667,-547.04588,28.622911)" d="m 251,296.2031 c 0,0.1295 -0.084,0.2344 -0.1875,0.2344 -0.1036,0 -0.1875,-0.1049 -0.1875,-0.2344 0,-0.1294 0.084,-0.2344 0.1875,-0.2344 0.1036,0 0.1875,0.105 0.1875,0.2344 z" sodipodi:ry="0.234375" sodipodi:rx="0.1875" sodipodi:cy="296.20312" sodipodi:cx="250.8125" id="path18298" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
1388<rect rx="0.9999907" ry="0" y="807.36218" x="255" height="15.999997" width="16" id="rect18300" style="fill:none;fill-opacity:1;stroke:none" />1388<rect rx="0.9999907" ry="0" y="807.36218" x="255" height="15.999997" width="16" id="rect18300" style="fill:none;fill-opacity:1;stroke:none" />
1389</g>1389</g>
1390<g id="tool-pointer" inkscape:label="#draw_select">1390<g id="tool-pointer" inkscape:label="#draw_select">
@@ -1650,16 +1650,16 @@
1650<path sodipodi:nodetypes="ccccc" id="path30254" d="m 329,1027.3622 0,-1.1429 c 0,-1.1428 -2,-1.1428 -2,0 l 0,1.1429 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />1650<path sodipodi:nodetypes="ccccc" id="path30254" d="m 329,1027.3622 0,-1.1429 c 0,-1.1428 -2,-1.1428 -2,0 l 0,1.1429 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
1651<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 332,1032.3622 -1,-1 -6,0 -1,1 0,3.9996 c 0,0 2,2.0004 8,2.0004 z" id="path30256" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />1651<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 332,1032.3622 -1,-1 -6,0 -1,1 0,3.9996 c 0,0 2,2.0004 8,2.0004 z" id="path30256" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
1652<path sodipodi:nodetypes="ccccc" id="path30258" d="m 331,1030.3622 -1,-2 -3.99999,0 -1.00001,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />1652<path sodipodi:nodetypes="ccccc" id="path30258" d="m 331,1030.3622 -1,-2 -3.99999,0 -1.00001,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
1653<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path30260" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.29048125,0,0,0.29048056,264.88859,876.54905)" />1653<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path30260" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.29048125,0,0,0.29048056,264.88859,876.54905)" />
1654<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30268" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.4232259,0,0,0.42322492,236.56022,809.01573)" />1654<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30268" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.4232259,0,0,0.42322492,236.56022,809.01573)" />
1655<path transform="matrix(0.44710501,0,0,0.42322492,231.56052,806.05824)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30270" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />1655<path transform="matrix(0.44710501,0,0,0.42322492,231.56052,806.05824)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30270" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
1656<path transform="matrix(0.63535924,0,0,0.63535772,191.19767,699.65607)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30274" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />1656<path transform="matrix(0.63535924,0,0,0.63535772,191.19767,699.65607)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30274" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
1657<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30276" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.63535924,0,0,0.63535772,191.12575,695.52348)" />1657<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30276" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.63535924,0,0,0.63535772,191.12575,695.52348)" />
1658<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30278" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.63535924,0,0,0.63535772,190.28606,697.87704)" />1658<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30278" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.63535924,0,0,0.63535772,190.28606,697.87704)" />
1659<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30280" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(1.072959,0,0,1.069944,98.242372,475.7339)" />1659<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30280" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(1.072959,0,0,1.069944,98.242372,475.7339)" />
1660<path transform="matrix(1.0806383,0,0,1.0672356,96.900477,471.15992)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30282" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />1660<path transform="matrix(1.0806383,0,0,1.0672356,96.900477,471.15992)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30282" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
1661<path transform="matrix(1.0806446,0,0,1.1320461,95.750111,440.43715)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30284" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />1661<path transform="matrix(1.0806446,0,0,1.1320461,95.750111,440.43715)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="use30284" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" />
1662<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30294" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.53984281,0,0,0.53984151,212.00749,747.35054)" />1662<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use30294" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.53984281,0,0,0.53984151,212.00749,747.35054)" />
1663</g>1663</g>
1664<g id="tool-spray" inkscape:label="#g30432">1664<g id="tool-spray" inkscape:label="#g30432">
1665<path id="path5769" d="m 285,1022.3622 24,0 0,24 -24,0 0,-24 z" style="fill:none;stroke:none" inkscape:connector-curvature="0" />1665<path id="path5769" d="m 285,1022.3622 24,0 0,24 -24,0 0,-24 z" style="fill:none;stroke:none" inkscape:connector-curvature="0" />
@@ -1667,12 +1667,12 @@
1667<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315-8" d="M 306.95581,1035.2461 306,1034.3622 l -9,0 -0.97119,1.4125 -0.0288,6.5875 c 2.89515,1.8232 3.73482,4.5745 11,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />1667<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315-8" d="M 306.95581,1035.2461 306,1034.3622 l -9,0 -0.97119,1.4125 -0.0288,6.5875 c 2.89515,1.8232 3.73482,4.5745 11,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
1668<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 306,1033.3622 -2,-3 -5,0 -2,3 z" id="path5211-1" sodipodi:nodetypes="ccccc" />1668<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 306,1033.3622 -2,-3 -5,0 -2,3 z" id="path5211-1" sodipodi:nodetypes="ccccc" />
1669<g id="g30296" transform="translate(-0.08294714,-0.72362013)">1669<g id="g30296" transform="translate(-0.08294714,-0.72362013)">
1670<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path23475" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.4357219,0,0,0.4357219,206.83288,803.64194)" />1670<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path23475" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.4357219,0,0,0.4357219,206.83288,803.64194)" />
1671<use x="0" y="0" xlink:href="#path23475" id="use23477" transform="matrix(1.0586461,0,0,1.0586461,-18.174531,-59.248658)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />1671<use x="0" y="0" xlink:href="#path23475" id="use23477" transform="matrix(1.0586461,0,0,1.0586461,-18.174531,-59.248658)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
1672<use x="0" y="0" xlink:href="#use23477" id="use23479" transform="translate(0,-2.2081683)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />1672<use x="0" y="0" xlink:href="#use23477" id="use23479" transform="translate(0,-2.2081683)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
1673<use x="0" y="0" xlink:href="#use23477" id="use23483" transform="matrix(1.3762691,0,0,1.3762691,-112.79388,-386.94167)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />1673<use x="0" y="0" xlink:href="#use23477" id="use23483" transform="matrix(1.3762691,0,0,1.3762691,-112.79388,-386.94167)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
1674<use x="0" y="0" xlink:href="#use23479" id="use23485" transform="matrix(1.3762691,0,0,1.3762691,-113.12569,-387.87483)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />1674<use x="0" y="0" xlink:href="#use23479" id="use23485" transform="matrix(1.3762691,0,0,1.3762691,-113.12569,-387.87483)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
1675<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use23487" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" transform="matrix(0.63483893,0,0,0.63483893,162.58913,700.41531)" />1675<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.22950418;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="use23487" sodipodi:cx="206.58955" sodipodi:cy="518.42188" sodipodi:rx="0.92537314" sodipodi:ry="0.92537314" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 0.511,0 0.9253,0.4143 0.9253,0.9254 z" transform="matrix(0.63483893,0,0,0.63483893,162.58913,700.41531)" />
1676<use x="0" y="0" xlink:href="#use23483" id="use23489" transform="matrix(1.5012295,0,0,1.5012295,-149.6645,-516.0387)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />1676<use x="0" y="0" xlink:href="#use23483" id="use23489" transform="matrix(1.5012295,0,0,1.5012295,-149.6645,-516.0387)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
1677<use x="0" y="0" xlink:href="#use23485" id="use23491" transform="matrix(1.5012295,0,0,1.5012295,-149.78926,-515.96508)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />1677<use x="0" y="0" xlink:href="#use23485" id="use23491" transform="matrix(1.5012295,0,0,1.5012295,-149.78926,-515.96508)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
1678<use x="0" y="0" xlink:href="#use23487" id="use23493" transform="matrix(1.5012295,0,0,1.5012295,-149.54212,-516.03065)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />1678<use x="0" y="0" xlink:href="#use23487" id="use23493" transform="matrix(1.5012295,0,0,1.5012295,-149.54212,-516.03065)" width="744.09448" height="1052.3622" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
@@ -1893,7 +1893,7 @@
1893</g>1893</g>
1894<g id="draw-ellipse-segment" inkscape:label="#circle_closed_arc">1894<g id="draw-ellipse-segment" inkscape:label="#circle_closed_arc">
1895<rect style="fill:none;stroke:none" id="rect4316" width="16" height="16" x="379" y="651.36218" />1895<rect style="fill:none;stroke:none" id="rect4316" width="16" height="16" x="379" y="651.36218" />
1896<path transform="translate(-121,501.36218)" d="m 514,158 c 0,3.3137 -2.6863,6 -6,6 -3.3137,0 -6,-2.6863 -6,-6 0,-2.1436 1.1436,-4.1244 3,-5.1962 L 508,158 Z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path4318" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.50000000000000000;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="4.18879" />1896<path transform="translate(-121,501.36218)" d="m 514,158 c 0,3.3137 -2.6863,6 -6,6 -3.3137,0 -6,-2.6863 -6,-6 0,-2.1436 1.1436,-4.1244 3,-5.1962 L 508,158 z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path4318" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.50000000000000000;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="4.18879" />
1897</g>1897</g>
1898<g id="draw-ellipse-arc" inkscape:label="#circle_open_arc">1898<g id="draw-ellipse-arc" inkscape:label="#circle_open_arc">
1899<rect y="651.36218" x="409" height="16" width="16" id="rect19892" style="fill:none;stroke:none" />1899<rect y="651.36218" x="409" height="16" width="16" id="rect19892" style="fill:none;stroke:none" />
@@ -1902,12 +1902,12 @@
1902<g id="g19923" inkscape:label="#circle_reset">1902<g id="g19923" inkscape:label="#circle_reset">
1903<rect style="fill:none;stroke:none" id="rect19849" width="16" height="16" x="349" y="651.36218" />1903<rect style="fill:none;stroke:none" id="rect19849" width="16" height="16" x="349" y="651.36218" />
1904<path id="path19864" transform="translate(0,512.36218)" d="M 357 141 C 353.68629 141 351 143.68629 351 147 C 351 150.31371 353.68629 153 357 153 C 359.62335 153 361.84089 151.3144 362.65625 148.96875 C 362.06746 148.86438 361.51775 148.50813 361.21875 147.9375 C 360.70618 146.95929 361.08425 145.7313 362.0625 145.21875 C 362.26302 145.11369 362.47535 145.06399 362.6875 145.03125 C 362.34107 144.02883 361.72098 143.15012 360.9375 142.46875 C 360.80611 143.00759 360.46739 143.50361 359.9375 143.78125 C 358.95925 144.29382 357.73131 143.91576 357.21875 142.9375 C 356.88747 142.30523 356.94702 141.57459 357.28125 141 C 357.18932 140.99582 357.09297 141 357 141 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />1904<path id="path19864" transform="translate(0,512.36218)" d="M 357 141 C 353.68629 141 351 143.68629 351 147 C 351 150.31371 353.68629 153 357 153 C 359.62335 153 361.84089 151.3144 362.65625 148.96875 C 362.06746 148.86438 361.51775 148.50813 361.21875 147.9375 C 360.70618 146.95929 361.08425 145.7313 362.0625 145.21875 C 362.26302 145.11369 362.47535 145.06399 362.6875 145.03125 C 362.34107 144.02883 361.72098 143.15012 360.9375 142.46875 C 360.80611 143.00759 360.46739 143.50361 359.9375 143.78125 C 358.95925 144.29382 357.73131 143.91576 357.21875 142.9375 C 356.88747 142.30523 356.94702 141.57459 357.28125 141 C 357.18932 140.99582 357.09297 141 357 141 z " style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
1905<path sodipodi:end="12.060928" sodipodi:start="5.8005538" transform="translate(0,512.36218)" d="m 359.8858,141.5359 c 0.2563,0.4892 0.067,1.0936 -0.4217,1.3499 -0.4892,0.2563 -1.0936,0.068 -1.3499,-0.4217 -0.2563,-0.4892 -0.067,-1.0936 0.4217,-1.3499 0.4813,-0.2522 1.076,-0.074 1.3391,0.4016 L 359,142 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="142" sodipodi:cx="359" id="path19915" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />1905<path sodipodi:end="12.060928" sodipodi:start="5.8005538" transform="translate(0,512.36218)" d="m 359.8858,141.5359 c 0.2563,0.4892 0.067,1.0936 -0.4217,1.3499 -0.4892,0.2563 -1.0936,0.068 -1.3499,-0.4217 -0.2563,-0.4892 -0.067,-1.0936 0.4217,-1.3499 0.4813,-0.2522 1.076,-0.074 1.3391,0.4016 L 359,142 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="142" sodipodi:cx="359" id="path19915" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
1906<path sodipodi:end="12.060928" sodipodi:start="5.8005538" transform="translate(0,512.36218)" d="m 363.8858,146.5359 c 0.2563,0.4892 0.067,1.0936 -0.4217,1.3499 -0.4892,0.2563 -1.0936,0.068 -1.3499,-0.4217 -0.2563,-0.4892 -0.067,-1.0936 0.4217,-1.3499 0.4813,-0.2522 1.076,-0.074 1.3391,0.4016 L 363,147 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="147" sodipodi:cx="363" id="path19917" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />1906<path sodipodi:end="12.060928" sodipodi:start="5.8005538" transform="translate(0,512.36218)" d="m 363.8858,146.5359 c 0.2563,0.4892 0.067,1.0936 -0.4217,1.3499 -0.4892,0.2563 -1.0936,0.068 -1.3499,-0.4217 -0.2563,-0.4892 -0.067,-1.0936 0.4217,-1.3499 0.4813,-0.2522 1.076,-0.074 1.3391,0.4016 L 363,147 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="147" sodipodi:cx="363" id="path19917" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
1907</g>1907</g>
1908<g id="draw-star" inkscape:label="#g19984">1908<g id="draw-star" inkscape:label="#g19984">
1909<rect y="682.36218" x="349" height="15.937499" width="15.979193" id="rect19962" style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" />1909<rect y="682.36218" x="349" height="15.937499" width="15.979193" id="rect19962" style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" />
1910<path inkscape:transform-center-y="-0.83250302" inkscape:transform-center-x="0.0097788932" transform="matrix(0.98949965,-0.00310225,0.00325,1.0366248,9.0633833,513.12185)" d="m 356.0625,179.6875 -4.9981,-2.8353 -4.9953,2.8401 1.152,-5.6296 -4.2447,-3.8733 5.7101,-0.644 2.3719,-5.2338 2.377,5.2316 5.7107,0.6385 L 354.9051,174.059 Z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" sodipodi:arg2="1.5703186" sodipodi:arg1="0.94200004" sodipodi:r2="4.0397148" sodipodi:r1="8.5009193" sodipodi:cy="172.8125" sodipodi:cx="351.0625" sodipodi:sides="5" id="path19973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="star" />1910<path inkscape:transform-center-y="-0.83250302" inkscape:transform-center-x="0.0097788932" transform="matrix(0.98949965,-0.00310225,0.00325,1.0366248,9.0633833,513.12185)" d="m 356.0625,179.6875 -4.9981,-2.8353 -4.9953,2.8401 1.152,-5.6296 -4.2447,-3.8733 5.7101,-0.644 2.3719,-5.2338 2.377,5.2316 5.7107,0.6385 -4.241,3.8773 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" sodipodi:arg2="1.5703186" sodipodi:arg1="0.94200004" sodipodi:r2="4.0397148" sodipodi:r1="8.5009193" sodipodi:cy="172.8125" sodipodi:cx="351.0625" sodipodi:sides="5" id="path19973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="star" />
1911</g>1911</g>
1912<g id="draw-polygon" inkscape:label="#g19980">1912<g id="draw-polygon" inkscape:label="#g19980">
1913<rect transform="translate(0,512.36218)" y="170" x="379" height="16" width="16" id="rect19975" style="fill:none;fill-opacity:1;stroke:none" />1913<rect transform="translate(0,512.36218)" y="170" x="379" height="16" width="16" id="rect19975" style="fill:none;fill-opacity:1;stroke:none" />
@@ -2084,7 +2084,7 @@
2084</g>2084</g>
2085<g id="snap-grid-guide-intersections" inkscape:label="#toggle_snap_grid_guide_intersections">2085<g id="snap-grid-guide-intersections" inkscape:label="#toggle_snap_grid_guide_intersections">
2086<rect y="527.36218" x="1009" height="16" width="16" id="rect16604" style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" />2086<rect y="527.36218" x="1009" height="16" width="16" id="rect16604" style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" />
2087<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14285719;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path16610" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 754.6046,31 755.5,31.89543 755.5,33 Z" transform="matrix(1.0625039,0,0,1.0624957,212.90325,499.79982)" />2087<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14285719;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path16610" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 1.1046,0 2,0.89543 2,2 z" transform="matrix(1.0625039,0,0,1.0624957,212.90325,499.79982)" />
2088<rect ry="0.5" transform="translate(0,512.36218)" y="22" x="1009" height="1" width="16" id="rect16616" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />2088<rect ry="0.5" transform="translate(0,512.36218)" y="22" x="1009" height="1" width="16" id="rect16616" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
2089<rect rx="0.5" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16618" width="16" height="1" x="527.36218" y="-1014" transform="matrix(0,1,-1,0,0,0)" ry="0.5" />2089<rect rx="0.5" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16618" width="16" height="1" x="527.36218" y="-1014" transform="matrix(0,1,-1,0,0,0)" ry="0.5" />
2090</g>2090</g>
@@ -2104,13 +2104,13 @@
2104<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16760" width="4" height="5" x="625" y="566.36218" />2104<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16760" width="4" height="5" x="625" y="566.36218" />
2105<rect y="569.36218" x="630" height="1" width="2" id="rect16762" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />2105<rect y="569.36218" x="630" height="1" width="2" id="rect16762" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
2106<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16764" width="2" height="1" x="622" y="569.36218" />2106<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16764" width="2" height="1" x="622" y="569.36218" />
2107<path transform="matrix(1,0,0,1.0104167,-0.5000034,512.82051)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path16766" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2107<path transform="matrix(1,0,0,1.0104167,-0.5000034,512.82051)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path16766" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2108<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path16770" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" transform="matrix(1,0,0,1.0104167,-12.500003,512.78926)" />2108<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path16770" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" transform="matrix(1,0,0,1.0104167,-12.500003,512.78926)" />
2109</g>2109</g>
2110<g id="node-type-auto-smooth" inkscape:label="#g16811">2110<g id="node-type-auto-smooth" inkscape:label="#g16811">
2111<path id="path16803" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 664.3125,559.28125 a 0.51404389,0.51404389 0 0 0 -0.40625,0.59375 c 0.23335,1.60212 -0.0607,3.74792 -1.125,5.4375 -1.06433,1.68958 -2.84446,2.96875 -5.875,2.96875 -3.034,0 -4.79906,-1.22284 -5.8125,-2.875 -1.01344,-1.65216 -1.22977,-3.76727 -0.96875,-5.375 a 0.52407843,0.52407843 0 1 0 -1.03125,-0.1875 c -0.29775,1.83396 -0.053,4.17337 1.125,6.09375 1.17797,1.92038 3.36126,3.375 6.6875,3.375 3.3297,0 5.52336,-1.49024 6.75,-3.4375 1.22664,-1.94726 1.51793,-4.28543 1.25,-6.125 a 0.51404389,0.51404389 0 0 0 -0.59375,-0.46875 z" inkscape:connector-curvature="0" />2111<path id="path16803" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 664.3125,559.28125 a 0.51404389,0.51404389 0 0 0 -0.40625,0.59375 c 0.23335,1.60212 -0.0607,3.74792 -1.125,5.4375 -1.06433,1.68958 -2.84446,2.96875 -5.875,2.96875 -3.034,0 -4.79906,-1.22284 -5.8125,-2.875 -1.01344,-1.65216 -1.22977,-3.76727 -0.96875,-5.375 a 0.52407843,0.52407843 0 1 0 -1.03125,-0.1875 c -0.29775,1.83396 -0.053,4.17337 1.125,6.09375 1.17797,1.92038 3.36126,3.375 6.6875,3.375 3.3297,0 5.52336,-1.49024 6.75,-3.4375 1.22664,-1.94726 1.51793,-4.28543 1.25,-6.125 a 0.51404389,0.51404389 0 0 0 -0.59375,-0.46875 z" inkscape:connector-curvature="0" />
2112<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect16805" width="16" height="16" x="649" y="558.36218" />2112<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect16805" width="16" height="16" x="649" y="558.36218" />
2113<path transform="matrix(1.5,0,0,1.5,-328.5,482.86218)" d="m 659,57 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 658.1046,55 659,55.89543 659,57 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="57" sodipodi:cx="657" id="path16809" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2113<path transform="matrix(1.5,0,0,1.5,-328.5,482.86218)" d="m 659,57 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 1.1046,0 2,0.89543 2,2 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="57" sodipodi:cx="657" id="path16809" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2114</g>2114</g>
2115<g id="node-segment-curve" inkscape:label="#node_curve">2115<g id="node-segment-curve" inkscape:label="#node_curve">
2116<g id="g16873">2116<g id="g16873">
@@ -2133,7 +2133,7 @@
2133<path inkscape:connector-curvature="0" id="path4641" d="m 753.23405,561.27338 c -2.15093,0.33041 -4.64192,1.58028 -6.6548,3.42404 -2.01287,1.84377 -3.57785,4.32174 -3.57785,7.04045 a 0.57251396,0.61561931 0 1 0 1.14492,0 c 0,-2.20575 1.2973,-4.38295 3.14851,-6.07864 1.8512,-1.69567 4.22609,-2.90805 6.08234,-3.19319 a 0.57251396,0.61561931 0 1 0 -0.14312,-1.19266 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />2133<path inkscape:connector-curvature="0" id="path4641" d="m 753.23405,561.27338 c -2.15093,0.33041 -4.64192,1.58028 -6.6548,3.42404 -2.01287,1.84377 -3.57785,4.32174 -3.57785,7.04045 a 0.57251396,0.61561931 0 1 0 1.14492,0 c 0,-2.20575 1.2973,-4.38295 3.14851,-6.07864 1.8512,-1.69567 4.22609,-2.90805 6.08234,-3.19319 a 0.57251396,0.61561931 0 1 0 -0.14312,-1.19266 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
2134<path inkscape:connector-curvature="0" id="path4638" d="m 743.48254,560.54592 a 0.54998789,0.76843483 0 0 0 -0.48119,0.81638 l 0,9.2203 a 0.54998789,0.76843483 0 1 0 1.09986,0 l 0,-9.2203 a 0.54998789,0.76843483 0 0 0 -0.61867,-0.81638 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />2134<path inkscape:connector-curvature="0" id="path4638" d="m 743.48254,560.54592 a 0.54998789,0.76843483 0 0 0 -0.48119,0.81638 l 0,9.2203 a 0.54998789,0.76843483 0 1 0 1.09986,0 l 0,-9.2203 a 0.54998789,0.76843483 0 0 0 -0.61867,-0.81638 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
2135<rect y="568.36218" x="742" height="3.9999974" width="4" id="rect16999" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />2135<rect y="568.36218" x="742" height="3.9999974" width="4" id="rect16999" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
2136<path transform="matrix(1.0416758,0,0,1.0416667,-30.98601,510.34135)" d="m 745,48.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 744.3284,47 745,47.67157 745,48.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="48.5" sodipodi:cx="743.5" id="path17001" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2136<path transform="matrix(1.0416758,0,0,1.0416667,-30.98601,510.34135)" d="m 745,48.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="48.5" sodipodi:cx="743.5" id="path17001" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2137</g>2137</g>
2138<use transform="translate(768.9613,314.30868)" x="0" y="0" id="use9872" width="1250" height="1250" xlink:href="#g6043" />2138<use transform="translate(768.9613,314.30868)" x="0" y="0" id="use9872" width="1250" height="1250" xlink:href="#g6043" />
2139<use height="1250" width="1250" id="use10185" y="0" x="0" transform="translate(813.9931,374.61038)" xlink:href="#rect10675" />2139<use height="1250" width="1250" id="use10185" y="0" x="0" transform="translate(813.9931,374.61038)" xlink:href="#rect10675" />
@@ -2146,8 +2146,8 @@
2146<rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect9258" width="16" height="16" x="768.9375" y="558.36218" />2146<rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect9258" width="16" height="16" x="768.9375" y="558.36218" />
2147<path transform="translate(0,512.36218)" inkscape:connector-curvature="0" id="path17065" d="m 777.99024,55.054686 0.0527,6.064453 3.90234,-3.164062 z" style="fill:url(#linearGradient19282);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" />2147<path transform="translate(0,512.36218)" inkscape:connector-curvature="0" id="path17065" d="m 777.99024,55.054686 0.0527,6.064453 3.90234,-3.164062 z" style="fill:url(#linearGradient19282);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" />
2148<rect y="567.36218" x="783" height="5.9999976" width="0.94921875" id="rect17067" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />2148<rect y="567.36218" x="783" height="5.9999976" width="0.94921875" id="rect17067" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
2149<path transform="translate(0,512.36218)" d="m 784,48.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 783.3284,47 784,47.67157 784,48.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="48.5" sodipodi:cx="782.5" id="path17075" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2149<path transform="translate(0,512.36218)" d="m 784,48.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="48.5" sodipodi:cx="782.5" id="path17075" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2150<path transform="matrix(1,0,0,1.5,0,481.86218)" d="m 773,60 c 0,0.55228 -0.6716,1 -1.5,1 -0.8284,0 -1.5,-0.44772 -1.5,-1 0,-0.55228 0.6716,-1 1.5,-1 C 772.3284,59 773,59.44772 773,60 Z" sodipodi:ry="1" sodipodi:rx="1.5" sodipodi:cy="60" sodipodi:cx="771.5" id="path17077" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2150<path transform="matrix(1,0,0,1.5,0,481.86218)" d="m 773,60 c 0,0.55228 -0.6716,1 -1.5,1 -0.8284,0 -1.5,-0.44772 -1.5,-1 0,-0.55228 0.6716,-1 1.5,-1 0.8284,0 1.5,0.44772 1.5,1 z" sodipodi:ry="1" sodipodi:rx="1.5" sodipodi:cy="60" sodipodi:cx="771.5" id="path17077" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2151<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path17141" d="m 771.92051,562.57116 c -1.24349,1.86933 -1.27661,4.20671 0.24437,5.61508 1.47922,0.8068 2.95451,0.6486 4.7753,-0.98671 -3.248,0.42633 -4.98993,-1.10298 -5.01967,-4.62837 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />2151<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path17141" d="m 771.92051,562.57116 c -1.24349,1.86933 -1.27661,4.20671 0.24437,5.61508 1.47922,0.8068 2.95451,0.6486 4.7753,-0.98671 -3.248,0.42633 -4.98993,-1.10298 -5.01967,-4.62837 z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
2152<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 777.86091,559.47448 c -1.50986,0.91368 -2.29882,2.50498 -1.66137,3.91829 0.80417,0.98893 1.92136,1.31569 3.77153,0.73258 -2.48515,-0.66596 -3.24257,-2.22728 -2.11016,-4.65087 z" id="path17143" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />2152<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 777.86091,559.47448 c -1.50986,0.91368 -2.29882,2.50498 -1.66137,3.91829 0.80417,0.98893 1.92136,1.31569 3.77153,0.73258 -2.48515,-0.66596 -3.24257,-2.22728 -2.11016,-4.65087 z" id="path17143" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
2153</g>2153</g>
@@ -2166,8 +2166,8 @@
2166<use transform="translate(885.0318,-128.6983)" x="0" y="0" id="use4819" width="1250" height="1250" xlink:href="#rect10675" />2166<use transform="translate(885.0318,-128.6983)" x="0" y="0" id="use4819" width="1250" height="1250" xlink:href="#rect10675" />
2167<use height="1250" width="1250" id="use4821" y="0" x="0" transform="translate(873.0318,-116.6983)" xlink:href="#rect10675" />2167<use height="1250" width="1250" id="use4821" y="0" x="0" transform="translate(873.0318,-116.6983)" xlink:href="#rect10675" />
2168</g>2168</g>
2169<path transform="matrix(1.5,0,0,1.5,-420.5,487.36218)" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 C 842.5523,48 843,48.44772 843,49 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="49" sodipodi:cx="842" id="path17299" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2169<path transform="matrix(1.5,0,0,1.5,-420.5,487.36218)" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="49" sodipodi:cx="842" id="path17299" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2170<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path17301" sodipodi:cx="842" sodipodi:cy="49" sodipodi:rx="1" sodipodi:ry="1" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 C 842.5523,48 843,48.44772 843,49 Z" transform="matrix(1.5,0,0,1.5,-431.5,498.36218)" />2170<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path17301" sodipodi:cx="842" sodipodi:cy="49" sodipodi:rx="1" sodipodi:ry="1" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z" transform="matrix(1.5,0,0,1.5,-431.5,498.36218)" />
2171</g>2171</g>
2172<g id="path-mask-edit" inkscape:label="#g21113">2172<g id="path-mask-edit" inkscape:label="#g21113">
2173<path sodipodi:nodetypes="cscscccccccccccccccc" inkscape:connector-curvature="0" id="path3826" d="m 866,564.36218 0,4.84375 c 0,1.71931 2,3.15625 4.46875,4.1875 2.53125,-1.03125 4.5,-2.19533 4.5,-4.125 l 0,-4.90625 z m 1,2 3,0 0,1 0,1 -2,-1 z m 4,0 3,0 -1,1 -2,1 z m -3,3 5,0 c -2.47487,4.48943 -5,0 -5,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;marker:none;visibility:visible;display:inline;overflow:visible" />2173<path sodipodi:nodetypes="cscscccccccccccccccc" inkscape:connector-curvature="0" id="path3826" d="m 866,564.36218 0,4.84375 c 0,1.71931 2,3.15625 4.46875,4.1875 2.53125,-1.03125 4.5,-2.19533 4.5,-4.125 l 0,-4.90625 z m 1,2 3,0 0,1 0,1 -2,-1 z m 4,0 3,0 -1,1 -2,1 z m -3,3 5,0 c -2.47487,4.48943 -5,0 -5,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000024;marker:none;visibility:visible;display:inline;overflow:visible" />
@@ -2177,8 +2177,8 @@
2177<use xlink:href="#rect10675" height="1250" width="1250" id="use21096" y="0" x="0" transform="translate(885.0318,-128.6983)" />2177<use xlink:href="#rect10675" height="1250" width="1250" id="use21096" y="0" x="0" transform="translate(885.0318,-128.6983)" />
2178<use xlink:href="#rect10675" transform="translate(873.0318,-116.6983)" x="0" y="0" id="use21098" width="1250" height="1250" />2178<use xlink:href="#rect10675" transform="translate(873.0318,-116.6983)" x="0" y="0" id="use21098" width="1250" height="1250" />
2179</g>2179</g>
2180<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path21100" sodipodi:cx="842" sodipodi:cy="49" sodipodi:rx="1" sodipodi:ry="1" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 C 842.5523,48 843,48.44772 843,49 Z" transform="matrix(1.5,0,0,1.5,-391.5,485.36218)" />2180<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path21100" sodipodi:cx="842" sodipodi:cy="49" sodipodi:rx="1" sodipodi:ry="1" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z" transform="matrix(1.5,0,0,1.5,-391.5,485.36218)" />
2181<path transform="matrix(1.5,0,0,1.5,-402.5,496.36218)" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 C 842.5523,48 843,48.44772 843,49 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="49" sodipodi:cx="842" id="path21102" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2181<path transform="matrix(1.5,0,0,1.5,-402.5,496.36218)" d="m 843,49 c 0,0.55228 -0.4477,1 -1,1 -0.5523,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477,-1 1,-1 0.5523,0 1,0.44772 1,1 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="49" sodipodi:cx="842" id="path21102" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2182</g>2182</g>
2183<g id="path-mode-bezier" inkscape:label="#bezier_mode">2183<g id="path-mode-bezier" inkscape:label="#bezier_mode">
2184<rect y="557.36218" x="889" height="15.999998" width="15.999998" id="rect4983" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" />2184<rect y="557.36218" x="889" height="15.999998" width="15.999998" id="rect4983" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" />
@@ -2385,12 +2385,12 @@
2385<path sodipodi:nodetypes="ccccccc" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 409,682.61218 0,12.5 11,5.5 11,-5.5 0,-12.5 -11,4.5 -11,-4.5 z" id="path4908" inkscape:connector-curvature="0" />2385<path sodipodi:nodetypes="ccccccc" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 409,682.61218 0,12.5 11,5.5 11,-5.5 0,-12.5 -11,4.5 -11,-4.5 z" id="path4908" inkscape:connector-curvature="0" />
2386<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 420,678.11218 11,4.5 -11,4.5 -11,-4.5 11,-4.5 z" id="path4912" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />2386<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 420,678.11218 11,4.5 -11,4.5 -11,-4.5 11,-4.5 z" id="path4912" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
2387<path sodipodi:nodetypes="cc" id="path5699" d="m 420,687.11218 0,13.417" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" inkscape:connector-curvature="0" />2387<path sodipodi:nodetypes="cc" id="path5699" d="m 420,687.11218 0,13.417" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" inkscape:connector-curvature="0" />
2388<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" id="use5857" sodipodi:cx="842.25" sodipodi:cy="222.75" sodipodi:rx="0.75" sodipodi:ry="1.25" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 C 842.6642,221.5 843,222.0596 843,222.75 Z" transform="matrix(0,1.6966161,-1.5844045,0,769.88791,-746.36383)" />2388<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" id="use5857" sodipodi:cx="842.25" sodipodi:cy="222.75" sodipodi:rx="0.75" sodipodi:ry="1.25" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 0.4142,0 0.75,0.5596 0.75,1.25 z" transform="matrix(0,1.6966161,-1.5844045,0,769.88791,-746.36383)" />
2389<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" id="use5859" sodipodi:cx="842.25" sodipodi:cy="222.75" sodipodi:rx="0.75" sodipodi:ry="1.25" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 C 842.6642,221.5 843,222.0596 843,222.75 Z" transform="matrix(0,1.6966161,-1.5844045,0,775.9845,-746.33583)" />2389<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" id="use5859" sodipodi:cx="842.25" sodipodi:cy="222.75" sodipodi:rx="0.75" sodipodi:ry="1.25" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 0.4142,0 0.75,0.5596 0.75,1.25 z" transform="matrix(0,1.6966161,-1.5844045,0,775.9845,-746.33583)" />
2390<path transform="matrix(1.0629202,0.0998114,-0.11228815,1.1957887,7.2060752,438.93602)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 413.3284,175 414,175.6716 414,176.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15511" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2390<path transform="matrix(1.0629202,0.0998114,-0.11228815,1.1957887,7.2060752,438.93602)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15511" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2391<path transform="matrix(0.88477373,0.00434439,0.00645582,0.91447867,48.342525,528.12557)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 413.3284,175 414,175.6716 414,176.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15515" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2391<path transform="matrix(0.88477373,0.00434439,0.00645582,0.91447867,48.342525,528.12557)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15515" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2392<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path15519" sodipodi:cx="412.5" sodipodi:cy="176.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 413.3284,175 414,175.6716 414,176.5 Z" transform="matrix(0.9427641,0.00445032,0.00687896,0.93677566,27.036269,528.18063)" />2392<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path15519" sodipodi:cx="412.5" sodipodi:cy="176.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" transform="matrix(0.9427641,0.00445032,0.00687896,0.93677566,27.036269,528.18063)" />
2393<path transform="matrix(0.91156408,0.0043668,0.00665131,0.91919769,34.804857,523.38108)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 C 413.3284,175 414,175.6716 414,176.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15521" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2393<path transform="matrix(0.91156408,0.0043668,0.00665131,0.91919769,34.804857,523.38108)" d="m 414,176.5 c 0,0.8284 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.6716 -1.5,-1.5 0,-0.8284 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.6716 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="176.5" sodipodi:cx="412.5" id="path15521" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2394</g>2394</g>
2395<rect y="682.36218" x="498" height="15.999997" width="16" id="rect15564" style="fill:none;stroke:none" />2395<rect y="682.36218" x="498" height="15.999997" width="16" id="rect15564" style="fill:none;stroke:none" />
2396<path inkscape:connector-curvature="0" id="path15581" d="m 501,685.36218 0,2 6,0 0,2 4,-3 -4,-3 0,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />2396<path inkscape:connector-curvature="0" id="path15581" d="m 501,685.36218 0,2 6,0 0,2 4,-3 -4,-3 0,2 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
@@ -2987,15 +2987,15 @@
2987</g>2987</g>
2988<g id="distribute-graph" inkscape:label="#distribute_graph" transform="translate(0,4.1533082e-4)">2988<g id="distribute-graph" inkscape:label="#distribute_graph" transform="translate(0,4.1533082e-4)">
2989<rect ry="0.97140813" rx="0" y="823.36218" x="1120" height="23.999998" width="24" id="rect19372" style="fill:none;stroke:none" />2989<rect ry="0.97140813" rx="0" y="823.36218" x="1120" height="23.999998" width="24" id="rect19372" style="fill:none;stroke:none" />
2990<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-1,511.36218)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19374" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2990<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-1,511.36218)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19374" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2991<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19376" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" transform="translate(4,505.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />2991<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19376" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" transform="translate(4,505.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
2992<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(13.000204,507.39075)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19378" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2992<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(13.000204,507.39075)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19378" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2993<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19380" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" transform="translate(12,515.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />2993<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19380" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" transform="translate(12,515.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
2994<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(4,517.36218)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19384" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2994<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(4,517.36218)" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19384" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2995<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19387" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1123,320 Z" transform="translate(17,523.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />2995<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19387" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" transform="translate(17,523.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
2996<path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path19391" d="m 1135,835.36218 -8,2 -5,-6 5,-6 9,2 z" inkscape:transform-center-y="-0.17772873" inkscape:transform-center-x="0.46012798" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.02272153000000010;stroke-opacity:1" />2996<path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path19391" d="m 1135,835.36218 -8,2 -5,-6 5,-6 9,2 z" inkscape:transform-center-y="-0.17772873" inkscape:transform-center-x="0.46012798" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.02272153000000010;stroke-opacity:1" />
2997<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path19394" d="m 1135,835.36218 5,8 -8,2 0,0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />2997<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path19394" d="m 1135,835.36218 5,8 -8,2 0,0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
2998<path sodipodi:end="6.2689006" sodipodi:start="0" transform="matrix(0.9886057,0,0,1.3257338,11.909739,403.21855)" d="m 1135,333.5 c 0,0.8284 -0.895,1.5 -2,1.5 -1.105,0 -2,-0.6716 -2,-1.5 0,-0.8284 0.895,-1.5 2,-1.5 1.093,0 1.984,0.6586 2,1.4786 L 1133,333.5 Z" sodipodi:ry="1.5" sodipodi:rx="2" sodipodi:cy="333.5" sodipodi:cx="1133" id="path19396" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />2998<path sodipodi:end="6.2689006" sodipodi:start="0" transform="matrix(0.9886057,0,0,1.3257338,11.909739,403.21855)" d="m 1135,333.5 c 0,0.8284 -0.895,1.5 -2,1.5 -1.105,0 -2,-0.6716 -2,-1.5 0,-0.8284 0.895,-1.5 2,-1.5 1.093,0 1.984,0.6586 2,1.4786 l -2,0.021 z" sodipodi:ry="1.5" sodipodi:rx="2" sodipodi:cy="333.5" sodipodi:cx="1133" id="path19396" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
2999</g>2999</g>
3000<g id="distribute-remove-overlaps" inkscape:label="#g19465" transform="translate(0,4.1533082e-4)">3000<g id="distribute-remove-overlaps" inkscape:label="#g19465" transform="translate(0,4.1533082e-4)">
3001<rect ry="0" y="823.36218" x="1156" height="23.999998" width="22" id="rect19455" style="fill:none;stroke:none" />3001<rect ry="0" y="823.36218" x="1156" height="23.999998" width="22" id="rect19455" style="fill:none;stroke:none" />
@@ -3006,10 +3006,10 @@
3006</g>3006</g>
3007<g id="distribute-graph-directed" inkscape:label="#directed_graph" transform="translate(0,4.1533082e-4)">3007<g id="distribute-graph-directed" inkscape:label="#directed_graph" transform="translate(0,4.1533082e-4)">
3008<rect y="823.36218" x="1192" height="24" width="24" id="rect19472" style="fill:none;stroke:none" />3008<rect y="823.36218" x="1192" height="24" width="24" id="rect19472" style="fill:none;stroke:none" />
3009<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-1,509.36218)" d="m 1199,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1197,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1197" id="path19474" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />3009<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-1,509.36218)" d="m 1199,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1197" id="path19474" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
3010<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(2,509.36218)" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1210,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19476" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />3010<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(2,509.36218)" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19476" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
3011<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19478" sodipodi:cx="1210" sodipodi:cy="316" sodipodi:rx="2" sodipodi:ry="2" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1210,316 Z" transform="translate(-6,518.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />3011<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19478" sodipodi:cx="1210" sodipodi:cy="316" sodipodi:rx="2" sodipodi:ry="2" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" transform="translate(-6,518.36218)" sodipodi:start="0" sodipodi:end="6.2689006" />
3012<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-6,529.36218)" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 L 1210,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19480" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />3012<path sodipodi:end="6.2689006" sodipodi:start="0" transform="translate(-6,529.36218)" d="m 1212,316 c 0,1.1046 -0.895,2 -2,2 -1.105,0 -2,-0.8954 -2,-2 0,-1.1046 0.895,-2 2,-2 1.093,0 1.984,0.8781 2,1.9714 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19480" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
3013<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 1209.7199,826.50425 1.1763,1.22636 -2.2484,2.17805 1.4753,1.44852 -4.1231,0.005 0,0 -0.01,-4.12311 1.4766,1.44305 z" id="path19568" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />3013<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 1209.7199,826.50425 1.1763,1.22636 -2.2484,2.17805 1.4753,1.44852 -4.1231,0.005 0,0 -0.01,-4.12311 1.4766,1.44305 z" id="path19568" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
3014<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 1205,837.36218 -2,0 0,2 -2,0 3,3 0,0 3.0635,-2.9298 -2.0635,-0.0702 z" id="path19570" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />3014<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 1205,837.36218 -2,0 0,2 -2,0 3,3 0,0 3.0635,-2.9298 -2.0635,-0.0702 z" id="path19570" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
3015<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19572" d="m 1198.2801,826.50425 -1.1763,1.22636 2.2484,2.17805 -1.4753,1.44852 4.1231,0.005 0,0 0.01,-4.12311 -1.4766,1.44305 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />3015<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19572" d="m 1198.2801,826.50425 -1.1763,1.22636 2.2484,2.17805 -1.4753,1.44852 4.1231,0.005 0,0 0.01,-4.12311 -1.4766,1.44305 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.70516777000000008;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
@@ -3457,7 +3457,7 @@
3457<g id="reset-default" inkscape:label="#g78883">3457<g id="reset-default" inkscape:label="#g78883">
3458<g inkscape:label="stock-reset" id="g30155" style="display:inline" transform="translate(-46.0002,548.36218)">3458<g inkscape:label="stock-reset" id="g30155" style="display:inline" transform="translate(-46.0002,548.36218)">
3459<rect style="opacity:0.3;fill:none;stroke:none" id="rect30123" width="16" height="16" x="-120" y="182" transform="translate(241.0002,217)" />3459<rect style="opacity:0.3;fill:none;stroke:none" id="rect30123" width="16" height="16" x="-120" y="182" transform="translate(241.0002,217)" />
3460<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;color:#000000;fill-rule:nonzero;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path30125" sodipodi:cx="-117" sodipodi:cy="196" sodipodi:rx="2" sodipodi:ry="2" d="m -115,196 c 0,1.1046 -0.8954,2 -2,2 -1.1046,0 -2,-0.8954 -2,-2 0,-1.1046 0.8954,-2 2,-2 C -115.8954,194 -115,194.8954 -115,196 Z" transform="matrix(1.25,0,0,1.25,271.2502,167.5)" />3460<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;color:#000000;fill-rule:nonzero;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path30125" sodipodi:cx="-117" sodipodi:cy="196" sodipodi:rx="2" sodipodi:ry="2" d="m -115,196 c 0,1.1046 -0.8954,2 -2,2 -1.1046,0 -2,-0.8954 -2,-2 0,-1.1046 0.8954,-2 2,-2 1.1046,0 2,0.8954 2,2 z" transform="matrix(1.25,0,0,1.25,271.2502,167.5)" />
3461<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;color:#000000;fill-rule:nonzero;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="M 125.02328,409.00001 121.0002,405 l 8,0 z" id="path30137" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />3461<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;color:#000000;fill-rule:nonzero;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="M 125.02328,409.00001 121.0002,405 l 8,0 z" id="path30137" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
3462<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans;fill-rule:nonzero" d="m 124.90645,401 c -0.49158,0.0463 -0.90838,0.50624 -0.90625,1 l 0,4 c -0.007,0.52831 0.47163,1.01424 1,1.01424 0.52837,0 1.00747,-0.48593 1,-1.01424 l 0,-3 8,0 0,9 -4,0 c -0.52831,-0.007 -1.01424,0.47163 -1.01424,1 0,0.52837 0.48593,1.00747 1.01424,1 l 5,0 c 0.52358,-5e-5 0.99995,-0.47642 1,-1 l 0,-11 c -5e-5,-0.52358 -0.47642,-0.99995 -1,-1 l -10,0 c -0.0312,-10e-4 -0.0625,-10e-4 -0.0937,0 z" id="path30149" inkscape:connector-curvature="0" sodipodi:nodetypes="cccscccccscccccccc" />3462<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans;fill-rule:nonzero" d="m 124.90645,401 c -0.49158,0.0463 -0.90838,0.50624 -0.90625,1 l 0,4 c -0.007,0.52831 0.47163,1.01424 1,1.01424 0.52837,0 1.00747,-0.48593 1,-1.01424 l 0,-3 8,0 0,9 -4,0 c -0.52831,-0.007 -1.01424,0.47163 -1.01424,1 0,0.52837 0.48593,1.00747 1.01424,1 l 5,0 c 0.52358,-5e-5 0.99995,-0.47642 1,-1 l 0,-11 c -5e-5,-0.52358 -0.47642,-0.99995 -1,-1 l -10,0 c -0.0312,-10e-4 -0.0625,-10e-4 -0.0937,0 z" id="path30149" inkscape:connector-curvature="0" sodipodi:nodetypes="cccscccccscccccccc" />
3463</g>3463</g>
@@ -3542,8 +3542,8 @@
3542<rect transform="scale(1,-1)" y="-514.35583" x="745" height="5" width="4" id="rect22662" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />3542<rect transform="scale(1,-1)" y="-514.35583" x="745" height="5" width="4" id="rect22662" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
3543<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22664" width="2" height="1" x="750" y="-511.3558" />3543<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22664" width="2" height="1" x="750" y="-511.3558" />
3544<rect transform="scale(1,-1)" y="-511.3558" x="742" height="1" width="2" id="rect22666" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />3544<rect transform="scale(1,-1)" y="-511.3558" x="742" height="1" width="2" id="rect22666" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
3545<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22668" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" transform="matrix(1,0,0,-1.0104167,119.5,567.89749)" />3545<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22668" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" transform="matrix(1,0,0,-1.0104167,119.5,567.89749)" />
3546<path transform="matrix(1,0,0,-1.0104167,107.5,567.92874)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path22670" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />3546<path transform="matrix(1,0,0,-1.0104167,107.5,567.92874)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path22670" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
3547</g>3547</g>
3548<g id="snap-nodes-path" inkscape:label="#g26823" transform="translate(0,21)">3548<g id="snap-nodes-path" inkscape:label="#g26823" transform="translate(0,21)">
3549<path inkscape:connector-curvature="0" id="path22693" d="m 784.3125,522.36218 a 0.51404389,0.51211313 0 0 1 -0.40625,-0.59375 c 0.23335,-1.5961 -0.0607,-3.72302 -1.125,-5.40625 -0.63257,-1.00041 -1.53075,-1.84515 -2.78125,-2.375 l 0,-1.125 c 1.65524,0.59433 2.86068,1.6793 3.65625,2.9375 1.22664,1.93994 1.51793,4.26109 1.25,6.09375 a 0.51404389,0.51211313 0 0 1 -0.59375,0.46875 z m -14.71875,-0.125 a 0.52407843,0.52210998 0 0 1 -0.5,-0.4375 c -0.29775,-1.82706 -0.053,-4.14933 1.125,-6.0625 0.79178,-1.28594 2.03929,-2.36999 3.78125,-2.9375 l 0,1.0625 c -1.3469,0.50157 -2.27285,1.37754 -2.90625,2.40625 -1.01344,1.64596 -1.22977,3.74206 -0.96875,5.34375 a 0.52407843,0.52210998 0 0 1 -0.53125,0.625 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />3549<path inkscape:connector-curvature="0" id="path22693" d="m 784.3125,522.36218 a 0.51404389,0.51211313 0 0 1 -0.40625,-0.59375 c 0.23335,-1.5961 -0.0607,-3.72302 -1.125,-5.40625 -0.63257,-1.00041 -1.53075,-1.84515 -2.78125,-2.375 l 0,-1.125 c 1.65524,0.59433 2.86068,1.6793 3.65625,2.9375 1.22664,1.93994 1.51793,4.26109 1.25,6.09375 a 0.51404389,0.51211313 0 0 1 -0.59375,0.46875 z m -14.71875,-0.125 a 0.52407843,0.52210998 0 0 1 -0.5,-0.4375 c -0.29775,-1.82706 -0.053,-4.14933 1.125,-6.0625 0.79178,-1.28594 2.03929,-2.36999 3.78125,-2.9375 l 0,1.0625 c -1.3469,0.50157 -2.27285,1.37754 -2.90625,2.40625 -1.01344,1.64596 -1.22977,3.74206 -0.96875,5.34375 a 0.52407843,0.52210998 0 0 1 -0.53125,0.625 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
@@ -3551,13 +3551,13 @@
3551<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22697" width="4" height="3.9999278" x="775" y="-513.36218" transform="scale(1,-1)" />3551<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22697" width="4" height="3.9999278" x="775" y="-513.36218" transform="scale(1,-1)" />
3552<rect y="-511.36215" x="780" height="1" width="2" id="rect22699" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(1,-1)" />3552<rect y="-511.36215" x="780" height="1" width="2" id="rect22699" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(1,-1)" />
3553<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22701" width="2" height="1" x="772" y="-511.36215" transform="scale(1,-1)" />3553<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22701" width="2" height="1" x="772" y="-511.36215" transform="scale(1,-1)" />
3554<path transform="matrix(1,0,0,-1.0104167,149.5,567.90385)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path22703" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />3554<path transform="matrix(1,0,0,-1.0104167,149.5,567.90385)" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" sodipodi:ry="1.5" sodipodi:rx="1.5" sodipodi:cy="56.5" sodipodi:cx="633.5" id="path22703" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
3555<path sodipodi:type="arc" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22705" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 C 634.3284,55 635,55.67157 635,56.5 Z" transform="matrix(1,0,0,-1.0104167,137.5,567.9351)" />3555<path sodipodi:type="arc" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22705" sodipodi:cx="633.5" sodipodi:cy="56.5" sodipodi:rx="1.5" sodipodi:ry="1.5" d="m 635,56.5 c 0,0.82843 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.6716,-1.5 1.5,-1.5 0.8284,0 1.5,0.67157 1.5,1.5 z" transform="matrix(1,0,0,-1.0104167,137.5,567.9351)" />
3556</g>3556</g>
3557<g id="snap-nodes-smooth" inkscape:label="#g26832" transform="translate(0,21)">3557<g id="snap-nodes-smooth" inkscape:label="#g26832" transform="translate(0,21)">
3558<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 844.3125,522.36218 a 0.51404389,0.51211313 0 0 1 -0.40625,-0.59375 c 0.23335,-1.5961 -0.0607,-3.72302 -1.125,-5.40625 -0.63257,-1.00041 -1.53075,-1.84515 -2.78125,-2.375 l 0,-1.125 c 1.65524,0.59433 2.86068,1.6793 3.65625,2.9375 1.22664,1.93994 1.51793,4.26109 1.25,6.09375 a 0.51404389,0.51211313 0 0 1 -0.59375,0.46875 z m -14.71875,-0.125 a 0.52407843,0.52210998 0 0 1 -0.5,-0.4375 c -0.29775,-1.82706 -0.053,-4.14933 1.125,-6.0625 0.79178,-1.28594 2.03929,-2.36999 3.78125,-2.9375 l 0,1.0625 c -1.3469,0.50157 -2.27285,1.37754 -2.90625,2.40625 -1.01344,1.64596 -1.22977,3.74206 -0.96875,5.34375 a 0.52407843,0.52210998 0 0 1 -0.53125,0.625 z" id="path22717" inkscape:connector-curvature="0" />3558<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.02798498;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 844.3125,522.36218 a 0.51404389,0.51211313 0 0 1 -0.40625,-0.59375 c 0.23335,-1.5961 -0.0607,-3.72302 -1.125,-5.40625 -0.63257,-1.00041 -1.53075,-1.84515 -2.78125,-2.375 l 0,-1.125 c 1.65524,0.59433 2.86068,1.6793 3.65625,2.9375 1.22664,1.93994 1.51793,4.26109 1.25,6.09375 a 0.51404389,0.51211313 0 0 1 -0.59375,0.46875 z m -14.71875,-0.125 a 0.52407843,0.52210998 0 0 1 -0.5,-0.4375 c -0.29775,-1.82706 -0.053,-4.14933 1.125,-6.0625 0.79178,-1.28594 2.03929,-2.36999 3.78125,-2.9375 l 0,1.0625 c -1.3469,0.50157 -2.27285,1.37754 -2.90625,2.40625 -1.01344,1.64596 -1.22977,3.74206 -0.96875,5.34375 a 0.52407843,0.52210998 0 0 1 -0.53125,0.625 z" id="path22717" inkscape:connector-curvature="0" />
3559<rect transform="scale(1,-1)" y="-522.36218" x="829" height="16" width="16" id="rect22719" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" />3559<rect transform="scale(1,-1)" y="-522.36218" x="829" height="16" width="16" id="rect22719" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" />
3560<path transform="matrix(0.8,0,0,0.8,167.8,511.96218)" d="M 839,0.5 C 839,1.880712 837.8807,3 836.5,3 835.1193,3 834,1.880712 834,0.5 834,-0.8807119 835.1193,-2 836.5,-2 837.8807,-2 839,-0.8807119 839,0.5 Z" sodipodi:ry="2.5" sodipodi:rx="2.5" sodipodi:cy="0.5" sodipodi:cx="836.5" id="path22731" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />3560<path transform="matrix(0.8,0,0,0.8,167.8,511.96218)" d="M 839,0.5 C 839,1.880712 837.8807,3 836.5,3 835.1193,3 834,1.880712 834,0.5 c 0,-1.3807119 1.1193,-2.5 2.5,-2.5 1.3807,0 2.5,1.1192881 2.5,2.5 z" sodipodi:ry="2.5" sodipodi:rx="2.5" sodipodi:cy="0.5" sodipodi:cx="836.5" id="path22731" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
3561</g>3561</g>
3562<g id="snap-nodes-midpoint" inkscape:label="#g26837" transform="translate(0,21)">3562<g id="snap-nodes-midpoint" inkscape:label="#g26837" transform="translate(0,21)">
3563<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect22787" width="16" height="15.999997" x="-875" y="-522.42468" transform="scale(-1,-1)" />3563<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect22787" width="16" height="15.999997" x="-875" y="-522.42468" transform="scale(-1,-1)" />
@@ -3567,13 +3567,13 @@
3567<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22809" d="m 865,518.36218 -6,0 3,4 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />3567<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22809" d="m 865,518.36218 -6,0 3,4 z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
3568<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="m 865,510.36218 -6,0 3,-4 z" id="path22811" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />3568<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="m 865,510.36218 -6,0 3,-4 z" id="path22811" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
3569<rect transform="translate(0,512.36218)" y="-6" x="872" height="16" width="1" id="rect22813" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />3569<rect transform="translate(0,512.36218)" y="-6" x="872" height="16" width="1" id="rect22813" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
3570<path transform="translate(0,512.36218)" d="M 875,1.5 C 875,2.880712 873.8807,4 872.5,4 871.1193,4 870,2.880712 870,1.5 870,0.1192881 871.1193,-1 872.5,-1 873.8807,-1 875,0.1192881 875,1.5 Z" sodipodi:ry="2.5" sodipodi:rx="2.5" sodipodi:cy="1.5" sodipodi:cx="872.5" id="path22815" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />3570<path transform="translate(0,512.36218)" d="M 875,1.5 C 875,2.880712 873.8807,4 872.5,4 871.1193,4 870,2.880712 870,1.5 c 0,-1.3807119 1.1193,-2.5 2.5,-2.5 1.3807,0 2.5,1.1192881 2.5,2.5 z" sodipodi:ry="2.5" sodipodi:rx="2.5" sodipodi:cy="1.5" sodipodi:cx="872.5" id="path22815" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
3571</g>3571</g>
3572<g id="snap-nodes-intersection" inkscape:label="#g26847" transform="translate(0,21)">3572<g id="snap-nodes-intersection" inkscape:label="#g26847" transform="translate(0,21)">
3573<rect y="506.36218" x="889" height="16" width="16" id="rect22819" style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" />3573<rect y="506.36218" x="889" height="16" width="16" id="rect22819" style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" />
3574<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 903.90625,506.86104 a 0.50005,0.50005 0 0 0 -0.25,0.15625 l -14,14 a 0.50005,0.50005 0 1 0 0.6875,0.6875 l 14,-14 a 0.50005,0.50005 0 0 0 -0.4375,-0.84375 z" id="path22821" inkscape:connector-curvature="0" />3574<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 903.90625,506.86104 a 0.50005,0.50005 0 0 0 -0.25,0.15625 l -14,14 a 0.50005,0.50005 0 1 0 0.6875,0.6875 l 14,-14 a 0.50005,0.50005 0 0 0 -0.4375,-0.84375 z" id="path22821" inkscape:connector-curvature="0" />
3575<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 904.26952,513.31971 a 0.50005006,0.50005006 0 0 0 -0.037,0.0244 l -14.51876,1.09801 a 0.50005006,0.50005006 0 1 0 0.056,0.96864 l 14.51876,-1.09801 a 0.50005006,0.50005006 0 0 0 -0.0191,-0.99295 z" id="path22823" inkscape:connector-curvature="0" />3575<path style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.00000012;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" d="m 904.26952,513.31971 a 0.50005006,0.50005006 0 0 0 -0.037,0.0244 l -14.51876,1.09801 a 0.50005006,0.50005006 0 1 0 0.056,0.96864 l 14.51876,-1.09801 a 0.50005006,0.50005006 0 0 0 -0.0191,-0.99295 z" id="path22823" inkscape:connector-curvature="0" />
3576<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14285719;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path22825" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 754.6046,31 755.5,31.89543 755.5,33 Z" transform="matrix(1.5000086,0,0,1.4999826,-233.25652,464.86276)" />3576<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14285719;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path22825" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 1.1046,0 2,0.89543 2,2 z" transform="matrix(1.5000086,0,0,1.4999826,-233.25652,464.86276)" />
3577</g>3577</g>
3578<g id="snap-nodes-center" inkscape:label="#g26853" transform="translate(0,21)">3578<g id="snap-nodes-center" inkscape:label="#g26853" transform="translate(0,21)">
3579<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect22833" width="16" height="15.999997" x="-935" y="-522.36224" transform="scale(-1,-1)" />3579<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect22833" width="16" height="15.999997" x="-935" y="-522.36224" transform="scale(-1,-1)" />
@@ -3632,5 +3632,9 @@
3632<path id="symbol-remove-shield" d="m 330.0142,114.1199 c 2.762,-0.781 5.4976,-0.8802 8.1953,0 -0.6623,2.1069 -0.093,4.1052 -0.3615,6.134 -0.2218,1.6719 -1.8714,2.6777 -3.7119,3.5283 -1.5384,-0.8542 -3.4022,-1.5335 -3.7362,-3.5283 C 330.0609,118.2291 330.6095,115.6819 330.0142,114.1199 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />3632<path id="symbol-remove-shield" d="m 330.0142,114.1199 c 2.762,-0.781 5.4976,-0.8802 8.1953,0 -0.6623,2.1069 -0.093,4.1052 -0.3615,6.134 -0.2218,1.6719 -1.8714,2.6777 -3.7119,3.5283 -1.5384,-0.8542 -3.4022,-1.5335 -3.7362,-3.5283 C 330.0609,118.2291 330.6095,115.6819 330.0142,114.1199 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
3633<path is="symbol-remove-arrow" d="m 340.1906,115.0143 0,7.25 L 345.6282,118.6394 Z" id="path3035" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />3633<path is="symbol-remove-arrow" d="m 340.1906,115.0143 0,7.25 L 345.6282,118.6394 Z" id="path3035" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
3634</g>3634</g>
3635<g id="path-mode-bspline" transform="matrix(1.3950659,-1.3663987,1.3663987,1.3950659,-407.71389,1808.6592)" inkscape:label="#bspline_mode">
3636<path inkscape:connector-curvature="0" style="color:#000000;fill:none;stroke:#666666;stroke-width:1.02419376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 961.7806,55.380337 c 0,0 1.37815,-1.49823 3.26044,-1.760578 1.88229,-0.262349 3.58408,1.78013 3.58408,1.78013" id="path-mode-spiro-3-8-8" sodipodi:nodetypes="czc" inkscape:label="#spiro_splines_mode" />
3637<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" id="path6177-8-2" d="m 960.71597,54.820437 4.50382,-4.574067 4.57382,4.479835" style="fill:none;stroke:#646464;stroke-width:0.51209688;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
3638</g>
3635</g>3639</g>
3636</svg>3640</svg>
36373641
=== modified file 'share/icons/tango_icons.svg'
--- share/icons/tango_icons.svg 2014-03-27 01:33:44 +0000
+++ share/icons/tango_icons.svg 2014-05-05 09:51:15 +0000
@@ -1,48240 +1,8287 @@
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<svg
3 xmlns:dc="http://purl.org/dc/elements/1.1/"
4 xmlns:cc="http://creativecommons.org/ns#"
5 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6 xmlns:svg="http://www.w3.org/2000/svg"
7 xmlns="http://www.w3.org/2000/svg"
8 xmlns:xlink="http://www.w3.org/1999/xlink"
9 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11 inkscape:version="0.48+devel r"
12 sodipodi:docname="tango_icons.svg"
13 height="2000"
14 width="2000"
15 sodipodi:version="0.32"
16 id="svg1"
17 inkscape:output_extension="org.inkscape.output.svg.inkscape"
18 version="1.0"
19 style="display:inline">
20 <defs
21 id="defs3">
22 <linearGradient
23 id="linearGradient14411">
24 <stop
25 id="stop14413"
26 offset="0"
27 style="stop-color:#8c8c8c;stop-opacity:1;" />
28 <stop
29 style="stop-color:#6e7279;stop-opacity:1;"
30 offset="0.11148844"
31 id="stop14415" />
32 <stop
33 id="stop14417"
34 offset="1"
35 style="stop-color:#ffffff;stop-opacity:1;" />
36 </linearGradient>
37 <linearGradient
38 id="linearGradient19967">
39 <stop
40 id="stop19969"
41 offset="0"
42 style="stop-color:#73d216" />
43 <stop
44 id="stop19971"
45 offset="1.0000000"
46 style="stop-color:#4e9a06;stop-opacity:1" />
47 </linearGradient>
48 <linearGradient
49 id="linearGradient3480-8">
50 <stop
51 id="stop3482-9"
52 offset="0.0000000"
53 style="stop-color:#646464;stop-opacity:1.0000000;" />
54 <stop
55 id="stop3484-6"
56 offset="1.0000000"
57 style="stop-color:#000000;stop-opacity:1.0000000;" />
58 </linearGradient>
59 <linearGradient
60 gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)"
61 y2="239.4902"
62 x2="62.5"
63 y1="235.1341"
64 x1="59"
65 gradientUnits="userSpaceOnUse"
66 id="linearGradient6467"
67 xlink:href="#linearGradient3480-8"
68 inkscape:collect="always" />
69 <linearGradient
70 id="linearGradient2485-9">
71 <stop
72 id="stop2486-3"
73 offset="0.0000000"
74 style="stop-color:#ffffff;stop-opacity:1.0000000" />
75 <stop
76 id="stop2487-1"
77 offset="1.0000000"
78 style="stop-color:#aaaaaa;stop-opacity:1.0000000;" />
79 </linearGradient>
80 <linearGradient
81 gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)"
82 y2="240.354"
83 x2="64.5183"
84 y1="236.4112"
85 x1="61.44776"
86 gradientUnits="userSpaceOnUse"
87 id="linearGradient6465"
88 xlink:href="#linearGradient2485-9"
89 inkscape:collect="always" />
90 <linearGradient
91 id="linearGradient15060">
92 <stop
93 id="stop15062"
94 offset="0"
95 style="stop-color:#5e605c;stop-opacity:1" />
96 <stop
97 style="stop-color:#dddddd;stop-opacity:1;"
98 offset="0.66074723"
99 id="stop15066" />
100 <stop
101 id="stop15064"
102 offset="1"
103 style="stop-color:#f7f7f7;stop-opacity:1;" />
104 </linearGradient>
105 <linearGradient
106 id="linearGradient15803">
107 <stop
108 style="stop-color:#8ae234;stop-opacity:1;"
109 offset="0"
110 id="stop15805" />
111 <stop
112 id="stop15807"
113 offset="0.76136363"
114 style="stop-color:#8ae234;stop-opacity:1;" />
115 <stop
116 style="stop-color:#8ae234;stop-opacity:0;"
117 offset="1"
118 id="stop15809" />
119 </linearGradient>
120 <linearGradient
121 id="linearGradient15791">
122 <stop
123 id="stop15793"
124 offset="0"
125 style="stop-color:#204a87;stop-opacity:1;" />
126 <stop
127 style="stop-color:#204a87;stop-opacity:1;"
128 offset="0.76136363"
129 id="stop15795" />
130 <stop
131 id="stop15797"
132 offset="1"
133 style="stop-color:#204a87;stop-opacity:0;" />
134 </linearGradient>
135 <inkscape:path-effect
136 effect="skeletal"
137 id="path-effect9860"
138 prop_scale="1.03"
139 pattern="M 758,-28 C 731.44111,-14.269388 718,-6 718,0 C 718,6 731.20914,26.0201 745.06843,28 C 753.06843,14 745.1344,-7.97121 758,-28 z M 774,-20 C 762.15421,-11.102507 755.37105,10.776225 774,22 C 762.74193,-2.4674498 773.26046,-19.050051 774,-20 z M 794,-14 C 780.8555,-3.853014 784,6 794,14 C 788,2 793.25027,-13.90401 794,-14 z M 824,-19.06843 C 819.14489,-17.910542 817.00991,-10.021547 814,-8 C 808.18381,-4.093675 803.89145,-5.12669 803.9754,-0.01793029 C 804.08433,6.6105697 806.48108,4.5018511 814,8 C 816.34648,9.0916891 821.11389,18.516733 824,18.93157 C 820,4.9315698 820,-7.0684302 824,-19.06843 z"
140 scale_y_rel="true"
141 pattern-nodetypes="czcccccccccssscc" />
142 <linearGradient
143 inkscape:collect="always"
144 id="linearGradient9841">
145 <stop
146 style="stop-color:#000000;stop-opacity:1;"
147 offset="0"
148 id="stop9843" />
149 <stop
150 style="stop-color:#000000;stop-opacity:0;"
151 offset="1"
152 id="stop9845" />
153 </linearGradient>
154 <linearGradient
155 id="linearGradient9819">
156 <stop
157 id="stop9821"
158 offset="0"
159 style="stop-color:#555753;stop-opacity:1;" />
160 <stop
161 id="stop9823"
162 offset="1"
163 style="stop-color:#555753;stop-opacity:0;" />
164 </linearGradient>
165 <linearGradient
166 id="linearGradient9813">
167 <stop
168 style="stop-color:#babdb6;stop-opacity:1;"
169 offset="0"
170 id="stop9815" />
171 <stop
172 style="stop-color:#babdb6;stop-opacity:0;"
173 offset="1"
174 id="stop9817" />
175 </linearGradient>
176 <linearGradient
177 id="linearGradient9688"
178 inkscape:collect="always">
179 <stop
180 id="stop9690"
181 offset="0"
182 style="stop-color:#729fcf;stop-opacity:1;" />
183 <stop
184 id="stop9692"
185 offset="1"
186 style="stop-color:#729fcf;stop-opacity:0" />
187 </linearGradient>
188 <linearGradient
189 id="linearGradient9587">
190 <stop
191 id="stop9589"
192 offset="0"
193 style="stop-color:#729fcf;stop-opacity:1;" />
194 <stop
195 id="stop9591"
196 offset="1"
197 style="stop-color:#729fcf;stop-opacity:0;" />
198 </linearGradient>
199 <linearGradient
200 inkscape:collect="always"
201 id="linearGradient13641">
202 <stop
203 style="stop-color:#ffffff;stop-opacity:1;"
204 offset="0"
205 id="stop13643" />
206 <stop
207 style="stop-color:#ffffff;stop-opacity:0;"
208 offset="1"
209 id="stop13645" />
210 </linearGradient>
211 <linearGradient
212 inkscape:collect="always"
213 id="linearGradient13633">
214 <stop
215 style="stop-color:#cc0000;stop-opacity:1;"
216 offset="0"
217 id="stop13635" />
218 <stop
219 style="stop-color:#cc0000;stop-opacity:0;"
220 offset="1"
221 id="stop13637" />
222 </linearGradient>
223 <linearGradient
224 inkscape:collect="always"
225 id="linearGradient13598">
226 <stop
227 style="stop-color:#a40000;stop-opacity:1;"
228 offset="0"
229 id="stop13600" />
230 <stop
231 style="stop-color:#a40000;stop-opacity:0;"
232 offset="1"
233 id="stop13602" />
234 </linearGradient>
235 <linearGradient
236 inkscape:collect="always"
237 id="linearGradient13517">
238 <stop
239 style="stop-color:#ffffff;stop-opacity:1;"
240 offset="0"
241 id="stop13519" />
242 <stop
243 style="stop-color:#ffffff;stop-opacity:0;"
244 offset="1"
245 id="stop13521" />
246 </linearGradient>
247 <linearGradient
248 inkscape:collect="always"
249 id="linearGradient13507">
250 <stop
251 style="stop-color:#729fcf;stop-opacity:1;"
252 offset="0"
253 id="stop13509" />
254 <stop
255 style="stop-color:#729fcf;stop-opacity:0;"
256 offset="1"
257 id="stop13511" />
258 </linearGradient>
259 <linearGradient
260 inkscape:collect="always"
261 id="linearGradient13498">
262 <stop
263 style="stop-color:#204a87;stop-opacity:1;"
264 offset="0"
265 id="stop13500" />
266 <stop
267 style="stop-color:#204a87;stop-opacity:0;"
268 offset="1"
269 id="stop13502" />
270 </linearGradient>
271 <linearGradient
272 inkscape:collect="always"
273 id="linearGradient13388">
274 <stop
275 style="stop-color:#204a87;stop-opacity:1;"
276 offset="0"
277 id="stop13390" />
278 <stop
279 style="stop-color:#204a87;stop-opacity:0;"
280 offset="1"
281 id="stop13392" />
282 </linearGradient>
283 <linearGradient
284 inkscape:collect="always"
285 id="linearGradient13380">
286 <stop
287 style="stop-color:#204a87;stop-opacity:1;"
288 offset="0"
289 id="stop13382" />
290 <stop
291 style="stop-color:#204a87;stop-opacity:0;"
292 offset="1"
293 id="stop13384" />
294 </linearGradient>
295 <linearGradient
296 inkscape:collect="always"
297 id="linearGradient15196">
298 <stop
299 style="stop-color:#2e3436;stop-opacity:1;"
300 offset="0"
301 id="stop15198" />
302 <stop
303 style="stop-color:#2e3436;stop-opacity:0;"
304 offset="1"
305 id="stop15200" />
306 </linearGradient>
307 <linearGradient
308 inkscape:collect="always"
309 id="linearGradient15188">
310 <stop
311 style="stop-color:#2e3436;stop-opacity:1;"
312 offset="0"
313 id="stop15190" />
314 <stop
315 style="stop-color:#2e3436;stop-opacity:0;"
316 offset="1"
317 id="stop15192" />
318 </linearGradient>
319 <linearGradient
320 id="linearGradient13899">
321 <stop
322 style="stop-color:#880000;stop-opacity:1;"
323 offset="0"
324 id="stop13901" />
325 <stop
326 id="stop13903"
327 offset="0.76136363"
328 style="stop-color:#880000;stop-opacity:1;" />
329 <stop
330 style="stop-color:#880000;stop-opacity:0;"
331 offset="1"
332 id="stop13905" />
333 </linearGradient>
334 <linearGradient
335 id="linearGradient13891">
336 <stop
337 style="stop-color:#4e9a06;stop-opacity:1;"
338 offset="0"
339 id="stop13893" />
340 <stop
341 id="stop13895"
342 offset="0.76136363"
343 style="stop-color:#4e9a06;stop-opacity:1;" />
344 <stop
345 style="stop-color:#4e9a06;stop-opacity:0;"
346 offset="1"
347 id="stop13897" />
348 </linearGradient>
349 <linearGradient
350 id="linearGradient13883">
351 <stop
352 id="stop13885"
353 offset="0"
354 style="stop-color:#729fcf;stop-opacity:1;" />
355 <stop
356 style="stop-color:#729fcf;stop-opacity:1;"
357 offset="0.76136363"
358 id="stop13887" />
359 <stop
360 id="stop13889"
361 offset="1"
362 style="stop-color:#729fcf;stop-opacity:0;" />
363 </linearGradient>
364 <linearGradient
365 id="linearGradient13760">
366 <stop
367 style="stop-color:#ef2929;stop-opacity:1;"
368 offset="0"
369 id="stop13762" />
370 <stop
371 id="stop13778"
372 offset="0.76136363"
373 style="stop-color:#ef2929;stop-opacity:1;" />
374 <stop
375 style="stop-color:#ef2929;stop-opacity:0;"
376 offset="1"
377 id="stop13764" />
378 </linearGradient>
379 <linearGradient
380 id="linearGradient13409">
381 <stop
382 id="stop13411"
383 offset="0"
384 style="stop-color:#f9f9f9;stop-opacity:1;" />
385 <stop
386 id="stop13413"
387 offset="1"
388 style="stop-color:#555753;stop-opacity:1;" />
389 </linearGradient>
390 <linearGradient
391 id="linearGradient13391">
392 <stop
393 id="stop13393"
394 offset="0"
395 style="stop-color:#bfc4c8;stop-opacity:1;" />
396 <stop
397 id="stop13395"
398 offset="1"
399 style="stop-color:#f0f2f5;stop-opacity:1;" />
400 </linearGradient>
401 <linearGradient
402 id="linearGradient13385">
403 <stop
404 style="stop-color:#ffffff;stop-opacity:1;"
405 offset="0"
406 id="stop13387" />
407 <stop
408 style="stop-color:#d5d9dc;stop-opacity:1;"
409 offset="1"
410 id="stop13389" />
411 </linearGradient>
412 <linearGradient
413 id="linearGradient13345">
414 <stop
415 id="stop13347"
416 offset="0"
417 style="stop-color:#000000;stop-opacity:0.28354979;" />
418 <stop
419 id="stop13349"
420 offset="1"
421 style="stop-color:#000000;stop-opacity:0;" />
422 </linearGradient>
423 <linearGradient
424 id="linearGradient13302">
425 <stop
426 style="stop-color:#babdb6;stop-opacity:1;"
427 offset="0"
428 id="stop13304" />
429 <stop
430 style="stop-color:#ffffff;stop-opacity:1;"
431 offset="1"
432 id="stop13306" />
433 </linearGradient>
434 <linearGradient
435 id="linearGradient13288">
436 <stop
437 style="stop-color:#eef1f5;stop-opacity:1;"
438 offset="0"
439 id="stop13290" />
440 <stop
441 style="stop-color:#729fcf;stop-opacity:1;"
442 offset="1"
443 id="stop13292" />
444 </linearGradient>
445 <linearGradient
446 inkscape:collect="always"
447 id="linearGradient12733">
448 <stop
449 style="stop-color:#000000;stop-opacity:1;"
450 offset="0"
451 id="stop12735" />
452 <stop
453 style="stop-color:#000000;stop-opacity:0;"
454 offset="1"
455 id="stop12737" />
456 </linearGradient>
457 <linearGradient
458 inkscape:collect="always"
459 id="linearGradient12156">
460 <stop
461 style="stop-color:#e7c9c2;stop-opacity:1"
462 offset="0"
463 id="stop12158" />
464 <stop
465 style="stop-color:#e2aaa1;stop-opacity:0;"
466 offset="1"
467 id="stop12160" />
468 </linearGradient>
469 <linearGradient
470 inkscape:collect="always"
471 id="linearGradient5602">
472 <stop
473 style="stop-color:#cccccc;stop-opacity:1"
474 offset="0"
475 id="stop5604" />
476 <stop
477 style="stop-color:#000000;stop-opacity:1"
478 offset="1"
479 id="stop5606" />
480 </linearGradient>
481 <linearGradient
482 inkscape:collect="always"
483 xlink:href="#linearGradient8482"
484 id="linearGradient5633"
485 x1="770.5"
486 y1="200.25"
487 x2="783"
488 y2="214.25"
489 gradientUnits="userSpaceOnUse" />
490 <radialGradient
491 inkscape:collect="always"
492 xlink:href="#linearGradient5724"
493 id="radialGradient8474"
494 gradientUnits="userSpaceOnUse"
495 gradientTransform="matrix(1.434932,0,0,0.608696,-337.9418,82.56952)"
496 cx="777"
497 cy="209.35"
498 fx="777"
499 fy="209.35"
500 r="11.5" />
501 <linearGradient
502 id="linearGradient8482"
503 inkscape:collect="always">
504 <stop
505 id="stop8484"
506 offset="0"
507 style="stop-color:#b3b3b3;stop-opacity:1" />
508 <stop
509 id="stop8486"
510 offset="1"
511 style="stop-color:#000000;stop-opacity:1" />
512 </linearGradient>
513 <linearGradient
514 inkscape:collect="always"
515 xlink:href="#linearGradient8482"
516 id="linearGradient5637"
517 x1="763"
518 y1="216.875"
519 x2="782"
520 y2="218.25"
521 gradientUnits="userSpaceOnUse" />
522 <linearGradient
523 id="linearGradient5724">
524 <stop
525 style="stop-color:#fffdf8;stop-opacity:1.0000000;"
526 offset="0.0000000"
527 id="stop5726" />
528 <stop
529 id="stop5730"
530 offset="0.43478271"
531 style="stop-color:#fcfaf5;stop-opacity:1;" />
532 <stop
533 style="stop-color:#cdccc7;stop-opacity:1.0000000;"
534 offset="1.0000000"
535 id="stop5728" />
536 </linearGradient>
537 <radialGradient
538 inkscape:collect="always"
539 xlink:href="#linearGradient5724"
540 id="radialGradient8472"
541 gradientUnits="userSpaceOnUse"
542 gradientTransform="matrix(1,0,0,0.826087,0,38.17391)"
543 cx="778"
544 cy="216.47368"
545 fx="778"
546 fy="216.47368"
547 r="11.5" />
548 <linearGradient
549 inkscape:collect="always"
550 xlink:href="#eraserFill"
551 id="linearGradient7426"
552 gradientUnits="userSpaceOnUse"
553 gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)"
554 x1="144.08243"
555 y1="157.82079"
556 x2="176.86269"
557 y2="188.41277" />
558 <linearGradient
559 id="eraserFill">
560 <stop
561 id="stop5742_1"
562 offset="0.0000000"
563 style="stop-color:#ffffff;stop-opacity:1.0000000;" />
564 <stop
565 id="stop5744_1"
566 offset="1.0000000"
567 style="stop-color:#f3b698;stop-opacity:1.0000000;" />
568 </linearGradient>
569 <linearGradient
570 inkscape:collect="always"
571 xlink:href="#eraserFill"
572 id="linearGradient7424"
573 gradientUnits="userSpaceOnUse"
574 gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)"
575 x1="101.09393"
576 y1="221.06877"
577 x2="112.20101"
578 y2="234.00311" />
579 <linearGradient
580 inkscape:collect="always"
581 id="linearGradient7772">
582 <stop
583 style="stop-color:#000000;stop-opacity:1;"
584 offset="0"
585 id="stop7774" />
586 <stop
587 style="stop-color:#000000;stop-opacity:0;"
588 offset="1"
589 id="stop7776" />
590 </linearGradient>
591 <linearGradient
592 inkscape:collect="always"
593 id="linearGradient7780">
594 <stop
595 style="stop-color:#000000;stop-opacity:1;"
596 offset="0"
597 id="stop7782" />
598 <stop
599 style="stop-color:#000000;stop-opacity:0;"
600 offset="1"
601 id="stop7784" />
602 </linearGradient>
603 <linearGradient
604 inkscape:collect="always"
605 id="linearGradient7836">
606 <stop
607 style="stop-color:#000000;stop-opacity:1;"
608 offset="0"
609 id="stop7838" />
610 <stop
611 style="stop-color:#000000;stop-opacity:0;"
612 offset="1"
613 id="stop7840" />
614 </linearGradient>
615 <linearGradient
616 inkscape:collect="always"
617 id="linearGradient7788">
618 <stop
619 style="stop-color:#000000;stop-opacity:1;"
620 offset="0"
621 id="stop7790" />
622 <stop
623 style="stop-color:#000000;stop-opacity:0;"
624 offset="1"
625 id="stop7792" />
626 </linearGradient>
627 <linearGradient
628 inkscape:collect="always"
629 id="linearGradient7804">
630 <stop
631 style="stop-color:#000000;stop-opacity:1;"
632 offset="0"
633 id="stop7806" />
634 <stop
635 style="stop-color:#000000;stop-opacity:0;"
636 offset="1"
637 id="stop7808" />
638 </linearGradient>
639 <linearGradient
640 inkscape:collect="always"
641 id="linearGradient7828">
642 <stop
643 style="stop-color:#000000;stop-opacity:1;"
644 offset="0"
645 id="stop7830" />
646 <stop
647 style="stop-color:#000000;stop-opacity:0;"
648 offset="1"
649 id="stop7832" />
650 </linearGradient>
651 <linearGradient
652 inkscape:collect="always"
653 id="linearGradient7820">
654 <stop
655 style="stop-color:#000000;stop-opacity:1;"
656 offset="0"
657 id="stop7822" />
658 <stop
659 style="stop-color:#000000;stop-opacity:0;"
660 offset="1"
661 id="stop7824" />
662 </linearGradient>
663 <linearGradient
664 inkscape:collect="always"
665 id="linearGradient7796">
666 <stop
667 style="stop-color:#000000;stop-opacity:1;"
668 offset="0"
669 id="stop7798" />
670 <stop
671 style="stop-color:#000000;stop-opacity:0;"
672 offset="1"
673 id="stop7800" />
674 </linearGradient>
675 <linearGradient
676 inkscape:collect="always"
677 id="linearGradient7812">
678 <stop
679 style="stop-color:#000000;stop-opacity:1;"
680 offset="0"
681 id="stop7814" />
682 <stop
683 style="stop-color:#000000;stop-opacity:0;"
684 offset="1"
685 id="stop7816" />
686 </linearGradient>
687 <clipPath
688 clipPathUnits="userSpaceOnUse"
689 id="clipPath5905">
690 <rect
691 style="opacity:1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.3344132;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;"
692 id="rect5907"
693 width="11.98896"
694 height="11.88748"
695 x="375.8356"
696 y="138.7635" />
697 </clipPath>
698 <clipPath
699 id="cieClip"
700 clipPathUnits="userSpaceOnUse">
701 <path
702 style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
703 d="M 8.3599997,47.759998 C 7.7515743,47.515279 7.222277,46.901819 6.7843235,46.39273 C 5.6082715,45.025655 4.9648259,43.302806 4.3800001,41.630001 C 3.4463938,38.959561 2.6271155,36.199224 2.1141648,33.410416 C 1.4157915,29.613502 0.61298459,25.784236 0.39598041,21.942782 C 0.20936341,18.639248 -0.036735009,15.098988 0.67000002,11.99 C 1.0212715,10.444727 2.3352289,8.406245 3.5699999,7.98 C 4.6660199,7.6016521 6.4569453,8.7469868 7.6985305,9.5047548 C 9.5843038,10.655686 11.337786,12.013685 12.995799,13.4917 C 17.541311,17.54374 21.813011,21.891764 26.139096,26.173982 C 29.192346,29.196273 32.227767,32.236821 35.27,35.27 C 26.3,39.433333 17.33,43.596666 8.3599997,47.759998 z "
704 id="path2430"
705 sodipodi:nodetypes="cssssssssscc" />
706 </clipPath>
707 <linearGradient
708 inkscape:collect="always"
709 id="linearGradient14241">
710 <stop
711 style="stop-color:#3465a4;stop-opacity:1;"
712 offset="0"
713 id="stop14243" />
714 <stop
715 style="stop-color:#3465a4;stop-opacity:0;"
716 offset="1"
717 id="stop14245" />
718 </linearGradient>
719 <linearGradient
720 inkscape:collect="always"
721 id="linearGradient14233">
722 <stop
723 style="stop-color:#204a87;stop-opacity:1;"
724 offset="0"
725 id="stop14235" />
726 <stop
727 style="stop-color:#204a87;stop-opacity:0;"
728 offset="1"
729 id="stop14237" />
730 </linearGradient>
731 <linearGradient
732 inkscape:collect="always"
733 id="linearGradient14224">
734 <stop
735 style="stop-color:#729fcf;stop-opacity:1;"
736 offset="0"
737 id="stop14226" />
738 <stop
739 style="stop-color:#729fcf;stop-opacity:0;"
740 offset="1"
741 id="stop14229" />
742 </linearGradient>
743 <linearGradient
744 id="linearGradient13947">
745 <stop
746 style="stop-color:#f5be00;stop-opacity:1;"
747 offset="0"
748 id="stop13949" />
749 <stop
750 style="stop-color:#f57f00;stop-opacity:1;"
751 offset="1"
752 id="stop13951" />
753 </linearGradient>
754 <linearGradient
755 id="linearGradient13800">
756 <stop
757 style="stop-color:#000000;stop-opacity:1;"
758 offset="0"
759 id="stop13802" />
760 <stop
761 style="stop-color:#ffffff;stop-opacity:1;"
762 offset="1"
763 id="stop13804" />
764 </linearGradient>
765 <linearGradient
766 id="linearGradient13616">
767 <stop
768 style="stop-color:#3465a4;stop-opacity:1;"
769 offset="0"
770 id="stop13618" />
771 <stop
772 style="stop-color:#729fcf;stop-opacity:1"
773 offset="0.86907172"
774 id="stop13620" />
775 </linearGradient>
776 <linearGradient
777 inkscape:collect="always"
778 id="linearGradient13691">
779 <stop
780 style="stop-color:#ffffff;stop-opacity:1;"
781 offset="0"
782 id="stop13693" />
783 <stop
784 style="stop-color:#ffffff;stop-opacity:0;"
785 offset="1"
786 id="stop13695" />
787 </linearGradient>
788 <linearGradient
789 id="linearGradient13683">
790 <stop
791 style="stop-color:#2e3436;stop-opacity:1;"
792 offset="0"
793 id="stop13685" />
794 <stop
795 style="stop-color:#4f595c;stop-opacity:1;"
796 offset="1"
797 id="stop13687" />
798 </linearGradient>
799 <linearGradient
800 inkscape:collect="always"
801 id="linearGradient13547">
802 <stop
803 style="stop-color:#4e9a06;stop-opacity:1;"
804 offset="0"
805 id="stop13549" />
806 <stop
807 style="stop-color:#4e9a06;stop-opacity:0;"
808 offset="1"
809 id="stop13551" />
810 </linearGradient>
811 <linearGradient
812 inkscape:collect="always"
813 id="linearGradient13489">
814 <stop
815 style="stop-color:#555753;stop-opacity:1;"
816 offset="0"
817 id="stop13491" />
818 <stop
819 style="stop-color:#555753;stop-opacity:0;"
820 offset="1"
821 id="stop13493" />
822 </linearGradient>
823 <linearGradient
824 inkscape:collect="always"
825 id="linearGradient14230">
826 <stop
827 style="stop-color:#555753;stop-opacity:1;"
828 offset="0"
829 id="stop14232" />
830 <stop
831 style="stop-color:#555753;stop-opacity:0;"
832 offset="1"
833 id="stop14234" />
834 </linearGradient>
835 <linearGradient
836 id="linearGradient13707">
837 <stop
838 id="stop13709"
839 offset="0"
840 style="stop-color:#ffffff;stop-opacity:1;" />
841 <stop
842 style="stop-color:#ffffff;stop-opacity:1;"
843 offset="0.55299991"
844 id="stop13711" />
845 <stop
846 id="stop13713"
847 offset="1"
848 style="stop-color:#a2a2a2;stop-opacity:1;" />
849 </linearGradient>
850 <linearGradient
851 inkscape:collect="always"
852 id="linearGradient13602">
853 <stop
854 style="stop-color:#888a85;stop-opacity:1;"
855 offset="0"
856 id="stop13604" />
857 <stop
858 style="stop-color:#888a85;stop-opacity:0;"
859 offset="1"
860 id="stop13606" />
861 </linearGradient>
862 <linearGradient
863 id="linearGradient14313">
864 <stop
865 id="stop14315"
866 offset="0"
867 style="stop-color:#d5d5d5;stop-opacity:1;" />
868 <stop
869 style="stop-color:#dadada;stop-opacity:1;"
870 offset="0.55299991"
871 id="stop14317" />
872 <stop
873 id="stop14319"
874 offset="0.80015606"
875 style="stop-color:#b6b6b6;stop-opacity:1;" />
876 <stop
877 id="stop14321"
878 offset="1"
879 style="stop-color:#a2a2a2;stop-opacity:1;" />
880 </linearGradient>
881 <linearGradient
882 inkscape:collect="always"
883 xlink:href="#linearGradient13302"
884 id="linearGradient14320"
885 gradientUnits="userSpaceOnUse"
886 gradientTransform="matrix(0.7420636,0,0,0.9166667,-859.04766,-1054.3334)"
887 x1="1175.5026"
888 y1="1169.2727"
889 x2="1175.8395"
890 y2="1158.9089" />
891 <linearGradient
892 inkscape:collect="always"
893 xlink:href="#linearGradient13302"
894 id="linearGradient14323"
895 gradientUnits="userSpaceOnUse"
896 gradientTransform="matrix(0.7420667,0,0,0.7312474,-859.05134,-839.76419)"
897 x1="1172.7272"
898 y1="1154.3483"
899 x2="1172.7272"
900 y2="1160.7494" />
901 <filter
902 inkscape:collect="always"
903 id="filter14326"
904 x="-0.05760023"
905 width="1.1152005"
906 y="-0.28800115"
907 height="1.5760023">
908 <feGaussianBlur
909 inkscape:collect="always"
910 stdDeviation="0.6000024"
911 id="feGaussianBlur14328" />
912 </filter>
913 <linearGradient
914 inkscape:collect="always"
915 id="linearGradient8789">
916 <stop
917 style="stop-color:#ffffff;stop-opacity:1;"
918 offset="0"
919 id="stop8791" />
920 <stop
921 style="stop-color:#ffffff;stop-opacity:0;"
922 offset="1"
923 id="stop8793" />
924 </linearGradient>
925 <linearGradient
926 inkscape:collect="always"
927 id="linearGradient8781">
928 <stop
929 style="stop-color:#3465a4;stop-opacity:1;"
930 offset="0"
931 id="stop8783" />
932 <stop
933 style="stop-color:#3465a4;stop-opacity:0;"
934 offset="1"
935 id="stop8785" />
936 </linearGradient>
937 <linearGradient
938 id="linearGradient8713">
939 <stop
940 style="stop-color:#608bbe;stop-opacity:1;"
941 offset="0"
942 id="stop8715" />
943 <stop
944 style="stop-color:#4c7cb5;stop-opacity:1;"
945 offset="1"
946 id="stop8717" />
947 </linearGradient>
948 <linearGradient
949 id="linearGradient8471">
950 <stop
951 style="stop-color:#5382b9;stop-opacity:1"
952 offset="0"
953 id="stop8473" />
954 <stop
955 style="stop-color:#3565a5;stop-opacity:1"
956 offset="1"
957 id="stop8475" />
958 </linearGradient>
959 <linearGradient
960 id="linearGradient12842">
961 <stop
962 style="stop-color:#babdb6;stop-opacity:0;"
963 offset="0"
964 id="stop12844" />
965 <stop
966 style="stop-color:#babdb6;stop-opacity:1;"
967 offset="1"
968 id="stop12846" />
969 </linearGradient>
970 <linearGradient
971 id="linearGradient12552">
972 <stop
973 style="stop-color:#569619;stop-opacity:1;"
974 offset="0"
975 id="stop12554" />
976 <stop
977 style="stop-color:#3c6415;stop-opacity:1;"
978 offset="1"
979 id="stop12556" />
980 </linearGradient>
981 <linearGradient
982 inkscape:collect="always"
983 id="linearGradient12712">
984 <stop
985 style="stop-color:#2e3436;stop-opacity:1;"
986 offset="0"
987 id="stop12715" />
988 <stop
989 style="stop-color:#2e3436;stop-opacity:0;"
990 offset="1"
991 id="stop12717" />
992 </linearGradient>
993 <linearGradient
994 inkscape:collect="always"
995 id="linearGradient12533">
996 <stop
997 style="stop-color:#d3d7cf;stop-opacity:1;"
998 offset="0"
999 id="stop12535" />
1000 <stop
1001 style="stop-color:#d3d7cf;stop-opacity:0;"
1002 offset="1"
1003 id="stop12537" />
1004 </linearGradient>
1005 <linearGradient
1006 id="linearGradient12716">
1007 <stop
1008 id="stop12718"
1009 offset="0"
1010 style="stop-color:#fcaf3e;stop-opacity:0;" />
1011 <stop
1012 style="stop-color:#fcaf3e;stop-opacity:1;"
1013 offset="0.23427092"
1014 id="stop12720" />
1015 <stop
1016 style="stop-color:#fcaf3e;stop-opacity:1;"
1017 offset="0.73789984"
1018 id="stop12722" />
1019 <stop
1020 id="stop12724"
1021 offset="1"
1022 style="stop-color:#fcaf3e;stop-opacity:0;" />
1023 </linearGradient>
1024 <linearGradient
1025 id="linearGradient12706">
1026 <stop
1027 id="stop12708"
1028 offset="0"
1029 style="stop-color:#ce5c00;stop-opacity:0;" />
1030 <stop
1031 style="stop-color:#ce5c00;stop-opacity:1;"
1032 offset="0.27794591"
1033 id="stop12710" />
1034 <stop
1035 style="stop-color:#ce5c00;stop-opacity:1;"
1036 offset="0.65109503"
1037 id="stop12712" />
1038 <stop
1039 id="stop12714"
1040 offset="1"
1041 style="stop-color:#ce5c00;stop-opacity:0;" />
1042 </linearGradient>
1043 <linearGradient
1044 inkscape:collect="always"
1045 id="linearGradient12876">
1046 <stop
1047 style="stop-color:#ce5c00;stop-opacity:1;"
1048 offset="0"
1049 id="stop12878" />
1050 <stop
1051 style="stop-color:#ce5c00;stop-opacity:0;"
1052 offset="1"
1053 id="stop12880" />
1054 </linearGradient>
1055 <linearGradient
1056 inkscape:collect="always"
1057 xlink:href="#linearGradient8343"
1058 id="linearGradient7554"
1059 gradientUnits="userSpaceOnUse"
1060 gradientTransform="matrix(1.294118,0,0,1,1.705882,-10.5436)"
1061 x1="-16.000221"
1062 y1="423.58575"
1063 x2="0.58696824"
1064 y2="423.58575" />
1065 <linearGradient
1066 inkscape:collect="always"
1067 id="linearGradient12362">
1068 <stop
1069 style="stop-color:#ead7ce;stop-opacity:1;"
1070 offset="0"
1071 id="stop12364" />
1072 <stop
1073 style="stop-color:#ead7ce;stop-opacity:0;"
1074 offset="1"
1075 id="stop12366" />
1076 </linearGradient>
1077 <linearGradient
1078 id="linearGradient12352">
1079 <stop
1080 style="stop-color:#8a4a01;stop-opacity:1;"
1081 offset="0"
1082 id="stop12354" />
1083 <stop
1084 style="stop-color:#8f5902;stop-opacity:0;"
1085 offset="1"
1086 id="stop12356" />
1087 </linearGradient>
1088 <linearGradient
1089 id="linearGradient12319">
1090 <stop
1091 style="stop-color:#ce5c00;stop-opacity:0;"
1092 offset="0"
1093 id="stop12321" />
1094 <stop
1095 id="stop12329"
1096 offset="0.09044679"
1097 style="stop-color:#ce5c00;stop-opacity:1;" />
1098 <stop
1099 id="stop12327"
1100 offset="0.90803826"
1101 style="stop-color:#ce5c00;stop-opacity:1;" />
1102 <stop
1103 style="stop-color:#ce5c00;stop-opacity:0;"
1104 offset="1"
1105 id="stop12323" />
1106 </linearGradient>
1107 <linearGradient
1108 id="linearGradient12306">
1109 <stop
1110 style="stop-color:#fcaf3e;stop-opacity:0;"
1111 offset="0"
1112 id="stop12308" />
1113 <stop
1114 id="stop12317"
1115 offset="0.08843765"
1116 style="stop-color:#fcaf3e;stop-opacity:1;" />
1117 <stop
1118 id="stop12315"
1119 offset="0.90803868"
1120 style="stop-color:#fcaf3e;stop-opacity:1;" />
1121 <stop
1122 style="stop-color:#fcaf3e;stop-opacity:0;"
1123 offset="1"
1124 id="stop12310" />
1125 </linearGradient>
1126 <linearGradient
1127 inkscape:collect="always"
1128 id="linearGradient12068">
1129 <stop
1130 style="stop-color:#ffffff;stop-opacity:1;"
1131 offset="0"
1132 id="stop12070" />
1133 <stop
1134 style="stop-color:#ffffff;stop-opacity:0;"
1135 offset="1"
1136 id="stop12072" />
1137 </linearGradient>
1138 <linearGradient
1139 inkscape:collect="always"
1140 id="linearGradient11970">
1141 <stop
1142 style="stop-color:#3465a4;stop-opacity:1;"
1143 offset="0"
1144 id="stop11972" />
1145 <stop
1146 style="stop-color:#3465a4;stop-opacity:0;"
1147 offset="1"
1148 id="stop11974" />
1149 </linearGradient>
1150 <linearGradient
1151 inkscape:collect="always"
1152 id="linearGradient12136">
1153 <stop
1154 style="stop-color:#ffffff;stop-opacity:1;"
1155 offset="0"
1156 id="stop12138" />
1157 <stop
1158 style="stop-color:#ffffff;stop-opacity:0;"
1159 offset="1"
1160 id="stop12140" />
1161 </linearGradient>
1162 <linearGradient
1163 inkscape:collect="always"
1164 xlink:href="#linearGradient13302"
1165 id="linearGradient19733"
1166 gradientUnits="userSpaceOnUse"
1167 gradientTransform="matrix(1.0602686,0,0,1.0617493,-1258.6663,-0.9857992)"
1168 x1="1232.4244"
1169 y1="44.976086"
1170 x2="1201.0042"
1171 y2="2.5693133" />
1172 <linearGradient
1173 y2="23.855772"
1174 x2="16.784855"
1175 y1="41.668785"
1176 x1="38.622978"
1177 gradientUnits="userSpaceOnUse"
1178 id="linearGradient5138"
1179 xlink:href="#linearGradient13302"
1180 inkscape:collect="always" />
1181 <linearGradient
1182 inkscape:collect="always"
1183 xlink:href="#linearGradient13302"
1184 id="linearGradient6202"
1185 gradientUnits="userSpaceOnUse"
1186 x1="22.523418"
1187 y1="21.335377"
1188 x2="9.4813538"
1189 y2="-3.2306066" />
1190 <linearGradient
1191 inkscape:collect="always"
1192 id="linearGradient11360">
1193 <stop
1194 style="stop-color:#729fcf;stop-opacity:1;"
1195 offset="0"
1196 id="stop11362" />
1197 <stop
1198 style="stop-color:#729fcf;stop-opacity:0;"
1199 offset="1"
1200 id="stop11364" />
1201 </linearGradient>
1202 <linearGradient
1203 id="linearGradient11346">
1204 <stop
1205 style="stop-color:#4e9a06;stop-opacity:1;"
1206 offset="0"
1207 id="stop11348" />
1208 <stop
1209 style="stop-color:#448705;stop-opacity:1;"
1210 offset="1"
1211 id="stop11350" />
1212 </linearGradient>
1213 <linearGradient
1214 id="linearGradient11215">
1215 <stop
1216 style="stop-color:#888a85;stop-opacity:1;"
1217 offset="0"
1218 id="stop11217" />
1219 <stop
1220 style="stop-color:#888a85;stop-opacity:1;"
1221 offset="1"
1222 id="stop11219" />
1223 </linearGradient>
1224 <linearGradient
1225 id="linearGradient11207">
1226 <stop
1227 style="stop-color:#d3d7cf;stop-opacity:1;"
1228 offset="0"
1229 id="stop11209" />
1230 <stop
1231 style="stop-color:#d3d7cf;stop-opacity:1;"
1232 offset="1"
1233 id="stop11211" />
1234 </linearGradient>
1235 <linearGradient
1236 id="linearGradient11201">
1237 <stop
1238 style="stop-color:#ffffff;stop-opacity:1;"
1239 offset="0"
1240 id="stop11203" />
1241 <stop
1242 style="stop-color:#ffffff;stop-opacity:1;"
1243 offset="1"
1244 id="stop11205" />
1245 </linearGradient>
1246 <linearGradient
1247 id="linearGradient10843">
1248 <stop
1249 style="stop-color:#000000;stop-opacity:1.0000000"
1250 offset="0.0000000"
1251 id="stop10845" />
1252 <stop
1253 style="stop-color:#7f7f7f;stop-opacity:1.0000000"
1254 offset="0.35076979"
1255 id="stop10847" />
1256 <stop
1257 style="stop-color:#bfbfbf;stop-opacity:1.0000000"
1258 offset="0.59668732"
1259 id="stop10849" />
1260 <stop
1261 style="stop-color:#ffffff;stop-opacity:1.0000000"
1262 offset="1.0000000"
1263 id="stop10853" />
1264 </linearGradient>
1265 <linearGradient
1266 id="linearGradient10721">
1267 <stop
1268 id="stop10723"
1269 offset="0"
1270 style="stop-color:#729fcf;stop-opacity:1" />
1271 <stop
1272 id="stop10725"
1273 offset="1"
1274 style="stop-color:#3465a4;stop-opacity:1" />
1275 </linearGradient>
1276 <linearGradient
1277 inkscape:collect="always"
1278 xlink:href="#linearGradient10737"
1279 id="linearGradient10756"
1280 gradientUnits="userSpaceOnUse"
1281 x1="314.63306"
1282 y1="224.45227"
1283 x2="314.63306"
1284 y2="209.0123" />
1285 <linearGradient
1286 id="linearGradient10737">
1287 <stop
1288 style="stop-color:#a7bfd9;stop-opacity:1;"
1289 offset="0"
1290 id="stop10740" />
1291 <stop
1292 style="stop-color:#4581c1;stop-opacity:1;"
1293 offset="1"
1294 id="stop10742" />
1295 </linearGradient>
1296 <linearGradient
1297 id="linearGradient10735">
1298 <stop
1299 style="stop-color:#c0c0c0;stop-opacity:0;"
1300 offset="0"
1301 id="stop10737" />
1302 <stop
1303 style="stop-color:#c0c0c0;stop-opacity:0;"
1304 offset="1"
1305 id="stop10739" />
1306 </linearGradient>
1307 <linearGradient
1308 id="linearGradient10672">
1309 <stop
1310 id="stop10674"
1311 offset="0.0000000"
1312 style="stop-color:#cad0c6;stop-opacity:1.0000000;" />
1313 <stop
1314 style="stop-color:#eaece9;stop-opacity:1.0000000;"
1315 offset="0.5"
1316 id="stop10676" />
1317 <stop
1318 id="stop10678"
1319 offset="1.0000000"
1320 style="stop-color:#c5cbc0;stop-opacity:1.0000000;" />
1321 </linearGradient>
1322 <linearGradient
1323 inkscape:collect="always"
1324 xlink:href="#linearGradient2798"
1325 id="linearGradient7083"
1326 gradientUnits="userSpaceOnUse"
1327 gradientTransform="translate(-6,-3)"
1328 x1="13.5"
1329 y1="3.3125"
1330 x2="13.125"
1331 y2="1.75" />
1332 <linearGradient
1333 inkscape:collect="always"
1334 xlink:href="#linearGradient2828"
1335 id="linearGradient7081"
1336 gradientUnits="userSpaceOnUse"
1337 gradientTransform="translate(-6,-3)"
1338 x1="14.40625"
1339 y1="5.078125"
1340 x2="13.828125"
1341 y2="6.453125" />
1342 <linearGradient
1343 inkscape:collect="always"
1344 xlink:href="#linearGradient2810"
1345 id="linearGradient7063"
1346 gradientUnits="userSpaceOnUse"
1347 gradientTransform="translate(20,226)"
1348 x1="6.375"
1349 y1="2.75"
1350 x2="10.78125"
1351 y2="29.75" />
1352 <radialGradient
1353 inkscape:collect="always"
1354 xlink:href="#linearGradient2778"
1355 id="radialGradient7066"
1356 gradientUnits="userSpaceOnUse"
1357 gradientTransform="matrix(2.231851,0,0,2.456675,13.8408,217.98309)"
1358 cx="4.8879852"
1359 cy="5.044178"
1360 fx="4.8879852"
1361 fy="5.044178"
1362 r="11" />
1363 <linearGradient
1364 inkscape:collect="always"
1365 xlink:href="#linearGradient4816"
1366 id="linearGradient6997"
1367 gradientUnits="userSpaceOnUse"
1368 x1="13.267747"
1369 y1="7.7190704"
1370 x2="13.267747"
1371 y2="12.480761"
1372 gradientTransform="matrix(0.4605061,0,0,0.4517508,3.292189,4.5508334)" />
1373 <linearGradient
1374 inkscape:collect="always"
1375 xlink:href="#linearGradient3832"
1376 id="linearGradient6995"
1377 gradientUnits="userSpaceOnUse"
1378 gradientTransform="matrix(0.5139498,0,0,0.5905313,2.4340729,2.5224871)"
1379 x1="17.88068"
1380 y1="11.072588"
1381 x2="17.88068"
1382 y2="21.767578" />
1383 <linearGradient
1384 inkscape:collect="always"
1385 xlink:href="#linearGradient800"
1386 id="linearGradient12429"
1387 x1="26.011667"
1388 y1="210.95692"
1389 x2="38.991261"
1390 y2="210.95692"
1391 gradientUnits="userSpaceOnUse" />
1392 <linearGradient
1393 inkscape:collect="always"
1394 xlink:href="#linearGradient4816"
1395 id="linearGradient7711"
1396 gradientUnits="userSpaceOnUse"
1397 gradientTransform="matrix(0.4605061,0,0,0.4517508,3.292189,4.5508334)"
1398 x1="13.267747"
1399 y1="7.7190704"
1400 x2="13.267747"
1401 y2="12.480761" />
1402 <linearGradient
1403 inkscape:collect="always"
1404 xlink:href="#linearGradient3832"
1405 id="linearGradient7709"
1406 gradientUnits="userSpaceOnUse"
1407 gradientTransform="matrix(0.5139498,0,0,0.5905313,2.4340729,2.5224871)"
1408 x1="17.88068"
1409 y1="11.072588"
1410 x2="17.88068"
1411 y2="21.767578" />
1412 <linearGradient
1413 inkscape:collect="always"
1414 xlink:href="#linearGradient9845"
1415 id="linearGradient13031"
1416 gradientUnits="userSpaceOnUse"
1417 gradientTransform="matrix(0.1816493,0,0,0.1991284,149.14312,228.84216)"
1418 x1="10.907269"
1419 y1="25.002281"
1420 x2="30.875446"
1421 y2="36.127281" />
1422 <linearGradient
1423 inkscape:collect="always"
1424 xlink:href="#linearGradient11327"
1425 id="linearGradient13037"
1426 gradientUnits="userSpaceOnUse"
1427 gradientTransform="matrix(0.2225266,0,0,0.2670606,148.26654,226.61685)"
1428 x1="31.630468"
1429 y1="41.791817"
1430 x2="8.6713638"
1431 y2="25.793524" />
1432 <linearGradient
1433 inkscape:collect="always"
1434 xlink:href="#linearGradient2092"
1435 id="linearGradient13035"
1436 gradientUnits="userSpaceOnUse"
1437 gradientTransform="matrix(0.2225266,0,0,0.2670606,148.26654,226.3417)"
1438 x1="6.72682"
1439 y1="32.161697"
1440 x2="40.938126"
1441 y2="32.161697" />
1442 <linearGradient
1443 inkscape:collect="always"
1444 xlink:href="#linearGradient9845"
1445 id="linearGradient13071"
1446 gradientUnits="userSpaceOnUse"
1447 gradientTransform="matrix(0.1816493,0,0,0.1991284,147.14312,228.84216)"
1448 x1="10.907269"
1449 y1="25.002281"
1450 x2="30.875446"
1451 y2="36.127281" />
1452 <linearGradient
1453 inkscape:collect="always"
1454 xlink:href="#linearGradient11327"
1455 id="linearGradient13069"
1456 gradientUnits="userSpaceOnUse"
1457 gradientTransform="matrix(0.2225266,0,0,0.2670606,146.26654,226.61685)"
1458 x1="31.630468"
1459 y1="41.791817"
1460 x2="8.6713638"
1461 y2="25.793524" />
1462 <linearGradient
1463 inkscape:collect="always"
1464 xlink:href="#linearGradient2092"
1465 id="linearGradient13067"
1466 gradientUnits="userSpaceOnUse"
1467 gradientTransform="matrix(0.2225266,0,0,0.2670606,146.26654,226.3417)"
1468 x1="6.72682"
1469 y1="32.161697"
1470 x2="40.938126"
1471 y2="32.161697" />
1472 <linearGradient
1473 id="linearGradient2326"
1474 inkscape:collect="always">
1475 <stop
1476 id="stop2328"
1477 offset="0"
1478 style="stop-color:#ffffff;stop-opacity:1;" />
1479 <stop
1480 id="stop2330"
1481 offset="1"
1482 style="stop-color:#ffffff;stop-opacity:0;" />
1483 </linearGradient>
1484 <radialGradient
1485 inkscape:collect="always"
1486 xlink:href="#linearGradient2326"
1487 id="radialGradient11596"
1488 gradientUnits="userSpaceOnUse"
1489 gradientTransform="matrix(0.8890471,-1.4337516e-8,0,0.8194693,132.77797,121.35477)"
1490 cx="15.09403"
1491 cy="13.282721"
1492 fx="15.09403"
1493 fy="13.282721"
1494 r="10.16466" />
1495 <radialGradient
1496 inkscape:collect="always"
1497 xlink:href="#linearGradient2778"
1498 id="radialGradient12198"
1499 gradientUnits="userSpaceOnUse"
1500 gradientTransform="matrix(2.9758018,0,0,3.275568,20.621037,207.14417)"
1501 cx="4.8879852"
1502 cy="5.044178"
1503 fx="4.8879852"
1504 fy="5.044178"
1505 r="11" />
1506 <linearGradient
1507 inkscape:collect="always"
1508 id="linearGradient2187">
1509 <stop
1510 style="stop-color:#ffffff;stop-opacity:1;"
1511 offset="0"
1512 id="stop2189" />
1513 <stop
1514 style="stop-color:#ffffff;stop-opacity:0;"
1515 offset="1"
1516 id="stop2191" />
1517 </linearGradient>
1518 <linearGradient
1519 inkscape:collect="always"
1520 xlink:href="#linearGradient2187"
1521 id="linearGradient11599"
1522 gradientUnits="userSpaceOnUse"
1523 gradientTransform="matrix(0,-0.4174217,-0.4174217,0,158.32056,147.72824)"
1524 x1="17.060806"
1525 y1="11.39502"
1526 x2="10.07895"
1527 y2="14.530241" />
1528 <linearGradient
1529 id="linearGradient2316"
1530 inkscape:collect="always">
1531 <stop
1532 id="stop2318"
1533 offset="0"
1534 style="stop-color:#c4a000;stop-opacity:1;" />
1535 <stop
1536 id="stop2320"
1537 offset="1"
1538 style="stop-color:#c4a000;stop-opacity:0;" />
1539 </linearGradient>
1540 <linearGradient
1541 inkscape:collect="always"
1542 xlink:href="#linearGradient2316"
1543 id="linearGradient11604"
1544 gradientUnits="userSpaceOnUse"
1545 x1="16.489479"
1546 y1="40.512375"
1547 x2="8.1764917"
1548 y2="47.071392"
1549 gradientTransform="matrix(0.3561843,0,0,0.3393282,142.51711,127.32532)" />
1550 <linearGradient
1551 id="linearGradient2308"
1552 inkscape:collect="always">
1553 <stop
1554 id="stop2310"
1555 offset="0"
1556 style="stop-color:#edd400;stop-opacity:1;" />
1557 <stop
1558 id="stop2312"
1559 offset="1"
1560 style="stop-color:#edd400;stop-opacity:0;" />
1561 </linearGradient>
1562 <linearGradient
1563 inkscape:collect="always"
1564 xlink:href="#linearGradient2308"
1565 id="linearGradient11602"
1566 gradientUnits="userSpaceOnUse"
1567 x1="16.489479"
1568 y1="40.512375"
1569 x2="8.1764917"
1570 y2="47.071392"
1571 gradientTransform="matrix(0.3561843,0,0,0.3393282,142.51711,127.32532)" />
1572 <radialGradient
1573 r="17.171415"
1574 fy="1.5350308"
1575 fx="15.987216"
1576 cy="1.5350308"
1577 cx="15.987216"
1578 gradientTransform="matrix(0,-2.046729,-1.55761,0,44.11559,66.93275)"
1579 gradientUnits="userSpaceOnUse"
1580 id="radialGradient1471"
1581 xlink:href="#linearGradient8650"
1582 inkscape:collect="always" />
1583 <linearGradient
1584 id="linearGradient1442">
1585 <stop
1586 style="stop-color:#73d216"
1587 offset="0"
1588 id="stop1444" />
1589 <stop
1590 style="stop-color:#4e9a06"
1591 offset="1.0000000"
1592 id="stop1446" />
1593 </linearGradient>
1594 <radialGradient
1595 r="16.9562"
1596 fy="20.494493"
1597 fx="35.292667"
1598 cy="20.494493"
1599 cx="35.292667"
1600 gradientTransform="matrix(0,-0.843022,1.020168,0,0.606436,42.58614)"
1601 gradientUnits="userSpaceOnUse"
1602 id="radialGradient1469"
1603 xlink:href="#linearGradient1442"
1604 inkscape:collect="always" />
1605 <linearGradient
1606 inkscape:collect="always"
1607 xlink:href="#linearGradient2251"
1608 id="linearGradient12908"
1609 gradientUnits="userSpaceOnUse"
1610 gradientTransform="matrix(0.3363251,0,0,0.3393025,142.33397,150.26197)"
1611 x1="33.396004"
1612 y1="36.921333"
1613 x2="34.170048"
1614 y2="38.070381" />
1615 <linearGradient
1616 id="linearGradient2224">
1617 <stop
1618 id="stop2226"
1619 offset="0"
1620 style="stop-color:#7c7c7c;stop-opacity:1;" />
1621 <stop
1622 id="stop2228"
1623 offset="1"
1624 style="stop-color:#b8b8b8;stop-opacity:1;" />
1625 </linearGradient>
1626 <linearGradient
1627 inkscape:collect="always"
1628 xlink:href="#linearGradient2224"
1629 id="linearGradient12910"
1630 gradientUnits="userSpaceOnUse"
1631 gradientTransform="matrix(0.3363251,0,0,0.3393025,142.33397,150.26197)"
1632 x1="35.996582"
1633 y1="40.458221"
1634 x2="33.664921"
1635 y2="37.770721" />
1636 <linearGradient
1637 inkscape:collect="always"
1638 xlink:href="#linearGradient15234"
1639 id="linearGradient12922"
1640 gradientUnits="userSpaceOnUse"
1641 gradientTransform="matrix(0.3888889,0,0,0.4227031,141.47223,152.57775)"
1642 x1="25.404572"
1643 y1="3.8180194"
1644 x2="25.464211"
1645 y2="9.3233509" />
1646 <linearGradient
1647 inkscape:collect="always"
1648 xlink:href="#linearGradient2259"
1649 id="linearGradient12912"
1650 gradientUnits="userSpaceOnUse"
1651 gradientTransform="matrix(0.2441719,0,0,0.2360898,145.17764,154.83895)"
1652 x1="26.076092"
1653 y1="26.696676"
1654 x2="30.811172"
1655 y2="42.007351" />
1656 <linearGradient
1657 inkscape:collect="always"
1658 xlink:href="#linearGradient15218"
1659 id="linearGradient12905"
1660 gradientUnits="userSpaceOnUse"
1661 gradientTransform="matrix(0.3158146,0,0,0.2774678,143.40473,153.65275)"
1662 x1="22.308331"
1663 y1="18.99214"
1664 x2="35.785294"
1665 y2="39.498238" />
1666 <linearGradient
1667 inkscape:collect="always"
1668 xlink:href="#linearGradient14484"
1669 id="linearGradient12903"
1670 gradientUnits="userSpaceOnUse"
1671 gradientTransform="matrix(0.3330286,0,0,0.3410854,143.01325,151.96511)"
1672 x1="6.1071744"
1673 y1="10.45129"
1674 x2="33.857143"
1675 y2="37.87986" />
1676 <linearGradient
1677 inkscape:collect="always"
1678 xlink:href="#linearGradient8059"
1679 id="linearGradient11975"
1680 gradientUnits="userSpaceOnUse"
1681 gradientTransform="matrix(1.332493,0,0,2.661873,129.84234,-391.15912)"
1682 x1="21.884281"
1683 y1="219.0054"
1684 x2="16.37369"
1685 y2="214.44499" />
1686 <linearGradient
1687 id="linearGradient15234">
1688 <stop
1689 id="stop15236"
1690 offset="0.0000000"
1691 style="stop-color:#97978a;stop-opacity:1.0000000;" />
1692 <stop
1693 style="stop-color:#c2c2b9;stop-opacity:1.0000000;"
1694 offset="0.50000000"
1695 id="stop15242" />
1696 <stop
1697 id="stop15238"
1698 offset="1.0000000"
1699 style="stop-color:#7d7d6f;stop-opacity:1.0000000;" />
1700 </linearGradient>
1701 <linearGradient
1702 inkscape:collect="always"
1703 xlink:href="#linearGradient15234"
1704 id="linearGradient11973"
1705 gradientUnits="userSpaceOnUse"
1706 gradientTransform="matrix(0.3888889,0,0,0.4227031,141.47223,176.57775)"
1707 x1="25.404572"
1708 y1="3.8180194"
1709 x2="25.464211"
1710 y2="9.3233509" />
1711 <linearGradient
1712 id="linearGradient2259"
1713 inkscape:collect="always">
1714 <stop
1715 id="stop2261"
1716 offset="0"
1717 style="stop-color:#ffffff;stop-opacity:1;" />
1718 <stop
1719 id="stop2263"
1720 offset="1"
1721 style="stop-color:#ffffff;stop-opacity:0;" />
1722 </linearGradient>
1723 <linearGradient
1724 inkscape:collect="always"
1725 xlink:href="#linearGradient2259"
1726 id="linearGradient11971"
1727 gradientUnits="userSpaceOnUse"
1728 gradientTransform="matrix(0.2441719,0,0,0.2360898,145.17764,178.83895)"
1729 x1="26.076092"
1730 y1="26.696676"
1731 x2="30.811172"
1732 y2="42.007351" />
1733 <linearGradient
1734 id="linearGradient15218">
1735 <stop
1736 id="stop15220"
1737 offset="0.0000000"
1738 style="stop-color:#f0f0ef;stop-opacity:1.0000000;" />
1739 <stop
1740 style="stop-color:#e8e8e8;stop-opacity:1;"
1741 offset="0.59928656"
1742 id="stop2269" />
1743 <stop
1744 style="stop-color:#ffffff;stop-opacity:1;"
1745 offset="0.82758623"
1746 id="stop2267" />
1747 <stop
1748 id="stop15222"
1749 offset="1.0000000"
1750 style="stop-color:#d8d8d3;stop-opacity:1.0000000;" />
1751 </linearGradient>
1752 <linearGradient
1753 inkscape:collect="always"
1754 xlink:href="#linearGradient15218"
1755 id="linearGradient11969"
1756 gradientUnits="userSpaceOnUse"
1757 gradientTransform="matrix(0.3158146,0,0,0.2774678,143.40473,177.65275)"
1758 x1="22.308331"
1759 y1="18.99214"
1760 x2="35.785294"
1761 y2="39.498238" />
1762 <linearGradient
1763 id="linearGradient14484">
1764 <stop
1765 id="stop14486"
1766 offset="0.0000000"
1767 style="stop-color:#c68827;stop-opacity:1.0000000;" />
1768 <stop
1769 id="stop14488"
1770 offset="1.0000000"
1771 style="stop-color:#89601f;stop-opacity:1.0000000;" />
1772 </linearGradient>
1773 <linearGradient
1774 inkscape:collect="always"
1775 xlink:href="#linearGradient14484"
1776 id="linearGradient11967"
1777 gradientUnits="userSpaceOnUse"
1778 gradientTransform="matrix(0.3330286,0,0,0.3410854,143.01325,175.96511)"
1779 x1="6.1071744"
1780 y1="10.45129"
1781 x2="33.857143"
1782 y2="37.87986" />
1783 <linearGradient
1784 inkscape:collect="always"
1785 xlink:href="#linearGradient3480"
1786 id="linearGradient12604"
1787 gradientUnits="userSpaceOnUse"
1788 gradientTransform="matrix(-1,0,0,1,410.0303,203.00002)"
1789 x1="266.0303"
1790 y1="70.980736"
1791 x2="258.01514"
1792 y2="77.990372" />
1793 <linearGradient
1794 inkscape:collect="always"
1795 xlink:href="#linearGradient5704"
1796 id="linearGradient12602"
1797 gradientUnits="userSpaceOnUse"
1798 gradientTransform="matrix(-0.939394,0,0,1,394.3788,206.50002)"
1799 x1="256.89447"
1800 y1="73.65818"
1801 x2="250.66499"
1802 y2="80.141884" />
1803 <linearGradient
1804 inkscape:collect="always"
1805 xlink:href="#linearGradient3466"
1806 id="linearGradient12581"
1807 gradientUnits="userSpaceOnUse"
1808 x1="256.3262"
1809 y1="80.005852"
1810 x2="258.91818"
1811 y2="78.5" />
1812 <linearGradient
1813 inkscape:collect="always"
1814 xlink:href="#linearGradient3480"
1815 id="linearGradient12598"
1816 gradientUnits="userSpaceOnUse"
1817 gradientTransform="translate(-410.0303,203.00002)"
1818 x1="266.64761"
1819 y1="74.382683"
1820 x2="262.53848"
1821 y2="78.836052" />
1822 <linearGradient
1823 inkscape:collect="always"
1824 xlink:href="#linearGradient1610"
1825 id="linearGradient12596"
1826 gradientUnits="userSpaceOnUse"
1827 gradientTransform="translate(-409.5,203.50002)"
1828 x1="261.1073"
1829 y1="79.5"
1830 x2="269.54849"
1831 y2="79.5" />
1832 <linearGradient
1833 inkscape:collect="always"
1834 xlink:href="#linearGradient3480"
1835 id="linearGradient12593"
1836 gradientUnits="userSpaceOnUse"
1837 gradientTransform="matrix(-1,0,0,0.982332,410.0303,204.27221)"
1838 x1="261.03427"
1839 y1="69.714012"
1840 x2="256.5"
1841 y2="71.037422" />
1842 <radialGradient
1843 inkscape:collect="always"
1844 xlink:href="#linearGradient16754"
1845 id="radialGradient13104"
1846 gradientUnits="userSpaceOnUse"
1847 gradientTransform="matrix(0.8191553,0,0,1.0706844,115.82096,44.90855)"
1848 cx="48.158638"
1849 cy="245.53783"
1850 fx="48.158638"
1851 fy="245.53783"
1852 r="20.145752" />
1853 <linearGradient
1854 inkscape:collect="always"
1855 xlink:href="#linearGradient4816"
1856 id="linearGradient12617"
1857 gradientUnits="userSpaceOnUse"
1858 gradientTransform="matrix(0.8354865,0,0,0.7224155,284.90156,460.19647)"
1859 x1="13.267747"
1860 y1="7.7190704"
1861 x2="13.267747"
1862 y2="12.480761" />
1863 <linearGradient
1864 inkscape:collect="always"
1865 xlink:href="#linearGradient3832"
1866 id="linearGradient12615"
1867 gradientUnits="userSpaceOnUse"
1868 gradientTransform="matrix(0.9324483,0,0,0.9443458,283.3447,456.95285)"
1869 x1="17.88068"
1870 y1="11.072588"
1871 x2="17.88068"
1872 y2="21.767578" />
1873 <linearGradient
1874 inkscape:collect="always"
1875 xlink:href="#linearGradient4816"
1876 id="linearGradient12648"
1877 gradientUnits="userSpaceOnUse"
1878 gradientTransform="matrix(0.8354865,0,0,0.7224155,260.92838,460.19647)"
1879 x1="13.267747"
1880 y1="7.7190704"
1881 x2="13.267747"
1882 y2="12.480761" />
1883 <linearGradient
1884 inkscape:collect="always"
1885 xlink:href="#linearGradient3832"
1886 id="linearGradient12651"
1887 gradientUnits="userSpaceOnUse"
1888 gradientTransform="matrix(0.9324483,0,0,0.9443458,259.37152,456.95285)"
1889 x1="17.88068"
1890 y1="11.072588"
1891 x2="17.88068"
1892 y2="21.767578" />
1893 <linearGradient
1894 inkscape:collect="always"
1895 xlink:href="#linearGradient8331"
1896 id="linearGradient7542"
1897 gradientUnits="userSpaceOnUse"
1898 gradientTransform="matrix(1.294118,0,0,1.333333,1.705882,-151.2103)"
1899 x1="-16.000061"
1900 y1="423.45538"
1901 x2="1.0000585"
1902 y2="423.45538" />
1903 <linearGradient
1904 inkscape:collect="always"
1905 xlink:href="#linearGradient8331"
1906 id="linearGradient7552"
1907 gradientUnits="userSpaceOnUse"
1908 gradientTransform="matrix(1.294118,0,0,1.333333,1.705882,-151.2103)"
1909 x1="-16.000061"
1910 y1="423.45538"
1911 x2="1.0000585"
1912 y2="423.45538" />
1913 <linearGradient
1914 inkscape:collect="always"
1915 xlink:href="#linearGradient8357"
1916 id="linearGradient6651"
1917 gradientUnits="userSpaceOnUse"
1918 x1="-8.6875"
1919 y1="410.10919"
1920 x2="-8.6875"
1921 y2="417.38632"
1922 gradientTransform="matrix(0.825,0,0,0.8250133,-1.4000259,72.28586)" />
1923 <linearGradient
1924 inkscape:collect="always"
1925 xlink:href="#linearGradient11905"
1926 id="linearGradient12816"
1927 gradientUnits="userSpaceOnUse"
1928 x1="162.2023"
1929 y1="413.94385"
1930 x2="162.2023"
1931 y2="409.06992" />
1932 <linearGradient
1933 inkscape:collect="always"
1934 xlink:href="#linearGradient11913"
1935 id="linearGradient12814"
1936 gradientUnits="userSpaceOnUse"
1937 x1="162.09949"
1938 y1="414.01666"
1939 x2="162.09949"
1940 y2="409.02002" />
1941 <linearGradient
1942 inkscape:collect="always"
1943 xlink:href="#linearGradient11905"
1944 id="linearGradient11933"
1945 gradientUnits="userSpaceOnUse"
1946 x1="162.2023"
1947 y1="414.66092"
1948 x2="162.2023"
1949 y2="409.06992" />
1950 <linearGradient
1951 inkscape:collect="always"
1952 xlink:href="#linearGradient11913"
1953 id="linearGradient11931"
1954 gradientUnits="userSpaceOnUse"
1955 x1="162.09949"
1956 y1="414.01666"
1957 x2="162.09949"
1958 y2="409.02002" />
1959 <linearGradient
1960 inkscape:collect="always"
1961 xlink:href="#linearGradient8343"
1962 id="linearGradient17263"
1963 gradientUnits="userSpaceOnUse"
1964 gradientTransform="matrix(1.294118,0,0,1,1.705882,-10.5436)"
1965 x1="-16.000221"
1966 y1="423.58575"
1967 x2="0.58696824"
1968 y2="423.58575" />
1969 <linearGradient
1970 inkscape:collect="always"
1971 xlink:href="#linearGradient8331"
1972 id="linearGradient17261"
1973 gradientUnits="userSpaceOnUse"
1974 gradientTransform="matrix(1.294118,0,0,1.333333,1.705882,-151.2103)"
1975 x1="-16.000061"
1976 y1="423.45538"
1977 x2="1.0000585"
1978 y2="423.45538" />
1979 <linearGradient
1980 inkscape:collect="always"
1981 xlink:href="#linearGradient11905"
1982 id="linearGradient19952"
1983 gradientUnits="userSpaceOnUse"
1984 x1="162.2023"
1985 y1="409.81949"
1986 x2="162.2023"
1987 y2="409.06992"
1988 gradientTransform="translate(-0.7661448,1.143809)" />
1989 <linearGradient
1990 inkscape:collect="always"
1991 xlink:href="#linearGradient11913"
1992 id="linearGradient19950"
1993 gradientUnits="userSpaceOnUse"
1994 x1="162.09949"
1995 y1="409.61749"
1996 x2="162.09949"
1997 y2="409.02002"
1998 gradientTransform="matrix(1.1057945,0,0,1.1172822,-17.765464,-48.304282)" />
1999 <linearGradient
2000 inkscape:collect="always"
2001 xlink:href="#linearGradient8343"
2002 id="linearGradient7702"
2003 gradientUnits="userSpaceOnUse"
2004 gradientTransform="matrix(1.294118,0,0,1.3749958,1.705882,-170.87325)"
2005 x1="-16.000221"
2006 y1="423.58575"
2007 x2="0.58696824"
2008 y2="423.58575" />
2009 <linearGradient
2010 inkscape:collect="always"
2011 xlink:href="#linearGradient8331"
2012 id="linearGradient7700"
2013 gradientUnits="userSpaceOnUse"
2014 gradientTransform="matrix(1.294118,0,0,1.375001,1.705882,-170.87605)"
2015 x1="-16.000061"
2016 y1="423.45538"
2017 x2="1.0000585"
2018 y2="423.45538" />
2019 <linearGradient
2020 inkscape:collect="always"
2021 xlink:href="#linearGradient8343"
2022 id="linearGradient9454"
2023 gradientUnits="userSpaceOnUse"
2024 gradientTransform="matrix(1.294118,0,0,1.3750008,1.705879,-156.7502)"
2025 x1="-16.000221"
2026 y1="423.58575"
2027 x2="-11.467163"
2028 y2="423.58575" />
2029 <linearGradient
2030 inkscape:collect="always"
2031 xlink:href="#linearGradient8331"
2032 id="linearGradient9452"
2033 gradientUnits="userSpaceOnUse"
2034 gradientTransform="matrix(1.294118,0,0,1.3749997,1.705879,-156.75012)"
2035 x1="-16.000061"
2036 y1="423.45538"
2037 x2="-11.80596"
2038 y2="423.45538" />
2039 <linearGradient
2040 inkscape:collect="always"
2041 xlink:href="#linearGradient8343"
2042 id="linearGradient7642"
2043 gradientUnits="userSpaceOnUse"
2044 gradientTransform="matrix(1.294118,0,0,1.3750007,1.705879,-156.87557)"
2045 x1="-16.000221"
2046 y1="423.58575"
2047 x2="-11.467163"
2048 y2="423.58575" />
2049 <linearGradient
2050 inkscape:collect="always"
2051 xlink:href="#linearGradient8331"
2052 id="linearGradient7640"
2053 gradientUnits="userSpaceOnUse"
2054 gradientTransform="matrix(1.294118,0,0,1.3749994,1.705879,-156.87543)"
2055 x1="-16.000061"
2056 y1="423.45538"
2057 x2="-11.80596"
2058 y2="423.45538" />
2059 <linearGradient
2060 inkscape:collect="always"
2061 xlink:href="#linearGradient8343"
2062 id="linearGradient12917"
2063 gradientUnits="userSpaceOnUse"
2064 gradientTransform="matrix(1.4117651,0,0,1.4948457,2.5882778,-222.31451)"
2065 x1="-16.000221"
2066 y1="423.58575"
2067 x2="0.58696824"
2068 y2="423.58575" />
2069 <linearGradient
2070 inkscape:collect="always"
2071 xlink:href="#linearGradient8331"
2072 id="linearGradient12915"
2073 gradientUnits="userSpaceOnUse"
2074 gradientTransform="matrix(1.4117651,0,0,1.4999999,2.5882778,-224.50049)"
2075 x1="-16.000061"
2076 y1="423.45538"
2077 x2="1.0000585"
2078 y2="423.45538" />
2079 <linearGradient
2080 inkscape:collect="always"
2081 xlink:href="#linearGradient8343"
2082 id="linearGradient12913"
2083 gradientUnits="userSpaceOnUse"
2084 gradientTransform="matrix(1.411765,0,0,1.4997799,2.5882779,-209.90683)"
2085 x1="-16.000221"
2086 y1="423.58575"
2087 x2="-11.467163"
2088 y2="423.58575" />
2089 <linearGradient
2090 inkscape:collect="always"
2091 xlink:href="#linearGradient8331"
2092 id="linearGradient12911"
2093 gradientUnits="userSpaceOnUse"
2094 gradientTransform="matrix(1.411765,0,0,1.4999989,2.5882779,-209.99987)"
2095 x1="-16.000061"
2096 y1="423.45538"
2097 x2="-11.80596"
2098 y2="423.45538" />
2099 <linearGradient
2100 inkscape:collect="always"
2101 xlink:href="#linearGradient8343"
2102 id="linearGradient12909"
2103 gradientUnits="userSpaceOnUse"
2104 gradientTransform="matrix(1.411765,0,0,1.4999399,2.5881909,-209.47473)"
2105 x1="-16.000221"
2106 y1="423.58575"
2107 x2="-11.467163"
2108 y2="423.58575" />
2109 <linearGradient
2110 inkscape:collect="always"
2111 xlink:href="#linearGradient8331"
2112 id="linearGradient12907"
2113 gradientUnits="userSpaceOnUse"
2114 gradientTransform="matrix(1.411765,0,0,1.4999989,2.5881909,-209.50016)"
2115 x1="-16.000061"
2116 y1="423.45538"
2117 x2="-11.80596"
2118 y2="423.45538" />
2119 <linearGradient
2120 inkscape:collect="always"
2121 id="linearGradient5932">
2122 <stop
2123 style="stop-color:#aa8a00;stop-opacity:1"
2124 offset="0"
2125 id="stop5934" />
2126 <stop
2127 style="stop-color:#685400;stop-opacity:1"
2128 offset="1"
2129 id="stop5936" />
2130 </linearGradient>
2131 <linearGradient
2132 inkscape:collect="always"
2133 xlink:href="#linearGradient5932"
2134 id="linearGradient5938"
2135 x1="15.785038"
2136 y1="7.033917"
2137 x2="15.785038"
2138 y2="11.669251"
2139 gradientUnits="userSpaceOnUse" />
2140 <linearGradient
2141 inkscape:collect="always"
2142 id="linearGradient5904">
2143 <stop
2144 style="stop-color:#6b99ca;stop-opacity:1;"
2145 offset="0"
2146 id="stop5906" />
2147 <stop
2148 style="stop-color:#6b99ca;stop-opacity:0;"
2149 offset="1"
2150 id="stop5908" />
2151 </linearGradient>
2152 <linearGradient
2153 inkscape:collect="always"
2154 xlink:href="#linearGradient5904"
2155 id="linearGradient5910"
2156 x1="19.666338"
2157 y1="19.245584"
2158 x2="21.732088"
2159 y2="19.245584"
2160 gradientUnits="userSpaceOnUse"
2161 gradientTransform="translate(-4.958783,4.4652e-2)" />
2162 <linearGradient
2163 inkscape:collect="always"
2164 id="linearGradient5924">
2165 <stop
2166 style="stop-color:#edd400;stop-opacity:1;"
2167 offset="0"
2168 id="stop5926" />
2169 <stop
2170 style="stop-color:#fffbce;stop-opacity:1"
2171 offset="1"
2172 id="stop5928" />
2173 </linearGradient>
2174 <radialGradient
2175 inkscape:collect="always"
2176 xlink:href="#linearGradient5924"
2177 id="radialGradient5930"
2178 cx="20.539745"
2179 cy="14.45822"
2180 fx="20.539745"
2181 fy="14.45822"
2182 r="4.561861"
2183 gradientTransform="matrix(-2.1933856e-2,-1.4404292,1.1932891,-1.852436e-2,-1.2022609,43.884324)"
2184 gradientUnits="userSpaceOnUse" />
2185 <linearGradient
2186 inkscape:collect="always"
2187 id="linearGradient5398">
2188 <stop
2189 style="stop-color:#729fcf;stop-opacity:1;"
2190 offset="0"
2191 id="stop5400" />
2192 <stop
2193 style="stop-color:#729fcf;stop-opacity:0;"
2194 offset="1"
2195 id="stop5402" />
2196 </linearGradient>
2197 <linearGradient
2198 inkscape:collect="always"
2199 xlink:href="#linearGradient5398"
2200 id="linearGradient7413"
2201 gradientUnits="userSpaceOnUse"
2202 x1="-1.650571"
2203 y1="229.18515"
2204 x2="6.1053252"
2205 y2="250.19063" />
2206 <linearGradient
2207 inkscape:collect="always"
2208 id="linearGradient7659">
2209 <stop
2210 style="stop-color:#555753;stop-opacity:1;"
2211 offset="0"
2212 id="stop7661" />
2213 <stop
2214 style="stop-color:#555753;stop-opacity:0;"
2215 offset="1"
2216 id="stop7663" />
2217 </linearGradient>
2218 <radialGradient
2219 inkscape:collect="always"
2220 xlink:href="#linearGradient7659"
2221 id="radialGradient7411"
2222 gradientUnits="userSpaceOnUse"
2223 gradientTransform="matrix(0.973425,0,0,0.24,0.401944,173.945)"
2224 cx="15.125"
2225 cy="229.39583"
2226 fx="15.125"
2227 fy="229.39583"
2228 r="9.375" />
2229 <linearGradient
2230 inkscape:collect="always"
2231 id="linearGradient5388">
2232 <stop
2233 style="stop-color:#bcd2e9;stop-opacity:1"
2234 offset="0"
2235 id="stop5390" />
2236 <stop
2237 style="stop-color:#93b6db;stop-opacity:1"
2238 offset="1"
2239 id="stop5392" />
2240 </linearGradient>
2241 <radialGradient
2242 inkscape:collect="always"
2243 xlink:href="#linearGradient5388"
2244 id="radialGradient7409"
2245 gradientUnits="userSpaceOnUse"
2246 cx="2.96875"
2247 cy="240.416"
2248 fx="2.96875"
2249 fy="240.416"
2250 r="8.96875" />
2251 <linearGradient
2252 inkscape:collect="always"
2253 xlink:href="#linearGradient7629"
2254 id="linearGradient7407"
2255 gradientUnits="userSpaceOnUse"
2256 gradientTransform="translate(235.4321,-644.2117)"
2257 x1="-164.73708"
2258 y1="182.09869"
2259 x2="-162.92517"
2260 y2="182.10544" />
2261 <linearGradient
2262 id="linearGradient5631">
2263 <stop
2264 style="stop-color:white;stop-opacity:1;"
2265 offset="0"
2266 id="stop5633" />
2267 <stop
2268 style="stop-color:#729fcf;stop-opacity:1;"
2269 offset="1"
2270 id="stop5635" />
2271 </linearGradient>
2272 <linearGradient
2273 inkscape:collect="always"
2274 id="linearGradient2874">
2275 <stop
2276 style="stop-color:white;stop-opacity:1;"
2277 offset="0"
2278 id="stop2876" />
2279 <stop
2280 style="stop-color:white;stop-opacity:0;"
2281 offset="1"
2282 id="stop2878" />
2283 </linearGradient>
2284 <linearGradient
2285 inkscape:collect="always"
2286 id="linearGradient2788">
2287 <stop
2288 style="stop-color:#888a85;stop-opacity:1;"
2289 offset="0"
2290 id="stop2790" />
2291 <stop
2292 style="stop-color:#888a85;stop-opacity:0;"
2293 offset="1"
2294 id="stop2792" />
2295 </linearGradient>
2296 <linearGradient
2297 id="linearGradient2798">
2298 <stop
2299 id="stop2800"
2300 offset="0"
2301 style="stop-color:white;stop-opacity:1" />
2302 <stop
2303 id="stop2802"
2304 offset="1"
2305 style="stop-color:#d3d7cf;stop-opacity:0;" />
2306 </linearGradient>
2307 <linearGradient
2308 inkscape:collect="always"
2309 id="linearGradient2828">
2310 <stop
2311 style="stop-color:black;stop-opacity:1;"
2312 offset="0"
2313 id="stop2830" />
2314 <stop
2315 style="stop-color:black;stop-opacity:0;"
2316 offset="1"
2317 id="stop2832" />
2318 </linearGradient>
2319 <linearGradient
2320 inkscape:collect="always"
2321 id="linearGradient2810">
2322 <stop
2323 style="stop-color:white;stop-opacity:1;"
2324 offset="0"
2325 id="stop2812" />
2326 <stop
2327 style="stop-color:white;stop-opacity:0;"
2328 offset="1"
2329 id="stop2814" />
2330 </linearGradient>
2331 <linearGradient
2332 id="linearGradient2778">
2333 <stop
2334 style="stop-color:#eeeeec;stop-opacity:1"
2335 offset="0"
2336 id="stop2780" />
2337 <stop
2338 style="stop-color:#d3d7cf;stop-opacity:1"
2339 offset="1"
2340 id="stop2782" />
2341 </linearGradient>
2342 <linearGradient
2343 inkscape:collect="always"
2344 xlink:href="#linearGradient7443"
2345 id="linearGradient2098"
2346 gradientUnits="userSpaceOnUse"
2347 x1="25.058096"
2348 y1="47.027729"
2349 x2="25.058096"
2350 y2="39.999443"
2351 gradientTransform="matrix(0.987013,0,0,1.2000019,0.3116856,-96.40009)" />
2352 <linearGradient
2353 inkscape:collect="always"
2354 id="linearGradient3688">
2355 <stop
2356 style="stop-color:black;stop-opacity:1;"
2357 offset="0"
2358 id="stop3690" />
2359 <stop
2360 style="stop-color:black;stop-opacity:0;"
2361 offset="1"
2362 id="stop3692" />
2363 </linearGradient>
2364 <linearGradient
2365 id="linearGradient4816">
2366 <stop
2367 style="stop-color:#204a87;stop-opacity:1.0000000"
2368 offset="0.0000000"
2369 id="stop4818" />
2370 <stop
2371 style="stop-color:#204a87;stop-opacity:0.0000000"
2372 offset="1.0000000"
2373 id="stop4820" />
2374 </linearGradient>
2375 <linearGradient
2376 id="linearGradient16754">
2377 <stop
2378 style="stop-color:white;stop-opacity:1"
2379 offset="0.0000000"
2380 id="stop16756" />
2381 <stop
2382 style="stop-color:#cdcdcd;stop-opacity:1"
2383 offset="1.0000000"
2384 id="stop16758" />
2385 </linearGradient>
2386 <linearGradient
2387 inkscape:collect="always"
2388 id="linearGradient8163">
2389 <stop
2390 style="stop-color:#b2cbe5;stop-opacity:1"
2391 offset="0"
2392 id="stop8165" />
2393 <stop
2394 style="stop-color:#7fa9d5;stop-opacity:1"
2395 offset="1"
2396 id="stop8167" />
2397 </linearGradient>
2398 <linearGradient
2399 id="linearGradient11327">
2400 <stop
2401 style="stop-color:#7d6400;stop-opacity:1;"
2402 offset="0"
2403 id="stop11329" />
2404 <stop
2405 style="stop-color:#be9700;stop-opacity:1.0000000;"
2406 offset="1.0000000"
2407 id="stop11331" />
2408 </linearGradient>
2409 <linearGradient
2410 id="linearGradient9845">
2411 <stop
2412 style="stop-color:#ffffff;stop-opacity:1;"
2413 offset="0"
2414 id="stop9847" />
2415 <stop
2416 style="stop-color:#ffffff;stop-opacity:0.49484536;"
2417 offset="1.0000000"
2418 id="stop9849" />
2419 </linearGradient>
2420 <linearGradient
2421 id="linearGradient2092">
2422 <stop
2423 id="stop2094"
2424 offset="0"
2425 style="stop-color:#fff7b0;stop-opacity:1;" />
2426 <stop
2427 style="stop-color:#ffec41;stop-opacity:1.0000000;"
2428 offset="0.20999999"
2429 id="stop2098" />
2430 <stop
2431 id="stop43205"
2432 offset="0.83999997"
2433 style="stop-color:#e2cc00;stop-opacity:1;" />
2434 <stop
2435 id="stop2100"
2436 offset="1"
2437 style="stop-color:#c3af00;stop-opacity:1;" />
2438 </linearGradient>
2439 <linearGradient
2440 inkscape:collect="always"
2441 id="linearGradient12071">
2442 <stop
2443 style="stop-color:#ffffff;stop-opacity:1;"
2444 offset="0"
2445 id="stop12073" />
2446 <stop
2447 style="stop-color:#ffffff;stop-opacity:0;"
2448 offset="1"
2449 id="stop12075" />
2450 </linearGradient>
2451 <linearGradient
2452 inkscape:collect="always"
2453 id="linearGradient8710">
2454 <stop
2455 style="stop-color:#a40000;stop-opacity:1;"
2456 offset="0"
2457 id="stop8712" />
2458 <stop
2459 style="stop-color:#a40000;stop-opacity:0;"
2460 offset="1"
2461 id="stop8714" />
2462 </linearGradient>
2463 <linearGradient
2464 inkscape:collect="always"
2465 id="linearGradient8718">
2466 <stop
2467 style="stop-color:#f57a7a;stop-opacity:1;"
2468 offset="0"
2469 id="stop8720" />
2470 <stop
2471 style="stop-color:#f57a7a;stop-opacity:0;"
2472 offset="1"
2473 id="stop8722" />
2474 </linearGradient>
2475 <linearGradient
2476 inkscape:collect="always"
2477 id="linearGradient8487">
2478 <stop
2479 style="stop-color:#ef2929;stop-opacity:1;"
2480 offset="0"
2481 id="stop8489" />
2482 <stop
2483 style="stop-color:#c00;stop-opacity:1"
2484 offset="1"
2485 id="stop8491" />
2486 </linearGradient>
2487 <linearGradient
2488 inkscape:collect="always"
2489 id="linearGradient8506">
2490 <stop
2491 style="stop-color:#a40000;stop-opacity:1;"
2492 offset="0"
2493 id="stop8508" />
2494 <stop
2495 style="stop-color:#a40000;stop-opacity:0;"
2496 offset="1"
2497 id="stop8510" />
2498 </linearGradient>
2499 <linearGradient
2500 inkscape:collect="always"
2501 id="linearGradient7553">
2502 <stop
2503 style="stop-color:white;stop-opacity:1;"
2504 offset="0"
2505 id="stop7555" />
2506 <stop
2507 style="stop-color:white;stop-opacity:0;"
2508 offset="1"
2509 id="stop7557" />
2510 </linearGradient>
2511 <linearGradient
2512 id="linearGradient8545"
2513 inkscape:collect="always">
2514 <stop
2515 id="stop8547"
2516 offset="0"
2517 style="stop-color:white;stop-opacity:0.67487687" />
2518 <stop
2519 id="stop8549"
2520 offset="1"
2521 style="stop-color:white;stop-opacity:0;" />
2522 </linearGradient>
2523 <linearGradient
2524 inkscape:collect="always"
2525 id="linearGradient8527">
2526 <stop
2527 style="stop-color:#204a87;stop-opacity:1;"
2528 offset="0"
2529 id="stop8529" />
2530 <stop
2531 style="stop-color:#204a87;stop-opacity:0;"
2532 offset="1"
2533 id="stop8531" />
2534 </linearGradient>
2535 <linearGradient
2536 inkscape:collect="always"
2537 id="linearGradient8535">
2538 <stop
2539 style="stop-color:#3465a4;stop-opacity:1;"
2540 offset="0"
2541 id="stop8537" />
2542 <stop
2543 style="stop-color:#3465a4;stop-opacity:0;"
2544 offset="1"
2545 id="stop8539" />
2546 </linearGradient>
2547 <linearGradient
2548 inkscape:collect="always"
2549 id="linearGradient7569">
2550 <stop
2551 style="stop-color:#fff8c6;stop-opacity:1"
2552 offset="0"
2553 id="stop7571" />
2554 <stop
2555 style="stop-color:#edd400;stop-opacity:1"
2556 offset="1"
2557 id="stop7573" />
2558 </linearGradient>
2559 <linearGradient
2560 inkscape:collect="always"
2561 id="linearGradient7584">
2562 <stop
2563 style="stop-color:black;stop-opacity:1;"
2564 offset="0"
2565 id="stop7586" />
2566 <stop
2567 style="stop-color:black;stop-opacity:0;"
2568 offset="1"
2569 id="stop7588" />
2570 </linearGradient>
2571 <linearGradient
2572 id="linearGradient9320">
2573 <stop
2574 style="stop-color:#fef088;stop-opacity:1.0000000;"
2575 offset="0.0000000"
2576 id="stop9322" />
2577 <stop
2578 id="stop9324"
2579 offset="0.50000000"
2580 style="stop-color:#fde63a;stop-opacity:1.0000000;" />
2581 <stop
2582 style="stop-color:#dac203;stop-opacity:1.0000000;"
2583 offset="1.0000000"
2584 id="stop9326" />
2585 </linearGradient>
2586 <linearGradient
2587 inkscape:collect="always"
2588 id="linearGradient8796">
2589 <stop
2590 style="stop-color:white;stop-opacity:1;"
2591 offset="0"
2592 id="stop8798" />
2593 <stop
2594 style="stop-color:white;stop-opacity:0;"
2595 offset="1"
2596 id="stop8800" />
2597 </linearGradient>
2598 <linearGradient
2599 id="linearGradient11647">
2600 <stop
2601 id="stop11649"
2602 offset="0"
2603 style="stop-color:#c17d10;stop-opacity:1;" />
2604 <stop
2605 id="stop11651"
2606 offset="1.0000000"
2607 style="stop-color:#9b650c;stop-opacity:1.0000000;" />
2608 </linearGradient>
2609 <linearGradient
2610 id="linearGradient8650">
2611 <stop
2612 style="stop-color:#ffffff;stop-opacity:1;"
2613 offset="0"
2614 id="stop8652" />
2615 <stop
2616 style="stop-color:#ffffff;stop-opacity:0;"
2617 offset="1"
2618 id="stop8654" />
2619 </linearGradient>
2620 <linearGradient
2621 id="linearGradient2591">
2622 <stop
2623 style="stop-color:#73d216"
2624 offset="0"
2625 id="stop2593" />
2626 <stop
2627 style="stop-color:#4e9a06"
2628 offset="1.0000000"
2629 id="stop2595" />
2630 </linearGradient>
2631 <linearGradient
2632 inkscape:collect="always"
2633 id="linearGradient11905">
2634 <stop
2635 style="stop-color:#babdb6;stop-opacity:1;"
2636 offset="0"
2637 id="stop11907" />
2638 <stop
2639 style="stop-color:#babdb6;stop-opacity:0;"
2640 offset="1"
2641 id="stop11909" />
2642 </linearGradient>
2643 <linearGradient
2644 inkscape:collect="always"
2645 id="linearGradient11913">
2646 <stop
2647 style="stop-color:#555753;stop-opacity:1;"
2648 offset="0"
2649 id="stop11915" />
2650 <stop
2651 style="stop-color:#555753;stop-opacity:0;"
2652 offset="1"
2653 id="stop11917" />
2654 </linearGradient>
2655 <linearGradient
2656 inkscape:collect="always"
2657 id="linearGradient8357">
2658 <stop
2659 style="stop-color:white;stop-opacity:1;"
2660 offset="0"
2661 id="stop8359" />
2662 <stop
2663 style="stop-color:white;stop-opacity:0;"
2664 offset="1"
2665 id="stop8361" />
2666 </linearGradient>
2667 <linearGradient
2668 inkscape:collect="always"
2669 id="linearGradient7430">
2670 <stop
2671 style="stop-color:#d3d7cf;stop-opacity:1;"
2672 offset="0"
2673 id="stop7432" />
2674 <stop
2675 style="stop-color:#fafbfa;stop-opacity:1"
2676 offset="1"
2677 id="stop7434" />
2678 </linearGradient>
2679 <linearGradient
2680 id="linearGradient8343">
2681 <stop
2682 style="stop-color:#babdb6;stop-opacity:0;"
2683 offset="0"
2684 id="stop8345" />
2685 <stop
2686 id="stop8351"
2687 offset="0.2"
2688 style="stop-color:#babdb6;stop-opacity:1;" />
2689 <stop
2690 style="stop-color:#babdb6;stop-opacity:1;"
2691 offset="0.84444445"
2692 id="stop8353" />
2693 <stop
2694 style="stop-color:#babdb6;stop-opacity:0;"
2695 offset="1"
2696 id="stop8347" />
2697 </linearGradient>
2698 <linearGradient
2699 id="linearGradient8331">
2700 <stop
2701 style="stop-color:#555753;stop-opacity:0;"
2702 offset="0"
2703 id="stop8333" />
2704 <stop
2705 id="stop8339"
2706 offset="0.12418549"
2707 style="stop-color:#555753;stop-opacity:1;" />
2708 <stop
2709 style="stop-color:#555753;stop-opacity:1;"
2710 offset="0.86629128"
2711 id="stop8341" />
2712 <stop
2713 style="stop-color:#555753;stop-opacity:0;"
2714 offset="1"
2715 id="stop8335" />
2716 </linearGradient>
2717 <linearGradient
2718 inkscape:collect="always"
2719 id="linearGradient11817">
2720 <stop
2721 style="stop-color:black;stop-opacity:1;"
2722 offset="0"
2723 id="stop11819" />
2724 <stop
2725 style="stop-color:black;stop-opacity:0;"
2726 offset="1"
2727 id="stop11821" />
2728 </linearGradient>
2729 <linearGradient
2730 id="linearGradient8271"
2731 inkscape:collect="always">
2732 <stop
2733 id="stop8273"
2734 offset="0"
2735 style="stop-color:#eee;stop-opacity:1" />
2736 <stop
2737 id="stop8275"
2738 offset="1"
2739 style="stop-color:#888a85;stop-opacity:1" />
2740 </linearGradient>
2741 <linearGradient
2742 id="linearGradient2994">
2743 <stop
2744 id="stop2996"
2745 offset="0"
2746 style="stop-color:#000000;stop-opacity:1;" />
2747 <stop
2748 id="stop2998"
2749 offset="1"
2750 style="stop-color:#c9c9c9;stop-opacity:1;" />
2751 </linearGradient>
2752 <linearGradient
2753 inkscape:collect="always"
2754 xlink:href="#linearGradient2994"
2755 id="linearGradient8306"
2756 gradientUnits="userSpaceOnUse"
2757 gradientTransform="matrix(0.671524,-0.180531,0.318096,0.720791,-22.43351,-4.3859e-2)"
2758 x1="25.71875"
2759 y1="31.046875"
2760 x2="25.514589"
2761 y2="30.703125" />
2762 <linearGradient
2763 id="linearGradient2984"
2764 inkscape:collect="always">
2765 <stop
2766 id="stop2986"
2767 offset="0"
2768 style="stop-color:#e7e2b8;stop-opacity:1;" />
2769 <stop
2770 id="stop2988"
2771 offset="1"
2772 style="stop-color:#e7e2b8;stop-opacity:0;" />
2773 </linearGradient>
2774 <radialGradient
2775 inkscape:collect="always"
2776 xlink:href="#linearGradient2984"
2777 id="radialGradient8304"
2778 gradientUnits="userSpaceOnUse"
2779 gradientTransform="matrix(1.963246,-0.527794,0.645645,1.463001,-68.76703,-10.17169)"
2780 cx="29.053354"
2781 cy="27.640751"
2782 fx="29.053354"
2783 fy="27.640751"
2784 r="3.2408545" />
2785 <linearGradient
2786 id="linearGradient2974">
2787 <stop
2788 id="stop2976"
2789 offset="0"
2790 style="stop-color:#c1c1c1;stop-opacity:1;" />
2791 <stop
2792 id="stop2978"
2793 offset="1"
2794 style="stop-color:#acacac;stop-opacity:1;" />
2795 </linearGradient>
2796 <linearGradient
2797 inkscape:collect="always"
2798 xlink:href="#linearGradient2974"
2799 id="linearGradient8302"
2800 gradientUnits="userSpaceOnUse"
2801 gradientTransform="matrix(0.671524,-0.180531,0.318096,0.720791,-21.77422,-0.735191)"
2802 x1="46"
2803 y1="19.8125"
2804 x2="47.6875"
2805 y2="22.625" />
2806 <linearGradient
2807 id="linearGradient2966">
2808 <stop
2809 id="stop2968"
2810 offset="0"
2811 style="stop-color:#ffd1d1;stop-opacity:1;" />
2812 <stop
2813 style="stop-color:#ff1d1d;stop-opacity:1;"
2814 offset="0.5"
2815 id="stop3006" />
2816 <stop
2817 id="stop2970"
2818 offset="1"
2819 style="stop-color:#6f0000;stop-opacity:1;" />
2820 </linearGradient>
2821 <linearGradient
2822 inkscape:collect="always"
2823 xlink:href="#linearGradient2966"
2824 id="linearGradient8300"
2825 gradientUnits="userSpaceOnUse"
2826 gradientTransform="matrix(0.671524,-0.180531,0.318096,0.720791,-21.32231,-1.235235)"
2827 x1="48.628307"
2828 y1="17.415211"
2829 x2="50.988335"
2830 y2="22.250591" />
2831 <linearGradient
2832 id="linearGradient3897"
2833 inkscape:collect="always">
2834 <stop
2835 id="stop3899"
2836 offset="0"
2837 style="stop-color:#2e3436;stop-opacity:1;" />
2838 <stop
2839 id="stop3901"
2840 offset="1"
2841 style="stop-color:#2e3436;stop-opacity:0;" />
2842 </linearGradient>
2843 <radialGradient
2844 inkscape:collect="always"
2845 xlink:href="#linearGradient3897"
2846 id="radialGradient8298"
2847 gradientUnits="userSpaceOnUse"
2848 gradientTransform="matrix(1.021276,-4.728053e-3,1.050666e-3,0.226948,-0.359172,15.42575)"
2849 cx="15.892858"
2850 cy="20.014528"
2851 fx="15.892858"
2852 fy="20.014528"
2853 r="7.5535712" />
2854 <linearGradient
2855 id="linearGradient2834">
2856 <stop
2857 id="stop2836"
2858 offset="0"
2859 style="stop-color:#ffffff;stop-opacity:1;" />
2860 <stop
2861 id="stop2838"
2862 offset="1.0000000"
2863 style="stop-color:#b3b3b3;stop-opacity:0.0000000;" />
2864 </linearGradient>
2865 <linearGradient
2866 inkscape:collect="always"
2867 xlink:href="#linearGradient2834"
2868 id="linearGradient6336"
2869 gradientUnits="userSpaceOnUse"
2870 gradientTransform="matrix(0.498259,0,0,0.466519,-0.799974,-0.839637)"
2871 x1="19.944447"
2872 y1="16.527262"
2873 x2="24.133829"
2874 y2="19.642126" />
2875 <linearGradient
2876 id="linearGradient3682">
2877 <stop
2878 id="stop3684"
2879 offset="0.0000000"
2880 style="stop-color:#1f1f1f;stop-opacity:1.0000000;" />
2881 <stop
2882 id="stop3686"
2883 offset="1.0000000"
2884 style="stop-color:#5c5c5c;stop-opacity:1.0000000;" />
2885 </linearGradient>
2886 <linearGradient
2887 inkscape:collect="always"
2888 xlink:href="#linearGradient3682"
2889 id="linearGradient6334"
2890 gradientUnits="userSpaceOnUse"
2891 gradientTransform="matrix(0.498259,0,0,0.4886,-0.799974,-1.273557)"
2892 x1="23.30562"
2893 y1="24.843527"
2894 x2="14.388516"
2895 y2="9.5902243" />
2896 <linearGradient
2897 id="linearGradient3558"
2898 inkscape:collect="always">
2899 <stop
2900 id="stop3560"
2901 offset="0"
2902 style="stop-color:#000000;stop-opacity:1;" />
2903 <stop
2904 id="stop3562"
2905 offset="1"
2906 style="stop-color:#000000;stop-opacity:0;" />
2907 </linearGradient>
2908 <radialGradient
2909 inkscape:collect="always"
2910 xlink:href="#linearGradient3558"
2911 id="radialGradient6332"
2912 gradientUnits="userSpaceOnUse"
2913 gradientTransform="matrix(1,0,0,0.651376,0,10.75754)"
2914 cx="22.571428"
2915 cy="30.857143"
2916 fx="22.571428"
2917 fy="30.857143"
2918 r="15.571428" />
2919 <linearGradient
2920 inkscape:collect="always"
2921 xlink:href="#linearGradient11528"
2922 id="linearGradient15925"
2923 gradientUnits="userSpaceOnUse"
2924 x1="69.1875"
2925 y1="234.1875"
2926 x2="76.0625"
2927 y2="252.02116"
2928 gradientTransform="matrix(1.1292967,0,0,0.9959643,-10.085138,1.9847293)" />
2929 <linearGradient
2930 inkscape:collect="always"
2931 xlink:href="#linearGradient8896"
2932 id="linearGradient15923"
2933 gradientUnits="userSpaceOnUse"
2934 x1="72.678635"
2935 y1="244.4375"
2936 x2="87"
2937 y2="244.4375"
2938 gradientTransform="matrix(1.1227256,0,0,0.9968231,-9.642765,1.7751551)" />
2939 <radialGradient
2940 inkscape:collect="always"
2941 xlink:href="#linearGradient14157"
2942 id="radialGradient15921"
2943 gradientUnits="userSpaceOnUse"
2944 gradientTransform="matrix(1,0,0,0.182573,0,206.088)"
2945 cx="77.118835"
2946 cy="252.11775"
2947 fx="77.118835"
2948 fy="252.11775"
2949 r="10.650796" />
2950 <linearGradient
2951 id="linearGradient8059">
2952 <stop
2953 id="stop8061"
2954 offset="0.0000000"
2955 style="stop-color:#ffffff;stop-opacity:1.0000000;" />
2956 <stop
2957 id="stop8063"
2958 offset="1.0000000"
2959 style="stop-color:#9d9d9d;stop-opacity:1" />
2960 </linearGradient>
2961 <radialGradient
2962 inkscape:collect="always"
2963 xlink:href="#linearGradient8059"
2964 id="radialGradient8086"
2965 gradientUnits="userSpaceOnUse"
2966 cx="24.660349"
2967 cy="21.21833"
2968 fx="24.660349"
2969 fy="21.21833"
2970 r="4.3006992" />
2971 <linearGradient
2972 inkscape:collect="always"
2973 xlink:href="#linearGradient14411"
2974 id="linearGradient8084"
2975 gradientUnits="userSpaceOnUse"
2976 gradientTransform="matrix(0.373813,-0.222635,0.215821,0.385616,-33.16474,24.90046)"
2977 x1="80.82019"
2978 y1="27.165281"
2979 x2="104.74687"
2980 y2="27.652287"
2981 spreadMethod="reflect" />
2982 <linearGradient
2983 id="linearGradient5737">
2984 <stop
2985 id="stop5739"
2986 offset="0.0000000"
2987 style="stop-color:#c0d5f0;stop-opacity:1.0000000;" />
2988 <stop
2989 id="stop5741"
2990 offset="1.0000000"
2991 style="stop-color:#77a4df;stop-opacity:1.0000000;" />
2992 </linearGradient>
2993 <linearGradient
2994 inkscape:collect="always"
2995 xlink:href="#linearGradient5737"
2996 id="linearGradient8082"
2997 gradientUnits="userSpaceOnUse"
2998 gradientTransform="matrix(0.438799,0,0,0.438799,0.565693,-0.279792)"
2999 x1="2"
3000 y1="27.182352"
3001 x2="8.9176159"
3002 y2="27.182352" />
3003 <linearGradient
3004 id="linearGradient16370">
3005 <stop
3006 id="stop16372"
3007 offset="0.0000000"
3008 style="stop-color:#50534b;stop-opacity:0.46391752;" />
3009 <stop
3010 id="stop16374"
3011 offset="1"
3012 style="stop-color:#50534b;stop-opacity:0;" />
3013 </linearGradient>
3014 <radialGradient
3015 inkscape:collect="always"
3016 xlink:href="#linearGradient16370"
3017 id="radialGradient8080"
3018 gradientUnits="userSpaceOnUse"
3019 gradientTransform="matrix(1,0,0,0.2,0,36.5)"
3020 cx="27.125"
3021 cy="45.625"
3022 fx="27.125"
3023 fy="45.625"
3024 r="22.5" />
3025 <linearGradient
3026 inkscape:collect="always"
3027 id="linearGradient7249">
3028 <stop
3029 style="stop-color:white;stop-opacity:1;"
3030 offset="0"
3031 id="stop7251" />
3032 <stop
3033 style="stop-color:white;stop-opacity:0;"
3034 offset="1"
3035 id="stop7253" />
3036 </linearGradient>
3037 <linearGradient
3038 inkscape:collect="always"
3039 xlink:href="#linearGradient7249"
3040 id="linearGradient7319"
3041 gradientUnits="userSpaceOnUse"
3042 gradientTransform="matrix(0.707107,0.707107,-0.707107,0.707107,141.2585,86.08787)"
3043 x1="-37.5"
3044 y1="199.34375"
3045 x2="-37.5"
3046 y2="204.34619" />
3047 <linearGradient
3048 inkscape:collect="always"
3049 id="linearGradient7295">
3050 <stop
3051 style="stop-color:black;stop-opacity:1;"
3052 offset="0"
3053 id="stop7297" />
3054 <stop
3055 style="stop-color:black;stop-opacity:0;"
3056 offset="1"
3057 id="stop7299" />
3058 </linearGradient>
3059 <radialGradient
3060 inkscape:collect="always"
3061 xlink:href="#linearGradient7295"
3062 id="radialGradient7317"
3063 gradientUnits="userSpaceOnUse"
3064 gradientTransform="matrix(0.400886,0.839675,-0.909148,0.53153,175.855,133.5929)"
3065 cx="-39.332813"
3066 cy="216.23209"
3067 fx="-38.732441"
3068 fy="221.93825"
3069 r="6.5407376" />
3070 <linearGradient
3071 id="linearGradient2340">
3072 <stop
3073 id="stop2342"
3074 offset="0"
3075 style="stop-color:#000000;stop-opacity:1;" />
3076 <stop
3077 id="stop2344"
3078 offset="1"
3079 style="stop-color:#ffffff;stop-opacity:1;" />
3080 </linearGradient>
3081 <linearGradient
3082 y2="18.803572"
3083 x2="1.7368622"
3084 y1="19.071428"
3085 x1="2.2089286"
3086 gradientTransform="matrix(2.246119,0,0,2.17914,-1.270794,-0.429923)"
3087 gradientUnits="userSpaceOnUse"
3088 id="linearGradient2302"
3089 xlink:href="#linearGradient2340"
3090 inkscape:collect="always" />
3091 <linearGradient
3092 id="linearGradient2272">
3093 <stop
3094 style="stop-color:#8f5902;stop-opacity:1;"
3095 offset="0"
3096 id="stop2282" />
3097 <stop
3098 id="stop2276"
3099 offset="1"
3100 style="stop-color:#8f5902;stop-opacity:0;" />
3101 </linearGradient>
3102 <linearGradient
3103 gradientTransform="matrix(1.029063,0,0,1.02215,-0.774165,0.641734)"
3104 y2="24.718227"
3105 x2="16.752289"
3106 y1="20.172541"
3107 x1="25.518404"
3108 gradientUnits="userSpaceOnUse"
3109 id="linearGradient2306"
3110 xlink:href="#linearGradient2272"
3111 inkscape:collect="always" />
3112 <linearGradient
3113 y2="8.5892859"
3114 x2="13.903571"
3115 y1="-4.8465223"
3116 x1="-3.1085217"
3117 gradientTransform="matrix(2.126475,0,0,2.132848,4.837027e-2,0.112692)"
3118 gradientUnits="userSpaceOnUse"
3119 id="linearGradient2311"
3120 xlink:href="#linearGradient2251"
3121 inkscape:collect="always" />
3122 <linearGradient
3123 id="linearGradient2251">
3124 <stop
3125 id="stop2253"
3126 offset="0"
3127 style="stop-color:#c7581d;stop-opacity:1;" />
3128 <stop
3129 id="stop2255"
3130 offset="1"
3131 style="stop-color:#faedd9;stop-opacity:1;" />
3132 </linearGradient>
3133 <linearGradient
3134 y2="9.75"
3135 x2="21.85"
3136 y1="9.75"
3137 x1="2.6500001"
3138 gradientTransform="matrix(2.126475,0,0,2.132848,4.837027e-2,0.112692)"
3139 gradientUnits="userSpaceOnUse"
3140 id="linearGradient2309"
3141 xlink:href="#linearGradient2251"
3142 inkscape:collect="always" />
3143 <linearGradient
3144 id="linearGradient3089">
3145 <stop
3146 id="stop3091"
3147 offset="0"
3148 style="stop-color:#000000;stop-opacity:0.28880867;" />
3149 <stop
3150 id="stop3093"
3151 offset="1.0000000"
3152 style="stop-color:#000000;stop-opacity:0.0000000;" />
3153 </linearGradient>
3154 <radialGradient
3155 r="22.589285"
3156 fy="40.321404"
3157 fx="14.359877"
3158 cy="40.321404"
3159 cx="14.359877"
3160 gradientTransform="matrix(1.371241,0,0,0.324111,-4.377575,27.25282)"
3161 gradientUnits="userSpaceOnUse"
3162 id="radialGradient2291"
3163 xlink:href="#linearGradient3089"
3164 inkscape:collect="always" />
3165 <linearGradient
3166 inkscape:collect="always"
3167 id="linearGradient9117">
3168 <stop
3169 style="stop-color:white;stop-opacity:1;"
3170 offset="0"
3171 id="stop9119" />
3172 <stop
3173 style="stop-color:white;stop-opacity:0;"
3174 offset="1"
3175 id="stop9121" />
3176 </linearGradient>
3177 <linearGradient
3178 inkscape:collect="always"
3179 id="linearGradient7629">
3180 <stop
3181 style="stop-color:#555753;stop-opacity:1"
3182 offset="0"
3183 id="stop7631" />
3184 <stop
3185 style="stop-color:#babdb6;stop-opacity:1"
3186 offset="1"
3187 id="stop7633" />
3188 </linearGradient>
3189 <linearGradient
3190 id="linearGradient3832">
3191 <stop
3192 id="stop3834"
3193 offset="0"
3194 style="stop-color:#ffffff;stop-opacity:1;" />
3195 <stop
3196 id="stop3836"
3197 offset="1"
3198 style="stop-color:#e0e0e0;stop-opacity:1;" />
3199 </linearGradient>
3200 <linearGradient
3201 id="linearGradient130">
3202 <stop
3203 style="stop-color:#ffffff;stop-opacity:1.0000000;"
3204 offset="0.0000000"
3205 id="stop131" />
3206 <stop
3207 style="stop-color:#e95072;stop-opacity:1.0000000;"
3208 offset="1.0000000"
3209 id="stop132" />
3210 </linearGradient>
3211 <linearGradient
3212 id="linearGradient715">
3213 <stop
3214 style="stop-color:#ff4f76;stop-opacity:1.0000000;"
3215 offset="0"
3216 id="stop719" />
3217 <stop
3218 style="stop-color:#ee7f93;stop-opacity:1.0000000;"
3219 offset="0.86810666"
3220 id="stop720" />
3221 <stop
3222 style="stop-color:#ddb0b0;stop-opacity:0.0000000;"
3223 offset="1.0000000"
3224 id="stop717" />
3225 </linearGradient>
3226 <linearGradient
3227 inkscape:collect="always"
3228 id="linearGradient473">
3229 <stop
3230 style="stop-color:#6b2b2b;stop-opacity:1;"
3231 offset="0"
3232 id="stop474" />
3233 <stop
3234 style="stop-color:#6b2b2b;stop-opacity:0;"
3235 offset="1"
3236 id="stop475" />
3237 </linearGradient>
3238 <radialGradient
3239 inkscape:collect="always"
3240 xlink:href="#linearGradient13302"
3241 id="radialGradient78"
3242 gradientUnits="userSpaceOnUse"
3243 gradientTransform="matrix(0.6365372,5.388467e-2,-3.9206389e-2,0.4631432,60.230887,248.2756)"
3244 cx="314.72086"
3245 cy="362.26859"
3246 fx="314.72086"
3247 fy="362.26859"
3248 r="12.509617" />
3249 <linearGradient
3250 inkscape:collect="always"
3251 id="linearGradient7442">
3252 <stop
3253 style="stop-color:white;stop-opacity:1;"
3254 offset="0"
3255 id="stop7444" />
3256 <stop
3257 style="stop-color:white;stop-opacity:0;"
3258 offset="1"
3259 id="stop7446" />
3260 </linearGradient>
3261 <linearGradient
3262 id="linearGradient7431">
3263 <stop
3264 style="stop-color:#e6e6e6;stop-opacity:0"
3265 offset="0"
3266 id="stop7433" />
3267 <stop
3268 id="stop7435"
3269 offset="0.10416666"
3270 style="stop-color:white;stop-opacity:1;" />
3271 <stop
3272 style="stop-color:white;stop-opacity:1;"
3273 offset="0.6267361"
3274 id="stop7438" />
3275 <stop
3276 style="stop-color:white;stop-opacity:0;"
3277 offset="1"
3278 id="stop7440" />
3279 </linearGradient>
3280 <linearGradient
3281 inkscape:collect="always"
3282 xlink:href="#linearGradient7431"
3283 id="linearGradient7972"
3284 gradientUnits="userSpaceOnUse"
3285 x1="191.80257"
3286 y1="403.65472"
3287 x2="212.50331"
3288 y2="403.65472"
3289 gradientTransform="matrix(1,0,0,0.333336,0,269.4743)" />
3290 <linearGradient
3291 id="linearGradient7443">
3292 <stop
3293 id="stop7445"
3294 offset="0"
3295 style="stop-color:#888a85;stop-opacity:0;" />
3296 <stop
3297 style="stop-color:#888a85;stop-opacity:1;"
3298 offset="0.10416666"
3299 id="stop7447" />
3300 <stop
3301 id="stop7449"
3302 offset="0.7013889"
3303 style="stop-color:#888a85;stop-opacity:1;" />
3304 <stop
3305 id="stop7451"
3306 offset="1"
3307 style="stop-color:#888a85;stop-opacity:0;" />
3308 </linearGradient>
3309 <linearGradient
3310 inkscape:collect="always"
3311 xlink:href="#linearGradient7443"
3312 id="linearGradient7964"
3313 x1="190.87645"
3314 y1="403.65472"
3315 x2="209.8775"
3316 y2="403.65472"
3317 gradientUnits="userSpaceOnUse" />
3318 <radialGradient
3319 inkscape:collect="always"
3320 xlink:href="#linearGradient8773"
3321 id="radialGradient10565"
3322 gradientUnits="userSpaceOnUse"
3323 gradientTransform="matrix(1,0,0,0.234973,0,18.5877)"
3324 cx="-57.850174"
3325 cy="24.296782"
3326 fx="-58.028885"
3327 fy="27.01318"
3328 r="8.087534" />
3329 <linearGradient
3330 inkscape:collect="always"
3331 id="linearGradient10554">
3332 <stop
3333 style="stop-color:white;stop-opacity:1;"
3334 offset="0"
3335 id="stop10556" />
3336 <stop
3337 style="stop-color:white;stop-opacity:0;"
3338 offset="1"
3339 id="stop10558" />
3340 </linearGradient>
3341 <linearGradient
3342 inkscape:collect="always"
3343 xlink:href="#linearGradient10554"
3344 id="linearGradient7949"
3345 gradientUnits="userSpaceOnUse"
3346 gradientTransform="translate(-11.21634,-21.61956)"
3347 x1="240.9062"
3348 y1="425.18195"
3349 x2="248.28683"
3350 y2="437.96558" />
3351 <radialGradient
3352 inkscape:collect="always"
3353 xlink:href="#linearGradient124"
3354 id="radialGradient81"
3355 gradientUnits="userSpaceOnUse"
3356 gradientTransform="matrix(0.833516,0,0,1.199737,2.4375,-23.45032)"
3357 cx="307.7507"
3358 cy="361.47824"
3359 fx="307.7507"
3360 fy="361.47824"
3361 r="12.509617" />
3362 <linearGradient
3363 inkscape:collect="always"
3364 xlink:href="#linearGradient124"
3365 id="linearGradient80"
3366 gradientUnits="userSpaceOnUse"
3367 gradientTransform="matrix(2,0,0,0.5,-20.55174,-11.55357)"
3368 x1="253.75711"
3369 y1="-129.52815"
3370 x2="252.00447"
3371 y2="-135.47408" />
3372 <linearGradient
3373 inkscape:collect="always"
3374 id="linearGradient8773">
3375 <stop
3376 style="stop-color:black;stop-opacity:0.3137255"
3377 offset="0"
3378 id="stop8775" />
3379 <stop
3380 style="stop-color:black;stop-opacity:0;"
3381 offset="1"
3382 id="stop8777" />
3383 </linearGradient>
3384 <radialGradient
3385 inkscape:collect="always"
3386 xlink:href="#linearGradient8773"
3387 id="radialGradient8779"
3388 cx="-57.850174"
3389 cy="24.296782"
3390 fx="-58.028885"
3391 fy="27.01318"
3392 r="8.087534"
3393 gradientTransform="matrix(1,0,0,0.234973,0,18.5877)"
3394 gradientUnits="userSpaceOnUse" />
3395 <linearGradient
3396 inkscape:collect="always"
3397 id="linearGradient11528">
3398 <stop
3399 style="stop-color:white;stop-opacity:1;"
3400 offset="0"
3401 id="stop11530" />
3402 <stop
3403 style="stop-color:white;stop-opacity:0.2360515"
3404 offset="1"
3405 id="stop11532" />
3406 </linearGradient>
3407 <linearGradient
3408 inkscape:collect="always"
3409 id="linearGradient8896">
3410 <stop
3411 style="stop-color:#5e605c;stop-opacity:1"
3412 offset="0"
3413 id="stop8898" />
3414 <stop
3415 style="stop-color:#ddd;stop-opacity:1"
3416 offset="1"
3417 id="stop8900" />
3418 </linearGradient>
3419 <linearGradient
3420 inkscape:collect="always"
3421 id="linearGradient14157">
3422 <stop
3423 style="stop-color:black;stop-opacity:1;"
3424 offset="0"
3425 id="stop14159" />
3426 <stop
3427 style="stop-color:black;stop-opacity:0;"
3428 offset="1"
3429 id="stop14161" />
3430 </linearGradient>
3431 <linearGradient
3432 id="linearGradient124">
3433 <stop
3434 style="stop-color:#ffffff;stop-opacity:1.0000000;"
3435 offset="0.0000000"
3436 id="stop125" />
3437 <stop
3438 style="stop-color:silver;stop-opacity:1;"
3439 offset="1"
3440 id="stop126" />
3441 </linearGradient>
3442 <linearGradient
3443 id="linearGradient6581">
3444 <stop
3445 id="stop6583"
3446 offset="0"
3447 style="stop-color:#eeeeec;stop-opacity:1;" />
3448 <stop
3449 id="stop6585"
3450 offset="1.0000000"
3451 style="stop-color:#e0e0de;stop-opacity:1.0000000;" />
3452 </linearGradient>
3453 <linearGradient
3454 id="linearGradient2195">
3455 <stop
3456 id="stop2197"
3457 offset="0"
3458 style="stop-color:#000000;stop-opacity:1;" />
3459 <stop
3460 id="stop2199"
3461 offset="1"
3462 style="stop-color:#000000;stop-opacity:0;" />
3463 </linearGradient>
3464 <linearGradient
3465 inkscape:collect="always"
3466 id="linearGradient7318">
3467 <stop
3468 style="stop-color:#d3d7cf;stop-opacity:1"
3469 offset="0"
3470 id="stop7320" />
3471 <stop
3472 style="stop-color:#eff0ee;stop-opacity:1"
3473 offset="1"
3474 id="stop7322" />
3475 </linearGradient>
3476 <linearGradient
3477 id="linearGradient4832"
3478 inkscape:collect="always">
3479 <stop
3480 id="stop4834"
3481 offset="0"
3482 style="stop-color:#8686bf;stop-opacity:1" />
3483 <stop
3484 id="stop4836"
3485 offset="1"
3486 style="stop-color:#9191b6;stop-opacity:0" />
3487 </linearGradient>
3488 <linearGradient
3489 id="linearGradient4826"
3490 inkscape:collect="always">
3491 <stop
3492 id="stop4828"
3493 offset="0"
3494 style="stop-color:#d7d7ff;stop-opacity:1" />
3495 <stop
3496 id="stop4830"
3497 offset="1"
3498 style="stop-color:#d7d7ff;stop-opacity:0" />
3499 </linearGradient>
3500 <linearGradient
3501 id="linearGradient4820"
3502 inkscape:collect="always">
3503 <stop
3504 id="stop4822"
3505 offset="0"
3506 style="stop-color:#393986;stop-opacity:1" />
3507 <stop
3508 id="stop4824"
3509 offset="1"
3510 style="stop-color:#53536c;stop-opacity:0" />
3511 </linearGradient>
3512 <linearGradient
3513 id="linearGradient7944">
3514 <stop
3515 style="stop-color:#3daff6;stop-opacity:1;"
3516 offset="0"
3517 id="stop7946" />
3518 <stop
3519 style="stop-color:#000000;stop-opacity:0;"
3520 offset="1"
3521 id="stop7948" />
3522 </linearGradient>
3523 <linearGradient
3524 inkscape:collect="always"
3525 xlink:href="#linearGradient5376"
3526 id="linearGradient5775"
3527 x1="508.50006"
3528 y1="154.99997"
3529 x2="508.50006"
3530 y2="162.32036"
3531 gradientUnits="userSpaceOnUse"
3532 gradientTransform="translate(0,1.7e-6)" />
3533 <linearGradient
3534 id="linearGradient5376">
3535 <stop
3536 id="stop5378"
3537 offset="0"
3538 style="stop-color:#3daff6;stop-opacity:1;" />
3539 <stop
3540 id="stop5380"
3541 offset="1"
3542 style="stop-color:#000000;stop-opacity:0;" />
3543 </linearGradient>
3544 <linearGradient
3545 inkscape:collect="always"
3546 xlink:href="#linearGradient7944"
3547 id="linearGradient4394"
3548 gradientUnits="userSpaceOnUse"
3549 gradientTransform="translate(71.737908,-613.10672)"
3550 x1="436.76215"
3551 y1="768.10669"
3552 x2="436.76215"
3553 y2="775.42706" />
3554 <linearGradient
3555 id="linearGradient4798">
3556 <stop
3557 style="stop-color:#ffffff;stop-opacity:1.0000000;"
3558 offset="0"
3559 id="stop4802" />
3560 <stop
3561 style="stop-color:#5eba69;stop-opacity:1;"
3562 offset="1"
3563 id="stop4800" />
3564 </linearGradient>
3565 <linearGradient
3566 id="linearGradient4935">
3567 <stop
3568 style="stop-color:#5eba69;stop-opacity:1;"
3569 offset="0"
3570 id="stop4939" />
3571 <stop
3572 style="stop-color:#ffffff;stop-opacity:1.0000000;"
3573 offset="1"
3574 id="stop4937" />
3575 </linearGradient>
3576 <linearGradient
3577 inkscape:collect="always"
3578 xlink:href="#linearGradient700"
3579 id="linearGradient3352"
3580 gradientUnits="userSpaceOnUse"
3581 x1="-30.512699"
3582 y1="-1.11146"
3583 x2="-16.435499"
3584 y2="-0.473952"
3585 gradientTransform="matrix(-0.42698,-0.87201,0.87201,-0.42698,11.5331,-7.26288)" />
3586 <linearGradient
3587 inkscape:collect="always"
3588 id="linearGradient4721">
3589 <stop
3590 style="stop-color:#f57900;stop-opacity:1"
3591 offset="0"
3592 id="stop4723" />
3593 <stop
3594 style="stop-color:#73d216;stop-opacity:0;"
3595 offset="1"
3596 id="stop4725" />
3597 </linearGradient>
3598 <linearGradient
3599 id="linearGradient4709"
3600 inkscape:collect="always">
3601 <stop
3602 id="stop4711"
3603 offset="0"
3604 style="stop-color:#75507b;stop-opacity:1" />
3605 <stop
3606 id="stop4713"
3607 offset="1"
3608 style="stop-color:#73d216;stop-opacity:0;" />
3609 </linearGradient>
3610 <linearGradient
3611 inkscape:collect="always"
3612 id="linearGradient4696">
3613 <stop
3614 style="stop-color:#73d216;stop-opacity:1;"
3615 offset="0"
3616 id="stop4698" />
3617 <stop
3618 style="stop-color:#73d216;stop-opacity:0;"
3619 offset="1"
3620 id="stop4701" />
3621 </linearGradient>
3622 <marker
3623 inkscape:stockid="Arrow1Send"
3624 orient="auto"
3625 refY="0"
3626 refX="0"
3627 id="Arrow1Send"
3628 style="overflow:visible">
3629 <path
3630 id="path4834"
3631 d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z"
3632 style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
3633 transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
3634 </marker>
3635 <linearGradient
3636 inkscape:collect="always"
3637 xlink:href="#linearGradient3480"
3638 id="linearGradient4618"
3639 x1="693.40259"
3640 y1="306.07037"
3641 x2="696.86676"
3642 y2="311.81979"
3643 gradientUnits="userSpaceOnUse"
3644 gradientTransform="translate(-0.999998,-0.937496)" />
3645 <linearGradient
3646 inkscape:collect="always"
3647 xlink:href="#linearGradient3480"
3648 id="linearGradient4610"
3649 x1="693.27899"
3650 y1="303.70065"
3651 x2="698.26788"
3652 y2="311.07904"
3653 gradientUnits="userSpaceOnUse"
3654 gradientTransform="translate(-0.999998,-0.937496)" />
3655 <linearGradient
3656 inkscape:collect="always"
3657 xlink:href="#linearGradient5704"
3658 id="linearGradient4649"
3659 x1="695.0141"
3660 y1="304.22421"
3661 x2="698.72687"
3662 y2="309.73383"
3663 gradientUnits="userSpaceOnUse" />
3664 <linearGradient
3665 inkscape:collect="always"
3666 xlink:href="#linearGradient16137"
3667 id="linearGradient4849"
3668 gradientUnits="userSpaceOnUse"
3669 gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)"
3670 x1="54.463463"
3671 y1="715.91296"
3672 x2="60.495438"
3673 y2="729.99908" />
3674 <linearGradient
3675 inkscape:collect="always"
3676 xlink:href="#linearGradient16137"
3677 id="linearGradient4859"
3678 gradientUnits="userSpaceOnUse"
3679 gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)"
3680 x1="64.23671"
3681 y1="729.3028"
3682 x2="54.737839"
3683 y2="719.93756" />
3684 <linearGradient
3685 inkscape:collect="always"
3686 xlink:href="#linearGradient3480"
3687 id="linearGradient4811"
3688 x1="84.629395"
3689 y1="125.31617"
3690 x2="91.620605"
3691 y2="125.31617"
3692 gradientUnits="userSpaceOnUse" />
3693 <linearGradient
3694 inkscape:collect="always"
3695 xlink:href="#linearGradient3480"
3696 id="linearGradient4819"
3697 x1="171.28307"
3698 y1="159"
3699 x2="186.71693"
3700 y2="159"
3701 gradientUnits="userSpaceOnUse" />
3702 <linearGradient
3703 id="linearGradient12513">
3704 <stop
3705 style="stop-color:black;stop-opacity:1;"
3706 offset="0"
3707 id="stop12515" />
3708 <stop
3709 style="stop-color:#2a2a2a;stop-opacity:1;"
3710 offset="1"
3711 id="stop12517" />
3712 </linearGradient>
3713 <linearGradient
3714 inkscape:collect="always"
3715 xlink:href="#linearGradient12513"
3716 id="linearGradient12519"
3717 x1="64.608963"
3718 y1="715.75946"
3719 x2="61.995983"
3720 y2="712.16724"
3721 gradientUnits="userSpaceOnUse" />
3722 <linearGradient
3723 inkscape:collect="always"
3724 xlink:href="#linearGradient2485"
3725 id="linearGradient12592"
3726 gradientUnits="userSpaceOnUse"
3727 gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)"
3728 x1="712.98596"
3729 y1="249.98053"
3730 x2="717.60321"
3731 y2="244.67865" />
3732 <linearGradient
3733 inkscape:collect="always"
3734 xlink:href="#linearGradient2485"
3735 id="linearGradient12555"
3736 gradientUnits="userSpaceOnUse"
3737 gradientTransform="matrix(1.016495,0,0,-1,-11.43409,493.3688)"
3738 x1="713.50842"
3739 y1="248.91472"
3740 x2="717.6405"
3741 y2="240.87608" />
3742 <linearGradient
3743 inkscape:collect="always"
3744 xlink:href="#linearGradient5740"
3745 id="linearGradient4803"
3746 gradientUnits="userSpaceOnUse"
3747 gradientTransform="matrix(1.074481,0,0,0.516867,-52.4747,82.48618)"
3748 x1="15.741557"
3749 y1="213.87196"
3750 x2="17.946985"
3751 y2="219.67934" />
3752 <linearGradient
3753 inkscape:collect="always"
3754 xlink:href="#linearGradient5740"
3755 id="linearGradient4801"
3756 gradientUnits="userSpaceOnUse"
3757 gradientTransform="matrix(1.427647,0,0,0.862651,-58.98949,7.443876)"
3758 x1="20.216892"
3759 y1="219.93051"
3760 x2="18.823143"
3761 y2="214.65544" />
3762 <linearGradient
3763 inkscape:collect="always"
3764 xlink:href="#linearGradient5704"
3765 id="linearGradient4799"
3766 gradientUnits="userSpaceOnUse"
3767 gradientTransform="matrix(1.275458,0,0,0.617087,-51.07375,65.67334)"
3768 x1="10.041666"
3769 y1="203.36577"
3770 x2="14.010839"
3771 y2="209.27737" />
3772 <linearGradient
3773 inkscape:collect="always"
3774 xlink:href="#linearGradient5740"
3775 id="linearGradient4797"
3776 gradientUnits="userSpaceOnUse"
3777 x1="184.75294"
3778 y1="-35.833363"
3779 x2="187.89511"
3780 y2="-32.760307" />
3781 <linearGradient
3782 inkscape:collect="always"
3783 xlink:href="#linearGradient5740"
3784 id="linearGradient4795"
3785 gradientUnits="userSpaceOnUse"
3786 x1="191.40715"
3787 y1="-32.760307"
3788 x2="185.51312"
3789 y2="-34.577286" />
3790 <linearGradient
3791 inkscape:collect="always"
3792 xlink:href="#linearGradient5704"
3793 id="linearGradient4793"
3794 gradientUnits="userSpaceOnUse"
3795 gradientTransform="matrix(0.761633,0,0,0.73832,-7.689547,50.44869)"
3796 x1="-36.601665"
3797 y1="182.98401"
3798 x2="-31.903492"
3799 y2="190.66341" />
3800 <linearGradient
3801 inkscape:collect="always"
3802 xlink:href="#linearGradient5740"
3803 id="linearGradient4791"
3804 gradientUnits="userSpaceOnUse"
3805 gradientTransform="matrix(2.404063,0,0,1.001693,-138.4499,-25.31992)"
3806 x1="16.04734"
3807 y1="213.21643"
3808 x2="17.310535"
3809 y2="217.82336" />
3810 <linearGradient
3811 inkscape:collect="always"
3812 xlink:href="#linearGradient5740"
3813 id="linearGradient4789"
3814 gradientUnits="userSpaceOnUse"
3815 gradientTransform="matrix(3.19424,0,0,1.671823,-153.0264,-170.7525)"
3816 x1="18.846861"
3817 y1="218.97954"
3818 x2="17.752359"
3819 y2="215.20985" />
3820 <linearGradient
3821 inkscape:collect="always"
3822 xlink:href="#linearGradient5704"
3823 id="linearGradient4787"
3824 gradientUnits="userSpaceOnUse"
3825 gradientTransform="matrix(2.635962,0,0,1.002646,-132.1469,-17.5056)"
3826 x1="10.041666"
3827 y1="203.36577"
3828 x2="14.010839"
3829 y2="209.27737" />
3830 <linearGradient
3831 id="linearGradient4698">
3832 <stop
3833 id="stop4700"
3834 offset="0"
3835 style="stop-color:#a2d3ff;stop-opacity:1" />
3836 <stop
3837 id="stop4702"
3838 offset="1.0000000"
3839 style="stop-color:#004c91;stop-opacity:1" />
3840 </linearGradient>
3841 <linearGradient
3842 id="linearGradient4528">
3843 <stop
3844 style="stop-color:#ffffff;stop-opacity:1.0000000;"
3845 offset="0.0000000"
3846 id="stop4530" />
3847 <stop
3848 id="stop4534"
3849 offset="0.37719297"
3850 style="stop-color:#d4e0ef;stop-opacity:1;" />
3851 <stop
3852 style="stop-color:#98b6d3;stop-opacity:1.0000000;"
3853 offset="1.0000000"
3854 id="stop4532" />
3855 </linearGradient>
3856 <linearGradient
3857 id="linearGradient6679">
3858 <stop
3859 style="stop-color:#ffeb74;stop-opacity:1;"
3860 offset="0"
3861 id="stop6681" />
3862 <stop
3863 style="stop-color:#ffffff;stop-opacity:1;"
3864 offset="1"
3865 id="stop6683" />
3866 </linearGradient>
3867 <linearGradient
3868 id="linearGradient5899">
3869 <stop
3870 style="stop-color:#ffffff;stop-opacity:1;"
3871 offset="0"
3872 id="stop5901" />
3873 <stop
3874 style="stop-color:#ffacb5;stop-opacity:1;"
3875 offset="1"
3876 id="stop5903" />
3877 </linearGradient>
3878 <linearGradient
3879 id="linearGradient5858">
3880 <stop
3881 style="stop-color:#ffa01e"
3882 offset="0.0000000"
3883 id="stop5860" />
3884 <stop
3885 style="stop-color:#000000;stop-opacity:1.0000000;"
3886 offset="1.0000000"
3887 id="stop5862" />
3888 </linearGradient>
3889 <linearGradient
3890 id="linearGradient5740">
3891 <stop
3892 id="stop5742"
3893 offset="0.0000000"
3894 style="stop-color:#ffffff;stop-opacity:1.0000000;" />
3895 <stop
3896 id="stop5744"
3897 offset="1.0000000"
3898 style="stop-color:#98b6d3;stop-opacity:1.0000000;" />
3899 </linearGradient>
3900 <linearGradient
3901 id="linearGradient5734">
3902 <stop
3903 id="stop5736"
3904 offset="0"
3905 style="stop-color:#8ab3df;stop-opacity:1;" />
3906 <stop
3907 id="stop5738"
3908 offset="1"
3909 style="stop-color:#ffffff" />
3910 </linearGradient>
3911 <linearGradient
3912 id="linearGradient5704">
3913 <stop
3914 style="stop-color:#5a5a5a;stop-opacity:1;"
3915 offset="0"
3916 id="stop5706" />
3917 <stop
3918 style="stop-color:#000000;stop-opacity:1.0000000;"
3919 offset="1.0000000"
3920 id="stop5708" />
3921 </linearGradient>
3922 <linearGradient
3923 id="linearGradient16137">
3924 <stop
3925 style="stop-color:#db5d00;stop-opacity:1.0000000;"
3926 offset="0.0000000"
3927 id="stop16139" />
3928 <stop
3929 style="stop-color:#ffd749;stop-opacity:1.0000000;"
3930 offset="0.35076979"
3931 id="stop16141" />
3932 <stop
3933 style="stop-color:#fff593;stop-opacity:1.0000000;"
3934 offset="0.59668732"
3935 id="stop16143" />
3936 <stop
3937 style="stop-color:#fff7c2;stop-opacity:1.0000000;"
3938 offset="0.78382427"
3939 id="stop16145" />
3940 <stop
3941 style="stop-color:#ffffff;stop-opacity:1.0000000;"
3942 offset="1.0000000"
3943 id="stop16147" />
3944 </linearGradient>
3945 <linearGradient
3946 inkscape:collect="always"
3947 id="linearGradient14614">
3948 <stop
3949 style="stop-color:#c80000"
3950 offset="0"
3951 id="stop14616" />
3952 <stop
3953 style="stop-color:#bf0000;stop-opacity:0;"
3954 offset="1"
3955 id="stop14618" />
3956 </linearGradient>
3957 <linearGradient
3958 id="linearGradient5204">
3959 <stop
3960 style="stop-color:#4e6e90;stop-opacity:1;"
3961 offset="0"
3962 id="stop5206" />
3963 <stop
3964 style="stop-color:#000000;stop-opacity:1.0000000;"
3965 offset="1.0000000"
3966 id="stop5208" />
3967 </linearGradient>
3968 <linearGradient
3969 inkscape:collect="always"
3970 id="linearGradient4343">
3971 <stop
3972 style="stop-color:#fff9f9;stop-opacity:1;"
3973 offset="0"
3974 id="stop4345" />
3975 <stop
3976 style="stop-color:#fff9f9;stop-opacity:0;"
3977 offset="1"
3978 id="stop4347" />
3979 </linearGradient>
3980 <linearGradient
3981 id="linearGradient6684">
3982 <stop
3983 style="stop-color:#ffbf00;stop-opacity:1.0000000;"
3984 offset="0.0000000"
3985 id="stop6686" />
3986 <stop
3987 style="stop-color:#ffffff;stop-opacity:1.0000000;"
3988 offset="1.0000000"
3989 id="stop6688" />
3990 </linearGradient>
3991 <linearGradient
3992 id="linearGradient6524">
3993 <stop
3994 style="stop-color:#ffffff;stop-opacity:1.0000000"
3995 offset="0.0000000"
3996 id="stop6526" />
3997 <stop
3998 style="stop-color:#e2e1e1;stop-opacity:1.0000000;"
3999 offset="1.0000000"
4000 id="stop6528" />
4001 </linearGradient>
4002 <linearGradient
4003 inkscape:collect="always"
4004 id="linearGradient5663">
4005 <stop
4006 style="stop-color:#000000;stop-opacity:1;"
4007 offset="0"
4008 id="stop5665" />
4009 <stop
4010 style="stop-color:#000000;stop-opacity:0;"
4011 offset="1"
4012 id="stop5667" />
4013 </linearGradient>
4014 <linearGradient
4015 id="linearGradient10585">
4016 <stop
4017 style="stop-color:#d7d7d7;stop-opacity:1.0000000;"
4018 offset="0.0000000"
4019 id="stop10587" />
4020 <stop
4021 style="stop-color:#000000;stop-opacity:1.0000000;"
4022 offset="1.0000000"
4023 id="stop10595" />
4024 </linearGradient>
4025 <linearGradient
4026 id="linearGradient3480">
4027 <stop
4028 id="stop3482"
4029 offset="0.0000000"
4030 style="stop-color:#646464;stop-opacity:1.0000000;" />
4031 <stop
4032 id="stop3484"
4033 offset="1.0000000"
4034 style="stop-color:#000000;stop-opacity:1.0000000;" />
4035 </linearGradient>
4036 <linearGradient
4037 id="linearGradient3466">
4038 <stop
4039 style="stop-color:#ffffff;stop-opacity:1.0000000"
4040 offset="0.0000000"
4041 id="stop3468" />
4042 <stop
4043 style="stop-color:#a0a0a0;stop-opacity:1.0000000;"
4044 offset="1.0000000"
4045 id="stop3470" />
4046 </linearGradient>
4047 <linearGradient
4048 id="linearGradient1887">
4049 <stop
4050 id="stop1888"
4051 offset="0.0000000"
4052 style="stop-color:#fffdf8;stop-opacity:1.0000000;" />
4053 <stop
4054 id="stop1889"
4055 offset="1.0000000"
4056 style="stop-color:#cdccc7;stop-opacity:1.0000000;" />
4057 </linearGradient>
4058 <linearGradient
4059 id="linearGradient2485">
4060 <stop
4061 id="stop2486"
4062 offset="0.0000000"
4063 style="stop-color:#ffffff;stop-opacity:1.0000000" />
4064 <stop
4065 id="stop2487"
4066 offset="1.0000000"
4067 style="stop-color:#aaaaaa;stop-opacity:1.0000000;" />
4068 </linearGradient>
4069 <linearGradient
4070 id="linearGradient2888">
4071 <stop
4072 id="stop2889"
4073 offset="0.0000000"
4074 style="stop-color:#ffffff;stop-opacity:1.0000000;" />
4075 <stop
4076 id="stop2894"
4077 offset="1"
4078 style="stop-color:#8ab3de;stop-opacity:1;" />
4079 </linearGradient>
4080 <linearGradient
4081 id="linearGradient1610">
4082 <stop
4083 id="stop1611"
4084 offset="0.0000000"
4085 style="stop-color:#000000;stop-opacity:1.0000000" />
4086 <stop
4087 id="stop3053"
4088 offset="0.35076979"
4089 style="stop-color:#7f7f7f;stop-opacity:1.0000000" />
4090 <stop
4091 id="stop3054"
4092 offset="0.59668732"
4093 style="stop-color:#bfbfbf;stop-opacity:1.0000000" />
4094 <stop
4095 id="stop3055"
4096 offset="0.78382427"
4097 style="stop-color:#dfdfdf;stop-opacity:1.0000000" />
4098 <stop
4099 id="stop1612"
4100 offset="1.0000000"
4101 style="stop-color:#ffffff;stop-opacity:1.0000000" />
4102 </linearGradient>
4103 <linearGradient
4104 id="linearGradient500">
4105 <stop
4106 id="stop1007"
4107 offset="0.0000000"
4108 style="stop-color:#e7eaf0;stop-opacity:1.0000000;" />
4109 <stop
4110 id="stop1008"
4111 offset="1.0000000"
4112 style="stop-color:#bacadd;stop-opacity:1.0000000;" />
4113 </linearGradient>
4114 <linearGradient
4115 id="linearGradient700">
4116 <stop
4117 id="stop347"
4118 offset="0"
4119 style="stop-color:#376796;stop-opacity:1;" />
4120 <stop
4121 id="stop348"
4122 offset="1.0000000"
4123 style="stop-color:#b0dde2;stop-opacity:1.0000000;" />
4124 </linearGradient>
4125 <linearGradient
4126 id="linearGradient800">
4127 <stop
4128 id="stop998"
4129 offset="0"
4130 style="stop-color:#f3ff49;stop-opacity:1;" />
4131 <stop
4132 id="stop999"
4133 offset="1"
4134 style="stop-color:#ffa01e;stop-opacity:1;" />
4135 </linearGradient>
4136 <linearGradient
4137 id="linearGradient900">
4138 <stop
4139 id="stop1014"
4140 offset="0.0000000"
4141 style="stop-color:#e4ffa6;stop-opacity:1.0000000;" />
4142 <stop
4143 id="stop1015"
4144 offset="1.0000000"
4145 style="stop-color:#3a7801;stop-opacity:1.0000000;" />
4146 </linearGradient>
4147 <linearGradient
4148 inkscape:collect="always"
4149 xlink:href="#linearGradient5734"
4150 id="linearGradient3628"
4151 x1="22.452934"
4152 y1="170.37819"
4153 x2="23.615282"
4154 y2="164.95464"
4155 gradientUnits="userSpaceOnUse"
4156 gradientTransform="translate(1.863401,-1.999999)" />
4157 <linearGradient
4158 inkscape:collect="always"
4159 xlink:href="#linearGradient4935"
4160 id="linearGradient10520"
4161 x1="-0.53531498"
4162 y1="107.85"
4163 x2="-14.7622"
4164 y2="96.397003"
4165 gradientUnits="userSpaceOnUse"
4166 gradientTransform="matrix(0.89781,0,0,0.89781,-0.81747,10.4227)" />
4167 <linearGradient
4168 inkscape:collect="always"
4169 xlink:href="#linearGradient2485"
4170 id="linearGradient4005"
4171 x1="61.447758"
4172 y1="236.41124"
4173 x2="64.518295"
4174 y2="240.35397"
4175 gradientUnits="userSpaceOnUse" />
4176 <linearGradient
4177 inkscape:collect="always"
4178 xlink:href="#linearGradient2485"
4179 id="linearGradient4013"
4180 x1="59.432198"
4181 y1="239.1431"
4182 x2="62.515686"
4183 y2="243.43013"
4184 gradientUnits="userSpaceOnUse" />
4185 <linearGradient
4186 inkscape:collect="always"
4187 xlink:href="#linearGradient3480"
4188 id="linearGradient4072"
4189 x1="58.952152"
4190 y1="236"
4191 x2="63.40303"
4192 y2="239.27582"
4193 gradientUnits="userSpaceOnUse" />
4194 <linearGradient
4195 inkscape:collect="always"
4196 xlink:href="#linearGradient3480"
4197 id="linearGradient4080"
4198 x1="59"
4199 y1="235.13408"
4200 x2="62.5"
4201 y2="239.49016"
4202 gradientUnits="userSpaceOnUse" />
4203 <linearGradient
4204 inkscape:collect="always"
4205 xlink:href="#linearGradient3480"
4206 id="linearGradient4088"
4207 x1="8"
4208 y1="251"
4209 x2="14.320742"
4210 y2="257.66202"
4211 gradientUnits="userSpaceOnUse"
4212 gradientTransform="translate(0,2.076809e-2)" />
4213 <linearGradient
4214 inkscape:collect="always"
4215 xlink:href="#linearGradient3480"
4216 id="linearGradient3208"
4217 gradientUnits="userSpaceOnUse"
4218 x1="8"
4219 y1="251"
4220 x2="14.320742"
4221 y2="257.66202" />
4222 <linearGradient
4223 inkscape:collect="always"
4224 xlink:href="#linearGradient3480"
4225 id="linearGradient6665"
4226 gradientUnits="userSpaceOnUse"
4227 gradientTransform="matrix(0,1.686539,-1.016949,0,148.1771,249.4699)"
4228 x1="-43.562527"
4229 y1="186.11075"
4230 x2="-35.449852"
4231 y2="186.1308" />
4232 <linearGradient
4233 inkscape:collect="always"
4234 xlink:href="#linearGradient3480"
4235 id="linearGradient6667"
4236 gradientUnits="userSpaceOnUse"
4237 x1="-43.950001"
4238 y1="187"
4239 x2="-30.049999"
4240 y2="187"
4241 gradientTransform="matrix(0,1.007194,-1.016949,0,148.1771,220.2629)" />
4242 <linearGradient
4243 inkscape:collect="always"
4244 xlink:href="#linearGradient3480"
4245 id="linearGradient7544"
4246 x1="-43.950001"
4247 y1="187"
4248 x2="-30.049999"
4249 y2="187"
4250 gradientUnits="userSpaceOnUse"
4251 gradientTransform="matrix(1.003713,0,0,1,0.163202,0)" />
4252 <linearGradient
4253 inkscape:collect="always"
4254 xlink:href="#linearGradient3480"
4255 id="linearGradient7548"
4256 gradientUnits="userSpaceOnUse"
4257 x1="-42.133953"
4258 y1="183.3679"
4259 x2="-34.245693"
4260 y2="186.74951" />
4261 <linearGradient
4262 inkscape:collect="always"
4263 xlink:href="#linearGradient1610"
4264 id="linearGradient10560"
4265 gradientUnits="userSpaceOnUse"
4266 x1="-33.566422"
4267 y1="183.8118"
4268 x2="-34.677124"
4269 y2="182.35056"
4270 gradientTransform="translate(-0.96863,1.05455)" />
4271 <linearGradient
4272 inkscape:collect="always"
4273 xlink:href="#linearGradient800"
4274 id="linearGradient10579"
4275 x1="107.94834"
4276 y1="163.43726"
4277 x2="110.12064"
4278 y2="166.19142"
4279 gradientUnits="userSpaceOnUse"
4280 gradientTransform="translate(-139.9686,15.05455)" />
4281 <radialGradient
4282 inkscape:collect="always"
4283 xlink:href="#linearGradient10585"
4284 id="radialGradient10597"
4285 cx="-39.006454"
4286 cy="185.37962"
4287 fx="-39.006454"
4288 fy="185.37962"
4289 r="4.7721405"
4290 gradientTransform="matrix(0.173327,0.323606,-0.837131,0.448376,121.9729,116.365)"
4291 gradientUnits="userSpaceOnUse" />
4292 <linearGradient
4293 inkscape:collect="always"
4294 xlink:href="#linearGradient1610"
4295 id="linearGradient10641"
4296 x1="148"
4297 y1="214.81735"
4298 x2="143.22507"
4299 y2="215.9465"
4300 gradientUnits="userSpaceOnUse" />
4301 <linearGradient
4302 inkscape:collect="always"
4303 xlink:href="#linearGradient800"
4304 id="linearGradient11815"
4305 x1="361.70941"
4306 y1="261.24731"
4307 x2="366.09814"
4308 y2="264.68918"
4309 gradientUnits="userSpaceOnUse"
4310 gradientTransform="matrix(1.02198,0,0,1,-8.949568,-1)" />
4311 <linearGradient
4312 inkscape:collect="always"
4313 xlink:href="#linearGradient3466"
4314 id="linearGradient11021"
4315 gradientUnits="userSpaceOnUse"
4316 gradientTransform="matrix(0.707107,-0.707107,0.707107,0.707107,16.25566,275.4833)"
4317 x1="337.11661"
4318 y1="117.24895"
4319 x2="338.0838"
4320 y2="126.52245" />
4321 <linearGradient
4322 inkscape:collect="always"
4323 xlink:href="#linearGradient5740"
4324 id="linearGradient13469"
4325 gradientUnits="userSpaceOnUse"
4326 gradientTransform="matrix(0.539989,0,0,0.883257,-125.2513,264.0607)"
4327 x1="404.67871"
4328 y1="46.338985"
4329 x2="414.62341"
4330 y2="46.338959" />
4331 <linearGradient
4332 inkscape:collect="always"
4333 xlink:href="#linearGradient5740"
4334 id="linearGradient13473"
4335 gradientUnits="userSpaceOnUse"
4336 gradientTransform="matrix(0.666914,0,0,0.896427,-159.6137,266.4372)"
4337 x1="404.67871"
4338 y1="46.338985"
4339 x2="415.16632"
4340 y2="46.339054" />
4341 <linearGradient
4342 inkscape:collect="always"
4343 xlink:href="#linearGradient5740"
4344 id="linearGradient13477"
4345 gradientUnits="userSpaceOnUse"
4346 gradientTransform="matrix(0.868799,0,0,0.896064,-239.3931,260.4497)"
4347 x1="404.67871"
4348 y1="46.338985"
4349 x2="415.20053"
4350 y2="46.339008" />
4351 <linearGradient
4352 inkscape:collect="always"
4353 xlink:href="#linearGradient5740"
4354 id="linearGradient14343"
4355 x1="70"
4356 y1="293"
4357 x2="76.136215"
4358 y2="293"
4359 gradientUnits="userSpaceOnUse"
4360 gradientTransform="translate(41.00246,10.00003)" />
4361 <linearGradient
4362 inkscape:collect="always"
4363 xlink:href="#linearGradient5734"
4364 id="linearGradient14389"
4365 x1="83.829369"
4366 y1="311.45078"
4367 x2="80.622993"
4368 y2="307.83109"
4369 gradientUnits="userSpaceOnUse" />
4370 <linearGradient
4371 inkscape:collect="always"
4372 xlink:href="#linearGradient4528"
4373 id="linearGradient18352"
4374 gradientUnits="userSpaceOnUse"
4375 gradientTransform="matrix(1.124999,0,0,1.125,-85.22497,-7.125909)"
4376 x1="705.22168"
4377 y1="67.59227"
4378 x2="690"
4379 y2="76.983932" />
4380 <linearGradient
4381 inkscape:collect="always"
4382 xlink:href="#linearGradient800"
4383 id="linearGradient5644"
4384 gradientUnits="userSpaceOnUse"
4385 gradientTransform="matrix(0.7,0,0,1,311.2,8.5)"
4386 x1="974.43518"
The diff has been truncated for viewing.