postrunner 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/postrunner/ActivitiesDB.rb +86 -31
- data/lib/postrunner/Activity.rb +222 -30
- data/lib/postrunner/ActivityLink.rb +59 -0
- data/lib/postrunner/ActivityListView.rb +37 -90
- data/lib/postrunner/ActivitySummary.rb +12 -12
- data/lib/postrunner/ActivityView.rb +49 -72
- data/lib/postrunner/BackedUpFile.rb +56 -0
- data/lib/postrunner/ChartView.rb +14 -16
- data/lib/postrunner/DeviceList.rb +3 -7
- data/lib/postrunner/FlexiTable.rb +28 -1
- data/lib/postrunner/HTMLBuilder.rb +64 -16
- data/lib/postrunner/Main.rb +63 -19
- data/lib/postrunner/NavButtonRow.rb +103 -0
- data/lib/postrunner/PagingButtons.rb +77 -0
- data/lib/postrunner/PersonalRecords.rb +338 -79
- data/lib/postrunner/RecordListPageView.rb +69 -0
- data/lib/postrunner/RuntimeConfig.rb +5 -3
- data/lib/postrunner/TrackView.rb +14 -16
- data/lib/postrunner/UserProfileView.rb +3 -7
- data/lib/postrunner/View.rb +97 -0
- data/lib/postrunner/ViewBottom.rb +54 -0
- data/lib/postrunner/ViewButtons.rb +68 -0
- data/lib/postrunner/ViewFrame.rb +93 -0
- data/lib/postrunner/ViewTop.rb +80 -0
- data/lib/postrunner/version.rb +1 -1
- data/misc/icons/activities.png +0 -0
- data/misc/icons/activities.svg +1582 -0
- data/misc/icons/record-small.png +0 -0
- data/misc/icons/record.png +0 -0
- data/misc/icons/record.svg +15712 -0
- data/spec/ActivitySummary_spec.rb +3 -1
- data/spec/PostRunner_spec.rb +45 -0
- data/spec/View_spec.rb +61 -0
- data/spec/spec_helper.rb +21 -7
- metadata +19 -3
- data/lib/postrunner/ViewWidgets.rb +0 -153
@@ -0,0 +1,80 @@
|
|
1
|
+
#!/usr/bin/env ruby -w
|
2
|
+
# encoding: UTF-8
|
3
|
+
#
|
4
|
+
# = ViewTop.rb -- PostRunner - Manage the data from your Garmin sport devices.
|
5
|
+
#
|
6
|
+
# Copyright (c) 2015 by Chris Schlaeger <cs@taskjuggler.org>
|
7
|
+
#
|
8
|
+
# This program is free software; you can redistribute it and/or modify
|
9
|
+
# it under the terms of version 2 of the GNU General Public License as
|
10
|
+
# published by the Free Software Foundation.
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'postrunner/HTMLBuilder'
|
14
|
+
require 'postrunner/NavButtonRow'
|
15
|
+
|
16
|
+
module PostRunner
|
17
|
+
|
18
|
+
# This class generates the top part of the HTML page. It contains the logo
|
19
|
+
# and the menu and navigation buttons.
|
20
|
+
class ViewTop
|
21
|
+
|
22
|
+
# Create a ViewTop object.
|
23
|
+
# @param views [Array of NavButtonDef] icons and URLs for views
|
24
|
+
# @param pages [Array of NavButtonDef] Full list of pages of this view.
|
25
|
+
def initialize(views, pages)
|
26
|
+
@views = views
|
27
|
+
@pages = pages
|
28
|
+
end
|
29
|
+
|
30
|
+
# Generate the HTML code to that describes the top section.
|
31
|
+
# @param doc [HTMLBuilder] Reference to the HTML document to add to.
|
32
|
+
def to_html(doc)
|
33
|
+
doc.unique(:viewtop_style) {
|
34
|
+
doc.head { doc.style(style) }
|
35
|
+
}
|
36
|
+
doc.div({ :class => 'titlebar' }) {
|
37
|
+
doc.div('PostRunner', { :class => 'title' })
|
38
|
+
|
39
|
+
page_selector = NavButtonRow.new('right')
|
40
|
+
@pages.each do |p|
|
41
|
+
page_selector.addButton(p.icon, p.url)
|
42
|
+
end
|
43
|
+
page_selector.to_html(doc)
|
44
|
+
|
45
|
+
view_selector = NavButtonRow.new
|
46
|
+
@views.each do |v|
|
47
|
+
view_selector.addButton(v.icon, v.url)
|
48
|
+
end
|
49
|
+
view_selector.to_html(doc)
|
50
|
+
}
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def style
|
56
|
+
<<EOT
|
57
|
+
.titlebar {
|
58
|
+
width: 100%;
|
59
|
+
height: 50px;
|
60
|
+
margin: 0px;
|
61
|
+
background: linear-gradient(#7FA1FF 0, #002EAC 50px);
|
62
|
+
}
|
63
|
+
.title {
|
64
|
+
float: left;
|
65
|
+
font-size: 24pt;
|
66
|
+
font-style: italic;
|
67
|
+
font-weight: bold;
|
68
|
+
color: #F8F8F8;
|
69
|
+
text-shadow: -1px -1px 0 #5C5C5C,
|
70
|
+
1px -1px 0 #5C5C5C,
|
71
|
+
-1px 1px 0 #5C5C5C,
|
72
|
+
1px 1px 0 #5C5C5C;
|
73
|
+
padding: 3px 30px;
|
74
|
+
}
|
75
|
+
EOT
|
76
|
+
end
|
77
|
+
|
78
|
+
end
|
79
|
+
|
80
|
+
end
|
data/lib/postrunner/version.rb
CHANGED
Binary file
|
@@ -0,0 +1,1582 @@
|
|
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://creativecommons.org/ns#"
|
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="128"
|
13
|
+
height="128"
|
14
|
+
id="svg3669"
|
15
|
+
sodipodi:version="0.32"
|
16
|
+
inkscape:version="0.46"
|
17
|
+
sodipodi:docbase="/home/david/sandbox/split/dolphin file views/32x32"
|
18
|
+
sodipodi:docname="view-list-text.svgz"
|
19
|
+
version="1.0"
|
20
|
+
inkscape:output_extension="org.inkscape.output.svgz.inkscape"
|
21
|
+
inkscape:export-filename="/home/pinheiro/pics/oxygen/scalable/actions/view-list-text.png"
|
22
|
+
inkscape:export-xdpi="90"
|
23
|
+
inkscape:export-ydpi="90">
|
24
|
+
<defs
|
25
|
+
id="defs3671">
|
26
|
+
<linearGradient
|
27
|
+
inkscape:collect="always"
|
28
|
+
id="linearGradient3487">
|
29
|
+
<stop
|
30
|
+
style="stop-color:#535353;stop-opacity:1;"
|
31
|
+
offset="0"
|
32
|
+
id="stop3489" />
|
33
|
+
<stop
|
34
|
+
style="stop-color:#535353;stop-opacity:0;"
|
35
|
+
offset="1"
|
36
|
+
id="stop3491" />
|
37
|
+
</linearGradient>
|
38
|
+
<inkscape:perspective
|
39
|
+
sodipodi:type="inkscape:persp3d"
|
40
|
+
inkscape:vp_x="0 : 64 : 1"
|
41
|
+
inkscape:vp_y="0 : 1000 : 0"
|
42
|
+
inkscape:vp_z="128 : 64 : 1"
|
43
|
+
inkscape:persp3d-origin="64 : 42.666667 : 1"
|
44
|
+
id="perspective307" />
|
45
|
+
<linearGradient
|
46
|
+
id="linearGradient3437">
|
47
|
+
<stop
|
48
|
+
id="stop3439"
|
49
|
+
offset="0"
|
50
|
+
style="stop-color:#cdcdcf;stop-opacity:1" />
|
51
|
+
<stop
|
52
|
+
id="stop3441"
|
53
|
+
offset="1"
|
54
|
+
style="stop-color:#cdcdcf;stop-opacity:1" />
|
55
|
+
</linearGradient>
|
56
|
+
<linearGradient
|
57
|
+
id="linearGradient3417">
|
58
|
+
<stop
|
59
|
+
style="stop-color:#b3b3b6;stop-opacity:1;"
|
60
|
+
offset="0"
|
61
|
+
id="stop3419" />
|
62
|
+
<stop
|
63
|
+
style="stop-color:#cecece;stop-opacity:1;"
|
64
|
+
offset="1"
|
65
|
+
id="stop3421" />
|
66
|
+
</linearGradient>
|
67
|
+
<linearGradient
|
68
|
+
id="linearGradient4711">
|
69
|
+
<stop
|
70
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
71
|
+
offset="0"
|
72
|
+
id="stop4713" />
|
73
|
+
<stop
|
74
|
+
id="stop4715"
|
75
|
+
offset="0.49140647"
|
76
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
77
|
+
<stop
|
78
|
+
style="stop-color:#dcdcdc;stop-opacity:1;"
|
79
|
+
offset="1"
|
80
|
+
id="stop4717" />
|
81
|
+
</linearGradient>
|
82
|
+
<linearGradient
|
83
|
+
id="linearGradient7422">
|
84
|
+
<stop
|
85
|
+
id="stop7424"
|
86
|
+
offset="0"
|
87
|
+
style="stop-color:#cbcbcd;stop-opacity:1;" />
|
88
|
+
<stop
|
89
|
+
style="stop-color:#e0e0e2;stop-opacity:1;"
|
90
|
+
offset="0.5"
|
91
|
+
id="stop7426" />
|
92
|
+
<stop
|
93
|
+
id="stop7428"
|
94
|
+
offset="1"
|
95
|
+
style="stop-color:#f2f2f2;stop-opacity:1;" />
|
96
|
+
</linearGradient>
|
97
|
+
<linearGradient
|
98
|
+
id="linearGradient7244">
|
99
|
+
<stop
|
100
|
+
style="stop-color:#6f6f6f;stop-opacity:1;"
|
101
|
+
offset="0"
|
102
|
+
id="stop7246" />
|
103
|
+
<stop
|
104
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
105
|
+
offset="1"
|
106
|
+
id="stop7248" />
|
107
|
+
</linearGradient>
|
108
|
+
<linearGradient
|
109
|
+
inkscape:collect="always"
|
110
|
+
xlink:href="#linearGradient4711"
|
111
|
+
id="linearGradient7843"
|
112
|
+
gradientUnits="userSpaceOnUse"
|
113
|
+
gradientTransform="matrix(0.121457,0,0,0.1756605,195.18891,503.66043)"
|
114
|
+
x1="-333.0289"
|
115
|
+
y1="-1473.6504"
|
116
|
+
x2="-333.0289"
|
117
|
+
y2="-776.61371" />
|
118
|
+
<linearGradient
|
119
|
+
inkscape:collect="always"
|
120
|
+
xlink:href="#linearGradient7422"
|
121
|
+
id="linearGradient7912"
|
122
|
+
gradientUnits="userSpaceOnUse"
|
123
|
+
gradientTransform="matrix(0.121457,0,0,0.1756605,75.745932,148.34634)"
|
124
|
+
x1="399.77466"
|
125
|
+
y1="727.07941"
|
126
|
+
x2="399.77466"
|
127
|
+
y2="480.60214" />
|
128
|
+
<linearGradient
|
129
|
+
inkscape:collect="always"
|
130
|
+
xlink:href="#linearGradient7244"
|
131
|
+
id="linearGradient12912"
|
132
|
+
x1="1055.3002"
|
133
|
+
y1="-468.66934"
|
134
|
+
x2="1055.3002"
|
135
|
+
y2="-481.76657"
|
136
|
+
gradientUnits="userSpaceOnUse" />
|
137
|
+
<linearGradient
|
138
|
+
inkscape:collect="always"
|
139
|
+
xlink:href="#linearGradient3437"
|
140
|
+
id="linearGradient3423"
|
141
|
+
x1="109.25784"
|
142
|
+
y1="260.75122"
|
143
|
+
x2="109.25784"
|
144
|
+
y2="312.87741"
|
145
|
+
gradientUnits="userSpaceOnUse" />
|
146
|
+
<filter
|
147
|
+
inkscape:collect="always"
|
148
|
+
id="filter4400">
|
149
|
+
<feGaussianBlur
|
150
|
+
inkscape:collect="always"
|
151
|
+
stdDeviation="1.177891"
|
152
|
+
id="feGaussianBlur4402" />
|
153
|
+
</filter>
|
154
|
+
<linearGradient
|
155
|
+
inkscape:collect="always"
|
156
|
+
xlink:href="#linearGradient3487"
|
157
|
+
id="linearGradient3493"
|
158
|
+
x1="68"
|
159
|
+
y1="156"
|
160
|
+
x2="68"
|
161
|
+
y2="4"
|
162
|
+
gradientUnits="userSpaceOnUse" />
|
163
|
+
</defs>
|
164
|
+
<sodipodi:namedview
|
165
|
+
inkscape:document-units="px"
|
166
|
+
pagecolor="#ffffff"
|
167
|
+
bordercolor="#666666"
|
168
|
+
borderopacity="1.0"
|
169
|
+
inkscape:pageopacity="0.0"
|
170
|
+
inkscape:pageshadow="2"
|
171
|
+
inkscape:zoom="2.8284271"
|
172
|
+
inkscape:cx="131.36231"
|
173
|
+
inkscape:cy="36.250876"
|
174
|
+
inkscape:current-layer="layer1"
|
175
|
+
id="namedview3673"
|
176
|
+
inkscape:window-width="937"
|
177
|
+
inkscape:window-height="696"
|
178
|
+
inkscape:window-x="1028"
|
179
|
+
inkscape:window-y="368"
|
180
|
+
showgrid="true"
|
181
|
+
showguides="true"
|
182
|
+
inkscape:guide-bbox="true"
|
183
|
+
width="128px"
|
184
|
+
height="128px"
|
185
|
+
grid_units="px"
|
186
|
+
inkscape:grid-points="true"
|
187
|
+
gridtolerance="10000">
|
188
|
+
<inkscape:grid
|
189
|
+
id="GridFromPre046Settings"
|
190
|
+
type="xygrid"
|
191
|
+
originx="0px"
|
192
|
+
originy="0px"
|
193
|
+
spacingx="4px"
|
194
|
+
spacingy="4px"
|
195
|
+
color="#0000ff"
|
196
|
+
empcolor="#0000ff"
|
197
|
+
opacity="0.2"
|
198
|
+
empopacity="0.4"
|
199
|
+
empspacing="0" />
|
200
|
+
</sodipodi:namedview>
|
201
|
+
<metadata
|
202
|
+
id="metadata3675">
|
203
|
+
<rdf:RDF>
|
204
|
+
<cc:Work
|
205
|
+
rdf:about="">
|
206
|
+
<dc:format>image/svg+xml</dc:format>
|
207
|
+
<dc:type
|
208
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
209
|
+
</cc:Work>
|
210
|
+
</rdf:RDF>
|
211
|
+
</metadata>
|
212
|
+
<g
|
213
|
+
inkscape:label="Layer 1"
|
214
|
+
inkscape:groupmode="layer"
|
215
|
+
id="layer1"
|
216
|
+
transform="translate(-79.62865,-236.8761)">
|
217
|
+
<rect
|
218
|
+
inkscape:export-ydpi="90"
|
219
|
+
inkscape:export-xdpi="90"
|
220
|
+
inkscape:export-filename="/home/pinheiro/Desktop/mock2.png"
|
221
|
+
style="opacity:0.4;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1;filter:url(#filter4400)"
|
222
|
+
id="rect2448"
|
223
|
+
width="124"
|
224
|
+
height="111.6"
|
225
|
+
x="81.628647"
|
226
|
+
y="239.27611"
|
227
|
+
inkscape:r_cx="true"
|
228
|
+
inkscape:r_cy="true"
|
229
|
+
ry="2.5302498"
|
230
|
+
rx="2.1433532"
|
231
|
+
transform="matrix(1,0,0,1.0035842,0,2.7423747)" />
|
232
|
+
<path
|
233
|
+
sodipodi:nodetypes="ccc"
|
234
|
+
id="path2276"
|
235
|
+
d="M 124.00035,-57.652544 L 124.00035,-60.488828 L 124.00035,-57.652544 z "
|
236
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
237
|
+
<path
|
238
|
+
sodipodi:nodetypes="ccc"
|
239
|
+
id="path3242"
|
240
|
+
d="M -10.967378,-50.02293 L -10.967378,-52.859211 L -10.967378,-50.02293 z "
|
241
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
242
|
+
<path
|
243
|
+
sodipodi:nodetypes="ccc"
|
244
|
+
id="path2985"
|
245
|
+
d="M -170.31138,-120.69393 L -170.31138,-123.53021 L -170.31138,-120.69393 z "
|
246
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
247
|
+
<path
|
248
|
+
sodipodi:nodetypes="ccc"
|
249
|
+
id="path3206"
|
250
|
+
d="M -291.59132,-208.61291 L -291.59132,-211.4492 L -291.59132,-208.61291 z "
|
251
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
252
|
+
<g
|
253
|
+
id="layer4"
|
254
|
+
inkscape:label="box"
|
255
|
+
style="display:inline"
|
256
|
+
transform="matrix(1.0148767,0,0,1.0148767,-105.918,-61.880454)" />
|
257
|
+
<g
|
258
|
+
id="layer5"
|
259
|
+
inkscape:label="zip_app"
|
260
|
+
style="display:inline"
|
261
|
+
transform="matrix(1.0148767,0,0,1.0148767,-105.918,-61.880454)" />
|
262
|
+
<path
|
263
|
+
sodipodi:nodetypes="ccc"
|
264
|
+
id="path3946"
|
265
|
+
d="M -41.331563,-141.87945 L -41.331563,-144.71574 L -41.331563,-141.87945 z "
|
266
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
267
|
+
<path
|
268
|
+
sodipodi:nodetypes="ccc"
|
269
|
+
id="path1561"
|
270
|
+
d="M -135.33391,-66.886514 L -135.33391,-68.43596 L -135.33391,-66.886514 z "
|
271
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
272
|
+
<rect
|
273
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
274
|
+
id="rect1327"
|
275
|
+
width="1.0148762"
|
276
|
+
height="0"
|
277
|
+
x="-193.67381"
|
278
|
+
y="-124.32849" />
|
279
|
+
<rect
|
280
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
281
|
+
id="rect2482"
|
282
|
+
width="1.0148762"
|
283
|
+
height="0"
|
284
|
+
x="-229.3232"
|
285
|
+
y="-152.26562" />
|
286
|
+
<path
|
287
|
+
sodipodi:nodetypes="ccc"
|
288
|
+
id="path2494"
|
289
|
+
d="M -390.62499,-226.57087 L -390.62499,-229.40715 L -390.62499,-226.57087 z "
|
290
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
291
|
+
<g
|
292
|
+
style="opacity:0.40163933"
|
293
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2748.0383,470.15972)"
|
294
|
+
id="g4640" />
|
295
|
+
<g
|
296
|
+
id="g4646"
|
297
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2748.0383,470.15972)"
|
298
|
+
style="opacity:0.40163933" />
|
299
|
+
<g
|
300
|
+
id="g4730"
|
301
|
+
transform="matrix(1.0148767,0,0,0.6605615,500.54238,477.59645)"
|
302
|
+
style="opacity:0.40163933" />
|
303
|
+
<g
|
304
|
+
style="opacity:0.40163933"
|
305
|
+
transform="matrix(1.0148767,0,0,0.6605615,500.54238,477.59645)"
|
306
|
+
id="g4748" />
|
307
|
+
<path
|
308
|
+
sodipodi:nodetypes="ccc"
|
309
|
+
id="path6923"
|
310
|
+
d="M 131.54671,109.09814 L 131.54671,106.26186 L 131.54671,109.09814 z "
|
311
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
312
|
+
<path
|
313
|
+
sodipodi:nodetypes="ccc"
|
314
|
+
id="path6925"
|
315
|
+
d="M -27.797286,38.427136 L -27.797286,35.59084 L -27.797286,38.427136 z "
|
316
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
317
|
+
<path
|
318
|
+
sodipodi:nodetypes="ccc"
|
319
|
+
id="path6927"
|
320
|
+
d="M -149.07723,-49.491843 L -149.07723,-52.328139 L -149.07723,-49.491843 z "
|
321
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
322
|
+
<g
|
323
|
+
id="g6929"
|
324
|
+
inkscape:label="box"
|
325
|
+
style="display:inline"
|
326
|
+
transform="matrix(1.0148767,0,0,1.0148767,36.596,97.240605)" />
|
327
|
+
<g
|
328
|
+
id="g6931"
|
329
|
+
inkscape:label="zip_app"
|
330
|
+
style="display:inline"
|
331
|
+
transform="matrix(1.0148767,0,0,1.0148767,36.596,97.240605)" />
|
332
|
+
<path
|
333
|
+
sodipodi:nodetypes="ccc"
|
334
|
+
id="path6933"
|
335
|
+
d="M 101.18252,17.241605 L 101.18252,14.405323 L 101.18252,17.241605 z "
|
336
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
337
|
+
<path
|
338
|
+
sodipodi:nodetypes="ccc"
|
339
|
+
id="path6935"
|
340
|
+
d="M 7.1801708,92.234553 L 7.1801708,90.685107 L 7.1801708,92.234553 z "
|
341
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
342
|
+
<rect
|
343
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
344
|
+
id="rect6937"
|
345
|
+
width="1.0148762"
|
346
|
+
height="0"
|
347
|
+
x="-51.159706"
|
348
|
+
y="34.792564" />
|
349
|
+
<rect
|
350
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
351
|
+
id="rect6939"
|
352
|
+
width="1.0148762"
|
353
|
+
height="0"
|
354
|
+
x="-86.809097"
|
355
|
+
y="6.8554554" />
|
356
|
+
<path
|
357
|
+
sodipodi:nodetypes="ccc"
|
358
|
+
id="path6941"
|
359
|
+
d="M -248.1109,-67.4498 L -248.1109,-70.286084 L -248.1109,-67.4498 z "
|
360
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
361
|
+
<g
|
362
|
+
style="opacity:0.40163933"
|
363
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2605.5245,629.28073)"
|
364
|
+
id="g6943" />
|
365
|
+
<g
|
366
|
+
id="g6945"
|
367
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2605.5245,629.28073)"
|
368
|
+
style="opacity:0.40163933" />
|
369
|
+
<g
|
370
|
+
id="g6947"
|
371
|
+
transform="matrix(1.0148767,0,0,0.6605615,643.05646,636.7176)"
|
372
|
+
style="opacity:0.40163933" />
|
373
|
+
<g
|
374
|
+
style="opacity:0.40163933"
|
375
|
+
transform="matrix(1.0148767,0,0,0.6605615,643.05646,636.7176)"
|
376
|
+
id="g6949" />
|
377
|
+
<path
|
378
|
+
sodipodi:nodetypes="ccc"
|
379
|
+
id="path7559"
|
380
|
+
d="M 81.310335,56.324571 L 81.310335,53.48829 L 81.310335,56.324571 z "
|
381
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
382
|
+
<path
|
383
|
+
sodipodi:nodetypes="ccc"
|
384
|
+
id="path7561"
|
385
|
+
d="M -78.033659,-14.346435 L -78.033659,-17.182717 L -78.033659,-14.346435 z "
|
386
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
387
|
+
<path
|
388
|
+
sodipodi:nodetypes="ccc"
|
389
|
+
id="path7563"
|
390
|
+
d="M -199.31361,-102.26541 L -199.31361,-105.1017 L -199.31361,-102.26541 z "
|
391
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
392
|
+
<g
|
393
|
+
id="g7565"
|
394
|
+
inkscape:label="box"
|
395
|
+
style="display:inline"
|
396
|
+
transform="matrix(1.0148767,0,0,1.0148767,-13.640366,44.467018)" />
|
397
|
+
<g
|
398
|
+
id="g7567"
|
399
|
+
inkscape:label="zip_app"
|
400
|
+
style="display:inline"
|
401
|
+
transform="matrix(1.0148767,0,0,1.0148767,-13.640366,44.467018)" />
|
402
|
+
<path
|
403
|
+
sodipodi:nodetypes="ccc"
|
404
|
+
id="path7569"
|
405
|
+
d="M 50.946152,-35.531953 L 50.946152,-38.368234 L 50.946152,-35.531953 z "
|
406
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
407
|
+
<path
|
408
|
+
sodipodi:nodetypes="ccc"
|
409
|
+
id="path7571"
|
410
|
+
d="M -43.056203,39.460982 L -43.056203,37.911535 L -43.056203,39.460982 z "
|
411
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
412
|
+
<rect
|
413
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
414
|
+
id="rect7573"
|
415
|
+
width="1.0148762"
|
416
|
+
height="0"
|
417
|
+
x="-101.39607"
|
418
|
+
y="-17.980991" />
|
419
|
+
<rect
|
420
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
421
|
+
id="rect7575"
|
422
|
+
width="1.0148762"
|
423
|
+
height="0"
|
424
|
+
x="-137.04547"
|
425
|
+
y="-45.918106" />
|
426
|
+
<path
|
427
|
+
sodipodi:nodetypes="ccc"
|
428
|
+
id="path7577"
|
429
|
+
d="M -298.34728,-120.22337 L -298.34728,-123.05965 L -298.34728,-120.22337 z "
|
430
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
431
|
+
<g
|
432
|
+
style="opacity:0.40163933"
|
433
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2655.7605,576.50714)"
|
434
|
+
id="g7579" />
|
435
|
+
<g
|
436
|
+
id="g7581"
|
437
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2655.7605,576.50714)"
|
438
|
+
style="opacity:0.40163933" />
|
439
|
+
<g
|
440
|
+
id="g7583"
|
441
|
+
transform="matrix(1.0148767,0,0,0.6605615,592.81999,583.94401)"
|
442
|
+
style="opacity:0.40163933" />
|
443
|
+
<g
|
444
|
+
style="opacity:0.40163933"
|
445
|
+
transform="matrix(1.0148767,0,0,0.6605615,592.81999,583.94401)"
|
446
|
+
id="g7585" />
|
447
|
+
<path
|
448
|
+
sodipodi:nodetypes="ccc"
|
449
|
+
id="path8394"
|
450
|
+
d="M -311.70048,181.91552 L -311.70048,179.07922 L -311.70048,181.91552 z "
|
451
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
452
|
+
<path
|
453
|
+
sodipodi:nodetypes="ccc"
|
454
|
+
id="path8396"
|
455
|
+
d="M -471.0445,111.2445 L -471.0445,108.40822 L -471.0445,111.2445 z "
|
456
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
457
|
+
<path
|
458
|
+
sodipodi:nodetypes="ccc"
|
459
|
+
id="path8398"
|
460
|
+
d="M -592.32444,23.325521 L -592.32444,20.489239 L -592.32444,23.325521 z "
|
461
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
462
|
+
<g
|
463
|
+
id="g8400"
|
464
|
+
inkscape:label="box"
|
465
|
+
style="display:inline"
|
466
|
+
transform="matrix(1.0148767,0,0,1.0148767,-406.65121,170.05797)" />
|
467
|
+
<g
|
468
|
+
id="g8402"
|
469
|
+
inkscape:label="zip_app"
|
470
|
+
style="display:inline"
|
471
|
+
transform="matrix(1.0148767,0,0,1.0148767,-406.65121,170.05797)" />
|
472
|
+
<path
|
473
|
+
sodipodi:nodetypes="ccc"
|
474
|
+
id="path8404"
|
475
|
+
d="M -342.06469,90.058982 L -342.06469,87.222701 L -342.06469,90.058982 z "
|
476
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
477
|
+
<path
|
478
|
+
sodipodi:nodetypes="ccc"
|
479
|
+
id="path8406"
|
480
|
+
d="M -436.06704,165.05193 L -436.06704,163.50247 L -436.06704,165.05193 z "
|
481
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
482
|
+
<rect
|
483
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
484
|
+
id="rect8408"
|
485
|
+
width="1.0148762"
|
486
|
+
height="0"
|
487
|
+
x="-494.40692"
|
488
|
+
y="107.60993" />
|
489
|
+
<rect
|
490
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
491
|
+
id="rect8410"
|
492
|
+
width="1.0148762"
|
493
|
+
height="0"
|
494
|
+
x="-530.05627"
|
495
|
+
y="79.672829" />
|
496
|
+
<path
|
497
|
+
sodipodi:nodetypes="ccc"
|
498
|
+
id="path8412"
|
499
|
+
d="M -691.35811,5.367577 L -691.35811,2.5312809 L -691.35811,5.367577 z "
|
500
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
501
|
+
<g
|
502
|
+
style="opacity:0.40163933"
|
503
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-3048.7709,702.09809)"
|
504
|
+
id="g8414" />
|
505
|
+
<g
|
506
|
+
id="g8416"
|
507
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-3048.7709,702.09809)"
|
508
|
+
style="opacity:0.40163933" />
|
509
|
+
<g
|
510
|
+
id="g8418"
|
511
|
+
transform="matrix(1.0148767,0,0,0.6605615,199.80926,709.53496)"
|
512
|
+
style="opacity:0.40163933" />
|
513
|
+
<g
|
514
|
+
style="opacity:0.40163933"
|
515
|
+
transform="matrix(1.0148767,0,0,0.6605615,199.80926,709.53496)"
|
516
|
+
id="g8420" />
|
517
|
+
<path
|
518
|
+
sodipodi:nodetypes="ccc"
|
519
|
+
id="path9104"
|
520
|
+
d="M -55.553696,360.93168 L -55.553696,358.09539 L -55.553696,360.93168 z "
|
521
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
522
|
+
<path
|
523
|
+
sodipodi:nodetypes="ccc"
|
524
|
+
id="path9106"
|
525
|
+
d="M -214.89769,290.26066 L -214.89769,287.42437 L -214.89769,290.26066 z "
|
526
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
527
|
+
<path
|
528
|
+
sodipodi:nodetypes="ccc"
|
529
|
+
id="path9108"
|
530
|
+
d="M -336.17763,202.34167 L -336.17763,199.50539 L -336.17763,202.34167 z "
|
531
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
532
|
+
<g
|
533
|
+
id="g9110"
|
534
|
+
inkscape:label="box"
|
535
|
+
style="display:inline"
|
536
|
+
transform="matrix(1.0148767,0,0,1.0148767,-150.50435,349.07409)" />
|
537
|
+
<g
|
538
|
+
id="g9112"
|
539
|
+
inkscape:label="zip_app"
|
540
|
+
style="display:inline"
|
541
|
+
transform="matrix(1.0148767,0,0,1.0148767,-150.50435,349.07409)" />
|
542
|
+
<path
|
543
|
+
sodipodi:nodetypes="ccc"
|
544
|
+
id="path9114"
|
545
|
+
d="M -85.917879,269.07514 L -85.917879,266.23885 L -85.917879,269.07514 z "
|
546
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
547
|
+
<path
|
548
|
+
sodipodi:nodetypes="ccc"
|
549
|
+
id="path9116"
|
550
|
+
d="M -179.92023,344.06809 L -179.92023,342.51863 L -179.92023,344.06809 z "
|
551
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
552
|
+
<rect
|
553
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
554
|
+
id="rect9118"
|
555
|
+
width="1.0148762"
|
556
|
+
height="0"
|
557
|
+
x="-238.26013"
|
558
|
+
y="286.62607" />
|
559
|
+
<rect
|
560
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
561
|
+
id="rect9120"
|
562
|
+
width="1.0148762"
|
563
|
+
height="0"
|
564
|
+
x="-273.90948"
|
565
|
+
y="258.68896" />
|
566
|
+
<path
|
567
|
+
sodipodi:nodetypes="ccc"
|
568
|
+
id="path9122"
|
569
|
+
d="M -435.2113,184.38373 L -435.2113,181.54743 L -435.2113,184.38373 z "
|
570
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
571
|
+
<g
|
572
|
+
style="opacity:0.40163933"
|
573
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2792.6249,881.11422)"
|
574
|
+
id="g9124" />
|
575
|
+
<g
|
576
|
+
id="g9126"
|
577
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2792.6249,881.11422)"
|
578
|
+
style="opacity:0.40163933" />
|
579
|
+
<g
|
580
|
+
id="g9128"
|
581
|
+
transform="matrix(1.0148767,0,0,0.6605615,455.95601,888.55109)"
|
582
|
+
style="opacity:0.40163933" />
|
583
|
+
<g
|
584
|
+
style="opacity:0.40163933"
|
585
|
+
transform="matrix(1.0148767,0,0,0.6605615,455.95601,888.55109)"
|
586
|
+
id="g9130" />
|
587
|
+
<path
|
588
|
+
sodipodi:nodetypes="ccc"
|
589
|
+
id="path3633"
|
590
|
+
d="M -157.70057,123.8935 L -157.70057,121.0572 L -157.70057,123.8935 z "
|
591
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
592
|
+
<path
|
593
|
+
sodipodi:nodetypes="ccc"
|
594
|
+
id="path3635"
|
595
|
+
d="M -317.04457,53.222473 L -317.04457,50.386192 L -317.04457,53.222473 z "
|
596
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
597
|
+
<path
|
598
|
+
sodipodi:nodetypes="ccc"
|
599
|
+
id="path3637"
|
600
|
+
d="M -438.32452,-34.696491 L -438.32452,-37.532787 L -438.32452,-34.696491 z "
|
601
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
602
|
+
<g
|
603
|
+
id="g3639"
|
604
|
+
inkscape:label="box"
|
605
|
+
style="display:inline"
|
606
|
+
transform="matrix(1.0148767,0,0,1.0148767,-252.6514,112.03596)" />
|
607
|
+
<g
|
608
|
+
id="g3641"
|
609
|
+
inkscape:label="zip_app"
|
610
|
+
style="display:inline"
|
611
|
+
transform="matrix(1.0148767,0,0,1.0148767,-252.6514,112.03596)" />
|
612
|
+
<path
|
613
|
+
sodipodi:nodetypes="ccc"
|
614
|
+
id="path3643"
|
615
|
+
d="M -188.06476,32.036956 L -188.06476,29.200675 L -188.06476,32.036956 z "
|
616
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
617
|
+
<path
|
618
|
+
sodipodi:nodetypes="ccc"
|
619
|
+
id="path3645"
|
620
|
+
d="M -282.06711,107.02991 L -282.06711,105.48044 L -282.06711,107.02991 z "
|
621
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
622
|
+
<rect
|
623
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
624
|
+
id="rect3647"
|
625
|
+
width="1.0148762"
|
626
|
+
height="0"
|
627
|
+
x="-340.40701"
|
628
|
+
y="49.587921" />
|
629
|
+
<rect
|
630
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
631
|
+
id="rect3649"
|
632
|
+
width="1.0148762"
|
633
|
+
height="0"
|
634
|
+
x="-376.0564"
|
635
|
+
y="21.650791" />
|
636
|
+
<path
|
637
|
+
sodipodi:nodetypes="ccc"
|
638
|
+
id="path3651"
|
639
|
+
d="M -537.35819,-52.65445 L -537.35819,-55.490731 L -537.35819,-52.65445 z "
|
640
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
641
|
+
<g
|
642
|
+
style="opacity:0.40163933"
|
643
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2894.7709,644.07608)"
|
644
|
+
id="g3653" />
|
645
|
+
<g
|
646
|
+
id="g3655"
|
647
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2894.7709,644.07608)"
|
648
|
+
style="opacity:0.40163933" />
|
649
|
+
<g
|
650
|
+
id="g3657"
|
651
|
+
transform="matrix(1.0148767,0,0,0.6605615,353.80908,651.51294)"
|
652
|
+
style="opacity:0.40163933" />
|
653
|
+
<g
|
654
|
+
style="opacity:0.40163933"
|
655
|
+
transform="matrix(1.0148767,0,0,0.6605615,353.80908,651.51294)"
|
656
|
+
id="g3659" />
|
657
|
+
<rect
|
658
|
+
rx="2.0742123"
|
659
|
+
ry="2.4486284"
|
660
|
+
inkscape:r_cy="true"
|
661
|
+
inkscape:r_cx="true"
|
662
|
+
y="244.87613"
|
663
|
+
x="83.628647"
|
664
|
+
height="107.99998"
|
665
|
+
width="119.99998"
|
666
|
+
id="rect2894"
|
667
|
+
style="fill:url(#linearGradient7912);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
668
|
+
inkscape:export-filename="/home/pinheiro/Desktop/mock2.png"
|
669
|
+
inkscape:export-xdpi="90"
|
670
|
+
inkscape:export-ydpi="90" />
|
671
|
+
<path
|
672
|
+
sodipodi:nodetypes="ccc"
|
673
|
+
id="path10461"
|
674
|
+
d="M -155.66325,122.95497 L -155.66325,120.11867 L -155.66325,122.95497 z "
|
675
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
676
|
+
<path
|
677
|
+
sodipodi:nodetypes="ccc"
|
678
|
+
id="path10463"
|
679
|
+
d="M -315.00724,52.283945 L -315.00724,49.447664 L -315.00724,52.283945 z "
|
680
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
681
|
+
<path
|
682
|
+
sodipodi:nodetypes="ccc"
|
683
|
+
id="path10465"
|
684
|
+
d="M -436.28719,-35.635034 L -436.28719,-38.471315 L -436.28719,-35.635034 z "
|
685
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
686
|
+
<g
|
687
|
+
id="g10467"
|
688
|
+
inkscape:label="box"
|
689
|
+
style="display:inline"
|
690
|
+
transform="matrix(1.0148767,0,0,1.0148767,-250.61396,111.0974)" />
|
691
|
+
<g
|
692
|
+
id="g10469"
|
693
|
+
inkscape:label="zip_app"
|
694
|
+
style="display:inline"
|
695
|
+
transform="matrix(1.0148767,0,0,1.0148767,-250.61396,111.0974)" />
|
696
|
+
<path
|
697
|
+
sodipodi:nodetypes="ccc"
|
698
|
+
id="path10471"
|
699
|
+
d="M -186.02744,31.098428 L -186.02744,28.262146 L -186.02744,31.098428 z "
|
700
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
701
|
+
<path
|
702
|
+
sodipodi:nodetypes="ccc"
|
703
|
+
id="path10473"
|
704
|
+
d="M -280.02978,106.09138 L -280.02978,104.54192 L -280.02978,106.09138 z "
|
705
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
706
|
+
<rect
|
707
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
708
|
+
id="rect10475"
|
709
|
+
width="1.0148762"
|
710
|
+
height="0"
|
711
|
+
x="-338.36966"
|
712
|
+
y="48.64938" />
|
713
|
+
<rect
|
714
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
715
|
+
id="rect10477"
|
716
|
+
width="1.0148762"
|
717
|
+
height="0"
|
718
|
+
x="-374.01904"
|
719
|
+
y="20.712275" />
|
720
|
+
<path
|
721
|
+
sodipodi:nodetypes="ccc"
|
722
|
+
id="path10479"
|
723
|
+
d="M -535.32086,-53.592984 L -535.32086,-56.429268 L -535.32086,-53.592984 z "
|
724
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
725
|
+
<g
|
726
|
+
style="opacity:0.40163933"
|
727
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2892.7339,643.13752)"
|
728
|
+
id="g10481" />
|
729
|
+
<g
|
730
|
+
id="g10483"
|
731
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2892.7339,643.13752)"
|
732
|
+
style="opacity:0.40163933" />
|
733
|
+
<g
|
734
|
+
id="g10485"
|
735
|
+
transform="matrix(1.0148767,0,0,0.6605615,355.84651,650.57439)"
|
736
|
+
style="opacity:0.40163933" />
|
737
|
+
<g
|
738
|
+
style="opacity:0.40163933"
|
739
|
+
transform="matrix(1.0148767,0,0,0.6605615,355.84651,650.57439)"
|
740
|
+
id="g10487" />
|
741
|
+
<g
|
742
|
+
id="g10952"
|
743
|
+
transform="matrix(1.4999999,0,0,1.4999997,-39.814316,-120.43796)">
|
744
|
+
<path
|
745
|
+
inkscape:export-ydpi="90"
|
746
|
+
inkscape:export-xdpi="90"
|
747
|
+
inkscape:export-filename="/home/pinheiro/Desktop/mock2.png"
|
748
|
+
sodipodi:type="arc"
|
749
|
+
style="opacity:1;fill:url(#linearGradient12912);fill-opacity:1;stroke:none;stroke-width:3.82999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.1375"
|
750
|
+
id="path2972"
|
751
|
+
sodipodi:cx="1055.3002"
|
752
|
+
sodipodi:cy="-478.60516"
|
753
|
+
sodipodi:rx="5.0602889"
|
754
|
+
sodipodi:ry="5.0602889"
|
755
|
+
d="M 1060.3605 -478.60516 A 5.0602889 5.0602889 0 1 1 1050.2399,-478.60516 A 5.0602889 5.0602889 0 1 1 1060.3605 -478.60516 z"
|
756
|
+
transform="matrix(0.7904687,0,0,0.7904687,-678.5531,631.1985)" />
|
757
|
+
</g>
|
758
|
+
<path
|
759
|
+
sodipodi:nodetypes="ccc"
|
760
|
+
id="path2875"
|
761
|
+
d="M 148.21519,68.932055 L 148.21519,66.095774 L 148.21519,68.932055 z "
|
762
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
763
|
+
<path
|
764
|
+
sodipodi:nodetypes="ccc"
|
765
|
+
id="path2879"
|
766
|
+
d="M 13.247467,76.561684 L 13.247467,73.725388 L 13.247467,76.561684 z "
|
767
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
768
|
+
<path
|
769
|
+
sodipodi:nodetypes="ccc"
|
770
|
+
id="path2881"
|
771
|
+
d="M -146.09653,5.8906629 L -146.09653,3.0543815 L -146.09653,5.8906629 z "
|
772
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
773
|
+
<path
|
774
|
+
sodipodi:nodetypes="ccc"
|
775
|
+
id="path2883"
|
776
|
+
d="M -267.37648,-82.028304 L -267.37648,-84.864599 L -267.37648,-82.028304 z "
|
777
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
778
|
+
<g
|
779
|
+
id="g2885"
|
780
|
+
inkscape:label="box"
|
781
|
+
style="display:inline"
|
782
|
+
transform="matrix(1.0148767,0,0,1.0148767,-81.703147,64.704175)" />
|
783
|
+
<g
|
784
|
+
id="g2887"
|
785
|
+
inkscape:label="zip_app"
|
786
|
+
style="display:inline"
|
787
|
+
transform="matrix(1.0148767,0,0,1.0148767,-81.703147,64.704175)" />
|
788
|
+
<path
|
789
|
+
sodipodi:nodetypes="ccc"
|
790
|
+
id="path2889"
|
791
|
+
d="M -17.116717,-15.294854 L -17.116717,-18.131136 L -17.116717,-15.294854 z "
|
792
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
793
|
+
<path
|
794
|
+
sodipodi:nodetypes="ccc"
|
795
|
+
id="path2891"
|
796
|
+
d="M -111.11908,59.698095 L -111.11908,58.148648 L -111.11908,59.698095 z "
|
797
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
798
|
+
<rect
|
799
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
800
|
+
id="rect2893"
|
801
|
+
width="1.0148762"
|
802
|
+
height="0"
|
803
|
+
x="-169.45897"
|
804
|
+
y="2.2560859" />
|
805
|
+
<rect
|
806
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
807
|
+
id="rect2895"
|
808
|
+
width="1.0148762"
|
809
|
+
height="0"
|
810
|
+
x="-205.10835"
|
811
|
+
y="-25.681009" />
|
812
|
+
<path
|
813
|
+
sodipodi:nodetypes="ccc"
|
814
|
+
id="path2897"
|
815
|
+
d="M -366.41015,-99.98626 L -366.41015,-102.82255 L -366.41015,-99.98626 z "
|
816
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
817
|
+
<g
|
818
|
+
style="opacity:0.40163933"
|
819
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2723.823,596.7443)"
|
820
|
+
id="g2899" />
|
821
|
+
<g
|
822
|
+
id="g2901"
|
823
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2723.823,596.7443)"
|
824
|
+
style="opacity:0.40163933" />
|
825
|
+
<g
|
826
|
+
id="g2903"
|
827
|
+
transform="matrix(1.0148767,0,0,0.6605615,524.75712,604.18101)"
|
828
|
+
style="opacity:0.40163933" />
|
829
|
+
<g
|
830
|
+
style="opacity:0.40163933"
|
831
|
+
transform="matrix(1.0148767,0,0,0.6605615,524.75712,604.18101)"
|
832
|
+
id="g2905" />
|
833
|
+
<path
|
834
|
+
sodipodi:nodetypes="ccc"
|
835
|
+
id="path2907"
|
836
|
+
d="M 155.76156,235.68274 L 155.76156,232.84646 L 155.76156,235.68274 z "
|
837
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
838
|
+
<path
|
839
|
+
sodipodi:nodetypes="ccc"
|
840
|
+
id="path2909"
|
841
|
+
d="M -3.5824389,165.01172 L -3.5824389,162.17545 L -3.5824389,165.01172 z "
|
842
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
843
|
+
<path
|
844
|
+
sodipodi:nodetypes="ccc"
|
845
|
+
id="path2911"
|
846
|
+
d="M -124.86239,77.092757 L -124.86239,74.256475 L -124.86239,77.092757 z "
|
847
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
848
|
+
<g
|
849
|
+
id="g2913"
|
850
|
+
inkscape:label="box"
|
851
|
+
style="display:inline"
|
852
|
+
transform="matrix(1.0148767,0,0,1.0148767,60.810854,223.82517)" />
|
853
|
+
<g
|
854
|
+
id="g2915"
|
855
|
+
inkscape:label="zip_app"
|
856
|
+
style="display:inline"
|
857
|
+
transform="matrix(1.0148767,0,0,1.0148767,60.810854,223.82517)" />
|
858
|
+
<path
|
859
|
+
sodipodi:nodetypes="ccc"
|
860
|
+
id="path2917"
|
861
|
+
d="M 125.39737,143.8262 L 125.39737,140.98993 L 125.39737,143.8262 z "
|
862
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
863
|
+
<path
|
864
|
+
sodipodi:nodetypes="ccc"
|
865
|
+
id="path2919"
|
866
|
+
d="M 31.395018,218.81915 L 31.395018,217.26971 L 31.395018,218.81915 z "
|
867
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
868
|
+
<rect
|
869
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
870
|
+
id="rect2921"
|
871
|
+
width="1.0148762"
|
872
|
+
height="0"
|
873
|
+
x="-26.94486"
|
874
|
+
y="161.37717" />
|
875
|
+
<rect
|
876
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
877
|
+
id="rect2923"
|
878
|
+
width="1.0148762"
|
879
|
+
height="0"
|
880
|
+
x="-62.594242"
|
881
|
+
y="133.44006" />
|
882
|
+
<path
|
883
|
+
sodipodi:nodetypes="ccc"
|
884
|
+
id="path2925"
|
885
|
+
d="M -223.89606,59.134798 L -223.89606,56.298517 L -223.89606,59.134798 z "
|
886
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
887
|
+
<g
|
888
|
+
style="opacity:0.40163933"
|
889
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2581.3092,755.8653)"
|
890
|
+
id="g2927" />
|
891
|
+
<g
|
892
|
+
id="g2929"
|
893
|
+
transform="matrix(-0.7946432,0,0,0.6605615,-2581.3092,755.8653)"
|
894
|
+
style="opacity:0.40163933" />
|
895
|
+
<g
|
896
|
+
id="g2931"
|
897
|
+
transform="matrix(1.0148767,0,0,0.6605615,667.2712,763.30217)"
|
898
|
+
style="opacity:0.40163933" />
|
899
|
+
<g
|
900
|
+
style="opacity:0.40163933"
|
901
|
+
transform="matrix(1.0148767,0,0,0.6605615,667.2712,763.30217)"
|
902
|
+
id="g2933" />
|
903
|
+
<path
|
904
|
+
style="fill:url(#linearGradient7843);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
905
|
+
d="M 85.69115,244.87613 C 84.542036,244.87613 83.62865,245.95709 83.62865,247.31362 L 83.62865,350.4386 C 83.62865,351.79515 84.542036,352.8761 85.69115,352.8761 L 201.56615,352.8761 C 202.71528,352.8761 203.62865,351.79515 203.62865,350.4386 L 203.62865,247.31362 C 203.62865,245.95709 202.71528,244.87613 201.56615,244.87613 L 85.69115,244.87613 z M 87.0974,248.53238 L 200.1599,248.53238 C 201.25156,248.53238 202.12865,249.55644 202.12865,250.82926 L 202.12865,349.07923 C 202.12865,350.35203 201.25156,351.3761 200.1599,351.3761 L 87.0974,351.3761 C 86.005743,351.3761 85.12865,350.35203 85.12865,349.07923 L 85.12865,250.82926 C 85.12865,249.55644 86.005743,248.53238 87.0974,248.53238 z "
|
906
|
+
id="rect3821"
|
907
|
+
sodipodi:nodetypes="cccccccccccccccccc" />
|
908
|
+
<path
|
909
|
+
sodipodi:nodetypes="ccc"
|
910
|
+
id="path4109"
|
911
|
+
d="M -221.04685,-183.3058 L -221.04685,-187.15627 L -221.04685,-183.3058 z "
|
912
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
913
|
+
<path
|
914
|
+
sodipodi:nodetypes="ccc"
|
915
|
+
id="path4111"
|
916
|
+
d="M -404.27583,-172.94801 L -404.27583,-176.79848 L -404.27583,-172.94801 z "
|
917
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
918
|
+
<path
|
919
|
+
sodipodi:nodetypes="ccc"
|
920
|
+
id="path4113"
|
921
|
+
d="M -620.59744,-268.8893 L -620.59744,-272.73977 L -620.59744,-268.8893 z "
|
922
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
923
|
+
<path
|
924
|
+
sodipodi:nodetypes="ccc"
|
925
|
+
id="path4115"
|
926
|
+
d="M -785.24423,-388.246 L -785.24423,-392.09649 L -785.24423,-388.246 z "
|
927
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
928
|
+
<g
|
929
|
+
id="g4117"
|
930
|
+
inkscape:label="box"
|
931
|
+
style="display:inline"
|
932
|
+
transform="matrix(1.3777714,0,0,1.3777714,-533.1785,-189.04551)" />
|
933
|
+
<g
|
934
|
+
id="g4119"
|
935
|
+
inkscape:label="zip_app"
|
936
|
+
style="display:inline"
|
937
|
+
transform="matrix(1.3777714,0,0,1.3777714,-533.1785,-189.04551)" />
|
938
|
+
<path
|
939
|
+
sodipodi:nodetypes="ccc"
|
940
|
+
id="path4121"
|
941
|
+
d="M -445.49752,-297.65025 L -445.49752,-301.50073 L -445.49752,-297.65025 z "
|
942
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
943
|
+
<path
|
944
|
+
sodipodi:nodetypes="ccc"
|
945
|
+
id="path4123"
|
946
|
+
d="M -573.11289,-195.84162 L -573.11289,-197.94512 L -573.11289,-195.84162 z "
|
947
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
948
|
+
<rect
|
949
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
950
|
+
id="rect4125"
|
951
|
+
width="1.377772"
|
952
|
+
height="0"
|
953
|
+
x="-652.31372"
|
954
|
+
y="-273.82349" />
|
955
|
+
<rect
|
956
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
957
|
+
id="rect4127"
|
958
|
+
width="1.377772"
|
959
|
+
height="0"
|
960
|
+
x="-700.71045"
|
961
|
+
y="-311.75027" />
|
962
|
+
<path
|
963
|
+
sodipodi:nodetypes="ccc"
|
964
|
+
id="path4129"
|
965
|
+
d="M -919.69,-412.62529 L -919.69,-416.47578 L -919.69,-412.62529 z "
|
966
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
967
|
+
<g
|
968
|
+
style="opacity:0.40163933"
|
969
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4120.0585,533.23945)"
|
970
|
+
id="g4131" />
|
971
|
+
<g
|
972
|
+
id="g4133"
|
973
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4120.0585,533.23945)"
|
974
|
+
style="opacity:0.40163933" />
|
975
|
+
<g
|
976
|
+
id="g4135"
|
977
|
+
transform="matrix(1.3777714,0,0,0.8967627,290.13757,543.33536)"
|
978
|
+
style="opacity:0.40163933" />
|
979
|
+
<g
|
980
|
+
style="opacity:0.40163933"
|
981
|
+
transform="matrix(1.3777714,0,0,0.8967627,290.13757,543.33536)"
|
982
|
+
id="g4137" />
|
983
|
+
<path
|
984
|
+
sodipodi:nodetypes="ccc"
|
985
|
+
id="path4139"
|
986
|
+
d="M -210.80207,43.070976 L -210.80207,39.220511 L -210.80207,43.070976 z "
|
987
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
988
|
+
<path
|
989
|
+
sodipodi:nodetypes="ccc"
|
990
|
+
id="path4141"
|
991
|
+
d="M -427.1237,-52.870316 L -427.1237,-56.720788 L -427.1237,-52.870316 z "
|
992
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
993
|
+
<path
|
994
|
+
sodipodi:nodetypes="ccc"
|
995
|
+
id="path4143"
|
996
|
+
d="M -591.77047,-172.22704 L -591.77047,-176.07751 L -591.77047,-172.22704 z "
|
997
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
998
|
+
<g
|
999
|
+
id="g4145"
|
1000
|
+
inkscape:label="box"
|
1001
|
+
style="display:inline"
|
1002
|
+
transform="matrix(1.3777714,0,0,1.3777714,-339.70493,26.973349)" />
|
1003
|
+
<g
|
1004
|
+
id="g4147"
|
1005
|
+
inkscape:label="zip_app"
|
1006
|
+
style="display:inline"
|
1007
|
+
transform="matrix(1.3777714,0,0,1.3777714,-339.70493,26.973349)" />
|
1008
|
+
<path
|
1009
|
+
sodipodi:nodetypes="ccc"
|
1010
|
+
id="path4149"
|
1011
|
+
d="M -252.02378,-81.631278 L -252.02378,-85.48175 L -252.02378,-81.631278 z "
|
1012
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1013
|
+
<path
|
1014
|
+
sodipodi:nodetypes="ccc"
|
1015
|
+
id="path4151"
|
1016
|
+
d="M -379.63914,20.177365 L -379.63914,18.073877 L -379.63914,20.177365 z "
|
1017
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1018
|
+
<rect
|
1019
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1020
|
+
id="rect4153"
|
1021
|
+
width="1.377772"
|
1022
|
+
height="0"
|
1023
|
+
x="-458.84"
|
1024
|
+
y="-57.804516" />
|
1025
|
+
<rect
|
1026
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1027
|
+
id="rect4155"
|
1028
|
+
width="1.377772"
|
1029
|
+
height="0"
|
1030
|
+
x="-507.23672"
|
1031
|
+
y="-95.731277" />
|
1032
|
+
<path
|
1033
|
+
sodipodi:nodetypes="ccc"
|
1034
|
+
id="path4157"
|
1035
|
+
d="M -726.21624,-196.60632 L -726.21624,-200.4568 L -726.21624,-196.60632 z "
|
1036
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1037
|
+
<g
|
1038
|
+
style="opacity:0.40163933"
|
1039
|
+
transform="matrix(-1.078788,0,0,0.8967627,-3926.5854,749.25849)"
|
1040
|
+
id="g4159" />
|
1041
|
+
<g
|
1042
|
+
id="g4161"
|
1043
|
+
transform="matrix(-1.078788,0,0,0.8967627,-3926.5854,749.25849)"
|
1044
|
+
style="opacity:0.40163933" />
|
1045
|
+
<g
|
1046
|
+
id="g4163"
|
1047
|
+
transform="matrix(1.3777714,0,0,0.8967627,483.61129,759.35456)"
|
1048
|
+
style="opacity:0.40163933" />
|
1049
|
+
<g
|
1050
|
+
style="opacity:0.40163933"
|
1051
|
+
transform="matrix(1.3777714,0,0,0.8967627,483.61129,759.35456)"
|
1052
|
+
id="g4165" />
|
1053
|
+
<path
|
1054
|
+
sodipodi:nodetypes="ccc"
|
1055
|
+
id="path4167"
|
1056
|
+
d="M -279.00178,-28.573161 L -279.00178,-32.42364 L -279.00178,-28.573161 z "
|
1057
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1058
|
+
<path
|
1059
|
+
sodipodi:nodetypes="ccc"
|
1060
|
+
id="path4169"
|
1061
|
+
d="M -495.32341,-124.51446 L -495.32341,-128.36493 L -495.32341,-124.51446 z "
|
1062
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1063
|
+
<path
|
1064
|
+
sodipodi:nodetypes="ccc"
|
1065
|
+
id="path4171"
|
1066
|
+
d="M -659.97018,-243.87117 L -659.97018,-247.72165 L -659.97018,-243.87117 z "
|
1067
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1068
|
+
<g
|
1069
|
+
id="g4173"
|
1070
|
+
inkscape:label="box"
|
1071
|
+
style="display:inline"
|
1072
|
+
transform="matrix(1.3777714,0,0,1.3777714,-407.90465,-44.670655)" />
|
1073
|
+
<g
|
1074
|
+
id="g4175"
|
1075
|
+
inkscape:label="zip_app"
|
1076
|
+
style="display:inline"
|
1077
|
+
transform="matrix(1.3777714,0,0,1.3777714,-407.90465,-44.670655)" />
|
1078
|
+
<path
|
1079
|
+
sodipodi:nodetypes="ccc"
|
1080
|
+
id="path4177"
|
1081
|
+
d="M -320.22348,-153.27542 L -320.22348,-157.12589 L -320.22348,-153.27542 z "
|
1082
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1083
|
+
<path
|
1084
|
+
sodipodi:nodetypes="ccc"
|
1085
|
+
id="path4179"
|
1086
|
+
d="M -447.83885,-51.466781 L -447.83885,-53.570274 L -447.83885,-51.466781 z "
|
1087
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1088
|
+
<rect
|
1089
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1090
|
+
id="rect4181"
|
1091
|
+
width="1.377772"
|
1092
|
+
height="0"
|
1093
|
+
x="-527.03967"
|
1094
|
+
y="-129.44864" />
|
1095
|
+
<rect
|
1096
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1097
|
+
id="rect4184"
|
1098
|
+
width="1.377772"
|
1099
|
+
height="0"
|
1100
|
+
x="-575.43646"
|
1101
|
+
y="-167.37541" />
|
1102
|
+
<path
|
1103
|
+
sodipodi:nodetypes="ccc"
|
1104
|
+
id="path4186"
|
1105
|
+
d="M -794.41595,-268.25047 L -794.41595,-272.10094 L -794.41595,-268.25047 z "
|
1106
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1107
|
+
<g
|
1108
|
+
style="opacity:0.40163933"
|
1109
|
+
transform="matrix(-1.078788,0,0,0.8967627,-3994.7851,677.61424)"
|
1110
|
+
id="g4188" />
|
1111
|
+
<g
|
1112
|
+
id="g4190"
|
1113
|
+
transform="matrix(-1.078788,0,0,0.8967627,-3994.7851,677.61424)"
|
1114
|
+
style="opacity:0.40163933" />
|
1115
|
+
<g
|
1116
|
+
id="g4192"
|
1117
|
+
transform="matrix(1.3777714,0,0,0.8967627,415.41173,687.71031)"
|
1118
|
+
style="opacity:0.40163933" />
|
1119
|
+
<g
|
1120
|
+
style="opacity:0.40163933"
|
1121
|
+
transform="matrix(1.3777714,0,0,0.8967627,415.41173,687.71031)"
|
1122
|
+
id="g4194" />
|
1123
|
+
<path
|
1124
|
+
sodipodi:nodetypes="ccc"
|
1125
|
+
id="path4196"
|
1126
|
+
d="M -812.54397,141.92612 L -812.54397,138.07564 L -812.54397,141.92612 z "
|
1127
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1128
|
+
<path
|
1129
|
+
sodipodi:nodetypes="ccc"
|
1130
|
+
id="path4198"
|
1131
|
+
d="M -1028.8656,45.984831 L -1028.8656,42.134352 L -1028.8656,45.984831 z "
|
1132
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1133
|
+
<path
|
1134
|
+
sodipodi:nodetypes="ccc"
|
1135
|
+
id="path4200"
|
1136
|
+
d="M -1193.5124,-73.371901 L -1193.5124,-77.222373 L -1193.5124,-73.371901 z "
|
1137
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1138
|
+
<g
|
1139
|
+
id="g4202"
|
1140
|
+
inkscape:label="box"
|
1141
|
+
style="display:inline"
|
1142
|
+
transform="matrix(1.3777714,0,0,1.3777714,-941.44678,125.82854)" />
|
1143
|
+
<g
|
1144
|
+
id="g4204"
|
1145
|
+
inkscape:label="zip_app"
|
1146
|
+
style="display:inline"
|
1147
|
+
transform="matrix(1.3777714,0,0,1.3777714,-941.44678,125.82854)" />
|
1148
|
+
<path
|
1149
|
+
sodipodi:nodetypes="ccc"
|
1150
|
+
id="path4206"
|
1151
|
+
d="M -853.76566,17.223876 L -853.76566,13.373397 L -853.76566,17.223876 z "
|
1152
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1153
|
+
<path
|
1154
|
+
sodipodi:nodetypes="ccc"
|
1155
|
+
id="path4208"
|
1156
|
+
d="M -981.38102,119.03251 L -981.38102,116.92901 L -981.38102,119.03251 z "
|
1157
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1158
|
+
<rect
|
1159
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1160
|
+
id="rect4210"
|
1161
|
+
width="1.377772"
|
1162
|
+
height="0"
|
1163
|
+
x="-1060.5818"
|
1164
|
+
y="41.050621" />
|
1165
|
+
<rect
|
1166
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1167
|
+
id="rect4212"
|
1168
|
+
width="1.377772"
|
1169
|
+
height="0"
|
1170
|
+
x="-1108.9786"
|
1171
|
+
y="3.1238759" />
|
1172
|
+
<path
|
1173
|
+
sodipodi:nodetypes="ccc"
|
1174
|
+
id="path4214"
|
1175
|
+
d="M -1327.9581,-97.75119 L -1327.9581,-101.60167 L -1327.9581,-97.75119 z "
|
1176
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1177
|
+
<g
|
1178
|
+
style="opacity:0.40163933"
|
1179
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4528.3268,848.11353)"
|
1180
|
+
id="g4216" />
|
1181
|
+
<g
|
1182
|
+
id="g4218"
|
1183
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4528.3268,848.11353)"
|
1184
|
+
style="opacity:0.40163933" />
|
1185
|
+
<g
|
1186
|
+
id="g4220"
|
1187
|
+
transform="matrix(1.3777714,0,0,0.8967627,-118.13056,858.20959)"
|
1188
|
+
style="opacity:0.40163933" />
|
1189
|
+
<g
|
1190
|
+
style="opacity:0.40163933"
|
1191
|
+
transform="matrix(1.3777714,0,0,0.8967627,-118.13056,858.20959)"
|
1192
|
+
id="g4222" />
|
1193
|
+
<path
|
1194
|
+
sodipodi:nodetypes="ccc"
|
1195
|
+
id="path4224"
|
1196
|
+
d="M -464.80515,384.9542 L -464.80515,381.10373 L -464.80515,384.9542 z "
|
1197
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1198
|
+
<path
|
1199
|
+
sodipodi:nodetypes="ccc"
|
1200
|
+
id="path4226"
|
1201
|
+
d="M -681.12676,289.01289 L -681.12676,285.16244 L -681.12676,289.01289 z "
|
1202
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1203
|
+
<path
|
1204
|
+
sodipodi:nodetypes="ccc"
|
1205
|
+
id="path4228"
|
1206
|
+
d="M -845.77355,169.65618 L -845.77355,165.80572 L -845.77355,169.65618 z "
|
1207
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1208
|
+
<g
|
1209
|
+
id="g4230"
|
1210
|
+
inkscape:label="box"
|
1211
|
+
style="display:inline"
|
1212
|
+
transform="matrix(1.3777714,0,0,1.3777714,-593.70797,368.85658)" />
|
1213
|
+
<g
|
1214
|
+
id="g4232"
|
1215
|
+
inkscape:label="zip_app"
|
1216
|
+
style="display:inline"
|
1217
|
+
transform="matrix(1.3777714,0,0,1.3777714,-593.70797,368.85658)" />
|
1218
|
+
<path
|
1219
|
+
sodipodi:nodetypes="ccc"
|
1220
|
+
id="path4234"
|
1221
|
+
d="M -506.02685,260.25196 L -506.02685,256.40147 L -506.02685,260.25196 z "
|
1222
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1223
|
+
<path
|
1224
|
+
sodipodi:nodetypes="ccc"
|
1225
|
+
id="path4236"
|
1226
|
+
d="M -633.64221,362.06058 L -633.64221,359.95708 L -633.64221,362.06058 z "
|
1227
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1228
|
+
<rect
|
1229
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1230
|
+
id="rect4238"
|
1231
|
+
width="1.377772"
|
1232
|
+
height="0"
|
1233
|
+
x="-712.84308"
|
1234
|
+
y="284.07864" />
|
1235
|
+
<rect
|
1236
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1237
|
+
id="rect4240"
|
1238
|
+
width="1.377772"
|
1239
|
+
height="0"
|
1240
|
+
x="-761.23975"
|
1241
|
+
y="246.1519" />
|
1242
|
+
<path
|
1243
|
+
sodipodi:nodetypes="ccc"
|
1244
|
+
id="path4242"
|
1245
|
+
d="M -980.21932,145.27689 L -980.21932,141.42643 L -980.21932,145.27689 z "
|
1246
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1247
|
+
<g
|
1248
|
+
style="opacity:0.40163933"
|
1249
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4180.588,1091.1417)"
|
1250
|
+
id="g4244" />
|
1251
|
+
<g
|
1252
|
+
id="g4246"
|
1253
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4180.588,1091.1417)"
|
1254
|
+
style="opacity:0.40163933" />
|
1255
|
+
<g
|
1256
|
+
id="g4248"
|
1257
|
+
transform="matrix(1.3777714,0,0,0.8967627,229.60826,1101.2376)"
|
1258
|
+
style="opacity:0.40163933" />
|
1259
|
+
<g
|
1260
|
+
style="opacity:0.40163933"
|
1261
|
+
transform="matrix(1.3777714,0,0,0.8967627,229.60826,1101.2376)"
|
1262
|
+
id="g4250" />
|
1263
|
+
<path
|
1264
|
+
sodipodi:nodetypes="ccc"
|
1265
|
+
id="path4252"
|
1266
|
+
d="M -603.47732,63.156795 L -603.47732,59.306316 L -603.47732,63.156795 z "
|
1267
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1268
|
+
<path
|
1269
|
+
sodipodi:nodetypes="ccc"
|
1270
|
+
id="path4254"
|
1271
|
+
d="M -819.79895,-32.784494 L -819.79895,-36.634972 L -819.79895,-32.784494 z "
|
1272
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1273
|
+
<path
|
1274
|
+
sodipodi:nodetypes="ccc"
|
1275
|
+
id="path4256"
|
1276
|
+
d="M -984.44573,-152.14121 L -984.44573,-155.99168 L -984.44573,-152.14121 z "
|
1277
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1278
|
+
<g
|
1279
|
+
id="g4258"
|
1280
|
+
inkscape:label="box"
|
1281
|
+
style="display:inline"
|
1282
|
+
transform="matrix(1.3777714,0,0,1.3777714,-732.38027,47.059197)" />
|
1283
|
+
<g
|
1284
|
+
id="g4260"
|
1285
|
+
inkscape:label="zip_app"
|
1286
|
+
style="display:inline"
|
1287
|
+
transform="matrix(1.3777714,0,0,1.3777714,-732.38027,47.059197)" />
|
1288
|
+
<path
|
1289
|
+
sodipodi:nodetypes="ccc"
|
1290
|
+
id="path4262"
|
1291
|
+
d="M -644.69902,-61.545463 L -644.69902,-65.395935 L -644.69902,-61.545463 z "
|
1292
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1293
|
+
<path
|
1294
|
+
sodipodi:nodetypes="ccc"
|
1295
|
+
id="path4264"
|
1296
|
+
d="M -772.31439,40.263185 L -772.31439,38.159681 L -772.31439,40.263185 z "
|
1297
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1298
|
+
<rect
|
1299
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1300
|
+
id="rect4266"
|
1301
|
+
width="1.377772"
|
1302
|
+
height="0"
|
1303
|
+
x="-851.51532"
|
1304
|
+
y="-37.718704" />
|
1305
|
+
<rect
|
1306
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1307
|
+
id="rect4268"
|
1308
|
+
width="1.377772"
|
1309
|
+
height="0"
|
1310
|
+
x="-899.91205"
|
1311
|
+
y="-75.645462" />
|
1312
|
+
<path
|
1313
|
+
sodipodi:nodetypes="ccc"
|
1314
|
+
id="path4270"
|
1315
|
+
d="M -1118.8915,-176.52051 L -1118.8915,-180.37098 L -1118.8915,-176.52051 z "
|
1316
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1317
|
+
<g
|
1318
|
+
style="opacity:0.40163933"
|
1319
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4319.2592,769.34433)"
|
1320
|
+
id="g4272" />
|
1321
|
+
<g
|
1322
|
+
id="g4274"
|
1323
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4319.2592,769.34433)"
|
1324
|
+
style="opacity:0.40163933" />
|
1325
|
+
<g
|
1326
|
+
id="g4276"
|
1327
|
+
transform="matrix(1.3777714,0,0,0.8967627,90.936098,779.4404)"
|
1328
|
+
style="opacity:0.40163933" />
|
1329
|
+
<g
|
1330
|
+
style="opacity:0.40163933"
|
1331
|
+
transform="matrix(1.3777714,0,0,0.8967627,90.936098,779.4404)"
|
1332
|
+
id="g4278" />
|
1333
|
+
<path
|
1334
|
+
sodipodi:nodetypes="ccc"
|
1335
|
+
id="path4284"
|
1336
|
+
d="M -600.7115,61.88267 L -600.7115,58.032192 L -600.7115,61.88267 z "
|
1337
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1338
|
+
<path
|
1339
|
+
sodipodi:nodetypes="ccc"
|
1340
|
+
id="path4286"
|
1341
|
+
d="M -817.03314,-34.058632 L -817.03314,-37.909104 L -817.03314,-34.058632 z "
|
1342
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1343
|
+
<path
|
1344
|
+
sodipodi:nodetypes="ccc"
|
1345
|
+
id="path4288"
|
1346
|
+
d="M -981.67991,-153.41535 L -981.67991,-157.26582 L -981.67991,-153.41535 z "
|
1347
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1348
|
+
<g
|
1349
|
+
id="g4290"
|
1350
|
+
inkscape:label="box"
|
1351
|
+
style="display:inline"
|
1352
|
+
transform="matrix(1.3777714,0,0,1.3777714,-729.61435,45.785103)" />
|
1353
|
+
<g
|
1354
|
+
id="g4292"
|
1355
|
+
inkscape:label="zip_app"
|
1356
|
+
style="display:inline"
|
1357
|
+
transform="matrix(1.3777714,0,0,1.3777714,-729.61435,45.785103)" />
|
1358
|
+
<path
|
1359
|
+
sodipodi:nodetypes="ccc"
|
1360
|
+
id="path4294"
|
1361
|
+
d="M -641.93321,-62.819593 L -641.93321,-66.670065 L -641.93321,-62.819593 z "
|
1362
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1363
|
+
<path
|
1364
|
+
sodipodi:nodetypes="ccc"
|
1365
|
+
id="path4296"
|
1366
|
+
d="M -769.54857,38.98906 L -769.54857,36.885557 L -769.54857,38.98906 z "
|
1367
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1368
|
+
<rect
|
1369
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1370
|
+
id="rect4298"
|
1371
|
+
width="1.377772"
|
1372
|
+
height="0"
|
1373
|
+
x="-848.74945"
|
1374
|
+
y="-38.992832" />
|
1375
|
+
<rect
|
1376
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1377
|
+
id="rect4300"
|
1378
|
+
width="1.377772"
|
1379
|
+
height="0"
|
1380
|
+
x="-897.14618"
|
1381
|
+
y="-76.919586" />
|
1382
|
+
<path
|
1383
|
+
sodipodi:nodetypes="ccc"
|
1384
|
+
id="path4302"
|
1385
|
+
d="M -1116.1257,-177.79464 L -1116.1257,-181.64512 L -1116.1257,-177.79464 z "
|
1386
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1387
|
+
<g
|
1388
|
+
style="opacity:0.40163933"
|
1389
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4316.4943,768.07009)"
|
1390
|
+
id="g4304" />
|
1391
|
+
<g
|
1392
|
+
id="g4306"
|
1393
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4316.4943,768.07009)"
|
1394
|
+
style="opacity:0.40163933" />
|
1395
|
+
<g
|
1396
|
+
id="g4308"
|
1397
|
+
transform="matrix(1.3777714,0,0,0.8967627,93.701877,778.16616)"
|
1398
|
+
style="opacity:0.40163933" />
|
1399
|
+
<g
|
1400
|
+
style="opacity:0.40163933"
|
1401
|
+
transform="matrix(1.3777714,0,0,0.8967627,93.701877,778.16616)"
|
1402
|
+
id="g4310" />
|
1403
|
+
<path
|
1404
|
+
sodipodi:nodetypes="cccc"
|
1405
|
+
id="path4356"
|
1406
|
+
d="M -188.17335,-11.457543 L -188.17335,-24.027191 L -188.17335,-15.308022 L -188.17335,-11.457543 z "
|
1407
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1408
|
+
<path
|
1409
|
+
sodipodi:nodetypes="ccc"
|
1410
|
+
id="path4358"
|
1411
|
+
d="M -371.40232,-1.0997485 L -371.40232,-4.9502274 L -371.40232,-1.0997485 z "
|
1412
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1413
|
+
<path
|
1414
|
+
sodipodi:nodetypes="ccc"
|
1415
|
+
id="path4360"
|
1416
|
+
d="M -587.72396,-97.04105 L -587.72396,-100.89152 L -587.72396,-97.04105 z "
|
1417
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1418
|
+
<path
|
1419
|
+
sodipodi:nodetypes="ccc"
|
1420
|
+
id="path4362"
|
1421
|
+
d="M -752.37073,-216.39776 L -752.37073,-220.24824 L -752.37073,-216.39776 z "
|
1422
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1423
|
+
<g
|
1424
|
+
id="g4364"
|
1425
|
+
inkscape:label="box"
|
1426
|
+
style="display:inline"
|
1427
|
+
transform="matrix(1.3777714,0,0,1.3777714,-500.30506,-17.197346)" />
|
1428
|
+
<g
|
1429
|
+
id="g4366"
|
1430
|
+
inkscape:label="zip_app"
|
1431
|
+
style="display:inline"
|
1432
|
+
transform="matrix(1.3777714,0,0,1.3777714,-500.30506,-17.197346)" />
|
1433
|
+
<path
|
1434
|
+
sodipodi:nodetypes="ccc"
|
1435
|
+
id="path4368"
|
1436
|
+
d="M -412.62402,-125.802 L -412.62402,-129.65248 L -412.62402,-125.802 z "
|
1437
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1438
|
+
<path
|
1439
|
+
sodipodi:nodetypes="ccc"
|
1440
|
+
id="path4370"
|
1441
|
+
d="M -540.23937,-23.993359 L -540.23937,-26.096862 L -540.23937,-23.993359 z "
|
1442
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1443
|
+
<rect
|
1444
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1445
|
+
id="rect4372"
|
1446
|
+
width="1.377772"
|
1447
|
+
height="0"
|
1448
|
+
x="-619.44025"
|
1449
|
+
y="-101.97524" />
|
1450
|
+
<rect
|
1451
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1452
|
+
id="rect4374"
|
1453
|
+
width="1.377772"
|
1454
|
+
height="0"
|
1455
|
+
x="-667.83704"
|
1456
|
+
y="-139.90201" />
|
1457
|
+
<path
|
1458
|
+
sodipodi:nodetypes="ccc"
|
1459
|
+
id="path4376"
|
1460
|
+
d="M -886.81649,-240.77705 L -886.81649,-244.62753 L -886.81649,-240.77705 z "
|
1461
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1462
|
+
<g
|
1463
|
+
style="opacity:0.40163933"
|
1464
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4087.1854,705.08781)"
|
1465
|
+
id="g4378" />
|
1466
|
+
<g
|
1467
|
+
id="g4380"
|
1468
|
+
transform="matrix(-1.078788,0,0,0.8967627,-4087.1854,705.08781)"
|
1469
|
+
style="opacity:0.40163933" />
|
1470
|
+
<g
|
1471
|
+
id="g4382"
|
1472
|
+
transform="matrix(1.3777714,0,0,0.8967627,323.01116,715.18372)"
|
1473
|
+
style="opacity:0.40163933" />
|
1474
|
+
<g
|
1475
|
+
style="opacity:0.40163933"
|
1476
|
+
transform="matrix(1.3777714,0,0,0.8967627,323.01116,715.18372)"
|
1477
|
+
id="g4384" />
|
1478
|
+
<path
|
1479
|
+
sodipodi:nodetypes="ccc"
|
1480
|
+
id="path4386"
|
1481
|
+
d="M -177.92858,214.91924 L -177.92858,211.06876 L -177.92858,214.91924 z "
|
1482
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1483
|
+
<path
|
1484
|
+
sodipodi:nodetypes="ccc"
|
1485
|
+
id="path4388"
|
1486
|
+
d="M -394.2502,118.97794 L -394.2502,115.12747 L -394.2502,118.97794 z "
|
1487
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1488
|
+
<path
|
1489
|
+
sodipodi:nodetypes="ccc"
|
1490
|
+
id="path4390"
|
1491
|
+
d="M -558.89698,-0.3787802 L -558.89698,-4.2292443 L -558.89698,-0.3787802 z "
|
1492
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1493
|
+
<g
|
1494
|
+
id="g4392"
|
1495
|
+
inkscape:label="box"
|
1496
|
+
style="display:inline"
|
1497
|
+
transform="matrix(1.3777714,0,0,1.3777714,-306.83133,198.82157)" />
|
1498
|
+
<g
|
1499
|
+
id="g4394"
|
1500
|
+
inkscape:label="zip_app"
|
1501
|
+
style="display:inline"
|
1502
|
+
transform="matrix(1.3777714,0,0,1.3777714,-306.83133,198.82157)" />
|
1503
|
+
<path
|
1504
|
+
sodipodi:nodetypes="ccc"
|
1505
|
+
id="path4396"
|
1506
|
+
d="M -219.15028,90.216979 L -219.15028,86.366515 L -219.15028,90.216979 z "
|
1507
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1508
|
+
<path
|
1509
|
+
sodipodi:nodetypes="ccc"
|
1510
|
+
id="path4398"
|
1511
|
+
d="M -346.76564,192.02563 L -346.76564,189.92213 L -346.76564,192.02563 z "
|
1512
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1513
|
+
<rect
|
1514
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1515
|
+
id="rect4400"
|
1516
|
+
width="1.377772"
|
1517
|
+
height="0"
|
1518
|
+
x="-425.96643"
|
1519
|
+
y="114.04373" />
|
1520
|
+
<rect
|
1521
|
+
style="opacity:0.57786889;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.63199997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1"
|
1522
|
+
id="rect4402"
|
1523
|
+
width="1.377772"
|
1524
|
+
height="0"
|
1525
|
+
x="-474.36322"
|
1526
|
+
y="76.116974" />
|
1527
|
+
<path
|
1528
|
+
sodipodi:nodetypes="ccc"
|
1529
|
+
id="path4404"
|
1530
|
+
d="M -693.34274,-24.758066 L -693.34274,-28.608545 L -693.34274,-24.758066 z "
|
1531
|
+
style="fill:#ffffff;fill-opacity:0.75688076;fill-rule:nonzero;stroke:none;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:4;stroke-opacity:1" />
|
1532
|
+
<g
|
1533
|
+
style="opacity:0.40163933"
|
1534
|
+
transform="matrix(-1.078788,0,0,0.8967627,-3893.7122,921.10671)"
|
1535
|
+
id="g4406" />
|
1536
|
+
<g
|
1537
|
+
id="g4408"
|
1538
|
+
transform="matrix(-1.078788,0,0,0.8967627,-3893.7122,921.10671)"
|
1539
|
+
style="opacity:0.40163933" />
|
1540
|
+
<g
|
1541
|
+
id="g4410"
|
1542
|
+
transform="matrix(1.3777714,0,0,0.8967627,516.48488,931.20277)"
|
1543
|
+
style="opacity:0.40163933" />
|
1544
|
+
<g
|
1545
|
+
style="opacity:0.40163933"
|
1546
|
+
transform="matrix(1.3777714,0,0,0.8967627,516.48488,931.20277)"
|
1547
|
+
id="g4412" />
|
1548
|
+
<path
|
1549
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.67876971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:4;stroke-opacity:1"
|
1550
|
+
d="M 83.62865,276.8761 L 203.62865,276.8761 L 203.62865,352.8761 L 83.62865,352.8761 L 83.62865,276.8761 z "
|
1551
|
+
id="rect8568" />
|
1552
|
+
<use
|
1553
|
+
x="0"
|
1554
|
+
y="0"
|
1555
|
+
xlink:href="#g10952"
|
1556
|
+
id="use10958"
|
1557
|
+
transform="translate(-16,-2.4e-6)"
|
1558
|
+
width="96"
|
1559
|
+
height="96" />
|
1560
|
+
<use
|
1561
|
+
x="0"
|
1562
|
+
y="0"
|
1563
|
+
xlink:href="#g10952"
|
1564
|
+
id="use10968"
|
1565
|
+
transform="translate(-32,-2.4e-6)"
|
1566
|
+
width="96"
|
1567
|
+
height="96" />
|
1568
|
+
<use
|
1569
|
+
x="0"
|
1570
|
+
y="0"
|
1571
|
+
xlink:href="#g10952"
|
1572
|
+
id="use10972"
|
1573
|
+
transform="translate(-96,-2.4e-6)"
|
1574
|
+
width="96"
|
1575
|
+
height="96" />
|
1576
|
+
<path
|
1577
|
+
style="opacity:1;fill:url(#linearGradient3493);fill-opacity:1;stroke:none;stroke-width:1.10000001999999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
1578
|
+
d="M 10 52 C 8.892 52 8.0000002 52.891999 8 54 C 8 55.108 8.8919997 55.999999 10 56 L 70 56 C 71.108 56 71.999997 55.107999 72 54 C 72 52.892 71.107997 51.999999 70 52 L 10 52 z M 86 52 C 84.892 52 83.999997 52.557499 84 53.25 L 84 54.75 C 84 55.4425 84.891997 55.999999 86 56 L 94 56 C 95.108 56 96 55.442499 96 54.75 L 96 53.25 C 96 52.5575 95.108 51.999999 94 52 L 86 52 z M 110 52 C 108.892 52 108 52.557499 108 53.25 L 108 54.75 C 108 55.4425 108.892 55.999999 110 56 L 118 56 C 119.108 56 120 55.442499 120 54.75 L 120 53.25 C 120 52.5575 119.108 51.999999 118 52 L 110 52 z M 10 68 C 8.892 68 8.0000002 68.891999 8 70 C 8 71.108 8.8919997 71.999999 10 72 L 70 72 C 71.108 72 71.999997 71.107999 72 70 C 72 68.892 71.107997 67.999999 70 68 L 10 68 z M 86 68 C 84.892 68 83.999997 68.557499 84 69.25 L 84 70.75 C 84 71.4425 84.891997 71.999999 86 72 L 94 72 C 95.108 72 96 71.442499 96 70.75 L 96 69.25 C 96 68.5575 95.108 67.999999 94 68 L 86 68 z M 110 68 C 108.892 68 108 68.557499 108 69.25 L 108 70.75 C 108 71.4425 108.892 71.999999 110 72 L 118 72 C 119.108 72 120 71.442499 120 70.75 L 120 69.25 C 120 68.5575 119.108 67.999999 118 68 L 110 68 z M 10 84 C 8.892 84 8.0000002 84.891999 8 86 C 8 87.108 8.8919997 87.999999 10 88 L 58 88 C 59.108 88 60.000001 87.107999 60 86 C 60 84.892 59.108001 83.999999 58 84 L 10 84 z M 86 84 C 84.892 84 83.999997 84.891999 84 86 C 84 87.108 84.891997 87.999999 86 88 L 90 88 C 91.108 88 92 87.107999 92 86 C 92 84.892 91.108 83.999999 90 84 L 86 84 z M 110 84 C 108.892 84 108 84.557499 108 85.25 L 108 86.75 C 108 87.4425 108.892 87.999999 110 88 L 118 88 C 119.108 88 120 87.442499 120 86.75 L 120 85.25 C 120 84.5575 119.108 83.999999 118 84 L 110 84 z M 10 100 C 8.892 100 8.0000002 100.892 8 102 C 8 103.108 8.8919997 104 10 104 L 70 104 C 71.108 104 71.999997 103.108 72 102 C 72 100.892 71.107997 99.999999 70 100 L 10 100 z M 86 100 C 84.892 100 83.999997 100.5575 84 101.25 L 84 102.75 C 84 103.4425 84.891997 104 86 104 L 94 104 C 95.108 104 96 103.4425 96 102.75 L 96 101.25 C 96 100.5575 95.108 99.999999 94 100 L 86 100 z M 110 100 C 108.892 100 108 100.5575 108 101.25 L 108 102.75 C 108 103.4425 108.892 104 110 104 L 118 104 C 119.108 104 120 103.4425 120 102.75 L 120 101.25 C 120 100.5575 119.108 99.999999 118 100 L 110 100 z "
|
1579
|
+
transform="translate(79.62865,236.8761)"
|
1580
|
+
id="rect2692" />
|
1581
|
+
</g>
|
1582
|
+
</svg>
|