groonga 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +1 -0
- data/NEWS.ja.rdoc +5 -0
- data/NEWS.rdoc +5 -0
- data/README.ja.rdoc +53 -0
- data/README.rdoc +54 -0
- data/Rakefile +209 -0
- data/TUTORIAL.ja.rdoc +160 -0
- data/benchmark/small-many-items.rb +175 -0
- data/example/bookmark.rb +38 -0
- data/ext/.gitignore +2 -0
- data/ext/rb-grn-accessor.c +52 -0
- data/ext/rb-grn-array-cursor.c +28 -0
- data/ext/rb-grn-array.c +168 -0
- data/ext/rb-grn-column.c +273 -0
- data/ext/rb-grn-context.c +333 -0
- data/ext/rb-grn-database.c +128 -0
- data/ext/rb-grn-encoding.c +163 -0
- data/ext/rb-grn-exception.c +1014 -0
- data/ext/rb-grn-hash-cursor.c +30 -0
- data/ext/rb-grn-hash.c +40 -0
- data/ext/rb-grn-logger.c +277 -0
- data/ext/rb-grn-object.c +985 -0
- data/ext/rb-grn-patricia-trie-cursor.c +30 -0
- data/ext/rb-grn-patricia-trie.c +40 -0
- data/ext/rb-grn-procedure.c +52 -0
- data/ext/rb-grn-query.c +207 -0
- data/ext/rb-grn-record.c +33 -0
- data/ext/rb-grn-snippet.c +274 -0
- data/ext/rb-grn-table-cursor-key-support.c +55 -0
- data/ext/rb-grn-table-cursor.c +294 -0
- data/ext/rb-grn-table-key-support.c +299 -0
- data/ext/rb-grn-table.c +706 -0
- data/ext/rb-grn-type.c +114 -0
- data/ext/rb-grn-utils.c +578 -0
- data/ext/rb-grn.h +346 -0
- data/ext/rb-groonga.c +98 -0
- data/extconf.rb +171 -0
- data/html/bar.svg +153 -0
- data/html/developer.html +121 -0
- data/html/developer.svg +469 -0
- data/html/download.svg +253 -0
- data/html/footer.html.erb +28 -0
- data/html/head.html.erb +4 -0
- data/html/header.html.erb +17 -0
- data/html/index.html +153 -0
- data/html/install.svg +636 -0
- data/html/logo.xcf +0 -0
- data/html/ranguba.css +248 -0
- data/html/tutorial.svg +559 -0
- data/lib/groonga.rb +50 -0
- data/lib/groonga/record.rb +98 -0
- data/license/GPL +340 -0
- data/license/LGPL +504 -0
- data/license/RUBY +59 -0
- data/pkg-config.rb +328 -0
- data/test-unit/Rakefile +35 -0
- data/test-unit/TODO +5 -0
- data/test-unit/bin/testrb +5 -0
- data/test-unit/html/classic.html +15 -0
- data/test-unit/html/index.html +25 -0
- data/test-unit/html/index.html.ja +27 -0
- data/test-unit/lib/test/unit.rb +342 -0
- data/test-unit/lib/test/unit/assertionfailederror.rb +14 -0
- data/test-unit/lib/test/unit/assertions.rb +1149 -0
- data/test-unit/lib/test/unit/attribute.rb +125 -0
- data/test-unit/lib/test/unit/autorunner.rb +306 -0
- data/test-unit/lib/test/unit/collector.rb +43 -0
- data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
- data/test-unit/lib/test/unit/collector/dir.rb +108 -0
- data/test-unit/lib/test/unit/collector/load.rb +135 -0
- data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
- data/test-unit/lib/test/unit/color-scheme.rb +86 -0
- data/test-unit/lib/test/unit/color.rb +96 -0
- data/test-unit/lib/test/unit/diff.rb +538 -0
- data/test-unit/lib/test/unit/error.rb +124 -0
- data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
- data/test-unit/lib/test/unit/failure.rb +110 -0
- data/test-unit/lib/test/unit/fixture.rb +176 -0
- data/test-unit/lib/test/unit/notification.rb +125 -0
- data/test-unit/lib/test/unit/omission.rb +143 -0
- data/test-unit/lib/test/unit/pending.rb +146 -0
- data/test-unit/lib/test/unit/priority.rb +161 -0
- data/test-unit/lib/test/unit/runner/console.rb +52 -0
- data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
- data/test-unit/lib/test/unit/testcase.rb +360 -0
- data/test-unit/lib/test/unit/testresult.rb +89 -0
- data/test-unit/lib/test/unit/testsuite.rb +110 -0
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +220 -0
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +49 -0
- data/test-unit/lib/test/unit/ui/testrunner.rb +20 -0
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/test-unit/lib/test/unit/util/backtracefilter.rb +41 -0
- data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/test-unit/lib/test/unit/util/observable.rb +90 -0
- data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
- data/test-unit/lib/test/unit/version.rb +7 -0
- data/test-unit/sample/adder.rb +13 -0
- data/test-unit/sample/subtracter.rb +12 -0
- data/test-unit/sample/tc_adder.rb +18 -0
- data/test-unit/sample/tc_subtracter.rb +18 -0
- data/test-unit/sample/test_user.rb +22 -0
- data/test-unit/sample/ts_examples.rb +7 -0
- data/test-unit/test/collector/test-descendant.rb +135 -0
- data/test-unit/test/collector/test-load.rb +333 -0
- data/test-unit/test/collector/test_dir.rb +406 -0
- data/test-unit/test/collector/test_objectspace.rb +98 -0
- data/test-unit/test/run-test.rb +13 -0
- data/test-unit/test/test-attribute.rb +86 -0
- data/test-unit/test/test-color-scheme.rb +56 -0
- data/test-unit/test/test-color.rb +47 -0
- data/test-unit/test/test-diff.rb +477 -0
- data/test-unit/test/test-emacs-runner.rb +60 -0
- data/test-unit/test/test-fixture.rb +287 -0
- data/test-unit/test/test-notification.rb +33 -0
- data/test-unit/test/test-omission.rb +81 -0
- data/test-unit/test/test-pending.rb +70 -0
- data/test-unit/test/test-priority.rb +119 -0
- data/test-unit/test/test_assertions.rb +1082 -0
- data/test-unit/test/test_error.rb +26 -0
- data/test-unit/test/test_failure.rb +33 -0
- data/test-unit/test/test_testcase.rb +478 -0
- data/test-unit/test/test_testresult.rb +113 -0
- data/test-unit/test/test_testsuite.rb +129 -0
- data/test-unit/test/testunit-test-util.rb +14 -0
- data/test-unit/test/ui/test_testrunmediator.rb +20 -0
- data/test-unit/test/util/test-method-owner-finder.rb +38 -0
- data/test-unit/test/util/test_backtracefilter.rb +41 -0
- data/test-unit/test/util/test_observable.rb +102 -0
- data/test-unit/test/util/test_procwrapper.rb +36 -0
- data/test/.gitignore +1 -0
- data/test/groonga-test-utils.rb +90 -0
- data/test/run-test.rb +54 -0
- data/test/test-column.rb +190 -0
- data/test/test-context.rb +90 -0
- data/test/test-database.rb +62 -0
- data/test/test-encoding.rb +33 -0
- data/test/test-exception.rb +85 -0
- data/test/test-procedure.rb +35 -0
- data/test/test-query.rb +22 -0
- data/test/test-record.rb +188 -0
- data/test/test-snippet.rb +121 -0
- data/test/test-table-cursor.rb +51 -0
- data/test/test-table.rb +447 -0
- data/test/test-type.rb +52 -0
- data/test/test-version.rb +31 -0
- metadata +213 -0
data/html/install.svg
ADDED
@@ -0,0 +1,636 @@
|
|
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="18"
|
13
|
+
height="18"
|
14
|
+
id="svg14603"
|
15
|
+
sodipodi:version="0.32"
|
16
|
+
inkscape:version="0.46"
|
17
|
+
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/apps"
|
18
|
+
sodipodi:docname="install.svg"
|
19
|
+
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
20
|
+
version="1.0">
|
21
|
+
<defs
|
22
|
+
id="defs3">
|
23
|
+
<inkscape:perspective
|
24
|
+
sodipodi:type="inkscape:persp3d"
|
25
|
+
inkscape:vp_x="0 : 24 : 1"
|
26
|
+
inkscape:vp_y="0 : 1000 : 0"
|
27
|
+
inkscape:vp_z="48 : 24 : 1"
|
28
|
+
inkscape:persp3d-origin="24 : 16 : 1"
|
29
|
+
id="perspective79" />
|
30
|
+
<linearGradient
|
31
|
+
inkscape:collect="always"
|
32
|
+
id="linearGradient5060">
|
33
|
+
<stop
|
34
|
+
style="stop-color:black;stop-opacity:1;"
|
35
|
+
offset="0"
|
36
|
+
id="stop5062" />
|
37
|
+
<stop
|
38
|
+
style="stop-color:black;stop-opacity:0;"
|
39
|
+
offset="1"
|
40
|
+
id="stop5064" />
|
41
|
+
</linearGradient>
|
42
|
+
<linearGradient
|
43
|
+
id="linearGradient5048">
|
44
|
+
<stop
|
45
|
+
style="stop-color:black;stop-opacity:0;"
|
46
|
+
offset="0"
|
47
|
+
id="stop5050" />
|
48
|
+
<stop
|
49
|
+
id="stop5056"
|
50
|
+
offset="0.5"
|
51
|
+
style="stop-color:black;stop-opacity:1;" />
|
52
|
+
<stop
|
53
|
+
style="stop-color:black;stop-opacity:0;"
|
54
|
+
offset="1"
|
55
|
+
id="stop5052" />
|
56
|
+
</linearGradient>
|
57
|
+
<linearGradient
|
58
|
+
id="linearGradient7844"
|
59
|
+
inkscape:collect="always">
|
60
|
+
<stop
|
61
|
+
id="stop7846"
|
62
|
+
offset="0"
|
63
|
+
style="stop-color:#000000;stop-opacity:1;" />
|
64
|
+
<stop
|
65
|
+
id="stop7848"
|
66
|
+
offset="1"
|
67
|
+
style="stop-color:#000000;stop-opacity:0;" />
|
68
|
+
</linearGradient>
|
69
|
+
<linearGradient
|
70
|
+
id="linearGradient7834"
|
71
|
+
inkscape:collect="always">
|
72
|
+
<stop
|
73
|
+
id="stop7836"
|
74
|
+
offset="0"
|
75
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
76
|
+
<stop
|
77
|
+
id="stop7838"
|
78
|
+
offset="1"
|
79
|
+
style="stop-color:#ffffff;stop-opacity:0;" />
|
80
|
+
</linearGradient>
|
81
|
+
<linearGradient
|
82
|
+
id="linearGradient7670">
|
83
|
+
<stop
|
84
|
+
id="stop7672"
|
85
|
+
offset="0"
|
86
|
+
style="stop-color:#dfdfdf;stop-opacity:1;" />
|
87
|
+
<stop
|
88
|
+
id="stop7674"
|
89
|
+
offset="1.0000000"
|
90
|
+
style="stop-color:#c0c0c0;stop-opacity:1.0000000;" />
|
91
|
+
</linearGradient>
|
92
|
+
<radialGradient
|
93
|
+
gradientUnits="userSpaceOnUse"
|
94
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.06362)"
|
95
|
+
r="22.728432"
|
96
|
+
fy="37.595428"
|
97
|
+
fx="24.546707"
|
98
|
+
cy="37.595428"
|
99
|
+
cx="24.546707"
|
100
|
+
id="radialGradient7850"
|
101
|
+
xlink:href="#linearGradient7844"
|
102
|
+
inkscape:collect="always" />
|
103
|
+
<linearGradient
|
104
|
+
id="aigrd1"
|
105
|
+
gradientUnits="userSpaceOnUse"
|
106
|
+
x1="14.9966"
|
107
|
+
y1="11.1885"
|
108
|
+
x2="32.511002"
|
109
|
+
y2="34.307499">
|
110
|
+
<stop
|
111
|
+
offset="0"
|
112
|
+
style="stop-color:#EBEBEB"
|
113
|
+
id="stop3034" />
|
114
|
+
<stop
|
115
|
+
offset="0.5"
|
116
|
+
style="stop-color:#FFFFFF"
|
117
|
+
id="stop3036" />
|
118
|
+
<stop
|
119
|
+
offset="1"
|
120
|
+
style="stop-color:#EBEBEB"
|
121
|
+
id="stop3038" />
|
122
|
+
</linearGradient>
|
123
|
+
<linearGradient
|
124
|
+
id="aigrd2"
|
125
|
+
gradientUnits="userSpaceOnUse"
|
126
|
+
x1="12.2744"
|
127
|
+
y1="32.4165"
|
128
|
+
x2="35.391201"
|
129
|
+
y2="14.2033">
|
130
|
+
<stop
|
131
|
+
offset="0"
|
132
|
+
style="stop-color:#FBFBFB"
|
133
|
+
id="stop3043" />
|
134
|
+
<stop
|
135
|
+
offset="0.5"
|
136
|
+
style="stop-color:#B6B6B6"
|
137
|
+
id="stop3045" />
|
138
|
+
<stop
|
139
|
+
offset="1"
|
140
|
+
style="stop-color:#E4E4E4"
|
141
|
+
id="stop3047" />
|
142
|
+
</linearGradient>
|
143
|
+
<linearGradient
|
144
|
+
id="linearGradient4236">
|
145
|
+
<stop
|
146
|
+
style="stop-color:#ffffff;stop-opacity:0.32673267;"
|
147
|
+
offset="0.0000000"
|
148
|
+
id="stop4238" />
|
149
|
+
<stop
|
150
|
+
style="stop-color:#ffffff;stop-opacity:0.60396039;"
|
151
|
+
offset="1.0000000"
|
152
|
+
id="stop4240" />
|
153
|
+
</linearGradient>
|
154
|
+
<linearGradient
|
155
|
+
inkscape:collect="always"
|
156
|
+
id="linearGradient6028">
|
157
|
+
<stop
|
158
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
159
|
+
offset="0"
|
160
|
+
id="stop6030" />
|
161
|
+
<stop
|
162
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
163
|
+
offset="1"
|
164
|
+
id="stop6032" />
|
165
|
+
</linearGradient>
|
166
|
+
<linearGradient
|
167
|
+
inkscape:collect="always"
|
168
|
+
id="linearGradient6036">
|
169
|
+
<stop
|
170
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
171
|
+
offset="0"
|
172
|
+
id="stop6038" />
|
173
|
+
<stop
|
174
|
+
style="stop-color:#ffffff;stop-opacity:0;"
|
175
|
+
offset="1"
|
176
|
+
id="stop6040" />
|
177
|
+
</linearGradient>
|
178
|
+
<linearGradient
|
179
|
+
y2="14.2033"
|
180
|
+
x2="35.391201"
|
181
|
+
y1="32.4165"
|
182
|
+
x1="12.2744"
|
183
|
+
gradientUnits="userSpaceOnUse"
|
184
|
+
id="linearGradient3394">
|
185
|
+
<stop
|
186
|
+
id="stop3396"
|
187
|
+
style="stop-color:#fff307;stop-opacity:1.0000000;"
|
188
|
+
offset="0.0000000" />
|
189
|
+
<stop
|
190
|
+
id="stop3398"
|
191
|
+
style="stop-color:#166eff;stop-opacity:1.0000000;"
|
192
|
+
offset="0.50000000" />
|
193
|
+
<stop
|
194
|
+
id="stop3400"
|
195
|
+
style="stop-color:#ffffff;stop-opacity:0.0000000;"
|
196
|
+
offset="1.0000000" />
|
197
|
+
</linearGradient>
|
198
|
+
<linearGradient
|
199
|
+
inkscape:collect="always"
|
200
|
+
xlink:href="#linearGradient5048"
|
201
|
+
id="linearGradient3130"
|
202
|
+
gradientUnits="userSpaceOnUse"
|
203
|
+
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
|
204
|
+
x1="302.85715"
|
205
|
+
y1="366.64789"
|
206
|
+
x2="302.85715"
|
207
|
+
y2="609.50507" />
|
208
|
+
<radialGradient
|
209
|
+
inkscape:collect="always"
|
210
|
+
xlink:href="#linearGradient5060"
|
211
|
+
id="radialGradient3132"
|
212
|
+
gradientUnits="userSpaceOnUse"
|
213
|
+
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
|
214
|
+
cx="605.71429"
|
215
|
+
cy="486.64789"
|
216
|
+
fx="605.71429"
|
217
|
+
fy="486.64789"
|
218
|
+
r="117.14286" />
|
219
|
+
<radialGradient
|
220
|
+
inkscape:collect="always"
|
221
|
+
xlink:href="#linearGradient5060"
|
222
|
+
id="radialGradient3134"
|
223
|
+
gradientUnits="userSpaceOnUse"
|
224
|
+
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
|
225
|
+
cx="605.71429"
|
226
|
+
cy="486.64789"
|
227
|
+
fx="605.71429"
|
228
|
+
fy="486.64789"
|
229
|
+
r="117.14286" />
|
230
|
+
<radialGradient
|
231
|
+
inkscape:collect="always"
|
232
|
+
xlink:href="#linearGradient7844"
|
233
|
+
id="radialGradient3140"
|
234
|
+
gradientUnits="userSpaceOnUse"
|
235
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.06362)"
|
236
|
+
cx="24.546707"
|
237
|
+
cy="37.595428"
|
238
|
+
fx="24.546707"
|
239
|
+
fy="37.595428"
|
240
|
+
r="22.728432" />
|
241
|
+
<linearGradient
|
242
|
+
inkscape:collect="always"
|
243
|
+
xlink:href="#aigrd1"
|
244
|
+
id="linearGradient3142"
|
245
|
+
gradientUnits="userSpaceOnUse"
|
246
|
+
gradientTransform="matrix(0.683145,0,0,0.683145,18.55581,18.12886)"
|
247
|
+
x1="14.9966"
|
248
|
+
y1="11.1885"
|
249
|
+
x2="32.511002"
|
250
|
+
y2="34.307499" />
|
251
|
+
<linearGradient
|
252
|
+
inkscape:collect="always"
|
253
|
+
xlink:href="#aigrd2"
|
254
|
+
id="linearGradient3144"
|
255
|
+
gradientUnits="userSpaceOnUse"
|
256
|
+
gradientTransform="matrix(0.705308,0,0,0.705308,18.02392,17.61692)"
|
257
|
+
x1="12.2744"
|
258
|
+
y1="32.4165"
|
259
|
+
x2="35.391201"
|
260
|
+
y2="14.2033" />
|
261
|
+
<linearGradient
|
262
|
+
inkscape:collect="always"
|
263
|
+
xlink:href="#linearGradient4236"
|
264
|
+
id="linearGradient3146"
|
265
|
+
gradientUnits="userSpaceOnUse"
|
266
|
+
gradientTransform="matrix(0.717302,0,0,0.717302,17.73603,18.06909)"
|
267
|
+
x1="21.125"
|
268
|
+
y1="14.625"
|
269
|
+
x2="29"
|
270
|
+
y2="28" />
|
271
|
+
<linearGradient
|
272
|
+
inkscape:collect="always"
|
273
|
+
xlink:href="#linearGradient4236"
|
274
|
+
id="linearGradient3148"
|
275
|
+
gradientUnits="userSpaceOnUse"
|
276
|
+
gradientTransform="matrix(0.717302,0,0,0.717302,17.73603,18.06909)"
|
277
|
+
x1="21.125"
|
278
|
+
y1="14.625"
|
279
|
+
x2="29"
|
280
|
+
y2="28" />
|
281
|
+
<linearGradient
|
282
|
+
inkscape:collect="always"
|
283
|
+
xlink:href="#linearGradient6036"
|
284
|
+
id="linearGradient3150"
|
285
|
+
gradientUnits="userSpaceOnUse"
|
286
|
+
gradientTransform="matrix(0.573842,0,0,0.573842,20.97995,19.56347)"
|
287
|
+
x1="10.50172"
|
288
|
+
y1="3.6100161"
|
289
|
+
x2="48.798885"
|
290
|
+
y2="54.698483" />
|
291
|
+
<linearGradient
|
292
|
+
inkscape:collect="always"
|
293
|
+
xlink:href="#linearGradient6028"
|
294
|
+
id="linearGradient3152"
|
295
|
+
gradientUnits="userSpaceOnUse"
|
296
|
+
x1="28.702885"
|
297
|
+
y1="31.494707"
|
298
|
+
x2="17.742729"
|
299
|
+
y2="18.366575" />
|
300
|
+
<radialGradient
|
301
|
+
inkscape:collect="always"
|
302
|
+
xlink:href="#linearGradient3394"
|
303
|
+
id="radialGradient3154"
|
304
|
+
gradientUnits="userSpaceOnUse"
|
305
|
+
gradientTransform="matrix(0.441746,0.498655,-0.407098,0.360624,32.00755,10.21308)"
|
306
|
+
cx="37.751469"
|
307
|
+
cy="27.569166"
|
308
|
+
fx="37.751469"
|
309
|
+
fy="27.569166"
|
310
|
+
r="21.333334" />
|
311
|
+
<linearGradient
|
312
|
+
inkscape:collect="always"
|
313
|
+
xlink:href="#linearGradient7834"
|
314
|
+
id="linearGradient3168"
|
315
|
+
gradientUnits="userSpaceOnUse"
|
316
|
+
gradientTransform="matrix(0.37,0,0,0.37,-0.3541177,-7.6701598e-2)"
|
317
|
+
x1="19.362535"
|
318
|
+
y1="11.312428"
|
319
|
+
x2="19.323767"
|
320
|
+
y2="0.50379461" />
|
321
|
+
<linearGradient
|
322
|
+
inkscape:collect="always"
|
323
|
+
xlink:href="#linearGradient7670"
|
324
|
+
id="linearGradient3174"
|
325
|
+
gradientUnits="userSpaceOnUse"
|
326
|
+
gradientTransform="matrix(0.3731491,0,0,0.37,-17.224549,-0.1824156)"
|
327
|
+
x1="64.571426"
|
328
|
+
y1="9.7142859"
|
329
|
+
x2="72.85714"
|
330
|
+
y2="40.857143" />
|
331
|
+
<linearGradient
|
332
|
+
inkscape:collect="always"
|
333
|
+
xlink:href="#linearGradient5048"
|
334
|
+
id="linearGradient2474"
|
335
|
+
gradientUnits="userSpaceOnUse"
|
336
|
+
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
|
337
|
+
x1="302.85715"
|
338
|
+
y1="366.64789"
|
339
|
+
x2="302.85715"
|
340
|
+
y2="609.50507" />
|
341
|
+
<radialGradient
|
342
|
+
inkscape:collect="always"
|
343
|
+
xlink:href="#linearGradient5060"
|
344
|
+
id="radialGradient2476"
|
345
|
+
gradientUnits="userSpaceOnUse"
|
346
|
+
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
|
347
|
+
cx="605.71429"
|
348
|
+
cy="486.64789"
|
349
|
+
fx="605.71429"
|
350
|
+
fy="486.64789"
|
351
|
+
r="117.14286" />
|
352
|
+
<radialGradient
|
353
|
+
inkscape:collect="always"
|
354
|
+
xlink:href="#linearGradient5060"
|
355
|
+
id="radialGradient2478"
|
356
|
+
gradientUnits="userSpaceOnUse"
|
357
|
+
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
|
358
|
+
cx="605.71429"
|
359
|
+
cy="486.64789"
|
360
|
+
fx="605.71429"
|
361
|
+
fy="486.64789"
|
362
|
+
r="117.14286" />
|
363
|
+
<linearGradient
|
364
|
+
inkscape:collect="always"
|
365
|
+
xlink:href="#linearGradient7670"
|
366
|
+
id="linearGradient2480"
|
367
|
+
gradientUnits="userSpaceOnUse"
|
368
|
+
gradientTransform="matrix(0.3731491,0,0,0.37,-17.224549,-0.1824156)"
|
369
|
+
x1="64.571426"
|
370
|
+
y1="9.7142859"
|
371
|
+
x2="72.85714"
|
372
|
+
y2="40.857143" />
|
373
|
+
<linearGradient
|
374
|
+
inkscape:collect="always"
|
375
|
+
xlink:href="#linearGradient7834"
|
376
|
+
id="linearGradient2482"
|
377
|
+
gradientUnits="userSpaceOnUse"
|
378
|
+
gradientTransform="matrix(0.37,0,0,0.37,-0.3541177,-7.6701598e-2)"
|
379
|
+
x1="19.362535"
|
380
|
+
y1="11.312428"
|
381
|
+
x2="19.323767"
|
382
|
+
y2="0.50379461" />
|
383
|
+
<radialGradient
|
384
|
+
inkscape:collect="always"
|
385
|
+
xlink:href="#linearGradient7844"
|
386
|
+
id="radialGradient2484"
|
387
|
+
gradientUnits="userSpaceOnUse"
|
388
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.06362)"
|
389
|
+
cx="24.546707"
|
390
|
+
cy="37.595428"
|
391
|
+
fx="24.546707"
|
392
|
+
fy="37.595428"
|
393
|
+
r="22.728432" />
|
394
|
+
<linearGradient
|
395
|
+
inkscape:collect="always"
|
396
|
+
xlink:href="#aigrd1"
|
397
|
+
id="linearGradient2486"
|
398
|
+
gradientUnits="userSpaceOnUse"
|
399
|
+
gradientTransform="matrix(0.683145,0,0,0.683145,18.55581,18.12886)"
|
400
|
+
x1="14.9966"
|
401
|
+
y1="11.1885"
|
402
|
+
x2="32.511002"
|
403
|
+
y2="34.307499" />
|
404
|
+
<linearGradient
|
405
|
+
inkscape:collect="always"
|
406
|
+
xlink:href="#aigrd2"
|
407
|
+
id="linearGradient2488"
|
408
|
+
gradientUnits="userSpaceOnUse"
|
409
|
+
gradientTransform="matrix(0.705308,0,0,0.705308,18.02392,17.61692)"
|
410
|
+
x1="12.2744"
|
411
|
+
y1="32.4165"
|
412
|
+
x2="35.391201"
|
413
|
+
y2="14.2033" />
|
414
|
+
<linearGradient
|
415
|
+
inkscape:collect="always"
|
416
|
+
xlink:href="#linearGradient4236"
|
417
|
+
id="linearGradient2490"
|
418
|
+
gradientUnits="userSpaceOnUse"
|
419
|
+
gradientTransform="matrix(0.717302,0,0,0.717302,17.73603,18.06909)"
|
420
|
+
x1="21.125"
|
421
|
+
y1="14.625"
|
422
|
+
x2="29"
|
423
|
+
y2="28" />
|
424
|
+
<linearGradient
|
425
|
+
inkscape:collect="always"
|
426
|
+
xlink:href="#linearGradient4236"
|
427
|
+
id="linearGradient2492"
|
428
|
+
gradientUnits="userSpaceOnUse"
|
429
|
+
gradientTransform="matrix(0.717302,0,0,0.717302,17.73603,18.06909)"
|
430
|
+
x1="21.125"
|
431
|
+
y1="14.625"
|
432
|
+
x2="29"
|
433
|
+
y2="28" />
|
434
|
+
<linearGradient
|
435
|
+
inkscape:collect="always"
|
436
|
+
xlink:href="#linearGradient6036"
|
437
|
+
id="linearGradient2494"
|
438
|
+
gradientUnits="userSpaceOnUse"
|
439
|
+
gradientTransform="matrix(0.573842,0,0,0.573842,20.97995,19.56347)"
|
440
|
+
x1="10.50172"
|
441
|
+
y1="3.6100161"
|
442
|
+
x2="48.798885"
|
443
|
+
y2="54.698483" />
|
444
|
+
<linearGradient
|
445
|
+
inkscape:collect="always"
|
446
|
+
xlink:href="#linearGradient6028"
|
447
|
+
id="linearGradient2496"
|
448
|
+
gradientUnits="userSpaceOnUse"
|
449
|
+
x1="28.702885"
|
450
|
+
y1="31.494707"
|
451
|
+
x2="17.742729"
|
452
|
+
y2="18.366575" />
|
453
|
+
<radialGradient
|
454
|
+
inkscape:collect="always"
|
455
|
+
xlink:href="#linearGradient3394"
|
456
|
+
id="radialGradient2498"
|
457
|
+
gradientUnits="userSpaceOnUse"
|
458
|
+
gradientTransform="matrix(0.441746,0.498655,-0.407098,0.360624,32.00755,10.21308)"
|
459
|
+
cx="37.751469"
|
460
|
+
cy="27.569166"
|
461
|
+
fx="37.751469"
|
462
|
+
fy="27.569166"
|
463
|
+
r="21.333334" />
|
464
|
+
</defs>
|
465
|
+
<sodipodi:namedview
|
466
|
+
fill="#a40000"
|
467
|
+
id="base"
|
468
|
+
pagecolor="#ffffff"
|
469
|
+
bordercolor="#666666"
|
470
|
+
borderopacity="0.26666667"
|
471
|
+
inkscape:pageopacity="0.0"
|
472
|
+
inkscape:pageshadow="2"
|
473
|
+
inkscape:zoom="16"
|
474
|
+
inkscape:cx="13.469631"
|
475
|
+
inkscape:cy="9.6806661"
|
476
|
+
inkscape:current-layer="layer1"
|
477
|
+
showgrid="false"
|
478
|
+
inkscape:grid-bbox="true"
|
479
|
+
inkscape:document-units="px"
|
480
|
+
inkscape:showpageshadow="false"
|
481
|
+
inkscape:window-width="872"
|
482
|
+
inkscape:window-height="688"
|
483
|
+
inkscape:window-x="19"
|
484
|
+
inkscape:window-y="96"
|
485
|
+
width="18px" />
|
486
|
+
<metadata
|
487
|
+
id="metadata4">
|
488
|
+
<rdf:RDF>
|
489
|
+
<cc:Work
|
490
|
+
rdf:about="">
|
491
|
+
<dc:format>image/svg+xml</dc:format>
|
492
|
+
<dc:type
|
493
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
494
|
+
<dc:title>System - Installer</dc:title>
|
495
|
+
<dc:creator>
|
496
|
+
<cc:Agent>
|
497
|
+
<dc:title>jakub Steiner</dc:title>
|
498
|
+
</cc:Agent>
|
499
|
+
</dc:creator>
|
500
|
+
<dc:source>http://jimmac.musichall.cz</dc:source>
|
501
|
+
<cc:license
|
502
|
+
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
|
503
|
+
</cc:Work>
|
504
|
+
<cc:License
|
505
|
+
rdf:about="http://creativecommons.org/licenses/publicdomain/">
|
506
|
+
<cc:permits
|
507
|
+
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
508
|
+
<cc:permits
|
509
|
+
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
510
|
+
<cc:permits
|
511
|
+
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
512
|
+
</cc:License>
|
513
|
+
</rdf:RDF>
|
514
|
+
</metadata>
|
515
|
+
<g
|
516
|
+
id="layer1"
|
517
|
+
inkscape:label="Layer 1"
|
518
|
+
inkscape:groupmode="layer">
|
519
|
+
<g
|
520
|
+
id="g2451"
|
521
|
+
transform="matrix(1.1025,0,0,1.1025,-1.1960416,-1.3202717)">
|
522
|
+
<path
|
523
|
+
style="fill:#6b6c69;fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.37;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
524
|
+
d="M 3.0004323,3.5613724 L 4.5087393,1.9847274 L 13.230168,1.9847274 L 14.828707,3.5987484 L 3.0004323,3.5613724 z"
|
525
|
+
id="path7822"
|
526
|
+
sodipodi:nodetypes="ccccc" />
|
527
|
+
<g
|
528
|
+
transform="matrix(7.467636e-3,0,0,7.7210046e-3,15.590721,13.722981)"
|
529
|
+
id="g5022">
|
530
|
+
<rect
|
531
|
+
style="opacity:0.40206185;fill:url(#linearGradient2474);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
532
|
+
id="rect4173"
|
533
|
+
width="1339.6335"
|
534
|
+
height="478.35718"
|
535
|
+
x="-1559.2523"
|
536
|
+
y="-150.69685" />
|
537
|
+
<path
|
538
|
+
style="opacity:0.40206185;fill:url(#radialGradient2476);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
539
|
+
d="M -219.61876,-150.68038 C -219.61876,-150.68038 -219.61876,327.65041 -219.61876,327.65041 C -76.744594,328.55086 125.78146,220.48075 125.78138,88.454235 C 125.78138,-43.572302 -33.655436,-150.68036 -219.61876,-150.68038 z"
|
540
|
+
id="path5058"
|
541
|
+
sodipodi:nodetypes="cccc" />
|
542
|
+
<path
|
543
|
+
sodipodi:nodetypes="cccc"
|
544
|
+
id="path5018"
|
545
|
+
d="M -1559.2523,-150.68038 C -1559.2523,-150.68038 -1559.2523,327.65041 -1559.2523,327.65041 C -1702.1265,328.55086 -1904.6525,220.48075 -1904.6525,88.454235 C -1904.6525,-43.572302 -1745.2157,-150.68036 -1559.2523,-150.68038 z"
|
546
|
+
style="opacity:0.40206185;fill:url(#radialGradient2478);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
547
|
+
</g>
|
548
|
+
<rect
|
549
|
+
style="fill:url(#linearGradient2480);fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.37000003;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
550
|
+
id="rect6910"
|
551
|
+
width="12.153998"
|
552
|
+
height="11.522857"
|
553
|
+
x="2.8188863"
|
554
|
+
y="3.411869"
|
555
|
+
rx="0.52857167"
|
556
|
+
ry="0.52857143" />
|
557
|
+
<path
|
558
|
+
style="fill:#a40000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
559
|
+
d="M 14.763025,8.3430654 L 14.763025,14.421637 C 14.763025,14.597334 14.628666,14.73878 14.461772,14.73878 L 6.2594373,14.73878 L 6.2777113,8.3430654 C 6.2777113,8.3430654 14.763025,8.3430654 14.763025,8.3430654 z"
|
560
|
+
id="rect7826"
|
561
|
+
sodipodi:nodetypes="cccccc" />
|
562
|
+
<path
|
563
|
+
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#606060;stroke-width:0.37;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:0.37, 0.37;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
564
|
+
d="M 6.0763153,4.0990124 L 6.0763153,14.459012"
|
565
|
+
id="path7824"
|
566
|
+
sodipodi:nodetypes="cc" />
|
567
|
+
<path
|
568
|
+
sodipodi:nodetypes="cccccc"
|
569
|
+
id="path10582"
|
570
|
+
d="M 14.763025,8.2902094 L 14.763025,4.1673514 C 14.763025,3.9916544 14.628666,3.8502084 14.461772,3.8502084 L 6.2594373,3.8502084 L 6.2777113,8.2902094 C 6.2777113,8.2902094 14.763025,8.2902094 14.763025,8.2902094 z"
|
571
|
+
style="fill:#f0f0f0;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
572
|
+
<path
|
573
|
+
style="opacity:0.62566845;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2482);stroke-width:0.36999997;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
574
|
+
d="M 4.6456673,2.3384614 C 4.6456673,2.3384614 13.071349,2.3384614 13.071349,2.3384614 C 13.071349,2.3384614 14.646439,3.9135514 14.646439,3.9135514 L 14.646439,14.433042 C 14.646439,14.539515 14.560722,14.625232 14.454248,14.625232 L 3.3375193,14.625232 C 3.2310463,14.625232 3.1453293,14.539515 3.1453293,14.433042 L 3.1453293,3.9135514 C 3.1453293,3.9135514 4.6456673,2.3384614 4.6456673,2.3384614 z"
|
575
|
+
id="rect7829"
|
576
|
+
sodipodi:nodetypes="ccccccccs" />
|
577
|
+
<g
|
578
|
+
id="g10554"
|
579
|
+
transform="matrix(0.37,0,0,0.37,1.5883271e-2,-0.1824156)">
|
580
|
+
<path
|
581
|
+
sodipodi:type="arc"
|
582
|
+
style="opacity:0.62566845;fill:url(#radialGradient2484);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1, 1;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
583
|
+
id="path10170"
|
584
|
+
sodipodi:cx="24.546707"
|
585
|
+
sodipodi:cy="37.595428"
|
586
|
+
sodipodi:rx="22.728432"
|
587
|
+
sodipodi:ry="7.5761442"
|
588
|
+
d="M 47.275139,37.595428 A 22.728432,7.5761442 0 1 1 1.8182755,37.595428 A 22.728432,7.5761442 0 1 1 47.275139,37.595428 z"
|
589
|
+
transform="matrix(0.55024,0,0,0.55024,19.89726,20.62321)" />
|
590
|
+
<g
|
591
|
+
transform="translate(-1.642857,-2.642857)"
|
592
|
+
id="g10156">
|
593
|
+
<path
|
594
|
+
id="path3040"
|
595
|
+
d="M 34.951289,21.954475 C 28.32478,21.954475 22.996247,27.283008 22.996247,33.909517 C 22.996247,40.536026 28.32478,45.864559 34.951289,45.864559 C 41.577799,45.864559 46.906332,40.536026 46.906332,33.909517 C 46.906332,27.283008 41.577799,21.954475 34.951289,21.954475 L 34.951289,21.954475 z M 34.951289,36.778727 C 33.380055,36.778727 32.082079,35.480751 32.082079,33.909517 C 32.082079,32.338283 33.380055,31.040307 34.951289,31.040307 C 36.522523,31.040307 37.820499,32.338283 37.820499,33.909517 C 37.820499,35.480751 36.522523,36.778727 34.951289,36.778727 z"
|
596
|
+
style="fill:url(#linearGradient2486);fill-rule:nonzero;stroke:none;stroke-miterlimit:4" />
|
597
|
+
<path
|
598
|
+
id="path3049"
|
599
|
+
d="M 34.951305,21.566644 C 28.109819,21.566644 22.608417,27.068045 22.608417,33.909532 C 22.608417,40.751018 28.109819,46.252419 34.951305,46.252419 C 41.792792,46.252419 47.294193,40.751018 47.294193,33.909532 C 47.294193,27.068045 41.792792,21.566644 34.951305,21.566644 L 34.951305,21.566644 z M 34.951305,36.871824 C 33.329097,36.871824 31.989012,35.53174 31.989012,33.909532 C 31.989012,32.287324 33.329097,30.947239 34.951305,30.947239 C 36.573513,30.947239 37.913598,32.287324 37.913598,33.909532 C 37.913598,35.53174 36.573513,36.871824 34.951305,36.871824 z"
|
600
|
+
style="fill:url(#linearGradient2488);fill-rule:nonzero;stroke:#808080;stroke-miterlimit:4;stroke-opacity:1" />
|
601
|
+
<path
|
602
|
+
id="path3051"
|
603
|
+
d="M 34.951289,28.111323 C 31.713337,28.111323 29.153095,30.746866 29.153095,33.909517 C 29.153095,37.147471 31.788638,39.707712 34.951289,39.707712 C 38.189242,39.707712 40.749484,37.072169 40.749484,33.909517 C 40.749484,30.671564 38.11394,28.111323 34.951289,28.111323 L 34.951289,28.111323 z M 34.951289,37.072169 C 33.219361,37.072169 31.788638,35.641446 31.788638,33.909517 C 31.788638,32.177589 33.219361,30.746866 34.951289,30.746866 C 36.683217,30.746866 38.11394,32.177589 38.11394,33.909517 C 38.11394,35.641446 36.683217,37.072169 34.951289,37.072169 z"
|
604
|
+
style="opacity:0.10999995;fill-rule:nonzero;stroke:none;stroke-miterlimit:4" />
|
605
|
+
<path
|
606
|
+
style="fill:url(#linearGradient2490);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1"
|
607
|
+
d="M 38.150519,22.816711 L 36.086643,30.847436 C 36.732045,31.019312 37.248181,31.418679 37.59879,31.97133 L 44.709966,27.639233 C 43.255134,25.269429 40.920193,23.525895 38.150519,22.816711 z"
|
608
|
+
id="path3916" />
|
609
|
+
<path
|
610
|
+
id="path4214"
|
611
|
+
d="M 30.911911,44.678269 L 33.629199,36.844465 C 33.000117,36.620097 32.518571,36.179639 32.214597,35.600027 L 24.771257,39.332667 C 26.026282,41.814082 28.209936,43.743724 30.911911,44.678269 z"
|
612
|
+
style="fill:url(#linearGradient2492);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1" />
|
613
|
+
<path
|
614
|
+
style="opacity:0.54644811;fill:none;fill-rule:nonzero;stroke:url(#linearGradient2494);stroke-miterlimit:4;stroke-opacity:1"
|
615
|
+
d="M 34.951287,22.548803 C 28.654207,22.548803 23.590575,27.612435 23.590575,33.909515 C 23.590575,40.206596 28.654207,45.270227 34.951287,45.270227 C 41.248368,45.270227 46.311999,40.206596 46.311999,33.909515 C 46.311999,27.612435 41.248368,22.548803 34.951287,22.548803 L 34.951287,22.548803 z"
|
616
|
+
id="path5264"
|
617
|
+
sodipodi:nodetypes="cccccc" />
|
618
|
+
<path
|
619
|
+
sodipodi:type="arc"
|
620
|
+
style="opacity:0.67213111;fill:none;fill-opacity:0.31638417;fill-rule:nonzero;stroke:url(#linearGradient2496);stroke-width:1.62159407;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
621
|
+
id="path6026"
|
622
|
+
sodipodi:cx="24.306795"
|
623
|
+
sodipodi:cy="24.930641"
|
624
|
+
sodipodi:rx="6.0987959"
|
625
|
+
sodipodi:ry="6.0987959"
|
626
|
+
d="M 30.405591,24.930641 A 6.0987959,6.0987959 0 1 1 18.207999,24.930641 A 6.0987959,6.0987959 0 1 1 30.405591,24.930641 z"
|
627
|
+
transform="matrix(0.573842,0,0,0.573842,21.03068,19.61419)" />
|
628
|
+
<path
|
629
|
+
style="opacity:0.11428564;fill:url(#radialGradient2498);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-miterlimit:4;stroke-opacity:1"
|
630
|
+
d="M 34.951289,23.065643 C 28.940684,23.065643 24.107415,27.898912 24.107415,33.909517 C 24.107415,39.920122 28.940684,44.753391 34.951289,44.753391 C 40.961895,44.753391 45.795164,39.920122 45.795164,33.909517 C 45.795164,27.898912 40.961895,23.065643 34.951289,23.065643 L 34.951289,23.065643 z M 34.951289,36.512047 C 33.526094,36.512047 32.348759,35.334712 32.348759,33.909517 C 32.348759,32.484322 33.526094,31.306987 34.951289,31.306987 C 36.376484,31.306987 37.553819,32.484322 37.553819,33.909517 C 37.553819,35.334712 36.376484,36.512047 34.951289,36.512047 z"
|
631
|
+
id="path3390" />
|
632
|
+
</g>
|
633
|
+
</g>
|
634
|
+
</g>
|
635
|
+
</g>
|
636
|
+
</svg>
|