Commit b08cd44c8107555c25be73fce9e99470c7731e67
1 parent
3b9bedaa
Exists in
master
and in
28 other branches
ActionItem360: Layout Zen3 50%
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1761 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
23 changed files
with
2172 additions
and
15 deletions
Show diff stats
app/helpers/application_helper.rb
@@ -493,14 +493,43 @@ module ApplicationHelper | @@ -493,14 +493,43 @@ module ApplicationHelper | ||
493 | content_tag('div', result) | 493 | content_tag('div', result) |
494 | end | 494 | end |
495 | 495 | ||
496 | - def theme_javascript() | 496 | + def theme_option( opt=nil ) |
497 | conf = RAILS_ROOT.to_s() + | 497 | conf = RAILS_ROOT.to_s() + |
498 | '/public/designs/themes/' + | 498 | '/public/designs/themes/' + |
499 | current_theme.to_s() + | 499 | current_theme.to_s() + |
500 | '/theme.yml' | 500 | '/theme.yml' |
501 | - js = File.exists?(conf) ? YAML.load_file(conf)['js'] : [] | 501 | + if File.exists?(conf) |
502 | + opt ? YAML.load_file(conf)[opt.to_s()] : YAML.load_file(conf) | ||
503 | + else | ||
504 | + nil | ||
505 | + end | ||
506 | + end | ||
507 | + | ||
508 | + def theme_opt_menu_search | ||
509 | + opt = theme_option( :menu_search ) | ||
510 | + if opt == 'none' | ||
511 | + "" | ||
512 | + elsif opt == 'simple_search' | ||
513 | + s = _('Search...') | ||
514 | + '<form action="search" id="simple-search" class="focus-out"'+ | ||
515 | + ' help="'+_('Thet is a search box. Click, write your query, and press enter to find')+'"'+ | ||
516 | + ' title="'+_('Click, write and press enter to find')+'">'+ | ||
517 | + '<input name="query" value="'+s+'"'+ | ||
518 | + ' onfocus="if(this.value==\''+s+'\'){this.value=\'\'} this.form.className=\'focus-in\'"'+ | ||
519 | + ' onblur="if(/^\s*$/.test(this.value)){this.value=\''+s+'\'} this.form.className=\'focus-out\'">'+ | ||
520 | + '</form>' | ||
521 | + else #opt == 'lightbox_link' is default | ||
522 | + lightbox_link_to '<span class="icon-menu-search"></span>'+ _('Search'), { | ||
523 | + :controller => 'search', | ||
524 | + :action => 'popup', | ||
525 | + :category_path => (@category ? @category.explode_path : []) }, | ||
526 | + :id => 'open_search' | ||
527 | + end | ||
528 | + end | ||
529 | + | ||
530 | + def theme_javascript | ||
502 | html = [] | 531 | html = [] |
503 | - js.each do |file| | 532 | + theme_option(:js).each do |file| |
504 | file = '/designs/themes/'+ current_theme.to_s() + | 533 | file = '/designs/themes/'+ current_theme.to_s() + |
505 | '/javascript/'+ file +'.js' | 534 | '/javascript/'+ file +'.js' |
506 | if File.exists? RAILS_ROOT.to_s() +'/public'+ file | 535 | if File.exists? RAILS_ROOT.to_s() +'/public'+ file |
app/helpers/assets_helper.rb
@@ -12,7 +12,11 @@ module AssetsHelper | @@ -12,7 +12,11 @@ module AssetsHelper | ||
12 | [ options.merge(:asset => 'comments'), "icon-menu-comments", _('Comments') ], | 12 | [ options.merge(:asset => 'comments'), "icon-menu-comments", _('Comments') ], |
13 | 13 | ||
14 | ].map do |target,css_class,name| | 14 | ].map do |target,css_class,name| |
15 | - content_tag('li', link_to(content_tag('span', '', :class => css_class) + name, target)) | 15 | + content_tag('li', |
16 | + link_to( | ||
17 | + content_tag('span', '', :class => css_class) + | ||
18 | + content_tag('strong', name), | ||
19 | + target )) | ||
16 | end.join("\n") | 20 | end.join("\n") |
17 | end | 21 | end |
18 | 22 |
app/views/layouts/application.rhtml
@@ -78,6 +78,9 @@ | @@ -78,6 +78,9 @@ | ||
78 | </div><!-- accessibility_menu --> | 78 | </div><!-- accessibility_menu --> |
79 | 79 | ||
80 | <div id="wrap"> | 80 | <div id="wrap"> |
81 | + <div id="wrap2"> | ||
82 | + <div id="wrap3"> | ||
83 | + <div id="wrap4"> | ||
81 | 84 | ||
82 | <div id="beta-tag"><span>BETA</span></div> | 85 | <div id="beta-tag"><span>BETA</span></div> |
83 | 86 | ||
@@ -97,13 +100,10 @@ | @@ -97,13 +100,10 @@ | ||
97 | 100 | ||
98 | <div id='user_box'> | 101 | <div id='user_box'> |
99 | <%= render :file => 'shared/user_menu' %> | 102 | <%= render :file => 'shared/user_menu' %> |
100 | - <%= | ||
101 | - lightbox_link_to '<span class="icon-menu-search"></span>'+ _('Search'), | ||
102 | - { :controller => 'search', :action => 'popup', :category_path => (@category ? @category.explode_path : []) }, :id => 'open_search' | ||
103 | - %> | 103 | + <%= theme_opt_menu_search %> |
104 | </div><!-- id='user_box' --> | 104 | </div><!-- id='user_box' --> |
105 | 105 | ||
106 | - <a href="#" id="btShowHelp" class="icon-help32on" | 106 | + <a href="#" id="btShowHelp" class="icon-help32on help-on" |
107 | title="<%= _('Turn help on/off') %>" | 107 | title="<%= _('Turn help on/off') %>" |
108 | onclick="mouseHelpOnOff(); return false"><span><%= _('Help') %></span></a> | 108 | onclick="mouseHelpOnOff(); return false"><span><%= _('Help') %></span></a> |
109 | 109 | ||
@@ -132,6 +132,9 @@ | @@ -132,6 +132,9 @@ | ||
132 | <div id="footer_content"><!-- Rodape do Conteudo --> | 132 | <div id="footer_content"><!-- Rodape do Conteudo --> |
133 | </div><!-- id="footer_content" --> | 133 | </div><!-- id="footer_content" --> |
134 | </div><!-- id="frame" --> | 134 | </div><!-- id="frame" --> |
135 | + </div><!-- id="wrap4" --> | ||
136 | + </div><!-- id="wrap3" --> | ||
137 | + </div><!-- id="wrap2" --> | ||
135 | </div><!-- id="wrap" --> | 138 | </div><!-- id="wrap" --> |
136 | 139 | ||
137 | <div id="footer"> | 140 | <div id="footer"> |
@@ -0,0 +1,1922 @@ | @@ -0,0 +1,1922 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
2 | +<!-- Created with Inkscape (http://www.inkscape.org/) --> | ||
3 | +<svg | ||
4 | + xmlns:dc="http://purl.org/dc/elements/1.1/" | ||
5 | + xmlns:cc="http://web.resource.org/cc/" | ||
6 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
7 | + xmlns:svg="http://www.w3.org/2000/svg" | ||
8 | + xmlns="http://www.w3.org/2000/svg" | ||
9 | + xmlns:xlink="http://www.w3.org/1999/xlink" | ||
10 | + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | ||
11 | + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | ||
12 | + width="750" | ||
13 | + height="550" | ||
14 | + id="svg2354" | ||
15 | + sodipodi:version="0.32" | ||
16 | + inkscape:version="0.45.1" | ||
17 | + version="1.0" | ||
18 | + sodipodi:docbase="/home/theo/Desktop/Aurelio/zen3/layout" | ||
19 | + sodipodi:docname="layout.svg" | ||
20 | + inkscape:output_extension="org.inkscape.output.svg.inkscape" | ||
21 | + inkscape:export-filename="/home/theo/Desktop/Aurelio/zen3/layout/layout-ativo.png" | ||
22 | + inkscape:export-xdpi="90" | ||
23 | + inkscape:export-ydpi="90"> | ||
24 | + <sodipodi:namedview | ||
25 | + id="base" | ||
26 | + pagecolor="#ffffff" | ||
27 | + bordercolor="#666666" | ||
28 | + borderopacity="1.0" | ||
29 | + gridtolerance="10000" | ||
30 | + guidetolerance="10" | ||
31 | + objecttolerance="10" | ||
32 | + inkscape:pageopacity="1" | ||
33 | + inkscape:pageshadow="2" | ||
34 | + inkscape:zoom="1" | ||
35 | + inkscape:cx="425.35443" | ||
36 | + inkscape:cy="533.11145" | ||
37 | + inkscape:document-units="px" | ||
38 | + inkscape:current-layer="layer1" | ||
39 | + width="750px" | ||
40 | + height="550px" | ||
41 | + showgrid="false" | ||
42 | + gridoriginx="0.5px" | ||
43 | + gridoriginy="0.5px" | ||
44 | + inkscape:object-nodes="true" | ||
45 | + inkscape:grid-points="true" | ||
46 | + inkscape:guide-points="true" | ||
47 | + inkscape:window-width="1024" | ||
48 | + inkscape:window-height="695" | ||
49 | + inkscape:window-x="0" | ||
50 | + inkscape:window-y="25" /> | ||
51 | + <defs | ||
52 | + id="defs2356"> | ||
53 | + <linearGradient | ||
54 | + id="linearGradient9568"> | ||
55 | + <stop | ||
56 | + offset="0" | ||
57 | + style="stop-color:#2e3436;stop-opacity:1" | ||
58 | + id="stop9570" /> | ||
59 | + <stop | ||
60 | + offset="1" | ||
61 | + style="stop-color:#babdb6;stop-opacity:0" | ||
62 | + id="stop9574" /> | ||
63 | + </linearGradient> | ||
64 | + <linearGradient | ||
65 | + id="linearGradient2996"> | ||
66 | + <stop | ||
67 | + offset="0" | ||
68 | + style="stop-color:#ffffff;stop-opacity:1;" | ||
69 | + id="stop2998" /> | ||
70 | + <stop | ||
71 | + offset="1" | ||
72 | + style="stop-color:#ffffff;stop-opacity:0.39215687;" | ||
73 | + id="stop3000" /> | ||
74 | + </linearGradient> | ||
75 | + <linearGradient | ||
76 | + id="linearGradient3339" | ||
77 | + inkscape:collect="always"> | ||
78 | + <stop | ||
79 | + offset="0" | ||
80 | + style="stop-color:#73d216;stop-opacity:0" | ||
81 | + id="stop3341" /> | ||
82 | + <stop | ||
83 | + offset="1" | ||
84 | + style="stop-color:#4e9a06;stop-opacity:1" | ||
85 | + id="stop3343" /> | ||
86 | + </linearGradient> | ||
87 | + <linearGradient | ||
88 | + id="linearGradient3380" | ||
89 | + inkscape:collect="always"> | ||
90 | + <stop | ||
91 | + offset="0" | ||
92 | + style="stop-color:#73d216;stop-opacity:1;" | ||
93 | + id="stop3382" /> | ||
94 | + <stop | ||
95 | + offset="1" | ||
96 | + style="stop-color:#4e9a06;stop-opacity:1" | ||
97 | + id="stop3384" /> | ||
98 | + </linearGradient> | ||
99 | + <linearGradient | ||
100 | + id="linearGradient6367"> | ||
101 | + <stop | ||
102 | + offset="0" | ||
103 | + style="stop-color:#73d216;stop-opacity:1;" | ||
104 | + id="stop6369" /> | ||
105 | + <stop | ||
106 | + offset="1" | ||
107 | + style="stop-color:#4e9a06;stop-opacity:1" | ||
108 | + id="stop6371" /> | ||
109 | + </linearGradient> | ||
110 | + <linearGradient | ||
111 | + id="linearGradient3018"> | ||
112 | + <stop | ||
113 | + offset="0" | ||
114 | + style="stop-color:#edd400;stop-opacity:0" | ||
115 | + id="stop3020" /> | ||
116 | + <stop | ||
117 | + offset="1" | ||
118 | + style="stop-color:#c17d11;stop-opacity:1" | ||
119 | + id="stop3022" /> | ||
120 | + </linearGradient> | ||
121 | + <linearGradient | ||
122 | + id="linearGradient7687"> | ||
123 | + <stop | ||
124 | + offset="0" | ||
125 | + style="stop-color:#ffffff;stop-opacity:1;" | ||
126 | + id="stop7689" /> | ||
127 | + <stop | ||
128 | + offset="0.5" | ||
129 | + style="stop-color:#ffffff;stop-opacity:0;" | ||
130 | + id="stop7693" /> | ||
131 | + <stop | ||
132 | + offset="1" | ||
133 | + style="stop-color:#ffdd00;stop-opacity:1;" | ||
134 | + id="stop7691" /> | ||
135 | + </linearGradient> | ||
136 | + <linearGradient | ||
137 | + id="linearGradient7603"> | ||
138 | + <stop | ||
139 | + offset="0" | ||
140 | + style="stop-color:#ffee00;stop-opacity:0;" | ||
141 | + id="stop7605" /> | ||
142 | + <stop | ||
143 | + offset="1" | ||
144 | + style="stop-color:#ffffa3;stop-opacity:1;" | ||
145 | + id="stop7607" /> | ||
146 | + </linearGradient> | ||
147 | + <linearGradient | ||
148 | + id="linearGradient5544" | ||
149 | + inkscape:collect="always"> | ||
150 | + <stop | ||
151 | + offset="0" | ||
152 | + style="stop-color:#f57900;stop-opacity:1;" | ||
153 | + id="stop5546" /> | ||
154 | + <stop | ||
155 | + offset="1" | ||
156 | + style="stop-color:#a40000;stop-opacity:1" | ||
157 | + id="stop5548" /> | ||
158 | + </linearGradient> | ||
159 | + <linearGradient | ||
160 | + id="linearGradient4565"> | ||
161 | + <stop | ||
162 | + offset="0" | ||
163 | + style="stop-color:#f57900;stop-opacity:1;" | ||
164 | + id="stop4567" /> | ||
165 | + <stop | ||
166 | + offset="0.5" | ||
167 | + style="stop-color:#f8ea39;stop-opacity:0.49803922;" | ||
168 | + id="stop5542" /> | ||
169 | + <stop | ||
170 | + offset="1" | ||
171 | + style="stop-color:#ffffff;stop-opacity:0" | ||
172 | + id="stop4569" /> | ||
173 | + </linearGradient> | ||
174 | + <linearGradient | ||
175 | + x1="0" | ||
176 | + x2="0" | ||
177 | + y1="33" | ||
178 | + inkscape:collect="always" | ||
179 | + gradientUnits="userSpaceOnUse" | ||
180 | + y2="150" | ||
181 | + xlink:href="#linearGradient4565" | ||
182 | + id="linearGradient4571" /> | ||
183 | + <linearGradient | ||
184 | + x1="0" | ||
185 | + x2="0" | ||
186 | + y1="0" | ||
187 | + inkscape:collect="always" | ||
188 | + gradientUnits="userSpaceOnUse" | ||
189 | + y2="33" | ||
190 | + xlink:href="#linearGradient5544" | ||
191 | + id="linearGradient5550" /> | ||
192 | + <radialGradient | ||
193 | + gradientTransform="matrix(1,0,0,1.0859203,0,-1.4325526)" | ||
194 | + inkscape:collect="always" | ||
195 | + r="14.92217" | ||
196 | + gradientUnits="userSpaceOnUse" | ||
197 | + xlink:href="#linearGradient7603" | ||
198 | + cy="16.673037" | ||
199 | + id="radialGradient7609" | ||
200 | + fx="20.015625" | ||
201 | + cx="20.015625" | ||
202 | + fy="16.673037" /> | ||
203 | + <radialGradient | ||
204 | + gradientTransform="matrix(1,0,0,1.080524,0,-1.3425804)" | ||
205 | + inkscape:collect="always" | ||
206 | + r="15.92217" | ||
207 | + gradientUnits="userSpaceOnUse" | ||
208 | + xlink:href="#linearGradient7687" | ||
209 | + cy="16.673037" | ||
210 | + id="radialGradient7685" | ||
211 | + fx="20.015625" | ||
212 | + cx="20.015625" | ||
213 | + fy="16.673037" /> | ||
214 | + <filter | ||
215 | + y="-0.23105722" | ||
216 | + x="-0.24966289" | ||
217 | + height="1.4621144" | ||
218 | + width="1.4993258" | ||
219 | + id="filter7707" | ||
220 | + inkscape:collect="always"> | ||
221 | + <feGaussianBlur | ||
222 | + stdDeviation="3.3126457" | ||
223 | + id="feGaussianBlur7709" | ||
224 | + inkscape:collect="always" /> | ||
225 | + </filter> | ||
226 | + <radialGradient | ||
227 | + inkscape:collect="always" | ||
228 | + r="23.309734" | ||
229 | + gradientUnits="userSpaceOnUse" | ||
230 | + xlink:href="#linearGradient3018" | ||
231 | + cy="21.432123" | ||
232 | + id="radialGradient8339" | ||
233 | + fx="15.140556" | ||
234 | + cx="21.432123" | ||
235 | + fy="13.38717" /> | ||
236 | + <linearGradient | ||
237 | + x1="735.61029" | ||
238 | + gradientTransform="translate(-2,0)" | ||
239 | + x2="749.75885" | ||
240 | + y1="4.5477529" | ||
241 | + inkscape:collect="always" | ||
242 | + gradientUnits="userSpaceOnUse" | ||
243 | + y2="6.308609" | ||
244 | + xlink:href="#linearGradient6367" | ||
245 | + id="linearGradient8341" /> | ||
246 | + <linearGradient | ||
247 | + x1="5.0587568" | ||
248 | + gradientTransform="translate(14,0)" | ||
249 | + x2="8.62325" | ||
250 | + y1="5.1523657" | ||
251 | + inkscape:collect="always" | ||
252 | + gradientUnits="userSpaceOnUse" | ||
253 | + y2="12.6452" | ||
254 | + xlink:href="#linearGradient3380" | ||
255 | + id="linearGradient9446" /> | ||
256 | + <radialGradient | ||
257 | + gradientTransform="matrix(0.6589093,-2.3361484e-7,2.5560269e-7,0.7209259,7.6142799,7.1122181)" | ||
258 | + inkscape:collect="always" | ||
259 | + r="5.5778441" | ||
260 | + gradientUnits="userSpaceOnUse" | ||
261 | + xlink:href="#linearGradient3339" | ||
262 | + cy="25.485029" | ||
263 | + id="radialGradient9448" | ||
264 | + fx="20.982035" | ||
265 | + cx="22.323353" | ||
266 | + fy="24.335329" /> | ||
267 | + <linearGradient | ||
268 | + x1="17.461113" | ||
269 | + x2="27.59375" | ||
270 | + y1="2.027601" | ||
271 | + inkscape:collect="always" | ||
272 | + gradientUnits="userSpaceOnUse" | ||
273 | + y2="14.28125" | ||
274 | + xlink:href="#linearGradient2996" | ||
275 | + id="linearGradient9450" /> | ||
276 | + <radialGradient | ||
277 | + inkscape:collect="always" | ||
278 | + r="23.309734" | ||
279 | + gradientUnits="userSpaceOnUse" | ||
280 | + xlink:href="#linearGradient3018" | ||
281 | + cy="21.432123" | ||
282 | + id="radialGradient9452" | ||
283 | + fx="15.140556" | ||
284 | + cx="21.432123" | ||
285 | + fy="13.38717" /> | ||
286 | + <linearGradient | ||
287 | + x1="0" | ||
288 | + gradientTransform="translate(0,400)" | ||
289 | + x2="0" | ||
290 | + y1="33" | ||
291 | + inkscape:collect="always" | ||
292 | + gradientUnits="userSpaceOnUse" | ||
293 | + y2="124" | ||
294 | + xlink:href="#linearGradient9568" | ||
295 | + id="linearGradient9566" /> | ||
296 | + <linearGradient | ||
297 | + x1="0" | ||
298 | + gradientTransform="matrix(1,0,0,0.4273504,0,-447.10256)" | ||
299 | + x2="0" | ||
300 | + y1="33" | ||
301 | + inkscape:collect="always" | ||
302 | + gradientUnits="userSpaceOnUse" | ||
303 | + y2="150" | ||
304 | + xlink:href="#linearGradient4565" | ||
305 | + id="linearGradient10549" /> | ||
306 | + <linearGradient | ||
307 | + x1="0" | ||
308 | + gradientTransform="translate(0,-140)" | ||
309 | + x2="0" | ||
310 | + y1="0" | ||
311 | + inkscape:collect="always" | ||
312 | + gradientUnits="userSpaceOnUse" | ||
313 | + y2="33" | ||
314 | + xlink:href="#linearGradient5544" | ||
315 | + id="linearGradient14942" /> | ||
316 | + <linearGradient | ||
317 | + x1="0" | ||
318 | + gradientTransform="translate(0,-100)" | ||
319 | + x2="0" | ||
320 | + y1="0" | ||
321 | + inkscape:collect="always" | ||
322 | + gradientUnits="userSpaceOnUse" | ||
323 | + y2="33" | ||
324 | + xlink:href="#linearGradient5544" | ||
325 | + id="linearGradient16916" /> | ||
326 | + </defs> | ||
327 | + <metadata | ||
328 | + id="metadata2359"> | ||
329 | + <rdf:RDF> | ||
330 | + <cc:Work | ||
331 | + rdf:about=""> | ||
332 | + <dc:format>image/svg+xml</dc:format> | ||
333 | + <dc:type | ||
334 | + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | ||
335 | + </cc:Work> | ||
336 | + </rdf:RDF> | ||
337 | + </metadata> | ||
338 | + <g | ||
339 | + inkscape:label="Layer 1" | ||
340 | + id="layer1" | ||
341 | + inkscape:groupmode="layer"> | ||
342 | + <rect | ||
343 | + style="opacity:1;color:#000000;fill:url(#linearGradient16916);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
344 | + y="-100" | ||
345 | + x="0" | ||
346 | + height="33" | ||
347 | + width="750" | ||
348 | + id="rect16914" /> | ||
349 | + <rect | ||
350 | + style="opacity:1;color:#000000;fill:url(#linearGradient14942);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
351 | + y="-140" | ||
352 | + x="0" | ||
353 | + height="33" | ||
354 | + width="750" | ||
355 | + id="rect14940" /> | ||
356 | + <rect | ||
357 | + style="opacity:1;color:#000000;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
358 | + y="433" | ||
359 | + x="0" | ||
360 | + height="117" | ||
361 | + width="750" | ||
362 | + id="rect10545" /> | ||
363 | + <rect | ||
364 | + style="opacity:1;color:#000000;fill:url(#linearGradient4571);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
365 | + y="33" | ||
366 | + x="0" | ||
367 | + height="117" | ||
368 | + width="750" | ||
369 | + id="rect3583" /> | ||
370 | + <g | ||
371 | + style="opacity:0.1" | ||
372 | + id="g12961" | ||
373 | + transform="matrix(12,0,0,12,-37.383765,26.716003)"> | ||
374 | + <g | ||
375 | + id="g12963"> | ||
376 | + <path | ||
377 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
378 | + d="M 28.233209,16.887774 L 29.174254,15.257836 C 29.434992,14.806225 29.48917,14.42494 29.49012,13.960741 L 29.499996,9.1311351 C 29.50224,8.0336617 28.612864,7.1493042 27.504864,7.1493043 C 26.396865,7.1493044 25.523034,8.036436 25.523034,9.1444359 L 25.522653,13.582596 L 24.772653,14.881634 L 20.442526,12.381634 C 19.482969,11.827634 18.264475,12.154129 17.710475,13.113685 C 17.156475,14.073241 17.482969,15.291736 18.442526,15.845736 L 20.174576,16.845736 L 19.674576,17.711761 L 25.088804,22.334043 L 28.233209,16.887774 z " | ||
379 | + sodipodi:nodetypes="csscsccccsccccc" | ||
380 | + id="path12965" /> | ||
381 | + <path | ||
382 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
383 | + d="M 24.619936,21.146147 L 27.370728,16.381635 L 28.308228,14.757837 C 28.477097,14.465349 28.481554,14.343764 28.482347,13.956255 L 28.492223,9.126649 C 28.49336,8.570527 28.076272,8.157077 27.500376,8.157078 C 26.92615,8.157077 26.530805,8.566695 26.530805,9.148924 L 26.530424,13.587084 C 26.527277,13.761802 26.478405,13.932646 26.388677,14.082597 L 25.638678,15.381635 C 25.362499,15.85988 24.750953,16.023743 24.272652,15.74766 L 19.942525,13.24766 C 19.447767,12.962012 18.862148,13.118928 18.5765,13.613685 C 18.290851,14.108443 18.447767,14.694062 18.942525,14.979711 L 20.674576,15.979711 C 21.152821,16.255889 21.316685,16.867436 21.040602,17.345736 L 20.540602,18.211761 L 24.619936,21.146147 z " | ||
384 | + sodipodi:nodetypes="cccccsccccccsccccc" | ||
385 | + id="path12967" /> | ||
386 | + </g> | ||
387 | + <g | ||
388 | + transform="matrix(0,1,-1,0,29.99291,-10)" | ||
389 | + id="g12969"> | ||
390 | + <path | ||
391 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
392 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
393 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
394 | + id="path12971" /> | ||
395 | + <path | ||
396 | + sodipodi:type="inkscape:offset" | ||
397 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
398 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
399 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
400 | + inkscape:href="#rect2286" | ||
401 | + xlink:href="#rect2286" | ||
402 | + inkscape:radius="-1" | ||
403 | + id="path12973" /> | ||
404 | + <path | ||
405 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
406 | + sodipodi:cx="15.5" | ||
407 | + sodipodi:cy="25.5" | ||
408 | + sodipodi:type="arc" | ||
409 | + transform="matrix(0,0.875,0.875,0,-9.3125002,0.4375)" | ||
410 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
411 | + sodipodi:rx="4" | ||
412 | + id="path12975" | ||
413 | + sodipodi:ry="4" /> | ||
414 | + <path | ||
415 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
416 | + sodipodi:cx="15.5" | ||
417 | + sodipodi:cy="25.5" | ||
418 | + sodipodi:type="arc" | ||
419 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2500002,1.0833333)" | ||
420 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
421 | + sodipodi:rx="3" | ||
422 | + id="path12977" | ||
423 | + sodipodi:ry="3" /> | ||
424 | + </g> | ||
425 | + <g | ||
426 | + transform="matrix(0.8660254,-0.5,-0.5,-0.8660254,1.321903,39.653104)" | ||
427 | + id="g12979"> | ||
428 | + <path | ||
429 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
430 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
431 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
432 | + id="path12981" /> | ||
433 | + <path | ||
434 | + sodipodi:type="inkscape:offset" | ||
435 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
436 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
437 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
438 | + inkscape:href="#rect2286" | ||
439 | + xlink:href="#rect2286" | ||
440 | + inkscape:radius="-1" | ||
441 | + id="path12983" /> | ||
442 | + <path | ||
443 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
444 | + sodipodi:cx="15.5" | ||
445 | + sodipodi:cy="25.5" | ||
446 | + sodipodi:type="arc" | ||
447 | + transform="matrix(0,0.875,0.875,0,-9.3121723,0.4375)" | ||
448 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
449 | + sodipodi:rx="4" | ||
450 | + id="path12985" | ||
451 | + sodipodi:ry="4" /> | ||
452 | + <path | ||
453 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
454 | + sodipodi:cx="15.5" | ||
455 | + sodipodi:cy="25.5" | ||
456 | + sodipodi:type="arc" | ||
457 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2496723,1.0833333)" | ||
458 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
459 | + sodipodi:rx="3" | ||
460 | + id="path12987" | ||
461 | + sodipodi:ry="3" /> | ||
462 | + </g> | ||
463 | + <g | ||
464 | + id="g12989"> | ||
465 | + <path | ||
466 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
467 | + d="M 20.174576,16.845736 L 19.674576,17.711761 L 17.942526,16.711761 C 16.982969,16.157761 15.764475,16.484256 15.210475,17.443812 C 14.656475,18.403368 14.982969,19.621863 15.942526,20.175863 L 20.272653,22.675863 L 19.522653,23.974901 L 15.679284,26.194311 C 14.719728,26.748311 14.388365,27.948636 14.942364,28.908192 C 15.150115,29.268026 15.430076,29.545526 15.776018,29.714262 C 16.352589,29.99549 17.058343,29.991944 17.656246,29.645112 L 21.83387,27.221755 C 22.278277,26.963964 22.567672,26.700772 22.799254,26.29966 L 26.282949,20.265724" | ||
468 | + sodipodi:nodetypes="cccsccccsccccc" | ||
469 | + id="path12991" /> | ||
470 | + <path | ||
471 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
472 | + id="path12993" | ||
473 | + sodipodi:nodetypes="ccccsccccccsccccc" | ||
474 | + d="M 21.040602,17.345736 L 20.540602,18.211761 C 20.264423,18.690007 19.652877,18.85387 19.174576,18.577787 L 17.442525,17.577787 C 16.947768,17.292138 16.362148,17.449054 16.0765,17.943812 C 15.790852,18.43857 15.947768,19.024189 16.442526,19.309837 L 20.772653,21.809837 C 21.250898,22.086016 21.414761,22.697562 21.138678,23.175863 L 20.388678,24.474901 C 20.303681,24.627582 20.180161,24.755329 20.030425,24.845413 L 16.187056,27.064824 C 15.68283,27.355938 15.525764,27.903125 15.812877,28.40042 C 15.937432,28.616155 16.073157,28.74444 16.221891,28.816987 C 16.506495,28.955805 16.843452,28.951536 17.148474,28.774599 L 21.326097,26.351243 C 21.677959,26.147135 21.787309,26.0524 21.933229,25.79966 L 25.520751,19.585889" /> | ||
475 | + <path | ||
476 | + style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
477 | + sodipodi:cx="15.5" | ||
478 | + sodipodi:cy="25.5" | ||
479 | + sodipodi:type="arc" | ||
480 | + transform="matrix(0.4375,-0.7577722,-0.7577722,-0.4375,38.961424,43.930304)" | ||
481 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
482 | + sodipodi:rx="4" | ||
483 | + id="path12995" | ||
484 | + sodipodi:ry="4" /> | ||
485 | + <path | ||
486 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
487 | + sodipodi:cx="15.5" | ||
488 | + sodipodi:cy="25.5" | ||
489 | + sodipodi:type="arc" | ||
490 | + transform="matrix(0.4166667,-0.7216878,-0.7216878,-0.4166667,38.364189,42.839745)" | ||
491 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
492 | + sodipodi:rx="3" | ||
493 | + id="path12997" | ||
494 | + sodipodi:ry="3" /> | ||
495 | + </g> | ||
496 | + </g> | ||
497 | + <g | ||
498 | + style="opacity:0.1" | ||
499 | + id="g9489" | ||
500 | + transform="matrix(9.9863675,0,0,9.9863675,-373.20154,17.53283)"> | ||
501 | + <g | ||
502 | + id="g9491"> | ||
503 | + <path | ||
504 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
505 | + d="M 28.233209,16.887774 L 29.174254,15.257836 C 29.434992,14.806225 29.48917,14.42494 29.49012,13.960741 L 29.499996,9.1311351 C 29.50224,8.0336617 28.612864,7.1493042 27.504864,7.1493043 C 26.396865,7.1493044 25.523034,8.036436 25.523034,9.1444359 L 25.522653,13.582596 L 24.772653,14.881634 L 20.442526,12.381634 C 19.482969,11.827634 18.264475,12.154129 17.710475,13.113685 C 17.156475,14.073241 17.482969,15.291736 18.442526,15.845736 L 20.174576,16.845736 L 19.674576,17.711761 L 25.088804,22.334043 L 28.233209,16.887774 z " | ||
506 | + sodipodi:nodetypes="csscsccccsccccc" | ||
507 | + id="path9493" /> | ||
508 | + <path | ||
509 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
510 | + d="M 24.619936,21.146147 L 27.370728,16.381635 L 28.308228,14.757837 C 28.477097,14.465349 28.481554,14.343764 28.482347,13.956255 L 28.492223,9.126649 C 28.49336,8.570527 28.076272,8.157077 27.500376,8.157078 C 26.92615,8.157077 26.530805,8.566695 26.530805,9.148924 L 26.530424,13.587084 C 26.527277,13.761802 26.478405,13.932646 26.388677,14.082597 L 25.638678,15.381635 C 25.362499,15.85988 24.750953,16.023743 24.272652,15.74766 L 19.942525,13.24766 C 19.447767,12.962012 18.862148,13.118928 18.5765,13.613685 C 18.290851,14.108443 18.447767,14.694062 18.942525,14.979711 L 20.674576,15.979711 C 21.152821,16.255889 21.316685,16.867436 21.040602,17.345736 L 20.540602,18.211761 L 24.619936,21.146147 z " | ||
511 | + sodipodi:nodetypes="cccccsccccccsccccc" | ||
512 | + id="path9495" /> | ||
513 | + </g> | ||
514 | + <g | ||
515 | + transform="matrix(0,1,-1,0,29.99291,-10)" | ||
516 | + id="g9497"> | ||
517 | + <path | ||
518 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
519 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
520 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
521 | + id="path9499" /> | ||
522 | + <path | ||
523 | + sodipodi:type="inkscape:offset" | ||
524 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
525 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
526 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
527 | + inkscape:href="#rect2286" | ||
528 | + xlink:href="#rect2286" | ||
529 | + inkscape:radius="-1" | ||
530 | + id="path9501" /> | ||
531 | + <path | ||
532 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
533 | + sodipodi:cx="15.5" | ||
534 | + sodipodi:cy="25.5" | ||
535 | + sodipodi:type="arc" | ||
536 | + transform="matrix(0,0.875,0.875,0,-9.3125002,0.4375)" | ||
537 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
538 | + sodipodi:rx="4" | ||
539 | + id="path9503" | ||
540 | + sodipodi:ry="4" /> | ||
541 | + <path | ||
542 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
543 | + sodipodi:cx="15.5" | ||
544 | + sodipodi:cy="25.5" | ||
545 | + sodipodi:type="arc" | ||
546 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2500002,1.0833333)" | ||
547 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
548 | + sodipodi:rx="3" | ||
549 | + id="path9505" | ||
550 | + sodipodi:ry="3" /> | ||
551 | + </g> | ||
552 | + <g | ||
553 | + transform="matrix(0.8660254,-0.5,-0.5,-0.8660254,1.321903,39.653104)" | ||
554 | + id="g9507"> | ||
555 | + <path | ||
556 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
557 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
558 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
559 | + id="path9509" /> | ||
560 | + <path | ||
561 | + sodipodi:type="inkscape:offset" | ||
562 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
563 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
564 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
565 | + inkscape:href="#rect2286" | ||
566 | + xlink:href="#rect2286" | ||
567 | + inkscape:radius="-1" | ||
568 | + id="path9511" /> | ||
569 | + <path | ||
570 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
571 | + sodipodi:cx="15.5" | ||
572 | + sodipodi:cy="25.5" | ||
573 | + sodipodi:type="arc" | ||
574 | + transform="matrix(0,0.875,0.875,0,-9.3121723,0.4375)" | ||
575 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
576 | + sodipodi:rx="4" | ||
577 | + id="path9513" | ||
578 | + sodipodi:ry="4" /> | ||
579 | + <path | ||
580 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
581 | + sodipodi:cx="15.5" | ||
582 | + sodipodi:cy="25.5" | ||
583 | + sodipodi:type="arc" | ||
584 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2496723,1.0833333)" | ||
585 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
586 | + sodipodi:rx="3" | ||
587 | + id="path9515" | ||
588 | + sodipodi:ry="3" /> | ||
589 | + </g> | ||
590 | + <g | ||
591 | + id="g9517"> | ||
592 | + <path | ||
593 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
594 | + d="M 20.174576,16.845736 L 19.674576,17.711761 L 17.942526,16.711761 C 16.982969,16.157761 15.764475,16.484256 15.210475,17.443812 C 14.656475,18.403368 14.982969,19.621863 15.942526,20.175863 L 20.272653,22.675863 L 19.522653,23.974901 L 15.679284,26.194311 C 14.719728,26.748311 14.388365,27.948636 14.942364,28.908192 C 15.150115,29.268026 15.430076,29.545526 15.776018,29.714262 C 16.352589,29.99549 17.058343,29.991944 17.656246,29.645112 L 21.83387,27.221755 C 22.278277,26.963964 22.567672,26.700772 22.799254,26.29966 L 26.282949,20.265724" | ||
595 | + sodipodi:nodetypes="cccsccccsccccc" | ||
596 | + id="path9519" /> | ||
597 | + <path | ||
598 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
599 | + id="path9521" | ||
600 | + sodipodi:nodetypes="ccccsccccccsccccc" | ||
601 | + d="M 21.040602,17.345736 L 20.540602,18.211761 C 20.264423,18.690007 19.652877,18.85387 19.174576,18.577787 L 17.442525,17.577787 C 16.947768,17.292138 16.362148,17.449054 16.0765,17.943812 C 15.790852,18.43857 15.947768,19.024189 16.442526,19.309837 L 20.772653,21.809837 C 21.250898,22.086016 21.414761,22.697562 21.138678,23.175863 L 20.388678,24.474901 C 20.303681,24.627582 20.180161,24.755329 20.030425,24.845413 L 16.187056,27.064824 C 15.68283,27.355938 15.525764,27.903125 15.812877,28.40042 C 15.937432,28.616155 16.073157,28.74444 16.221891,28.816987 C 16.506495,28.955805 16.843452,28.951536 17.148474,28.774599 L 21.326097,26.351243 C 21.677959,26.147135 21.787309,26.0524 21.933229,25.79966 L 25.520751,19.585889" /> | ||
602 | + <path | ||
603 | + style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
604 | + sodipodi:cx="15.5" | ||
605 | + sodipodi:cy="25.5" | ||
606 | + sodipodi:type="arc" | ||
607 | + transform="matrix(0.4375,-0.7577722,-0.7577722,-0.4375,38.961424,43.930304)" | ||
608 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
609 | + sodipodi:rx="4" | ||
610 | + id="path9523" | ||
611 | + sodipodi:ry="4" /> | ||
612 | + <path | ||
613 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
614 | + sodipodi:cx="15.5" | ||
615 | + sodipodi:cy="25.5" | ||
616 | + sodipodi:type="arc" | ||
617 | + transform="matrix(0.4166667,-0.7216878,-0.7216878,-0.4166667,38.364189,42.839745)" | ||
618 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
619 | + sodipodi:rx="3" | ||
620 | + id="path9525" | ||
621 | + sodipodi:ry="3" /> | ||
622 | + </g> | ||
623 | + </g> | ||
624 | + <rect | ||
625 | + style="opacity:1;color:#000000;fill:url(#linearGradient5550);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
626 | + y="0" | ||
627 | + x="0" | ||
628 | + height="33" | ||
629 | + width="750" | ||
630 | + id="rect4555" /> | ||
631 | + <path | ||
632 | + style="color:#000000;fill:url(#radialGradient7685);fill-opacity:1.0;fill-rule:nonzero;stroke:url(#radialGradient7609);stroke-width:4;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter7707);opacity:0.8" | ||
633 | + d="M 20,1.46875 C 18.067999,1.46875 16.5,3.03675 16.5,4.96875 C 16.5,5.1366329 16.53961,5.3071542 16.5625,5.46875 L 15.53125,5.46875 L 13.625,5.46875 C 13.103523,5.46875 12.746232,5.612473 12.34375,5.84375 L 8.15625,8.25 C 7.63064,8.5520292 7.318438,9.0715948 7.21875,9.625 C 6.794167,9.9879715 6.530019,10.522728 6.53125,11.125 L 6.53125,15.9375 C 6.5322,16.401699 6.58301,16.798388 6.84375,17.25 L 7.78125,18.875 L 8.3125,19.78125 C 8.158471,19.842865 7.991594,19.883392 7.84375,19.96875 C 6.170589,20.93475 5.596501,23.076839 6.5625,24.75 C 7.5285,26.423161 9.670589,26.997249 11.34375,26.03125 C 11.487389,25.94832 11.622842,25.849223 11.75,25.75 L 13.21875,28.28125 C 13.450332,28.682362 13.743094,28.960959 14.1875,29.21875 L 18.375,31.625 C 18.895176,31.926744 19.472647,31.929393 20,31.75 C 20.533786,31.940237 21.158356,31.931946 21.6875,31.625 L 25.84375,29.21875 C 26.288154,28.960959 26.580918,28.682362 26.8125,28.28125 L 28.28125,25.75 C 28.412431,25.853438 28.538595,25.94528 28.6875,26.03125 C 30.360662,26.997249 32.50275,26.423161 33.46875,24.75 C 34.43475,23.076839 33.860661,20.93475 32.1875,19.96875 C 32.039656,19.883392 31.872779,19.842865 31.71875,19.78125 L 32.25,18.875 L 33.1875,17.25 C 33.448241,16.798388 33.49905,16.401699 33.5,15.9375 L 33.53125,11.125 C 33.532521,10.503414 33.229742,9.9566518 32.78125,9.59375 C 32.671093,9.0507433 32.36239,8.5480237 31.84375,8.25 L 27.65625,5.84375 C 27.210794,5.587778 26.838164,5.46875 26.375,5.46875 L 23.46875,5.46875 C 23.491576,5.3073728 23.5,5.1363954 23.5,4.96875 C 23.499999,3.0367498 21.932,1.46875 20,1.46875 z M 14,9.46875 L 15.5,9.46875 L 15.5,14.40625 L 11.25,16.875 L 10.5,15.5625 L 10.5,11.5 L 14,9.46875 z M 24.5,9.46875 L 26,9.46875 L 29.53125,11.5 L 29.53125,15.5625 L 28.78125,16.875 L 24.5,14.40625 L 24.5,9.46875 z M 19.5,12.46875 L 20.5,12.46875 L 20.5,14.46875 C 20.499999,15.18895 20.900657,15.835467 21.46875,16.1875 C 21.495284,16.849074 21.850574,17.486846 22.46875,17.84375 L 24.1875,18.84375 L 23.6875,19.6875 L 21.96875,18.6875 C 21.348565,18.329437 20.61845,18.345493 20.03125,18.65625 C 19.443427,18.343616 18.683957,18.328702 18.0625,18.6875 L 16.34375,19.6875 L 15.84375,18.84375 L 17.5625,17.84375 C 18.180676,17.486846 18.535966,16.849074 18.5625,16.1875 C 19.127841,15.834888 19.5,15.186863 19.5,14.46875 L 19.5,12.46875 z M 20,22.1875 L 24.28125,24.65625 L 23.53125,25.96875 L 20,28 L 16.5,25.96875 L 15.75,24.65625 L 20,22.1875 z " | ||
634 | + id="path6543" /> | ||
635 | + <g | ||
636 | + id="use14527" | ||
637 | + transform="translate(-145.8607,23.36847)"> | ||
638 | + <g | ||
639 | + id="g2287"> | ||
640 | + <path | ||
641 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
642 | + d="M 28.233209,16.887774 L 29.174254,15.257836 C 29.434992,14.806225 29.48917,14.42494 29.49012,13.960741 L 29.499996,9.1311351 C 29.50224,8.0336617 28.612864,7.1493042 27.504864,7.1493043 C 26.396865,7.1493044 25.523034,8.036436 25.523034,9.1444359 L 25.522653,13.582596 L 24.772653,14.881634 L 20.442526,12.381634 C 19.482969,11.827634 18.264475,12.154129 17.710475,13.113685 C 17.156475,14.073241 17.482969,15.291736 18.442526,15.845736 L 20.174576,16.845736 L 19.674576,17.711761 L 25.088804,22.334043 L 28.233209,16.887774 z " | ||
643 | + sodipodi:nodetypes="csscsccccsccccc" | ||
644 | + id="path2289" /> | ||
645 | + <path | ||
646 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
647 | + d="M 24.619936,21.146147 L 27.370728,16.381635 L 28.308228,14.757837 C 28.477097,14.465349 28.481554,14.343764 28.482347,13.956255 L 28.492223,9.126649 C 28.49336,8.570527 28.076272,8.157077 27.500376,8.157078 C 26.92615,8.157077 26.530805,8.566695 26.530805,9.148924 L 26.530424,13.587084 C 26.527277,13.761802 26.478405,13.932646 26.388677,14.082597 L 25.638678,15.381635 C 25.362499,15.85988 24.750953,16.023743 24.272652,15.74766 L 19.942525,13.24766 C 19.447767,12.962012 18.862148,13.118928 18.5765,13.613685 C 18.290851,14.108443 18.447767,14.694062 18.942525,14.979711 L 20.674576,15.979711 C 21.152821,16.255889 21.316685,16.867436 21.040602,17.345736 L 20.540602,18.211761 L 24.619936,21.146147 z " | ||
648 | + sodipodi:nodetypes="cccccsccccccsccccc" | ||
649 | + id="path2291" /> | ||
650 | + </g> | ||
651 | + <g | ||
652 | + transform="matrix(0,1,-1,0,29.99291,-10)" | ||
653 | + id="g2293"> | ||
654 | + <path | ||
655 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
656 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
657 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
658 | + id="path2295" /> | ||
659 | + <path | ||
660 | + sodipodi:type="inkscape:offset" | ||
661 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
662 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
663 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
664 | + inkscape:href="#rect2286" | ||
665 | + xlink:href="#rect2286" | ||
666 | + inkscape:radius="-1" | ||
667 | + id="path2297" /> | ||
668 | + <path | ||
669 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
670 | + sodipodi:cx="15.5" | ||
671 | + sodipodi:cy="25.5" | ||
672 | + sodipodi:type="arc" | ||
673 | + transform="matrix(0,0.875,0.875,0,-9.3125002,0.4375)" | ||
674 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
675 | + sodipodi:rx="4" | ||
676 | + id="path2299" | ||
677 | + sodipodi:ry="4" /> | ||
678 | + <path | ||
679 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
680 | + sodipodi:cx="15.5" | ||
681 | + sodipodi:cy="25.5" | ||
682 | + sodipodi:type="arc" | ||
683 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2500002,1.0833333)" | ||
684 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
685 | + sodipodi:rx="3" | ||
686 | + id="path2301" | ||
687 | + sodipodi:ry="3" /> | ||
688 | + </g> | ||
689 | + <g | ||
690 | + transform="matrix(0.8660254,-0.5,-0.5,-0.8660254,1.321903,39.653104)" | ||
691 | + id="g2303"> | ||
692 | + <path | ||
693 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
694 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
695 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
696 | + id="path2305" /> | ||
697 | + <path | ||
698 | + sodipodi:type="inkscape:offset" | ||
699 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
700 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
701 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
702 | + inkscape:href="#rect2286" | ||
703 | + xlink:href="#rect2286" | ||
704 | + inkscape:radius="-1" | ||
705 | + id="path2307" /> | ||
706 | + <path | ||
707 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
708 | + sodipodi:cx="15.5" | ||
709 | + sodipodi:cy="25.5" | ||
710 | + sodipodi:type="arc" | ||
711 | + transform="matrix(0,0.875,0.875,0,-9.3121723,0.4375)" | ||
712 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
713 | + sodipodi:rx="4" | ||
714 | + id="path2309" | ||
715 | + sodipodi:ry="4" /> | ||
716 | + <path | ||
717 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
718 | + sodipodi:cx="15.5" | ||
719 | + sodipodi:cy="25.5" | ||
720 | + sodipodi:type="arc" | ||
721 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2496723,1.0833333)" | ||
722 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
723 | + sodipodi:rx="3" | ||
724 | + id="path2312" | ||
725 | + sodipodi:ry="3" /> | ||
726 | + </g> | ||
727 | + <g | ||
728 | + id="g2314"> | ||
729 | + <path | ||
730 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
731 | + d="M 20.174576,16.845736 L 19.674576,17.711761 L 17.942526,16.711761 C 16.982969,16.157761 15.764475,16.484256 15.210475,17.443812 C 14.656475,18.403368 14.982969,19.621863 15.942526,20.175863 L 20.272653,22.675863 L 19.522653,23.974901 L 15.679284,26.194311 C 14.719728,26.748311 14.388365,27.948636 14.942364,28.908192 C 15.150115,29.268026 15.430076,29.545526 15.776018,29.714262 C 16.352589,29.99549 17.058343,29.991944 17.656246,29.645112 L 21.83387,27.221755 C 22.278277,26.963964 22.567672,26.700772 22.799254,26.29966 L 26.282949,20.265724" | ||
732 | + sodipodi:nodetypes="cccsccccsccccc" | ||
733 | + id="path2316" /> | ||
734 | + <path | ||
735 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
736 | + id="path2318" | ||
737 | + sodipodi:nodetypes="ccccsccccccsccccc" | ||
738 | + d="M 21.040602,17.345736 L 20.540602,18.211761 C 20.264423,18.690007 19.652877,18.85387 19.174576,18.577787 L 17.442525,17.577787 C 16.947768,17.292138 16.362148,17.449054 16.0765,17.943812 C 15.790852,18.43857 15.947768,19.024189 16.442526,19.309837 L 20.772653,21.809837 C 21.250898,22.086016 21.414761,22.697562 21.138678,23.175863 L 20.388678,24.474901 C 20.303681,24.627582 20.180161,24.755329 20.030425,24.845413 L 16.187056,27.064824 C 15.68283,27.355938 15.525764,27.903125 15.812877,28.40042 C 15.937432,28.616155 16.073157,28.74444 16.221891,28.816987 C 16.506495,28.955805 16.843452,28.951536 17.148474,28.774599 L 21.326097,26.351243 C 21.677959,26.147135 21.787309,26.0524 21.933229,25.79966 L 25.520751,19.585889" /> | ||
739 | + <path | ||
740 | + style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
741 | + sodipodi:cx="15.5" | ||
742 | + sodipodi:cy="25.5" | ||
743 | + sodipodi:type="arc" | ||
744 | + transform="matrix(0.4375,-0.7577722,-0.7577722,-0.4375,38.961424,43.930304)" | ||
745 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
746 | + sodipodi:rx="4" | ||
747 | + id="path2320" | ||
748 | + sodipodi:ry="4" /> | ||
749 | + <path | ||
750 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
751 | + sodipodi:cx="15.5" | ||
752 | + sodipodi:cy="25.5" | ||
753 | + sodipodi:type="arc" | ||
754 | + transform="matrix(0.4166667,-0.7216878,-0.7216878,-0.4166667,38.364189,42.839745)" | ||
755 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
756 | + sodipodi:rx="3" | ||
757 | + id="path2322" | ||
758 | + sodipodi:ry="3" /> | ||
759 | + </g> | ||
760 | + </g> | ||
761 | + <g | ||
762 | + id="g14541" | ||
763 | + transform="translate(-147.8607,-125.63153)"> | ||
764 | + <g | ||
765 | + style="stroke:#ad7fa8;stroke-width:7;stroke-miterlimit:4;stroke-dasharray:none" | ||
766 | + transform="translate(0,-26)" | ||
767 | + id="use14543"> | ||
768 | + <path | ||
769 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
770 | + id="path2346" | ||
771 | + sodipodi:nodetypes="cccc" | ||
772 | + d="M 40.5,180.5 L 55.5,180.5 L 40.5,200.5 L 55.5,200.5" /> | ||
773 | + <path | ||
774 | + transform="translate(0,-1.0000002)" | ||
775 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
776 | + d="M 91.78392,181.31628 L 105.78392,181.31628 L 97.78392,188.31628 L 98.78392,188.31628 C 102.78392,188.31628 105.71377,190.31506 105.64196,194.40814 C 105.57181,198.40692 102.36466,201.40814 98.64196,201.40814 C 95.06117,201.40814 91.64196,198.40814 91.64196,194.40814 L 91.64196,193.40814" | ||
777 | + sodipodi:nodetypes="cccssssc" | ||
778 | + id="path2348" /> | ||
779 | + <path | ||
780 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
781 | + d="M 59.64196,192.40814 L 69.64196,192.40814 C 69.64196,187.40814 67.64196,184.40814 64.64196,184.40814 C 61.64196,184.40814 59.64196,187.40814 59.64196,192.40814 C 59.64196,197.40814 61.642647,200.40814 64.64196,200.40814 C 67.64196,200.40814 69.64196,197.40814 69.64196,196.40814" | ||
782 | + sodipodi:nodetypes="ccsssc" | ||
783 | + id="path2350" /> | ||
784 | + <path | ||
785 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
786 | + d="M 74.64196,200.40814 L 74.64196,184.40814 M 74.64196,187.40814 C 76.64196,183.40814 83.64196,183.40814 83.64196,189.40814 L 83.64196,200.40814" | ||
787 | + sodipodi:nodetypes="cccsc" | ||
788 | + id="path2352" /> | ||
789 | + </g> | ||
790 | + <g | ||
791 | + style="opacity:0.8;stroke:#ffffff;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
792 | + transform="translate(0,-26)" | ||
793 | + id="use14545"> | ||
794 | + <path | ||
795 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
796 | + id="path2336" | ||
797 | + sodipodi:nodetypes="cccc" | ||
798 | + d="M 40.5,180.5 L 55.5,180.5 L 40.5,200.5 L 55.5,200.5" /> | ||
799 | + <path | ||
800 | + transform="translate(0,-1.0000002)" | ||
801 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
802 | + d="M 91.78392,181.31628 L 105.78392,181.31628 L 97.78392,188.31628 L 98.78392,188.31628 C 102.78392,188.31628 105.71377,190.31506 105.64196,194.40814 C 105.57181,198.40692 102.36466,201.40814 98.64196,201.40814 C 95.06117,201.40814 91.64196,198.40814 91.64196,194.40814 L 91.64196,193.40814" | ||
803 | + sodipodi:nodetypes="cccssssc" | ||
804 | + id="path2338" /> | ||
805 | + <path | ||
806 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
807 | + d="M 59.64196,192.40814 L 69.64196,192.40814 C 69.64196,187.40814 67.64196,184.40814 64.64196,184.40814 C 61.64196,184.40814 59.64196,187.40814 59.64196,192.40814 C 59.64196,197.40814 61.642647,200.40814 64.64196,200.40814 C 67.64196,200.40814 69.64196,197.40814 69.64196,196.40814" | ||
808 | + sodipodi:nodetypes="ccsssc" | ||
809 | + id="path2340" /> | ||
810 | + <path | ||
811 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
812 | + d="M 74.64196,200.40814 L 74.64196,184.40814 M 74.64196,187.40814 C 76.64196,183.40814 83.64196,183.40814 83.64196,189.40814 L 83.64196,200.40814" | ||
813 | + sodipodi:nodetypes="cccsc" | ||
814 | + id="path2342" /> | ||
815 | + </g> | ||
816 | + <g | ||
817 | + style="stroke:#75507b;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none" | ||
818 | + transform="translate(0,-26)" | ||
819 | + id="use14547"> | ||
820 | + <path | ||
821 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
822 | + id="path2326" | ||
823 | + sodipodi:nodetypes="cccc" | ||
824 | + d="M 40.5,180.5 L 55.5,180.5 L 40.5,200.5 L 55.5,200.5" /> | ||
825 | + <path | ||
826 | + transform="translate(0,-1.0000002)" | ||
827 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
828 | + d="M 91.78392,181.31628 L 105.78392,181.31628 L 97.78392,188.31628 L 98.78392,188.31628 C 102.78392,188.31628 105.71377,190.31506 105.64196,194.40814 C 105.57181,198.40692 102.36466,201.40814 98.64196,201.40814 C 95.06117,201.40814 91.64196,198.40814 91.64196,194.40814 L 91.64196,193.40814" | ||
829 | + sodipodi:nodetypes="cccssssc" | ||
830 | + id="path2328" /> | ||
831 | + <path | ||
832 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
833 | + d="M 59.64196,192.40814 L 69.64196,192.40814 C 69.64196,187.40814 67.64196,184.40814 64.64196,184.40814 C 61.64196,184.40814 59.64196,187.40814 59.64196,192.40814 C 59.64196,197.40814 61.642647,200.40814 64.64196,200.40814 C 67.64196,200.40814 69.64196,197.40814 69.64196,196.40814" | ||
834 | + sodipodi:nodetypes="ccsssc" | ||
835 | + id="path2330" /> | ||
836 | + <path | ||
837 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
838 | + d="M 74.64196,200.40814 L 74.64196,184.40814 M 74.64196,187.40814 C 76.64196,183.40814 83.64196,183.40814 83.64196,189.40814 L 83.64196,200.40814" | ||
839 | + sodipodi:nodetypes="cccsc" | ||
840 | + id="path2332" /> | ||
841 | + </g> | ||
842 | + </g> | ||
843 | + <g | ||
844 | + id="g9527" | ||
845 | + transform="translate(-340,-120)"> | ||
846 | + <g | ||
847 | + id="use14525" | ||
848 | + transform="translate(224,209.86218)"> | ||
849 | + <g | ||
850 | + id="g2430"> | ||
851 | + <path | ||
852 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
853 | + d="M 28.233209,16.887774 L 29.174254,15.257836 C 29.434992,14.806225 29.48917,14.42494 29.49012,13.960741 L 29.499996,9.1311351 C 29.50224,8.0336617 28.612864,7.1493042 27.504864,7.1493043 C 26.396865,7.1493044 25.523034,8.036436 25.523034,9.1444359 L 25.522653,13.582596 L 24.772653,14.881634 L 20.442526,12.381634 C 19.482969,11.827634 18.264475,12.154129 17.710475,13.113685 C 17.156475,14.073241 17.482969,15.291736 18.442526,15.845736 L 20.174576,16.845736 L 19.674576,17.711761 L 25.088804,22.334043 L 28.233209,16.887774 z " | ||
854 | + sodipodi:nodetypes="csscsccccsccccc" | ||
855 | + id="path2432" /> | ||
856 | + <path | ||
857 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
858 | + d="M 24.619936,21.146147 L 27.370728,16.381635 L 28.308228,14.757837 C 28.477097,14.465349 28.481554,14.343764 28.482347,13.956255 L 28.492223,9.126649 C 28.49336,8.570527 28.076272,8.157077 27.500376,8.157078 C 26.92615,8.157077 26.530805,8.566695 26.530805,9.148924 L 26.530424,13.587084 C 26.527277,13.761802 26.478405,13.932646 26.388677,14.082597 L 25.638678,15.381635 C 25.362499,15.85988 24.750953,16.023743 24.272652,15.74766 L 19.942525,13.24766 C 19.447767,12.962012 18.862148,13.118928 18.5765,13.613685 C 18.290851,14.108443 18.447767,14.694062 18.942525,14.979711 L 20.674576,15.979711 C 21.152821,16.255889 21.316685,16.867436 21.040602,17.345736 L 20.540602,18.211761 L 24.619936,21.146147 z " | ||
859 | + sodipodi:nodetypes="cccccsccccccsccccc" | ||
860 | + id="path2434" /> | ||
861 | + </g> | ||
862 | + <g | ||
863 | + transform="matrix(0,1,-1,0,29.99291,-10)" | ||
864 | + id="g2436"> | ||
865 | + <path | ||
866 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
867 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
868 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
869 | + id="path2438" /> | ||
870 | + <path | ||
871 | + sodipodi:type="inkscape:offset" | ||
872 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
873 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
874 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
875 | + inkscape:href="#rect2286" | ||
876 | + xlink:href="#rect2286" | ||
877 | + inkscape:radius="-1" | ||
878 | + id="path2440" /> | ||
879 | + <path | ||
880 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
881 | + sodipodi:cx="15.5" | ||
882 | + sodipodi:cy="25.5" | ||
883 | + sodipodi:type="arc" | ||
884 | + transform="matrix(0,0.875,0.875,0,-9.3125002,0.4375)" | ||
885 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
886 | + sodipodi:rx="4" | ||
887 | + id="path2442" | ||
888 | + sodipodi:ry="4" /> | ||
889 | + <path | ||
890 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
891 | + sodipodi:cx="15.5" | ||
892 | + sodipodi:cy="25.5" | ||
893 | + sodipodi:type="arc" | ||
894 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2500002,1.0833333)" | ||
895 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
896 | + sodipodi:rx="3" | ||
897 | + id="path2444" | ||
898 | + sodipodi:ry="3" /> | ||
899 | + </g> | ||
900 | + <g | ||
901 | + transform="matrix(0.8660254,-0.5,-0.5,-0.8660254,1.321903,39.653104)" | ||
902 | + id="g2446"> | ||
903 | + <path | ||
904 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
905 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
906 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
907 | + id="path2448" /> | ||
908 | + <path | ||
909 | + sodipodi:type="inkscape:offset" | ||
910 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
911 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
912 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
913 | + inkscape:href="#rect2286" | ||
914 | + xlink:href="#rect2286" | ||
915 | + inkscape:radius="-1" | ||
916 | + id="path2450" /> | ||
917 | + <path | ||
918 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
919 | + sodipodi:cx="15.5" | ||
920 | + sodipodi:cy="25.5" | ||
921 | + sodipodi:type="arc" | ||
922 | + transform="matrix(0,0.875,0.875,0,-9.3121723,0.4375)" | ||
923 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
924 | + sodipodi:rx="4" | ||
925 | + id="path2452" | ||
926 | + sodipodi:ry="4" /> | ||
927 | + <path | ||
928 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
929 | + sodipodi:cx="15.5" | ||
930 | + sodipodi:cy="25.5" | ||
931 | + sodipodi:type="arc" | ||
932 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2496723,1.0833333)" | ||
933 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
934 | + sodipodi:rx="3" | ||
935 | + id="path2454" | ||
936 | + sodipodi:ry="3" /> | ||
937 | + </g> | ||
938 | + <g | ||
939 | + id="g2456"> | ||
940 | + <path | ||
941 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
942 | + d="M 20.174576,16.845736 L 19.674576,17.711761 L 17.942526,16.711761 C 16.982969,16.157761 15.764475,16.484256 15.210475,17.443812 C 14.656475,18.403368 14.982969,19.621863 15.942526,20.175863 L 20.272653,22.675863 L 19.522653,23.974901 L 15.679284,26.194311 C 14.719728,26.748311 14.388365,27.948636 14.942364,28.908192 C 15.150115,29.268026 15.430076,29.545526 15.776018,29.714262 C 16.352589,29.99549 17.058343,29.991944 17.656246,29.645112 L 21.83387,27.221755 C 22.278277,26.963964 22.567672,26.700772 22.799254,26.29966 L 26.282949,20.265724" | ||
943 | + sodipodi:nodetypes="cccsccccsccccc" | ||
944 | + id="path2458" /> | ||
945 | + <path | ||
946 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
947 | + id="path2460" | ||
948 | + sodipodi:nodetypes="ccccsccccccsccccc" | ||
949 | + d="M 21.040602,17.345736 L 20.540602,18.211761 C 20.264423,18.690007 19.652877,18.85387 19.174576,18.577787 L 17.442525,17.577787 C 16.947768,17.292138 16.362148,17.449054 16.0765,17.943812 C 15.790852,18.43857 15.947768,19.024189 16.442526,19.309837 L 20.772653,21.809837 C 21.250898,22.086016 21.414761,22.697562 21.138678,23.175863 L 20.388678,24.474901 C 20.303681,24.627582 20.180161,24.755329 20.030425,24.845413 L 16.187056,27.064824 C 15.68283,27.355938 15.525764,27.903125 15.812877,28.40042 C 15.937432,28.616155 16.073157,28.74444 16.221891,28.816987 C 16.506495,28.955805 16.843452,28.951536 17.148474,28.774599 L 21.326097,26.351243 C 21.677959,26.147135 21.787309,26.0524 21.933229,25.79966 L 25.520751,19.585889" /> | ||
950 | + <path | ||
951 | + style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
952 | + sodipodi:cx="15.5" | ||
953 | + sodipodi:cy="25.5" | ||
954 | + sodipodi:type="arc" | ||
955 | + transform="matrix(0.4375,-0.7577722,-0.7577722,-0.4375,38.961424,43.930304)" | ||
956 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
957 | + sodipodi:rx="4" | ||
958 | + id="path2462" | ||
959 | + sodipodi:ry="4" /> | ||
960 | + <path | ||
961 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
962 | + sodipodi:cx="15.5" | ||
963 | + sodipodi:cy="25.5" | ||
964 | + sodipodi:type="arc" | ||
965 | + transform="matrix(0.4166667,-0.7216878,-0.7216878,-0.4166667,38.364189,42.839745)" | ||
966 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
967 | + sodipodi:rx="3" | ||
968 | + id="path2464" | ||
969 | + sodipodi:ry="3" /> | ||
970 | + </g> | ||
971 | + </g> | ||
972 | + <g | ||
973 | + transform="translate(284,62.86218)" | ||
974 | + id="g14561"> | ||
975 | + <g | ||
976 | + style="stroke:#ad7fa8;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none" | ||
977 | + transform="translate(40,9.9999998)" | ||
978 | + id="use14563"> | ||
979 | + <path | ||
980 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
981 | + id="path2400" | ||
982 | + sodipodi:nodetypes="cccc" | ||
983 | + d="M -99.5,170.5 L -92.5,170.5 L -99.5,180.5 L -92.5,180.5" /> | ||
984 | + <path | ||
985 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
986 | + id="path2402" | ||
987 | + sodipodi:nodetypes="cccssss" | ||
988 | + d="M -73.5,170.5 L -68.5,170.5 L -70.5,174.5 C -70.114458,174.5 -68.5,174.5 -68.5,177.5 C -68.5,179.15756 -69.5,180.5 -70.5,180.5 L -71.5,180.5 C -72.5,180.5 -73.5,179.5 -73.5,177.5" /> | ||
989 | + <path | ||
990 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
991 | + d="M -90.5,176.5 L -84.5,176.5 L -84.5,175.5 C -84.5,173.5 -85.738644,172.5 -87.5,172.5 C -89.257816,172.5 -90.5,173.5 -90.5,175.5 L -90.5,177.5 C -90.5,178.5 -89.5,180.5 -87.5,180.5 C -86.5,180.5 -85.5,180.5 -84.5,179.5" | ||
992 | + sodipodi:nodetypes="ccsssscs" | ||
993 | + id="path2404" /> | ||
994 | + <path | ||
995 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
996 | + d="M -82.5,180.5 L -82.5,172.5 M -82.5,174.5 C -81.5,172.5 -77.5,171.5 -77.5,174.5 L -77.5,180.5" | ||
997 | + sodipodi:nodetypes="cccsc" | ||
998 | + id="path2406" /> | ||
999 | + </g> | ||
1000 | + <g | ||
1001 | + style="opacity:0.8;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible" | ||
1002 | + transform="translate(40,9.9999998)" | ||
1003 | + id="use14565"> | ||
1004 | + <path | ||
1005 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
1006 | + id="path2410" | ||
1007 | + sodipodi:nodetypes="cccc" | ||
1008 | + d="M -99.5,170.5 L -92.5,170.5 L -99.5,180.5 L -92.5,180.5" /> | ||
1009 | + <path | ||
1010 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
1011 | + id="path2412" | ||
1012 | + sodipodi:nodetypes="cccssss" | ||
1013 | + d="M -73.5,170.5 L -68.5,170.5 L -70.5,174.5 C -70.114458,174.5 -68.5,174.5 -68.5,177.5 C -68.5,179.15756 -69.5,180.5 -70.5,180.5 L -71.5,180.5 C -72.5,180.5 -73.5,179.5 -73.5,177.5" /> | ||
1014 | + <path | ||
1015 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
1016 | + d="M -90.5,176.5 L -84.5,176.5 L -84.5,175.5 C -84.5,173.5 -85.738644,172.5 -87.5,172.5 C -89.257816,172.5 -90.5,173.5 -90.5,175.5 L -90.5,177.5 C -90.5,178.5 -89.5,180.5 -87.5,180.5 C -86.5,180.5 -85.5,180.5 -84.5,179.5" | ||
1017 | + sodipodi:nodetypes="ccsssscs" | ||
1018 | + id="path2414" /> | ||
1019 | + <path | ||
1020 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
1021 | + d="M -82.5,180.5 L -82.5,172.5 M -82.5,174.5 C -81.5,172.5 -77.5,171.5 -77.5,174.5 L -77.5,180.5" | ||
1022 | + sodipodi:nodetypes="cccsc" | ||
1023 | + id="path2416" /> | ||
1024 | + </g> | ||
1025 | + <g | ||
1026 | + style="stroke:#5c3566" | ||
1027 | + transform="translate(40,9.9999998)" | ||
1028 | + id="use14567"> | ||
1029 | + <path | ||
1030 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
1031 | + id="path2420" | ||
1032 | + sodipodi:nodetypes="cccc" | ||
1033 | + d="M -99.5,170.5 L -92.5,170.5 L -99.5,180.5 L -92.5,180.5" /> | ||
1034 | + <path | ||
1035 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
1036 | + id="path2422" | ||
1037 | + sodipodi:nodetypes="cccssss" | ||
1038 | + d="M -73.5,170.5 L -68.5,170.5 L -70.5,174.5 C -70.114458,174.5 -68.5,174.5 -68.5,177.5 C -68.5,179.15756 -69.5,180.5 -70.5,180.5 L -71.5,180.5 C -72.5,180.5 -73.5,179.5 -73.5,177.5" /> | ||
1039 | + <path | ||
1040 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
1041 | + d="M -90.5,176.5 L -84.5,176.5 L -84.5,175.5 C -84.5,173.5 -85.738644,172.5 -87.5,172.5 C -89.257816,172.5 -90.5,173.5 -90.5,175.5 L -90.5,177.5 C -90.5,178.5 -89.5,180.5 -87.5,180.5 C -86.5,180.5 -85.5,180.5 -84.5,179.5" | ||
1042 | + sodipodi:nodetypes="ccsssscs" | ||
1043 | + id="path2424" /> | ||
1044 | + <path | ||
1045 | + style="fill:none;stroke-linecap:round;stroke-linejoin:round" | ||
1046 | + d="M -82.5,180.5 L -82.5,172.5 M -82.5,174.5 C -81.5,172.5 -77.5,171.5 -77.5,174.5 L -77.5,180.5" | ||
1047 | + sodipodi:nodetypes="cccsc" | ||
1048 | + id="path2426" /> | ||
1049 | + </g> | ||
1050 | + </g> | ||
1051 | + </g> | ||
1052 | + <g | ||
1053 | + transform="translate(4.019658,1.9840002)" | ||
1054 | + id="g2574"> | ||
1055 | + <g | ||
1056 | + id="g2576"> | ||
1057 | + <path | ||
1058 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1059 | + d="M 28.233209,16.887774 L 29.174254,15.257836 C 29.434992,14.806225 29.48917,14.42494 29.49012,13.960741 L 29.499996,9.1311351 C 29.50224,8.0336617 28.612864,7.1493042 27.504864,7.1493043 C 26.396865,7.1493044 25.523034,8.036436 25.523034,9.1444359 L 25.522653,13.582596 L 24.772653,14.881634 L 20.442526,12.381634 C 19.482969,11.827634 18.264475,12.154129 17.710475,13.113685 C 17.156475,14.073241 17.482969,15.291736 18.442526,15.845736 L 20.174576,16.845736 L 19.674576,17.711761 L 25.088804,22.334043 L 28.233209,16.887774 z " | ||
1060 | + sodipodi:nodetypes="csscsccccsccccc" | ||
1061 | + id="path2578" /> | ||
1062 | + <path | ||
1063 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1064 | + d="M 24.619936,21.146147 L 27.370728,16.381635 L 28.308228,14.757837 C 28.477097,14.465349 28.481554,14.343764 28.482347,13.956255 L 28.492223,9.126649 C 28.49336,8.570527 28.076272,8.157077 27.500376,8.157078 C 26.92615,8.157077 26.530805,8.566695 26.530805,9.148924 L 26.530424,13.587084 C 26.527277,13.761802 26.478405,13.932646 26.388677,14.082597 L 25.638678,15.381635 C 25.362499,15.85988 24.750953,16.023743 24.272652,15.74766 L 19.942525,13.24766 C 19.447767,12.962012 18.862148,13.118928 18.5765,13.613685 C 18.290851,14.108443 18.447767,14.694062 18.942525,14.979711 L 20.674576,15.979711 C 21.152821,16.255889 21.316685,16.867436 21.040602,17.345736 L 20.540602,18.211761 L 24.619936,21.146147 z " | ||
1065 | + sodipodi:nodetypes="cccccsccccccsccccc" | ||
1066 | + id="path2580" /> | ||
1067 | + </g> | ||
1068 | + <g | ||
1069 | + id="g2582" | ||
1070 | + transform="matrix(0,1,-1,0,29.99291,-10)"> | ||
1071 | + <path | ||
1072 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1073 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
1074 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
1075 | + id="path2584" /> | ||
1076 | + <path | ||
1077 | + sodipodi:type="inkscape:offset" | ||
1078 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
1079 | + style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1080 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
1081 | + inkscape:href="#rect2286" | ||
1082 | + xlink:href="#rect2286" | ||
1083 | + inkscape:radius="-1" | ||
1084 | + id="path2586" /> | ||
1085 | + <path | ||
1086 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1087 | + sodipodi:cx="15.5" | ||
1088 | + sodipodi:cy="25.5" | ||
1089 | + sodipodi:type="arc" | ||
1090 | + transform="matrix(0,0.875,0.875,0,-9.3125002,0.4375)" | ||
1091 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
1092 | + sodipodi:rx="4" | ||
1093 | + id="path2588" | ||
1094 | + sodipodi:ry="4" /> | ||
1095 | + <path | ||
1096 | + style="fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#6693c6;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1097 | + sodipodi:cx="15.5" | ||
1098 | + sodipodi:cy="25.5" | ||
1099 | + sodipodi:type="arc" | ||
1100 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2500002,1.0833333)" | ||
1101 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
1102 | + sodipodi:rx="3" | ||
1103 | + id="path2590" | ||
1104 | + sodipodi:ry="3" /> | ||
1105 | + </g> | ||
1106 | + <g | ||
1107 | + id="g2592" | ||
1108 | + transform="matrix(0.8660254,-0.5,-0.5,-0.8660254,1.321903,39.653104)"> | ||
1109 | + <path | ||
1110 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1111 | + d="M 13.5,18.49291 L 13.5,20.375 C 13.5,20.896476 13.643723,21.253768 13.875,21.65625 L 16.28125,25.84375 C 16.828043,26.795312 18.040444,27.1165 19,26.5625 C 19.959556,26.0085 20.27275,24.803306 19.71875,23.84375 L 17.5,20 L 17.5,18.5 L 22.5,18.5 C 23.608,18.5 24.5,17.608 24.5,16.5 C 24.5,15.392 23.608,14.5 22.5,14.5 L 20.5,14.5 L 20.5,13.5 L 22.5,13.5 C 23.608,13.5 24.5,12.608 24.5,11.5 C 24.5,10.392 23.608,9.5 22.5,9.5 L 17.5,9.5 L 17.5,8 L 19.71875,4.15625 C 20.27275,3.1966939 19.959556,1.9915 19,1.4375 C 18.640166,1.22975 18.258963,1.1294091 17.875,1.15625 C 17.235061,1.2009848 16.625633,1.5569335 16.28125,2.15625 L 13.875,6.34375 C 13.619028,6.7892077 13.5,7.1618357 13.5,7.625 L 13.5,18.49291 z " | ||
1112 | + sodipodi:nodetypes="csscsccccsccccsccccsccccc" | ||
1113 | + id="path2594" /> | ||
1114 | + <path | ||
1115 | + sodipodi:type="inkscape:offset" | ||
1116 | + inkscape:original="M 17.875 1.15625 C 17.235061 1.2009848 16.625633 1.5569335 16.28125 2.15625 L 13.875 6.34375 C 13.619028 6.7892077 13.5 7.1618357 13.5 7.625 L 13.5 18.5 L 13.5 20.375 C 13.5 20.896476 13.643723 21.253768 13.875 21.65625 L 16.28125 25.84375 C 16.828043 26.795312 18.040444 27.1165 19 26.5625 C 19.959556 26.0085 20.27275 24.803306 19.71875 23.84375 L 17.5 20 L 17.5 18.5 L 22.5 18.5 C 23.608 18.5 24.5 17.608 24.5 16.5 C 24.5 15.392 23.608 14.5 22.5 14.5 L 20.5 14.5 L 20.5 13.5 L 22.5 13.5 C 23.608 13.5 24.5 12.608 24.5 11.5 C 24.5 10.392 23.608 9.5 22.5 9.5 L 17.5 9.5 L 17.5 8 L 19.71875 4.15625 C 20.27275 3.1966939 19.959556 1.9915 19 1.4375 C 18.640166 1.22975 18.258963 1.1294091 17.875 1.15625 z " | ||
1117 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1118 | + d="M 17.9375,2.15625 C 17.621617,2.1783318 17.331938,2.3505071 17.15625,2.65625 L 14.75,6.84375 C 14.547333,7.1964431 14.5,7.3331615 14.5,7.625 L 14.5,18.5 L 14.5,20.375 C 14.5,20.712737 14.556932,20.820261 14.75,21.15625 L 17.15625,25.34375 C 17.433326,25.825934 18.00126,25.975448 18.5,25.6875 C 18.997295,25.400387 19.134865,24.847975 18.84375,24.34375 L 16.625,20.5 C 16.540367,20.347116 16.497269,20.174725 16.5,20 L 16.5,18.5 C 16.500055,17.947738 16.947738,17.500055 17.5,17.5 L 22.5,17.5 C 23.071297,17.5 23.5,17.071297 23.5,16.5 C 23.5,15.928703 23.071297,15.5 22.5,15.5 L 20.5,15.5 C 19.947738,15.499945 19.500055,15.052262 19.5,14.5 L 19.5,13.5 C 19.500055,12.947738 19.947738,12.500055 20.5,12.5 L 22.5,12.5 C 23.071297,12.5 23.5,12.071297 23.5,11.5 C 23.5,10.928703 23.071297,10.5 22.5,10.5 L 17.5,10.5 C 16.947738,10.499945 16.500055,10.052262 16.5,9.5 L 16.5,8 C 16.497269,7.825275 16.540367,7.6528839 16.625,7.5 L 18.84375,3.65625 C 19.134865,3.1520247 18.997295,2.5996132 18.5,2.3125 C 18.284265,2.1879456 18.102581,2.14471 17.9375,2.15625 z " | ||
1119 | + inkscape:href="#rect2286" | ||
1120 | + xlink:href="#rect2286" | ||
1121 | + inkscape:radius="-1" | ||
1122 | + id="path2596" /> | ||
1123 | + <path | ||
1124 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1125 | + sodipodi:cx="15.5" | ||
1126 | + sodipodi:cy="25.5" | ||
1127 | + sodipodi:type="arc" | ||
1128 | + transform="matrix(0,0.875,0.875,0,-9.3121723,0.4375)" | ||
1129 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
1130 | + sodipodi:rx="4" | ||
1131 | + id="path2598" | ||
1132 | + sodipodi:ry="4" /> | ||
1133 | + <path | ||
1134 | + style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#9ae84e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1135 | + sodipodi:cx="15.5" | ||
1136 | + sodipodi:cy="25.5" | ||
1137 | + sodipodi:type="arc" | ||
1138 | + transform="matrix(0,0.8333333,0.8333333,0,-8.2496723,1.0833333)" | ||
1139 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
1140 | + sodipodi:rx="3" | ||
1141 | + id="path2600" | ||
1142 | + sodipodi:ry="3" /> | ||
1143 | + </g> | ||
1144 | + <g | ||
1145 | + id="g2602"> | ||
1146 | + <path | ||
1147 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1148 | + d="M 20.174576,16.845736 L 19.674576,17.711761 L 17.942526,16.711761 C 16.982969,16.157761 15.764475,16.484256 15.210475,17.443812 C 14.656475,18.403368 14.982969,19.621863 15.942526,20.175863 L 20.272653,22.675863 L 19.522653,23.974901 L 15.679284,26.194311 C 14.719728,26.748311 14.388365,27.948636 14.942364,28.908192 C 15.150115,29.268026 15.430076,29.545526 15.776018,29.714262 C 16.352589,29.99549 17.058343,29.991944 17.656246,29.645112 L 21.83387,27.221755 C 22.278277,26.963964 22.567672,26.700772 22.799254,26.29966 L 26.282949,20.265724" | ||
1149 | + sodipodi:nodetypes="cccsccccsccccc" | ||
1150 | + id="path2604" /> | ||
1151 | + <path | ||
1152 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1153 | + d="M 21.040602,17.345736 L 20.540602,18.211761 C 20.264423,18.690007 19.652877,18.85387 19.174576,18.577787 L 17.442525,17.577787 C 16.947768,17.292138 16.362148,17.449054 16.0765,17.943812 C 15.790852,18.43857 15.947768,19.024189 16.442526,19.309837 L 20.772653,21.809837 C 21.250898,22.086016 21.414761,22.697562 21.138678,23.175863 L 20.388678,24.474901 C 20.303681,24.627582 20.180161,24.755329 20.030425,24.845413 L 16.187056,27.064824 C 15.68283,27.355938 15.525764,27.903125 15.812877,28.40042 C 15.937432,28.616155 16.073157,28.74444 16.221891,28.816987 C 16.506495,28.955805 16.843452,28.951536 17.148474,28.774599 L 21.326097,26.351243 C 21.677959,26.147135 21.787309,26.0524 21.933229,25.79966 L 25.520751,19.585889" | ||
1154 | + sodipodi:nodetypes="ccccsccccccsccccc" | ||
1155 | + id="path2606" /> | ||
1156 | + <path | ||
1157 | + style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:1.14285707;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1158 | + sodipodi:cx="15.5" | ||
1159 | + sodipodi:cy="25.5" | ||
1160 | + sodipodi:type="arc" | ||
1161 | + transform="matrix(0.4375,-0.7577722,-0.7577722,-0.4375,38.961424,43.930304)" | ||
1162 | + d="M 19.5 25.5 A 4 4 0 1 1 11.5,25.5 A 4 4 0 1 1 19.5 25.5 z" | ||
1163 | + sodipodi:rx="4" | ||
1164 | + id="path2608" | ||
1165 | + sodipodi:ry="4" /> | ||
1166 | + <path | ||
1167 | + style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:1.20000005;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1168 | + sodipodi:cx="15.5" | ||
1169 | + sodipodi:cy="25.5" | ||
1170 | + sodipodi:type="arc" | ||
1171 | + transform="matrix(0.4166667,-0.7216878,-0.7216878,-0.4166667,38.364189,42.839745)" | ||
1172 | + d="M 18.5 25.5 A 3 3 0 1 1 12.5,25.5 A 3 3 0 1 1 18.5 25.5 z" | ||
1173 | + sodipodi:rx="3" | ||
1174 | + id="path2610" | ||
1175 | + sodipodi:ry="3" /> | ||
1176 | + </g> | ||
1177 | + </g> | ||
1178 | + <path | ||
1179 | + style="color:#000000;fill:none;fill-opacity:0.70588235;fill-rule:evenodd;stroke:#fce94f;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1180 | + id="rect2612" | ||
1181 | + sodipodi:nodetypes="ccc" | ||
1182 | + d="M 749.50001,33.5 L 0.49999997,33.5 L 749.50001,33.5 z " /> | ||
1183 | + <g | ||
1184 | + transform="translate(104,-168)" | ||
1185 | + id="g7746"> | ||
1186 | + <g | ||
1187 | + style="opacity:0.8;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f57900;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1188 | + transform="translate(40,10)" | ||
1189 | + id="g7748"> | ||
1190 | + <path | ||
1191 | + style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f57900;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1192 | + id="path7750" | ||
1193 | + sodipodi:nodetypes="cccc" | ||
1194 | + d="M -99.5,170.5 L -92.5,170.5 L -99.5,180.5 L -92.5,180.5" /> | ||
1195 | + <path | ||
1196 | + style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f57900;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1197 | + id="path7752" | ||
1198 | + sodipodi:nodetypes="cccssss" | ||
1199 | + d="M -73.5,170.5 L -68.5,170.5 L -70.5,174.5 C -70.114458,174.5 -68.5,174.5 -68.5,177.5 C -68.5,179.15756 -69.5,180.5 -70.5,180.5 L -71.5,180.5 C -72.5,180.5 -73.5,179.5 -73.5,177.5" /> | ||
1200 | + <path | ||
1201 | + style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f57900;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1202 | + d="M -90.5,176.5 L -84.5,176.5 L -84.5,175.5 C -84.5,173.5 -85.738644,172.5 -87.5,172.5 C -89.257816,172.5 -90.5,173.5 -90.5,175.5 L -90.5,177.5 C -90.5,178.5 -89.5,180.5 -87.5,180.5 C -86.5,180.5 -85.5,180.5 -84.5,179.5" | ||
1203 | + sodipodi:nodetypes="ccsssscs" | ||
1204 | + id="path7754" /> | ||
1205 | + <path | ||
1206 | + style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#f57900;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1207 | + d="M -82.5,180.5 L -82.5,172.5 M -82.5,174.5 C -81.5,172.5 -77.5,171.5 -77.5,174.5 L -77.5,180.5" | ||
1208 | + sodipodi:nodetypes="cccsc" | ||
1209 | + id="path7756" /> | ||
1210 | + </g> | ||
1211 | + <g | ||
1212 | + style="opacity:1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#fcaf3e;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible" | ||
1213 | + transform="translate(40,9.9999998)" | ||
1214 | + id="g7758"> | ||
1215 | + <path | ||
1216 | + style="fill:none;stroke:#fcaf3e;stroke-linecap:round;stroke-linejoin:round" | ||
1217 | + id="path7760" | ||
1218 | + sodipodi:nodetypes="cccc" | ||
1219 | + d="M -99.5,170.5 L -92.5,170.5 L -99.5,180.5 L -92.5,180.5" /> | ||
1220 | + <path | ||
1221 | + style="fill:none;stroke:#fcaf3e;stroke-linecap:round;stroke-linejoin:round" | ||
1222 | + id="path7762" | ||
1223 | + sodipodi:nodetypes="cccssss" | ||
1224 | + d="M -73.5,170.5 L -68.5,170.5 L -70.5,174.5 C -70.114458,174.5 -68.5,174.5 -68.5,177.5 C -68.5,179.15756 -69.5,180.5 -70.5,180.5 L -71.5,180.5 C -72.5,180.5 -73.5,179.5 -73.5,177.5" /> | ||
1225 | + <path | ||
1226 | + style="fill:none;stroke:#fcaf3e;stroke-linecap:round;stroke-linejoin:round" | ||
1227 | + d="M -90.5,176.5 L -84.5,176.5 L -84.5,175.5 C -84.5,173.5 -85.738644,172.5 -87.5,172.5 C -89.257816,172.5 -90.5,173.5 -90.5,175.5 L -90.5,177.5 C -90.5,178.5 -89.5,180.5 -87.5,180.5 C -86.5,180.5 -85.5,180.5 -84.5,179.5" | ||
1228 | + sodipodi:nodetypes="ccsssscs" | ||
1229 | + id="path7764" /> | ||
1230 | + <path | ||
1231 | + style="fill:none;stroke:#fcaf3e;stroke-linecap:round;stroke-linejoin:round" | ||
1232 | + d="M -82.5,180.5 L -82.5,172.5 M -82.5,174.5 C -81.5,172.5 -77.5,171.5 -77.5,174.5 L -77.5,180.5" | ||
1233 | + sodipodi:nodetypes="cccsc" | ||
1234 | + id="path7766" /> | ||
1235 | + </g> | ||
1236 | + <g | ||
1237 | + style="stroke:#ffffff;stroke-opacity:1" | ||
1238 | + transform="translate(40,10)" | ||
1239 | + id="g7768"> | ||
1240 | + <path | ||
1241 | + style="fill:none;stroke:#ffffff;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" | ||
1242 | + id="path7770" | ||
1243 | + sodipodi:nodetypes="cccc" | ||
1244 | + d="M -99.5,170.5 L -92.5,170.5 L -99.5,180.5 L -92.5,180.5" /> | ||
1245 | + <path | ||
1246 | + style="fill:none;stroke:#ffffff;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" | ||
1247 | + id="path7772" | ||
1248 | + sodipodi:nodetypes="cccssss" | ||
1249 | + d="M -73.5,170.5 L -68.5,170.5 L -70.5,174.5 C -70.114458,174.5 -68.5,174.5 -68.5,177.5 C -68.5,179.15756 -69.5,180.5 -70.5,180.5 L -71.5,180.5 C -72.5,180.5 -73.5,179.5 -73.5,177.5" /> | ||
1250 | + <path | ||
1251 | + style="fill:none;stroke:#ffffff;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" | ||
1252 | + d="M -90.5,176.5 L -84.5,176.5 L -84.5,175.5 C -84.5,173.5 -85.738644,172.5 -87.5,172.5 C -89.257816,172.5 -90.5,173.5 -90.5,175.5 L -90.5,177.5 C -90.5,178.5 -89.5,180.5 -87.5,180.5 C -86.5,180.5 -85.5,180.5 -84.5,179.5" | ||
1253 | + sodipodi:nodetypes="ccsssscs" | ||
1254 | + id="path7774" /> | ||
1255 | + <path | ||
1256 | + style="fill:none;stroke:#ffffff;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" | ||
1257 | + d="M -82.5,180.5 L -82.5,172.5 M -82.5,174.5 C -81.5,172.5 -77.5,171.5 -77.5,174.5 L -77.5,180.5" | ||
1258 | + sodipodi:nodetypes="cccsc" | ||
1259 | + id="path7776" /> | ||
1260 | + </g> | ||
1261 | + </g> | ||
1262 | + <g | ||
1263 | + style="opacity:0.5" | ||
1264 | + id="g8313" | ||
1265 | + transform="translate(0,1.000001)"> | ||
1266 | + <path | ||
1267 | + style="fill:url(#linearGradient8341);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" | ||
1268 | + d="M 738.5,1.5 C 734.5,1.5 730.58278,2.7930485 729.5,5.5 C 727.5,10.5 738.0547,10.33205 737.5,9.5 C 735.5,6.5 739.84945,6.1988994 740.5,7.5 C 741.5,9.5 735.5,9.5 736.5,15.5 L 745.5,15.5 C 742.5,10.5 750.5,9.5 747.5,4.5 C 746.34955,2.5825875 742.5,1.5 738.5,1.5 z M 740.5,16 C 738.292,16 736.5,17.568 736.5,19.5 C 736.5,21.432 738.292,23 740.5,23 C 742.708,23 744.5,21.432 744.5,19.5 C 744.5,17.568 742.708,16 740.5,16 z " | ||
1269 | + sodipodi:nodetypes="csssccsscsssc" | ||
1270 | + id="path2421" /> | ||
1271 | + <path | ||
1272 | + sodipodi:type="inkscape:offset" | ||
1273 | + inkscape:original="M 738.5 1.5 C 734.5 1.5 730.58278 2.7930485 729.5 5.5 C 727.5 10.5 738.0547 10.33205 737.5 9.5 C 735.5 6.5 739.84945 6.1988994 740.5 7.5 C 741.5 9.5 735.5 9.5 736.5 15.5 L 745.5 15.5 C 742.5 10.5 750.5 9.5 747.5 4.5 C 746.34955 2.5825875 742.5 1.5 738.5 1.5 z M 740.5 16 C 738.292 16 736.5 17.568 736.5 19.5 C 736.5 21.432 738.292 23 740.5 23 C 742.708 23 744.5 21.432 744.5 19.5 C 744.5 17.568 742.708 16 740.5 16 z " | ||
1274 | + style="opacity:0.6;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1275 | + d="M 738.5,2.5 C 736.60775,2.5 734.73633,2.8100053 733.28125,3.40625 C 731.82617,4.0024947 730.84485,4.8566366 730.4375,5.875 C 730.04942,6.8451891 730.21999,7.1743355 730.6875,7.625 C 731.15501,8.0756645 732.10003,8.5006113 733.15625,8.71875 C 734.21247,8.9368887 735.37542,8.9859578 736.15625,8.9375 C 735.99493,8.4220652 735.9429,7.9118521 736.09375,7.4375 C 736.3534,6.6210528 737.05715,6.144645 737.71875,5.9375 C 738.38035,5.730355 739.04239,5.7263146 739.6875,5.875 C 740.33261,6.0236854 741.03738,6.3247614 741.40625,7.0625 C 741.62069,7.4913854 741.67795,8.0200354 741.53125,8.46875 C 741.38455,8.9174646 741.11261,9.2518232 740.84375,9.5 C 740.30603,9.9963536 739.68651,10.332038 739.125,10.78125 C 738.16156,11.551999 737.50115,12.588057 737.5625,14.5 L 744.09375,14.5 C 743.86428,13.627134 743.80048,12.780455 744.03125,12.0625 C 744.39363,10.935093 745.09375,10.125 745.71875,9.375 C 746.34375,8.625 746.89363,7.9350932 747.09375,7.3125 C 747.29387,6.6899068 747.2978,6.0692539 746.65625,5 C 746.29148,4.3920485 745.26066,3.6887929 743.78125,3.21875 C 742.30184,2.7487071 740.40978,2.5 738.5,2.5 z M 740.5,17 C 738.76543,17 737.5,18.186357 737.5,19.5 C 737.5,20.813643 738.76543,22 740.5,22 C 742.23457,22 743.5,20.813643 743.5,19.5 C 743.5,18.186357 742.23457,17 740.5,17 z " | ||
1276 | + inkscape:href="#path2421" | ||
1277 | + xlink:href="#path2421" | ||
1278 | + inkscape:radius="-1" | ||
1279 | + id="path3408" /> | ||
1280 | + <g | ||
1281 | + id="g8328" | ||
1282 | + transform="translate(0,-2)"> | ||
1283 | + <path | ||
1284 | + style="fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.19537103;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1285 | + sodipodi:cx="23.41593" | ||
1286 | + sodipodi:cy="23.41593" | ||
1287 | + sodipodi:type="arc" | ||
1288 | + transform="matrix(0.4896939,0,0,0.4896939,713.53859,8.5479751)" | ||
1289 | + d="M 46.725664 23.41593 A 23.309734 23.309734 0 1 1 0.10619545,23.41593 A 23.309734 23.309734 0 1 1 46.725664 23.41593 z" | ||
1290 | + sodipodi:rx="23.309734" | ||
1291 | + id="path3323" | ||
1292 | + sodipodi:ry="23.309734" /> | ||
1293 | + <path | ||
1294 | + style="fill:url(#radialGradient8339);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.04209208;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1295 | + sodipodi:cx="23.41593" | ||
1296 | + sodipodi:cy="23.41593" | ||
1297 | + sodipodi:type="arc" | ||
1298 | + transform="matrix(0.4932024,0,0,0.4932024,713.45121,8.4512066)" | ||
1299 | + d="M 46.725664 23.41593 A 23.309734 23.309734 0 1 1 0.10619545,23.41593 A 23.309734 23.309734 0 1 1 46.725664 23.41593 z" | ||
1300 | + sodipodi:rx="23.309734" | ||
1301 | + id="path2363" | ||
1302 | + sodipodi:ry="23.309734" /> | ||
1303 | + <path | ||
1304 | + style="opacity:0.5;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.34146333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
1305 | + d="M 725.88327,22.941443 C 728.6338,17.998358 728.27982,14.671301 728.27982,14.671301" | ||
1306 | + id="path2992" /> | ||
1307 | + <path | ||
1308 | + style="opacity:0.5;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.34146333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
1309 | + id="path2990" | ||
1310 | + d="M 729.97796,24.404857 C 732.72848,19.461772 732.3745,16.134716 732.3745,16.134716" /> | ||
1311 | + <path | ||
1312 | + style="opacity:0.6;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.21226645;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1313 | + sodipodi:cx="23.41593" | ||
1314 | + sodipodi:cy="23.41593" | ||
1315 | + sodipodi:type="arc" | ||
1316 | + transform="matrix(0.4505267,0,0,0.4505267,714.4505,9.4504982)" | ||
1317 | + d="M 46.725664 23.41593 A 23.309734 23.309734 0 1 1 0.10619545,23.41593 A 23.309734 23.309734 0 1 1 46.725664 23.41593 z" | ||
1318 | + sodipodi:rx="23.309734" | ||
1319 | + id="path2980" | ||
1320 | + sodipodi:ry="23.309734" /> | ||
1321 | + <path | ||
1322 | + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34146333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
1323 | + d="M 729.39259,23.819491 C 732.14312,18.876406 731.78914,15.54935 731.78914,15.54935" | ||
1324 | + id="path3028" /> | ||
1325 | + <path | ||
1326 | + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34146333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
1327 | + id="path3030" | ||
1328 | + d="M 725.2979,22.356077 C 728.04843,17.412992 727.69445,14.085935 727.69445,14.085935" /> | ||
1329 | + <path | ||
1330 | + style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1331 | + sodipodi:cx="724" | ||
1332 | + sodipodi:cy="24" | ||
1333 | + sodipodi:type="arc" | ||
1334 | + transform="matrix(0.8571429,0,0,0.8571429,101.42929,5.4306578)" | ||
1335 | + d="M 726.5 24 A 2.5 2.5 0 1 1 721.5,24 A 2.5 2.5 0 1 1 726.5 24 z" | ||
1336 | + sodipodi:rx="2.5" | ||
1337 | + id="path3405" | ||
1338 | + sodipodi:ry="2.5" /> | ||
1339 | + <path | ||
1340 | + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1341 | + sodipodi:cx="724" | ||
1342 | + sodipodi:cy="24" | ||
1343 | + sodipodi:type="arc" | ||
1344 | + transform="matrix(0.8571429,0,0,0.8571429,101.85786,5.0020864)" | ||
1345 | + d="M 726.5 24 A 2.5 2.5 0 1 1 721.5,24 A 2.5 2.5 0 1 1 726.5 24 z" | ||
1346 | + sodipodi:rx="2.5" | ||
1347 | + id="path3403" | ||
1348 | + sodipodi:ry="2.5" /> | ||
1349 | + </g> | ||
1350 | + </g> | ||
1351 | + <g | ||
1352 | + id="g9428" | ||
1353 | + transform="translate(0,-80)"> | ||
1354 | + <g | ||
1355 | + transform="translate(719.13769,-20.056229)" | ||
1356 | + id="g3403"> | ||
1357 | + <path | ||
1358 | + style="fill:url(#linearGradient9446);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" | ||
1359 | + inkscape:box3dsidetype="14" | ||
1360 | + id="path3284" | ||
1361 | + sodipodi:nodetypes="ccsccc" | ||
1362 | + d="M 14.36231,2.5562294 L 18.36231,15.556229 C 19.636705,15.214756 20.222393,15.183943 20.86231,15.183725 C 21.502228,15.183507 22.084664,15.213885 23.36231,15.556229 L 27.36231,2.5562294 L 14.36231,2.5562294 z " /> | ||
1363 | + <path | ||
1364 | + style="fill:#8ae234;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1365 | + sodipodi:cx="22.323353" | ||
1366 | + sodipodi:cy="25.485029" | ||
1367 | + sodipodi:type="arc" | ||
1368 | + transform="matrix(0.8862029,0,0,0.8862029,1.0792903,-1.5286777)" | ||
1369 | + d="M 27.401197 25.485029 A 5.0778441 5.0778441 0 1 1 17.245509,25.485029 A 5.0778441 5.0778441 0 1 1 27.401197 25.485029 z" | ||
1370 | + sodipodi:rx="5.0778441" | ||
1371 | + id="path3337" | ||
1372 | + sodipodi:ry="5.0778441" /> | ||
1373 | + <path | ||
1374 | + style="fill:url(#radialGradient9448);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.12840986;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1375 | + sodipodi:cx="22.323353" | ||
1376 | + sodipodi:cy="25.485029" | ||
1377 | + sodipodi:type="arc" | ||
1378 | + transform="matrix(0.8862029,0,0,0.8862029,1.0792903,-1.5286777)" | ||
1379 | + d="M 27.401197 25.485029 A 5.0778441 5.0778441 0 1 1 17.245509,25.485029 A 5.0778441 5.0778441 0 1 1 27.401197 25.485029 z" | ||
1380 | + sodipodi:rx="5.0778441" | ||
1381 | + id="path3335" | ||
1382 | + sodipodi:ry="5.0778441" /> | ||
1383 | + <path | ||
1384 | + style="opacity:0.7;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.45081258px;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1385 | + sodipodi:cx="22.323353" | ||
1386 | + sodipodi:cy="25.485029" | ||
1387 | + sodipodi:type="arc" | ||
1388 | + transform="matrix(0.6892689,0,0,0.6892689,5.4755174,3.4901911)" | ||
1389 | + d="M 27.401197 25.485029 A 5.0778441 5.0778441 0 1 1 17.245509,25.485029 A 5.0778441 5.0778441 0 1 1 27.401197 25.485029 z" | ||
1390 | + sodipodi:rx="5.0778441" | ||
1391 | + id="path2393" | ||
1392 | + sodipodi:ry="5.0778441" /> | ||
1393 | + <path | ||
1394 | + sodipodi:type="inkscape:offset" | ||
1395 | + inkscape:original="M 14.375 2.5625 L 18.375 15.5625 C 19.649395 15.221027 20.235083 15.187718 20.875 15.1875 C 21.514918 15.187282 22.097354 15.220156 23.375 15.5625 L 27.375 2.5625 L 14.375 2.5625 z " | ||
1396 | + style="opacity:0.9;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9450);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" | ||
1397 | + transform="translate(0,-1.5625e-2)" | ||
1398 | + d="M 15.71875,3.5625 L 19.0625,14.46875 C 19.718741,14.350923 20.430228,14.187652 20.875,14.1875 C 21.319747,14.187348 22.031077,14.350829 22.6875,14.46875 L 26.03125,3.5625 L 15.71875,3.5625 z " | ||
1399 | + inkscape:href="#path3284" | ||
1400 | + xlink:href="#path3284" | ||
1401 | + inkscape:radius="-0.99102211" | ||
1402 | + id="path2976" /> | ||
1403 | + </g> | ||
1404 | + <g | ||
1405 | + id="g8443"> | ||
1406 | + <path | ||
1407 | + style="opacity:1;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.19537103;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1408 | + sodipodi:cx="23.41593" | ||
1409 | + sodipodi:cy="23.41593" | ||
1410 | + sodipodi:type="arc" | ||
1411 | + transform="matrix(0.4896939,0,0,0.4896939,713.53859,-12.452024)" | ||
1412 | + d="M 46.725664 23.41593 A 23.309734 23.309734 0 1 1 0.10619545,23.41593 A 23.309734 23.309734 0 1 1 46.725664 23.41593 z" | ||
1413 | + sodipodi:rx="23.309734" | ||
1414 | + id="path8396" | ||
1415 | + sodipodi:ry="23.309734" /> | ||
1416 | + <path | ||
1417 | + style="opacity:1;fill:url(#radialGradient9452);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.04209208;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1418 | + sodipodi:cx="23.41593" | ||
1419 | + sodipodi:cy="23.41593" | ||
1420 | + sodipodi:type="arc" | ||
1421 | + transform="matrix(0.4932024,0,0,0.4932024,713.45121,-12.548792)" | ||
1422 | + d="M 46.725664 23.41593 A 23.309734 23.309734 0 1 1 0.10619545,23.41593 A 23.309734 23.309734 0 1 1 46.725664 23.41593 z" | ||
1423 | + sodipodi:rx="23.309734" | ||
1424 | + id="path8398" | ||
1425 | + sodipodi:ry="23.309734" /> | ||
1426 | + <path | ||
1427 | + style="opacity:0.5;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.34146333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
1428 | + d="M 729.97796,3.404858 C 732.72848,-1.538227 732.3745,-4.865283 732.3745,-4.865283" | ||
1429 | + id="path8402" /> | ||
1430 | + <path | ||
1431 | + style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.21226645;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1432 | + sodipodi:cx="23.41593" | ||
1433 | + sodipodi:cy="23.41593" | ||
1434 | + sodipodi:type="arc" | ||
1435 | + transform="matrix(0.4505267,0,0,0.4505267,714.4505,-11.549501)" | ||
1436 | + d="M 46.725664 23.41593 A 23.309734 23.309734 0 1 1 0.10619545,23.41593 A 23.309734 23.309734 0 1 1 46.725664 23.41593 z" | ||
1437 | + sodipodi:rx="23.309734" | ||
1438 | + id="path8404" | ||
1439 | + sodipodi:ry="23.309734" /> | ||
1440 | + <path | ||
1441 | + style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34146333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
1442 | + id="path8406" | ||
1443 | + d="M 729.39259,2.819492 C 732.14312,-2.123593 731.78914,-5.450649 731.78914,-5.450649" /> | ||
1444 | + <path | ||
1445 | + sodipodi:type="arc" | ||
1446 | + sodipodi:cx="23.41593" | ||
1447 | + sodipodi:cy="23.41593" | ||
1448 | + sodipodi:open="true" | ||
1449 | + transform="matrix(0.351575,0,0,0.351575,717.13798,-9.5995373)" | ||
1450 | + style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:6.65992451;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1451 | + sodipodi:start="1.1405085" | ||
1452 | + sodipodi:end="3.2323314" | ||
1453 | + d="M 33.139175,44.600882 A 23.309734,23.309734 0 0 1 0.20209021,21.303735" | ||
1454 | + sodipodi:rx="23.309734" | ||
1455 | + id="path2994" | ||
1456 | + sodipodi:ry="23.309734" /> | ||
1457 | + <path | ||
1458 | + sodipodi:type="arc" | ||
1459 | + sodipodi:cx="23.41593" | ||
1460 | + sodipodi:cy="23.41593" | ||
1461 | + sodipodi:open="true" | ||
1462 | + transform="matrix(0.3264625,0,0,0.3264625,717.72602,-9.0115053)" | ||
1463 | + style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:7.17222595;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1464 | + sodipodi:start="1.1922871" | ||
1465 | + sodipodi:end="3.3131254" | ||
1466 | + d="M 32.029707,45.075721 A 23.309734,23.309734 0 0 1 0.44828222,19.437126" | ||
1467 | + sodipodi:rx="23.309734" | ||
1468 | + id="path3327" | ||
1469 | + sodipodi:ry="23.309734" /> | ||
1470 | + <path | ||
1471 | + style="opacity:0.5;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.34146333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
1472 | + id="path8400" | ||
1473 | + d="M 725.88327,1.941444 C 728.6338,-3.001641 728.27982,-6.328698 728.27982,-6.328698" /> | ||
1474 | + <path | ||
1475 | + style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.34146333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | ||
1476 | + d="M 725.2979,1.356078 C 728.04843,-3.587007 727.69445,-6.914064 727.69445,-6.914064" | ||
1477 | + id="path8408" /> | ||
1478 | + </g> | ||
1479 | + </g> | ||
1480 | + <rect | ||
1481 | + style="opacity:1;color:#000000;fill:url(#linearGradient9566);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1482 | + y="433" | ||
1483 | + x="0" | ||
1484 | + height="117" | ||
1485 | + width="750" | ||
1486 | + id="rect9564" /> | ||
1487 | + <rect | ||
1488 | + style="opacity:1;color:#000000;fill:url(#linearGradient10549);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1489 | + transform="scale(1,-1)" | ||
1490 | + y="-433" | ||
1491 | + x="0" | ||
1492 | + height="50" | ||
1493 | + width="750" | ||
1494 | + id="rect10547" /> | ||
1495 | + <rect | ||
1496 | + style="opacity:0.5;color:#000000;fill:#edd400;fill-opacity:0.50196078;fill-rule:nonzero;stroke:#fce94f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1497 | + y="-134.5" | ||
1498 | + x="485.5" | ||
1499 | + height="23" | ||
1500 | + width="78" | ||
1501 | + id="rect11988" /> | ||
1502 | + <image | ||
1503 | + style="opacity:0.7" | ||
1504 | + y="-131" | ||
1505 | + x="489" | ||
1506 | + height="18" | ||
1507 | + xlink:href="data:image/gif;base64,R0lGODlhEgASAOfHAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4O Dg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEh ISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0 NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdH R0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpa WltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1t bW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CA gIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOT k5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaam pqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5 ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zM zM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f 3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy 8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///yH5BAEKAP4ALAAAAAASABIA AAhxAP0JHCgQgMGDCAkSBPDvH0OHDQEoHMjwYUSHCxECANTwosSCHUN2fPjRosiDI/1ZNBjSJEaS FjmijKhy5sWRNCmOZHnzI8iWNn2qvAmxZU2ePItGdOlQDEmgIps+TalRopWpOScqwYpxoj8aNRUC CAgAOw== " | ||
1508 | + width="18" | ||
1509 | + id="image10558" /> | ||
1510 | + <rect | ||
1511 | + style="opacity:0.5;color:#000000;fill:#edd400;fill-opacity:0.50196078;fill-rule:nonzero;stroke:#fce94f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1512 | + y="-134.5" | ||
1513 | + x="599.5" | ||
1514 | + height="23" | ||
1515 | + width="95" | ||
1516 | + id="rect12959" /> | ||
1517 | + <image | ||
1518 | + style="opacity:0.7" | ||
1519 | + y="-131" | ||
1520 | + x="602" | ||
1521 | + height="18" | ||
1522 | + xlink:href="data:image/gif;base64,R0lGODlhEgASAMIAAAAAADMzM4iIiN3d3f///wAAAAAAAAAAACH5BAEKAAcALAAAAAASABIAAANQ eKrQsDCCQCoJLy4wbqNDplFcFV7aAVydNZDaulqVHBMzbUss/eIpUusUSKk6mAlBAEwpLRRmw+h4 5AQiI8OC1W6Yla5XBW6OAdIxZKpOJQAAOw== " | ||
1523 | + width="18" | ||
1524 | + id="image10568" /> | ||
1525 | + <text | ||
1526 | + xml:space="preserve" | ||
1527 | + style="font-size:14px;font-style:normal;font-weight:normal;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" | ||
1528 | + id="text10571" | ||
1529 | + y="-118.02148" | ||
1530 | + x="513.71484"><tspan | ||
1531 | + sodipodi:role="line" | ||
1532 | + id="tspan10573" | ||
1533 | + y="-118.02148" | ||
1534 | + x="513.71484">Login</tspan></text> | ||
1535 | + <text | ||
1536 | + xml:space="preserve" | ||
1537 | + style="font-size:14px;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;opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans" | ||
1538 | + id="text10575" | ||
1539 | + y="-118.02148" | ||
1540 | + x="624.99512"><tspan | ||
1541 | + sodipodi:role="line" | ||
1542 | + id="tspan10577" | ||
1543 | + y="-118.02148" | ||
1544 | + x="624.99512">Search</tspan></text> | ||
1545 | + <path | ||
1546 | + style="font-size:14px;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;opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans" | ||
1547 | + d="M 678.5,-124.5 L 686.5,-124.5 L 682.5,-119.5 L 678.5,-124.5 z " | ||
1548 | + sodipodi:nodetypes="cccc" | ||
1549 | + id="rect12999" /> | ||
1550 | + <rect | ||
1551 | + style="opacity:0.3;color:#000000;fill:none;fill-opacity:0.50196078;fill-rule:nonzero;stroke:#fce94f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1552 | + y="5.5" | ||
1553 | + x="339.5" | ||
1554 | + height="23" | ||
1555 | + width="88" | ||
1556 | + id="rect14944" /> | ||
1557 | + <text | ||
1558 | + xml:space="preserve" | ||
1559 | + style="font-size:14px;font-style:normal;font-weight:normal;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" | ||
1560 | + id="text14948" | ||
1561 | + y="21.978516" | ||
1562 | + x="365.71484"><tspan | ||
1563 | + sodipodi:role="line" | ||
1564 | + id="tspan14950" | ||
1565 | + y="21.978516" | ||
1566 | + x="365.71484">fulano</tspan></text> | ||
1567 | + <g | ||
1568 | + style="opacity:0.5" | ||
1569 | + id="g16900"> | ||
1570 | + <rect | ||
1571 | + style="opacity:1;color:#000000;fill:#fcaf3e;fill-opacity:1;fill-rule:nonzero;stroke:#a40000;stroke-width:0.93435651px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1572 | + y="7.4671783" | ||
1573 | + x="599.46722" | ||
1574 | + height="20.065643" | ||
1575 | + width="95.065643" | ||
1576 | + id="rect14952" /> | ||
1577 | + <image | ||
1578 | + style="opacity:0.7" | ||
1579 | + y="9" | ||
1580 | + x="602" | ||
1581 | + height="18" | ||
1582 | + xlink:href="data:image/gif;base64,R0lGODlhEgASAMIAAAAAADMzM4iIiN3d3f///wAAAAAAAAAAACH5BAEKAAcALAAAAAASABIAAANQ eKrQsDCCQCoJLy4wbqNDplFcFV7aAVydNZDaulqVHBMzbUss/eIpUusUSKk6mAlBAEwpLRRmw+h4 5AQiI8OC1W6Yla5XBW6OAdIxZKpOJQAAOw== " | ||
1583 | + width="18" | ||
1584 | + id="image14954" /> | ||
1585 | + <text | ||
1586 | + xml:space="preserve" | ||
1587 | + style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:center;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:middle;opacity:0.7;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans" | ||
1588 | + id="text14956" | ||
1589 | + y="21.978516" | ||
1590 | + x="652.99512"><tspan | ||
1591 | + sodipodi:role="line" | ||
1592 | + id="tspan14958" | ||
1593 | + y="21.978516" | ||
1594 | + x="652.99512">Search...</tspan></text> | ||
1595 | + </g> | ||
1596 | + <g | ||
1597 | + style="opacity:1" | ||
1598 | + id="g16918" | ||
1599 | + transform="translate(0,-100)"> | ||
1600 | + <rect | ||
1601 | + style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#a40000;stroke-width:0.93435651px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1602 | + y="7.4671783" | ||
1603 | + x="599.46722" | ||
1604 | + height="20.065643" | ||
1605 | + width="95.065643" | ||
1606 | + id="rect16920" /> | ||
1607 | + <image | ||
1608 | + style="opacity:0.5" | ||
1609 | + y="9" | ||
1610 | + x="602" | ||
1611 | + height="18" | ||
1612 | + xlink:href="data:image/gif;base64,R0lGODlhEgASAMIAAAAAADMzM4iIiN3d3f///wAAAAAAAAAAACH5BAEKAAcALAAAAAASABIAAANQ eKrQsDCCQCoJLy4wbqNDplFcFV7aAVydNZDaulqVHBMzbUss/eIpUusUSKk6mAlBAEwpLRRmw+h4 5AQiI8OC1W6Yla5XBW6OAdIxZKpOJQAAOw== " | ||
1613 | + width="18" | ||
1614 | + id="image16922" /> | ||
1615 | + <text | ||
1616 | + xml:space="preserve" | ||
1617 | + style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:center;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:middle;opacity:0.7;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans" | ||
1618 | + id="text16924" | ||
1619 | + y="21.978516" | ||
1620 | + x="648.99512"><tspan | ||
1621 | + sodipodi:role="line" | ||
1622 | + id="tspan16926" | ||
1623 | + y="21.978516" | ||
1624 | + x="648.99512">bla bla bla</tspan></text> | ||
1625 | + </g> | ||
1626 | + <image | ||
1627 | + style="opacity:0.7" | ||
1628 | + y="9" | ||
1629 | + x="534" | ||
1630 | + height="16" | ||
1631 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAKEAAAAAAP///wAAAAAAACH+EUNyZWF0ZWQgd2l0aCBHSU1QACH5BAEKAAIALAAA | ||
1632 | +AAAQABAAAAIzlA95yxAPWHs0SuNoSHbxWnlgFgokdG6YtqWWu5Ur1DocltQsusdsvku1ekLgj4NM | ||
1633 | +Ii8FADs= | ||
1634 | +" | ||
1635 | + width="16" | ||
1636 | + id="image17904" /> | ||
1637 | + <image | ||
1638 | + style="opacity:0.7" | ||
1639 | + y="9" | ||
1640 | + x="456" | ||
1641 | + height="16" | ||
1642 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAMIDAAAAAExMTIGBgf///////////////////yH5BAEKAAQALAAAAAAQABAAAANA | ||
1643 | +CLqs9ASMSSuAcYQtQg/DdWVVqYQZt3mgNJ0l5aLS+oXyM1saqmur1wuzmwQYxNhmCCmakrFcMyr9 | ||
1644 | +UX26hhaTAAA7 | ||
1645 | +" | ||
1646 | + width="16" | ||
1647 | + id="image17914" /> | ||
1648 | + <image | ||
1649 | + style="opacity:0.7" | ||
1650 | + y="9" | ||
1651 | + x="508" | ||
1652 | + height="16" | ||
1653 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAKEBAAAAAP///////////yH5BAEKAAIALAAAAAAQABAAAAIzhI9pwu2+4HmRgYAD | ||
1654 | +kO1mvFmh4H1jVWbnSJqc6E2i9bnkltba3eoqn6vhcL7fIuhSKBEFADs= | ||
1655 | +" | ||
1656 | + width="16" | ||
1657 | + id="image17924" /> | ||
1658 | + <image | ||
1659 | + style="opacity:0.7" | ||
1660 | + y="9" | ||
1661 | + x="560" | ||
1662 | + height="16" | ||
1663 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAMIFAAAAAH19fbOzs8nJyebm5v///////////yH5BAEKAAcALAAAAAAQABAAAANH | ||
1664 | +eLoMwPA8SciMklqH1ePdcoVOCUZAQRSpwKJFHK/umK5zMRS1iMu0QuByUxl3Pc9utUIKibqoyxV4 | ||
1665 | +iXhYqrUhZHVHDU4JkgAAOw== | ||
1666 | +" | ||
1667 | + width="16" | ||
1668 | + id="image17934" /> | ||
1669 | + <image | ||
1670 | + style="opacity:0.7" | ||
1671 | + y="9" | ||
1672 | + x="482" | ||
1673 | + height="16" | ||
1674 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAMIFAAAAAFNTU4KCgqOjo8zMzP///////////yH+EUNyZWF0ZWQgd2l0aCBHSU1Q | ||
1675 | +ACH5BAEKAAcALAAAAAAQABAAAAM7eLrcCzBK+Iq92IIDsoBCBmUDNIgdRkAEmhWjmxGtfK1AfcW3 | ||
1676 | +IOgazuu1UfAmFEaq6FDCmo4kVDldJAAAOw== | ||
1677 | +" | ||
1678 | + width="16" | ||
1679 | + id="image17948" /> | ||
1680 | + <image | ||
1681 | + y="7" | ||
1682 | + x="340" | ||
1683 | + height="20" | ||
1684 | + xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A | ||
1685 | +/wD/oL2nkwAAAAlwSFlzAAArQQAAK0EBPqF1TgAAAAd0SU1FB9gEHQMoNvXrmAoAAANTSURBVDjL | ||
1686 | +hZTNa5xVFMZ/77yTODPJJDGZpJk2TcZGQinYBiIaRVyUUCQV1C4sIoJ/gXEjEt0VNEg3fqwFwYV0 | ||
1687 | +o4ISQZRSEARLINCCTUybiflqzIyZTCfzce99z3HxTkKTTOxZ3MW9PD+e55x7r8f/VGZ86lJ3V9s7 | ||
1688 | +A8e7RgCW1vIzm/ni59npyW+P0nhHHQy9evXT1y6MTAydfgI/3gFAUCkwf2eR736e+Wz++/febaTz | ||
1689 | +j3D2xusXn73ae2qQEi1E/SiBKlvVCMn2JAOpxOiKnp4v/PXr7YPaaCPg8Z6OiVNPnuRBJMHczVkq | ||
1690 | +NcPq6iaJRJwXx56nP3OCdE/HRBa+OaiNNHDn9aU7hyUaJ7+2zm+/3+bcyFkuvjLGn3NL3JtbwHhx | ||
1691 | +TvQ+PpwZn/IeCcxOT6qIijGWWCJO+lgHtVqVmnU0P+ZTLlexxiCBSHZ6Uh8JBFhY2rjh1XYo1WD0 | ||
1692 | +/AsUysK/GxtUyoaTA31EXZl7y5s3GmkbAgvF8pU/Zu64pzIdVKqWmB9w/fpNLl++wFB/JzOz865Q | ||
1693 | +LF9ppI0e6N9b3Z3Jt9vbEum/1/K2lUrUOcfq+gbPjJ5juxYh6RuW1/N2sL/ny9SbX6zntkpfZacn | ||
1694 | +vz50Dwdf/uSDSy89/dGxdDd+c4xo1Ge7Cov3H6DFHO2pFLmSJdPTSls8grUBgamQ38zxwy+zH979 | ||
1695 | +8f2P94CZ8anY8Jn+3NnhMy0rBYsKKB4QQRE64z4Vp2zvGAIFcYKooCJkUs0szC3s3JpbSWWnJ6u7 | ||
1696 | +PezrTbW35EsOYwKMDTDWYZwlGWvi2rWfWL67iDEB1liMs+G5dWwUHT1dyRag7+Ee+nhgrWCtRQQU | ||
1697 | +wPP5Z2uH82PP4fnNFCoWEUUDRUQJRKj6lnjE23t1e0NRBWMtxjhUPQTAU1SFnQBUqmFcUUTCuKKC | ||
1698 | +cR7apIenrKpYF2CcQ4NwT7xIXQgqiqgQBA8DwUUtGj0CaMyuQ61fUSVQQQKtAxQVcPWBiAjGeGiM | ||
1699 | +xkBnA1zNEShAAF4kdCWKKqGzusOgHtlGPVQbAgmn52wYsf6QJABVCYegEkavxwcQ1X3f6j6HfV2t | ||
1700 | +tCea0V2g56FCPWrYs73ScGmNN0GteAhobs2varq7tOdf9wmPrq0irOe2FTAA/wFeXw/LCuZYkgAA | ||
1701 | +AABJRU5ErkJggg== | ||
1702 | +" | ||
1703 | + width="20" | ||
1704 | + id="image17960" /> | ||
1705 | + <rect | ||
1706 | + style="opacity:0.5;color:#000000;fill:#edd400;fill-opacity:0.50196078;fill-rule:nonzero;stroke:#fce94f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1707 | + y="-94.5" | ||
1708 | + x="347.5" | ||
1709 | + height="23" | ||
1710 | + width="76" | ||
1711 | + id="rect17963" /> | ||
1712 | + <image | ||
1713 | + style="opacity:0.7" | ||
1714 | + y="-92" | ||
1715 | + x="349" | ||
1716 | + height="18" | ||
1717 | + xlink:href="data:image/gif;base64,R0lGODlhEgASAOfHAAAAAAEBAQICAgMDAwQEBAUFBQYGBgcHBwgICAkJCQoKCgsLCwwMDA0NDQ4O Dg8PDxAQEBERERISEhMTExQUFBUVFRYWFhcXFxgYGBkZGRoaGhsbGxwcHB0dHR4eHh8fHyAgICEh ISIiIiMjIyQkJCUlJSYmJicnJygoKCkpKSoqKisrKywsLC0tLS4uLi8vLzAwMDExMTIyMjMzMzQ0 NDU1NTY2Njc3Nzg4ODk5OTo6Ojs7Ozw8PD09PT4+Pj8/P0BAQEFBQUJCQkNDQ0REREVFRUZGRkdH R0hISElJSUpKSktLS0xMTE1NTU5OTk9PT1BQUFFRUVJSUlNTU1RUVFVVVVZWVldXV1hYWFlZWVpa WltbW1xcXF1dXV5eXl9fX2BgYGFhYWJiYmNjY2RkZGVlZWZmZmdnZ2hoaGlpaWpqamtra2xsbG1t bW5ubm9vb3BwcHFxcXJycnNzc3R0dHV1dXZ2dnd3d3h4eHl5eXp6ent7e3x8fH19fX5+fn9/f4CA gIGBgYKCgoODg4SEhIWFhYaGhoeHh4iIiImJiYqKiouLi4yMjI2NjY6Ojo+Pj5CQkJGRkZKSkpOT k5SUlJWVlZaWlpeXl5iYmJmZmZqampubm5ycnJ2dnZ6enp+fn6CgoKGhoaKioqOjo6SkpKWlpaam pqenp6ioqKmpqaqqqqurq6ysrK2tra6urq+vr7CwsLGxsbKysrOzs7S0tLW1tba2tre3t7i4uLm5 ubq6uru7u7y8vL29vb6+vr+/v8DAwMHBwcLCwsPDw8TExMXFxcbGxsfHx8jIyMnJycrKysvLy8zM zM3Nzc7Ozs/Pz9DQ0NHR0dLS0tPT09TU1NXV1dbW1tfX19jY2NnZ2dra2tvb29zc3N3d3d7e3t/f 3+Dg4OHh4eLi4uPj4+Tk5OXl5ebm5ufn5+jo6Onp6erq6uvr6+zs7O3t7e7u7u/v7/Dw8PHx8fLy 8vPz8/T09PX19fb29vf39/j4+Pn5+fr6+vv7+/z8/P39/f7+/v///yH5BAEKAP4ALAAAAAASABIA AAhxAP0JHCgQgMGDCAkSBPDvH0OHDQEoHMjwYUSHCxECANTwosSCHUN2fPjRosiDI/1ZNBjSJEaS FjmijKhy5sWRNCmOZHnzI8iWNn2qvAmxZU2ePItGdOlQDEmgIps+TalRopWpOScqwYpxoj8aNRUC CAgAOw== " | ||
1718 | + width="18" | ||
1719 | + id="image17965" /> | ||
1720 | + <text | ||
1721 | + xml:space="preserve" | ||
1722 | + style="font-size:14px;font-style:normal;font-weight:normal;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" | ||
1723 | + id="text17967" | ||
1724 | + y="-78.021484" | ||
1725 | + x="373.71484"><tspan | ||
1726 | + sodipodi:role="line" | ||
1727 | + id="tspan17969" | ||
1728 | + y="-78.021484" | ||
1729 | + x="373.71484">Login</tspan></text> | ||
1730 | + <path | ||
1731 | + style="font-size:14px;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;opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans" | ||
1732 | + id="path17971" | ||
1733 | + sodipodi:nodetypes="cccc" | ||
1734 | + d="M 414.5,15.5 L 422.5,15.5 L 418.5,20.5 L 414.5,15.5 z " /> | ||
1735 | + <g | ||
1736 | + id="g19006"> | ||
1737 | + <rect | ||
1738 | + style="opacity:1;color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#a40000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1739 | + y="-214.5" | ||
1740 | + x="339.5" | ||
1741 | + height="96" | ||
1742 | + width="88" | ||
1743 | + id="rect17973" /> | ||
1744 | + <text | ||
1745 | + xml:space="preserve" | ||
1746 | + style="font-size:14px;font-style:normal;font-weight:normal;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" | ||
1747 | + id="text17975" | ||
1748 | + y="-198.02148" | ||
1749 | + x="365.71484"><tspan | ||
1750 | + sodipodi:role="line" | ||
1751 | + id="tspan17977" | ||
1752 | + y="-198.02148" | ||
1753 | + x="365.71484">fulano</tspan></text> | ||
1754 | + <image | ||
1755 | + y="-213" | ||
1756 | + x="340" | ||
1757 | + height="20" | ||
1758 | + xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A | ||
1759 | +/wD/oL2nkwAAAAlwSFlzAAArQQAAK0EBPqF1TgAAAAd0SU1FB9gEHQMoNvXrmAoAAANTSURBVDjL | ||
1760 | +hZTNa5xVFMZ/77yTODPJJDGZpJk2TcZGQinYBiIaRVyUUCQV1C4sIoJ/gXEjEt0VNEg3fqwFwYV0 | ||
1761 | +o4ISQZRSEARLINCCTUybiflqzIyZTCfzce99z3HxTkKTTOxZ3MW9PD+e55x7r8f/VGZ86lJ3V9s7 | ||
1762 | +A8e7RgCW1vIzm/ni59npyW+P0nhHHQy9evXT1y6MTAydfgI/3gFAUCkwf2eR736e+Wz++/febaTz | ||
1763 | +j3D2xusXn73ae2qQEi1E/SiBKlvVCMn2JAOpxOiKnp4v/PXr7YPaaCPg8Z6OiVNPnuRBJMHczVkq | ||
1764 | +NcPq6iaJRJwXx56nP3OCdE/HRBa+OaiNNHDn9aU7hyUaJ7+2zm+/3+bcyFkuvjLGn3NL3JtbwHhx | ||
1765 | +TvQ+PpwZn/IeCcxOT6qIijGWWCJO+lgHtVqVmnU0P+ZTLlexxiCBSHZ6Uh8JBFhY2rjh1XYo1WD0 | ||
1766 | +/AsUysK/GxtUyoaTA31EXZl7y5s3GmkbAgvF8pU/Zu64pzIdVKqWmB9w/fpNLl++wFB/JzOz865Q | ||
1767 | +LF9ppI0e6N9b3Z3Jt9vbEum/1/K2lUrUOcfq+gbPjJ5juxYh6RuW1/N2sL/ny9SbX6zntkpfZacn | ||
1768 | +vz50Dwdf/uSDSy89/dGxdDd+c4xo1Ge7Cov3H6DFHO2pFLmSJdPTSls8grUBgamQ38zxwy+zH979 | ||
1769 | +8f2P94CZ8anY8Jn+3NnhMy0rBYsKKB4QQRE64z4Vp2zvGAIFcYKooCJkUs0szC3s3JpbSWWnJ6u7 | ||
1770 | +PezrTbW35EsOYwKMDTDWYZwlGWvi2rWfWL67iDEB1liMs+G5dWwUHT1dyRag7+Ee+nhgrWCtRQQU | ||
1771 | +wPP5Z2uH82PP4fnNFCoWEUUDRUQJRKj6lnjE23t1e0NRBWMtxjhUPQTAU1SFnQBUqmFcUUTCuKKC | ||
1772 | +cR7apIenrKpYF2CcQ4NwT7xIXQgqiqgQBA8DwUUtGj0CaMyuQ61fUSVQQQKtAxQVcPWBiAjGeGiM | ||
1773 | +xkBnA1zNEShAAF4kdCWKKqGzusOgHtlGPVQbAgmn52wYsf6QJABVCYegEkavxwcQ1X3f6j6HfV2t | ||
1774 | +tCea0V2g56FCPWrYs73ScGmNN0GteAhobs2varq7tOdf9wmPrq0irOe2FTAA/wFeXw/LCuZYkgAA | ||
1775 | +AABJRU5ErkJggg== | ||
1776 | +" | ||
1777 | + width="20" | ||
1778 | + id="image17979" /> | ||
1779 | + <path | ||
1780 | + style="font-size:14px;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;opacity:0.7;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans" | ||
1781 | + id="path17981" | ||
1782 | + sodipodi:nodetypes="cccc" | ||
1783 | + d="M 414.5,-204.5 L 422.5,-204.5 L 418.5,-199.5 L 414.5,-204.5 z " /> | ||
1784 | + <image | ||
1785 | + y="-186" | ||
1786 | + x="343" | ||
1787 | + height="16" | ||
1788 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAOMJAAAAAG9vb7Ozs8HBwcnJyc/Pz9nZ2ePj4+bm5v////////////////////// | ||
1789 | +/////yH5BAEKAA8ALAAAAAAQABAAAARJ8MlJq714ApA1QMWGbQVoip5ZrqAIHAYxCHQ9EMaxkUji | ||
1790 | +/y0UIBEoBohGjoboOx6JSsnw6WxGH9MmsnjNMn+J7vf56+7O5w4mAgA7 | ||
1791 | +" | ||
1792 | + width="16" | ||
1793 | + id="image18002" /> | ||
1794 | + <image | ||
1795 | + y="-162" | ||
1796 | + x="343" | ||
1797 | + height="16" | ||
1798 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAKECAAAAAKWlpf///////yH5BAEKAAMALAAAAAAQABAAAAI6hDGHkwsi0ItsSnjp | ||
1799 | +CyGqZiQCRzHmKWoH6JRW2rYaVrnrJy7o/jgK3tsJX5/iqGOgEY8eJQ3GilYWBQA7 | ||
1800 | +" | ||
1801 | + width="16" | ||
1802 | + id="image18012" /> | ||
1803 | + <image | ||
1804 | + y="-140" | ||
1805 | + x="341" | ||
1806 | + height="18" | ||
1807 | + xlink:href="data:image/gif;base64,R0lGODlhEgASAMIAAAAAAExMTICAgIGBgf///wAAAAAAAAAAACH5BAEKAAcALAAAAAASABIAAANJ | ||
1808 | +CLp8fsoBQisFbxKs7ZWW4jGKEHabN0IVemJseqEwKIuUudhMGMatFm4DvIx2xVvrEettOrWJi6iJ | ||
1809 | +yn7VzIzU1KqoHwmTCYs8EgA7 | ||
1810 | +" | ||
1811 | + width="18" | ||
1812 | + id="image18022" /> | ||
1813 | + <text | ||
1814 | + xml:space="preserve" | ||
1815 | + style="font-size:14px;font-style:normal;font-weight:normal;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" | ||
1816 | + id="text18994" | ||
1817 | + y="-172.02148" | ||
1818 | + x="365.71484"><tspan | ||
1819 | + sodipodi:role="line" | ||
1820 | + id="tspan18996" | ||
1821 | + y="-172.02148" | ||
1822 | + x="365.71484">home</tspan></text> | ||
1823 | + <text | ||
1824 | + xml:space="preserve" | ||
1825 | + style="font-size:14px;font-style:normal;font-weight:normal;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" | ||
1826 | + id="text18998" | ||
1827 | + y="-148.02148" | ||
1828 | + x="365.71484"><tspan | ||
1829 | + sodipodi:role="line" | ||
1830 | + id="tspan19000" | ||
1831 | + y="-148.02148" | ||
1832 | + x="365.71484">config</tspan></text> | ||
1833 | + <text | ||
1834 | + xml:space="preserve" | ||
1835 | + style="font-size:14px;font-style:normal;font-weight:normal;opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" | ||
1836 | + id="text19002" | ||
1837 | + y="-124.02148" | ||
1838 | + x="365.71484"><tspan | ||
1839 | + sodipodi:role="line" | ||
1840 | + id="tspan19004" | ||
1841 | + y="-124.02148" | ||
1842 | + x="365.71484">exit</tspan></text> | ||
1843 | + </g> | ||
1844 | + <g | ||
1845 | + style="opacity:1" | ||
1846 | + id="g19991" | ||
1847 | + transform="translate(-120,22)"> | ||
1848 | + <rect | ||
1849 | + style="opacity:1;color:#000000;fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#a40000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1850 | + y="-92.5" | ||
1851 | + x="590.5" | ||
1852 | + height="20" | ||
1853 | + width="80" | ||
1854 | + id="rect21949" | ||
1855 | + ry="3" /> | ||
1856 | + <text | ||
1857 | + xml:space="preserve" | ||
1858 | + style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:center;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:middle;opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans" | ||
1859 | + id="text21951" | ||
1860 | + y="-78.169922" | ||
1861 | + x="629.86914"><tspan | ||
1862 | + sodipodi:role="line" | ||
1863 | + id="tspan21953" | ||
1864 | + y="-78.169922" | ||
1865 | + x="629.86914">Comments</tspan></text> | ||
1866 | + </g> | ||
1867 | + <image | ||
1868 | + style="opacity:0.7" | ||
1869 | + y="-91" | ||
1870 | + x="534" | ||
1871 | + height="16" | ||
1872 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAKEAAAAAAP///wAAAAAAACH+EUNyZWF0ZWQgd2l0aCBHSU1QACH5BAEKAAIALAAA | ||
1873 | +AAAQABAAAAIzlA95yxAPWHs0SuNoSHbxWnlgFgokdG6YtqWWu5Ur1DocltQsusdsvku1ekLgj4NM | ||
1874 | +Ii8FADs= | ||
1875 | +" | ||
1876 | + width="16" | ||
1877 | + id="image21939" /> | ||
1878 | + <image | ||
1879 | + style="opacity:0.7" | ||
1880 | + y="-91" | ||
1881 | + x="456" | ||
1882 | + height="16" | ||
1883 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAMIDAAAAAExMTIGBgf///////////////////yH5BAEKAAQALAAAAAAQABAAAANA | ||
1884 | +CLqs9ASMSSuAcYQtQg/DdWVVqYQZt3mgNJ0l5aLS+oXyM1saqmur1wuzmwQYxNhmCCmakrFcMyr9 | ||
1885 | +UX26hhaTAAA7 | ||
1886 | +" | ||
1887 | + width="16" | ||
1888 | + id="image21941" /> | ||
1889 | + <image | ||
1890 | + style="opacity:0.7" | ||
1891 | + y="-91" | ||
1892 | + x="508" | ||
1893 | + height="16" | ||
1894 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAKEBAAAAAP///////////yH5BAEKAAIALAAAAAAQABAAAAIzhI9pwu2+4HmRgYAD | ||
1895 | +kO1mvFmh4H1jVWbnSJqc6E2i9bnkltba3eoqn6vhcL7fIuhSKBEFADs= | ||
1896 | +" | ||
1897 | + width="16" | ||
1898 | + id="image21943" /> | ||
1899 | + <image | ||
1900 | + style="opacity:0.7" | ||
1901 | + y="-91" | ||
1902 | + x="560" | ||
1903 | + height="16" | ||
1904 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAMIFAAAAAH19fbOzs8nJyebm5v///////////yH5BAEKAAcALAAAAAAQABAAAANH | ||
1905 | +eLoMwPA8SciMklqH1ePdcoVOCUZAQRSpwKJFHK/umK5zMRS1iMu0QuByUxl3Pc9utUIKibqoyxV4 | ||
1906 | +iXhYqrUhZHVHDU4JkgAAOw== | ||
1907 | +" | ||
1908 | + width="16" | ||
1909 | + id="image21945" /> | ||
1910 | + <image | ||
1911 | + style="opacity:1" | ||
1912 | + y="-91" | ||
1913 | + x="482" | ||
1914 | + height="16" | ||
1915 | + xlink:href="data:image/gif;base64,R0lGODlhEAAQAMIFAAAAAFNTU4KCgqOjo8zMzP///////////yH+EUNyZWF0ZWQgd2l0aCBHSU1Q | ||
1916 | +ACH5BAEKAAcALAAAAAAQABAAAAM7eLrcCzBK+Iq92IIDsoBCBmUDNIgdRkAEmhWjmxGtfK1AfcW3 | ||
1917 | +IOgazuu1UfAmFEaq6FDCmo4kVDldJAAAOw== | ||
1918 | +" | ||
1919 | + width="16" | ||
1920 | + id="image21947" /> | ||
1921 | + </g> | ||
1922 | +</svg> |
283 Bytes
309 Bytes
323 Bytes
1.66 KB
1.69 KB
23.9 KB
232 Bytes
4.52 KB
139 Bytes
139 Bytes
@@ -0,0 +1,15 @@ | @@ -0,0 +1,15 @@ | ||
1 | + | ||
2 | +body { | ||
3 | + background: #888A85; | ||
4 | +} | ||
5 | + | ||
6 | +#wrap { | ||
7 | + background: #FFF url(../images/bg-top.png) 0px 34px repeat-x; | ||
8 | +} | ||
9 | +#wrap2 { | ||
10 | + background: url(../images/logo-bg.gif) 0px 34px no-repeat; | ||
11 | +} | ||
12 | +#wrap3 { | ||
13 | + background: url(../images/bg-down.png) 0% 100% repeat-x; | ||
14 | +} | ||
15 | + |
@@ -0,0 +1,22 @@ | @@ -0,0 +1,22 @@ | ||
1 | + | ||
2 | +#btShowHelp { | ||
3 | + background: url(../images/helper-question.gif) no-repeat; | ||
4 | + width: 36px; | ||
5 | + height: 30px; | ||
6 | +} | ||
7 | + | ||
8 | +#btShowHelp.help-off { | ||
9 | + background: url(../images/helper-exclamation.gif) no-repeat; | ||
10 | + opacity: 1; | ||
11 | + filter: alpha(opacity=100); | ||
12 | +} | ||
13 | + | ||
14 | +/* Tenho que criar o boneco gif para fundo laranja antes de mudar a cor | ||
15 | +#helpBox { | ||
16 | + border: 2px solid #CE5C00; | ||
17 | + background: #F57900; | ||
18 | +} | ||
19 | +#helpBoxBody { | ||
20 | + border: 1px solid #FCAF3E; | ||
21 | +} | ||
22 | +*/ |
@@ -0,0 +1,149 @@ | @@ -0,0 +1,149 @@ | ||
1 | + | ||
2 | +#noosfero_bar { | ||
3 | + height: 34px; | ||
4 | + z-index: 100; | ||
5 | + font-size: 12px; | ||
6 | + letter-spacing: -1px; | ||
7 | + background: #F57900 url(../images/menu-bg.png) 0% 100% repeat-x; | ||
8 | +} | ||
9 | + | ||
10 | +#menu_link_to_envhome { | ||
11 | + display: block; | ||
12 | + width: 80px; | ||
13 | + height: 33px; | ||
14 | + background: url(../images/menu-logo.png) 0% 100% no-repeat; | ||
15 | +} | ||
16 | + | ||
17 | +#menu_link_to_envhome span { | ||
18 | + display: none; | ||
19 | +} | ||
20 | + | ||
21 | +#cat_menu li { | ||
22 | + display: none; | ||
23 | +} | ||
24 | + | ||
25 | + | ||
26 | +/* * * Menu Search Box * * * * * * * * * * * */ | ||
27 | + | ||
28 | +#simple-search { | ||
29 | + margin: 0px; | ||
30 | + padding: 5px 0px 0px 0px; | ||
31 | +} | ||
32 | + | ||
33 | +#simple-search input { | ||
34 | + width: 100px; | ||
35 | + height: 22px; | ||
36 | + line-height: 22px; | ||
37 | + border: 1px solid #A40000; | ||
38 | + background: #F57900 url(../images/search.gif) 1px 50% no-repeat; | ||
39 | + color: #000; | ||
40 | + text-align: center; | ||
41 | +} | ||
42 | + | ||
43 | +#simple-search.focus-in input { | ||
44 | + opacity: 1; | ||
45 | + filter: alpha(opacity=100); | ||
46 | + background: #FFF url(../images/search-light.gif) 1px 50% no-repeat; | ||
47 | +} | ||
48 | + | ||
49 | +#simple-search.focus-out { | ||
50 | + opacity: 0.3; | ||
51 | + filter: alpha(opacity=30); | ||
52 | +} | ||
53 | + | ||
54 | + | ||
55 | +/* * * User Menu * * * * * * * * * * * */ | ||
56 | + | ||
57 | +#user_menu { | ||
58 | + top: 4px; | ||
59 | + right: 350px; | ||
60 | + width: 150px; | ||
61 | + padding: 2px 0px; | ||
62 | + border: 1px solid transparent; | ||
63 | +} | ||
64 | +#user_menu.opened { | ||
65 | + border: 1px solid #A40000; | ||
66 | + background: #F57900; | ||
67 | +} | ||
68 | + | ||
69 | +#user_menu_head { | ||
70 | + overflow: hidden; | ||
71 | + line-height: 20px | ||
72 | +} | ||
73 | + | ||
74 | +#user_menu a, | ||
75 | +#user_menu_head a { | ||
76 | + color: #FFF; | ||
77 | +} | ||
78 | + | ||
79 | +#user_menu img { | ||
80 | + top: -2px; | ||
81 | +} | ||
82 | + | ||
83 | +#user_menu_ul { | ||
84 | + position: relative; | ||
85 | + top: 3px; | ||
86 | + left: 0px; | ||
87 | + background: transparent; | ||
88 | + border: none; | ||
89 | +} | ||
90 | + | ||
91 | +/* * * Assets Menu * * * * * * * * * * * */ | ||
92 | + | ||
93 | +#assets_menu { | ||
94 | + position: absolute; | ||
95 | + top: 6px; | ||
96 | + right: 160px; | ||
97 | + padding: 0px; | ||
98 | +} | ||
99 | + | ||
100 | +#assets_menu_layout_iten { | ||
101 | + display: none; | ||
102 | +} | ||
103 | + | ||
104 | +#assets_menu_list { | ||
105 | + padding: 0px; | ||
106 | + background: transparent; | ||
107 | +} | ||
108 | + | ||
109 | +#assets_menu ul { | ||
110 | + height: auto; | ||
111 | + max-width: none; | ||
112 | + width: auto; | ||
113 | + overflow: visible; | ||
114 | +} | ||
115 | +#assets_menu li { | ||
116 | + margin: 0px; | ||
117 | + padding: 0px 4px; | ||
118 | + float: left; | ||
119 | +} | ||
120 | + | ||
121 | +#assets_menu a { | ||
122 | + letter-spacing: 0px; | ||
123 | + color: #FFF; | ||
124 | + position: relative; | ||
125 | + overflow: visible; | ||
126 | + opacity: 0.6; | ||
127 | + filter: alpha(opacity=60); | ||
128 | +} | ||
129 | +#assets_menu a:hover { | ||
130 | + background: transparent; | ||
131 | + opacity: 1; | ||
132 | + filter: alpha(opacity=100); | ||
133 | +} | ||
134 | + | ||
135 | +#assets_menu a strong { | ||
136 | + position: absolute; | ||
137 | + top: 20px; | ||
138 | + left: -10px; | ||
139 | + background: #F57900; | ||
140 | + border: 1px solid #A40000; | ||
141 | + padding: 1px 4px; | ||
142 | + display: none; | ||
143 | +} | ||
144 | + | ||
145 | +#assets_menu a:hover strong { | ||
146 | + display: block; | ||
147 | + -moz-border-radius: 4px; | ||
148 | +} | ||
149 | + |
public/designs/themes/zen3/theme.yml
public/javascripts/auto-open-menu.js
@@ -24,6 +24,8 @@ function setAutoOpenMenu( menu ) { | @@ -24,6 +24,8 @@ function setAutoOpenMenu( menu ) { | ||
24 | 24 | ||
25 | menu.onmouseover = function () { | 25 | menu.onmouseover = function () { |
26 | clearTimeout( this.timeoutClose ); | 26 | clearTimeout( this.timeoutClose ); |
27 | + this.className = this.className.replace( / closed/g, "" ); | ||
28 | + if ( !/menu-opened/.test(this.className) ) { this.className += " opened" } | ||
27 | var mul = this.mul; | 29 | var mul = this.mul; |
28 | if ( mul.paddingBottom ) mul.parentNode.style.paddingBottom = mul.paddingBottom +"px"; | 30 | if ( mul.paddingBottom ) mul.parentNode.style.paddingBottom = mul.paddingBottom +"px"; |
29 | if ( mul.h < mul.maxSize ) { | 31 | if ( mul.h < mul.maxSize ) { |
@@ -54,7 +56,9 @@ function setAutoOpenMenu( menu ) { | @@ -54,7 +56,9 @@ function setAutoOpenMenu( menu ) { | ||
54 | mul.style.height = mul.h +"px"; | 56 | mul.style.height = mul.h +"px"; |
55 | if ( mul.paddingBottom ) mul.parentNode.style.paddingBottom = "0px"; | 57 | if ( mul.paddingBottom ) mul.parentNode.style.paddingBottom = "0px"; |
56 | mul.inc = 2; | 58 | mul.inc = 2; |
57 | - } | 59 | + this.className = this.className.replace( / opened/g, "" ); |
60 | + this.className += " closed" | ||
61 | + } | ||
58 | } else { | 62 | } else { |
59 | // Work arround IE bug | 63 | // Work arround IE bug |
60 | this.timeoutClose = setTimeout( "window['autoOpenMenu-"+this.id+"'].onmouseout(true, true)", 200 ); | 64 | this.timeoutClose = setTimeout( "window['autoOpenMenu-"+this.id+"'].onmouseout(true, true)", 200 ); |
public/javascripts/menu.js
@@ -49,7 +49,8 @@ function prepareMenu(id, options) { | @@ -49,7 +49,8 @@ function prepareMenu(id, options) { | ||
49 | link.closeSubMenu = | 49 | link.closeSubMenu = |
50 | function(){ | 50 | function(){ |
51 | this.subMenu.style.display = "none"; | 51 | this.subMenu.style.display = "none"; |
52 | - link.className = link.className.replace( / menu-opened/g, "" ); | 52 | + //link.className = link.className.replace( / menu-opened/g, "" ); |
53 | + this.className = this.className.replace( / menu-opened/g, "" ); | ||
53 | } | 54 | } |
54 | 55 | ||
55 | //link.onclick = function(){ this.openSubMenu(true); return false }Is not working | 56 | //link.onclick = function(){ this.openSubMenu(true); return false }Is not working |
public/javascripts/noosfero-show-help.js
@@ -2,10 +2,10 @@ | @@ -2,10 +2,10 @@ | ||
2 | function mouseHelpOnOff() { | 2 | function mouseHelpOnOff() { |
3 | if ( pageHelp.info.updateBox ) { | 3 | if ( pageHelp.info.updateBox ) { |
4 | showMouseHelpOff() | 4 | showMouseHelpOff() |
5 | - $("btShowHelp").className = "icon-help32on"; | 5 | + $("btShowHelp").className = "icon-help32on help-on"; |
6 | } else { | 6 | } else { |
7 | showMouseHelpOn() | 7 | showMouseHelpOn() |
8 | - $("btShowHelp").className = "icon-help32off"; | 8 | + $("btShowHelp").className = "icon-help32off help-off"; |
9 | } | 9 | } |
10 | var date = new Date(); | 10 | var date = new Date(); |
11 | // open/close help on help button is remembed by one year: | 11 | // open/close help on help button is remembed by one year: |
public/stylesheets/help.css
@@ -36,7 +36,7 @@ | @@ -36,7 +36,7 @@ | ||
36 | margin: 5px 10px 5px -5px; | 36 | margin: 5px 10px 5px -5px; |
37 | width: 48px; | 37 | width: 48px; |
38 | height: 48px; | 38 | height: 48px; |
39 | - background: url("/images/help-avatar.gif"); | 39 | + background: url("../images/help-avatar.gif"); |
40 | } | 40 | } |
41 | .msie6 .helpAvatar { | 41 | .msie6 .helpAvatar { |
42 | margin: 5px 8px 5px -2px; | 42 | margin: 5px 8px 5px -2px; |