rabbit-slide-kou-redmine-tokyo-12 2017.5.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rabbit +1 -0
- data/README.rd +44 -0
- data/Rakefile +17 -0
- data/config.yaml +27 -0
- data/fast-redmine-full-text-search-by-groonga.rab +257 -0
- data/images/redmine-search-no-noise-screenshot.png +0 -0
- data/images/redmine-search-no-noise.svg +1208 -0
- data/images/redmine-search-noise-screenshot.png +0 -0
- data/images/redmine-search-noise.svg +1202 -0
- data/images/redmine-search-sort-options.png +0 -0
- data/images/redmine-search-speed.png +0 -0
- data/images/redmine-search.png +0 -0
- data/pdf/redmine-tokyo-12-fast-redmine-full-text-search-by-groonga.pdf +0 -0
- metadata +86 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f62cd27811d25569c07ba7020b55c9375e8256f4
|
4
|
+
data.tar.gz: b47d3d7479ddeedf0898c2c928a367a2fc36fbe2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1d49813eb00381ba90818fae0161cabcb3ac5f85aa698377f2dadcadd00968955864f878bf4c82c2c4464d80f205aa77097ba8ab115c1e6bd7268fce18be200b
|
7
|
+
data.tar.gz: 04307dc7c36669f667822ea667c8033a584893b8913572b4115df305e0b4858cdf18ed62c7d574cd37e0e773cfb0e13d4b6b74c7e2a743b4ce955581bea5d7fa
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
fast-redmine-full-text-search-by-groonga.rab
|
data/README.rd
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
= GroongaでRedmineを高速全文検索
|
2
|
+
|
3
|
+
Redmineに全文検索エンジンGroongaサポートを追加する「Full Text Search」プラグインを紹介します。このプラグインを使えば数十万チケットがあるRedmineでも高速に目的の情報を見つけられます。
|
4
|
+
|
5
|
+
== ライセンス
|
6
|
+
|
7
|
+
=== スライド
|
8
|
+
|
9
|
+
CC BY-SA 4.0
|
10
|
+
|
11
|
+
原著作者名は以下の通りです。
|
12
|
+
|
13
|
+
* 須藤功平(またはKouhei Sutou)
|
14
|
+
|
15
|
+
=== 画像
|
16
|
+
|
17
|
+
==== 各種Groonga関連プロダクトのロゴ
|
18
|
+
|
19
|
+
CC BY 3.0
|
20
|
+
|
21
|
+
原著作者名は以下の通りです。
|
22
|
+
|
23
|
+
* Groongaプロジェクト
|
24
|
+
|
25
|
+
== 作者向け
|
26
|
+
|
27
|
+
=== 表示
|
28
|
+
|
29
|
+
rake
|
30
|
+
|
31
|
+
=== 公開
|
32
|
+
|
33
|
+
rake publish
|
34
|
+
|
35
|
+
== 閲覧者向け
|
36
|
+
|
37
|
+
=== インストール
|
38
|
+
|
39
|
+
gem install rabbit-slide-kou-redmine-tokyo-12
|
40
|
+
|
41
|
+
=== 表示
|
42
|
+
|
43
|
+
rabbit rabbit-slide-kou-redmine-tokyo-12.gem
|
44
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require "rabbit/task/slide"
|
2
|
+
|
3
|
+
# Edit ./config.yaml to customize meta data
|
4
|
+
|
5
|
+
spec = nil
|
6
|
+
Rabbit::Task::Slide.new do |task|
|
7
|
+
spec = task.spec
|
8
|
+
spec.files += Dir.glob("images/**/*.*")
|
9
|
+
# spec.files -= Dir.glob("private/**/*.*")
|
10
|
+
spec.add_runtime_dependency("rabbit-theme-groonga")
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "Tag #{spec.version}"
|
14
|
+
task :tag do
|
15
|
+
sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
|
16
|
+
sh("git", "push", "--tags")
|
17
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
id: redmine-tokyo-12
|
3
|
+
base_name: fast-redmine-full-text-search-by-groonga
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- groonga
|
7
|
+
- mroonga
|
8
|
+
- pgroonga
|
9
|
+
- redmine
|
10
|
+
- full-text-search
|
11
|
+
presentation_date: 2017-05-13
|
12
|
+
version: 2017.5.13.0
|
13
|
+
licenses:
|
14
|
+
- CC BY-SA 4.0
|
15
|
+
- CC BY 3.0
|
16
|
+
slideshare_id:
|
17
|
+
speaker_deck_id:
|
18
|
+
ustream_id:
|
19
|
+
vimeo_id:
|
20
|
+
youtube_id:
|
21
|
+
author:
|
22
|
+
markup_language: :rd
|
23
|
+
name: Kouhei Sutou
|
24
|
+
email: kou@clear-code.com
|
25
|
+
rubygems_user: kou
|
26
|
+
slideshare_user: kou
|
27
|
+
speaker_deck_user:
|
@@ -0,0 +1,257 @@
|
|
1
|
+
= Groongaで\nRedmineを\n高速全文検索
|
2
|
+
|
3
|
+
: author
|
4
|
+
須藤功平
|
5
|
+
: institution
|
6
|
+
株式会社クリアコード
|
7
|
+
: content-source
|
8
|
+
redmine.tokyo第12回勉強会
|
9
|
+
: date
|
10
|
+
2017-05-13
|
11
|
+
: allotted-time
|
12
|
+
30m
|
13
|
+
: theme
|
14
|
+
groonga
|
15
|
+
|
16
|
+
= よく活用されたRedmine
|
17
|
+
|
18
|
+
(('tag:center'))
|
19
|
+
(('tag:x-large'))
|
20
|
+
情報の宝庫
|
21
|
+
|
22
|
+
* (('wait'))問題解決の経緯
|
23
|
+
* (('wait'))Wikiに整理したノウハウ
|
24
|
+
|
25
|
+
= さらに活用するために
|
26
|
+
|
27
|
+
* 必要なときに
|
28
|
+
* 必要な情報に
|
29
|
+
* 素早くアクセスしたい!
|
30
|
+
|
31
|
+
= 活用方法:検索!
|
32
|
+
|
33
|
+
# image
|
34
|
+
# src = images/redmine-search.png
|
35
|
+
# relative_width = 90
|
36
|
+
# reflect_ratio = 0.1
|
37
|
+
|
38
|
+
= 活用の壁
|
39
|
+
|
40
|
+
* よく活用されたRedmine
|
41
|
+
* 大量の情報(ただし((*玉石混合*)))
|
42
|
+
* (('wait'))さらに活用するための課題
|
43
|
+
* 大量→必要な情報を見つけにくい
|
44
|
+
* 大量→探す時間が増える
|
45
|
+
|
46
|
+
= 課題例1:検索ノイズが多い
|
47
|
+
|
48
|
+
# image
|
49
|
+
# src = images/redmine-search-noise.svg
|
50
|
+
# relative_height = 100
|
51
|
+
# reflect_ratio = 0.1
|
52
|
+
|
53
|
+
= 課題例2:検索が遅い
|
54
|
+
|
55
|
+
* (('wait'))本当に大量だとね!
|
56
|
+
* (('wait'))↓これくらいだと遅くない
|
57
|
+
* チケット数:3629
|
58
|
+
* コメント数:35721
|
59
|
+
* Wikiページ数:1016
|
60
|
+
* 1秒以内に返ってくる
|
61
|
+
|
62
|
+
= 解決策
|
63
|
+
|
64
|
+
Groongaで\n
|
65
|
+
Redmineを\n
|
66
|
+
高速・高精度\n
|
67
|
+
全文検索
|
68
|
+
|
69
|
+
= 解決例1:検索ノイズがない
|
70
|
+
|
71
|
+
# image
|
72
|
+
# src = images/redmine-search-no-noise.svg
|
73
|
+
# relative_height = 100
|
74
|
+
# reflect_ratio = 0.1
|
75
|
+
|
76
|
+
= 検索ノイズ?
|
77
|
+
|
78
|
+
* 上位N件でがっかりする?
|
79
|
+
* がっかり→ノイズ多い
|
80
|
+
* ユーザーは上位N件しか確認しない
|
81
|
+
* Groongaはスコアを調整してソート
|
82
|
+
* 件数は関係ない
|
83
|
+
* 実はこの例ではヒット件数は同じ
|
84
|
+
|
85
|
+
= 解決例2:検索が速い
|
86
|
+
|
87
|
+
* ↓これくらいだと誤差
|
88
|
+
* チケット数:3629
|
89
|
+
* コメント数:35721
|
90
|
+
* Wikiページ数:1016
|
91
|
+
|
92
|
+
= 200万チケットのケース
|
93
|
+
|
94
|
+
(('note:https://twitter.com/akahane92/status/733832496945594368'))
|
95
|
+
|
96
|
+
# image
|
97
|
+
# src = images/redmine-search-speed.png
|
98
|
+
# relative_height = 100
|
99
|
+
# reflect_ratio = 0.1
|
100
|
+
|
101
|
+
= ここまでのまとめ
|
102
|
+
|
103
|
+
* Redmineをさらに活用したい!
|
104
|
+
* 素早く必要な情報にアクセス!
|
105
|
+
* 検索をがんばらないと!
|
106
|
+
* Groongaで全文検索!
|
107
|
+
* 検索ノイズが少ない!
|
108
|
+
* 速い!
|
109
|
+
|
110
|
+
= ここからの話
|
111
|
+
|
112
|
+
導入したくなる情報を紹介
|
113
|
+
|
114
|
+
= インストール:RDBMS
|
115
|
+
|
116
|
+
* 対応RDBMS
|
117
|
+
* MySQLもPostgreSQLも!
|
118
|
+
* RDBMSにGroonga対応\n
|
119
|
+
プラグインをインストール\n
|
120
|
+
(('note:プラグイン:別途サービス管理不要→運用コスト増加なし'))
|
121
|
+
* MySQL:Mroonga
|
122
|
+
* PostgreSQL:PGroonga
|
123
|
+
|
124
|
+
= インストール:Mroonga
|
125
|
+
|
126
|
+
(('tag:center'))
|
127
|
+
(('note:http://mroonga.org/ja/docs/install.html'))
|
128
|
+
|
129
|
+
* パッケージで簡単インストール
|
130
|
+
* 対応プラットフォーム
|
131
|
+
* Debian GNU/Linux, Ubuntu
|
132
|
+
* CentOS Fedora
|
133
|
+
* macOS
|
134
|
+
* Windows
|
135
|
+
|
136
|
+
= インストール:PGroonga
|
137
|
+
|
138
|
+
(('tag:center'))
|
139
|
+
(('note:https://pgroonga.github.io/ja/install/'))
|
140
|
+
|
141
|
+
* パッケージで簡単インストール
|
142
|
+
* 対応プラットフォーム
|
143
|
+
* Debian GNU/Linux, Ubuntu
|
144
|
+
* CentOS Fedora
|
145
|
+
* macOS
|
146
|
+
* Windows
|
147
|
+
|
148
|
+
= 設定:PGroonga
|
149
|
+
|
150
|
+
(('tag:center'))
|
151
|
+
Redmine用のユーザーに\n
|
152
|
+
PGroongaを使う権限を付与
|
153
|
+
|
154
|
+
# coderay sql
|
155
|
+
CREATE EXTENSION pgroonga;
|
156
|
+
GRANT USAGE ON pgroonga TO ユーザー名;
|
157
|
+
|
158
|
+
= インストール:プラグイン
|
159
|
+
|
160
|
+
% cd redmine
|
161
|
+
% git clone \
|
162
|
+
https://github.com/okkez/redmine_full_text_search.git \
|
163
|
+
plugins/full_text_search
|
164
|
+
% bin/rake redmine:plugins:migrate RAILS_ENV=production
|
165
|
+
|
166
|
+
(('tag:center'))
|
167
|
+
再起動で完了!
|
168
|
+
|
169
|
+
= 高度な検索1:AND/OR/NOT
|
170
|
+
|
171
|
+
* キーワード単位でのAND/OR/NOT
|
172
|
+
* 従来:AND/ORのみ
|
173
|
+
* 従来:キーワード全体で切り替え
|
174
|
+
* 例:
|
175
|
+
* (Groonga OR Mroonga) -PostgreSQL
|
176
|
+
* GroongaまたはMroongaを含むが\n
|
177
|
+
PostgreSQLは含まない
|
178
|
+
|
179
|
+
= 高度な検索2:並び順の変更
|
180
|
+
|
181
|
+
* ソート対象:スコア・更新時刻
|
182
|
+
* 従来:更新時刻のみ
|
183
|
+
* ソート順:昇順・降順
|
184
|
+
* 従来:降順のみ
|
185
|
+
|
186
|
+
= 並び順の変更UI
|
187
|
+
|
188
|
+
# image
|
189
|
+
# src = images/redmine-search-sort-options.png
|
190
|
+
# relative_height = 100
|
191
|
+
# reflect_ratio = 0.1
|
192
|
+
|
193
|
+
= ここまでのまとめ
|
194
|
+
|
195
|
+
* 簡単にインストールできる
|
196
|
+
* 運用も楽
|
197
|
+
* AND/OR/NOTを使える
|
198
|
+
* 絞り込みに便利
|
199
|
+
* 並び順をカスタマイズできる
|
200
|
+
* スコアと更新時刻で十分
|
201
|
+
|
202
|
+
= ここからの話
|
203
|
+
|
204
|
+
今後の野望
|
205
|
+
|
206
|
+
= 類似issue検索
|
207
|
+
|
208
|
+
TODO
|
209
|
+
|
210
|
+
= 同義語展開
|
211
|
+
|
212
|
+
TODO
|
213
|
+
|
214
|
+
= ここまでのまとめ
|
215
|
+
|
216
|
+
* TODO
|
217
|
+
|
218
|
+
= ここからの話
|
219
|
+
|
220
|
+
Redmineの開発に\n
|
221
|
+
参加しよう!
|
222
|
+
|
223
|
+
= 開発に参加?
|
224
|
+
|
225
|
+
* Redmine本体のコードを書く\n
|
226
|
+
((*だけじゃない*))
|
227
|
+
* バグレポート・テスト・issue対応
|
228
|
+
* ドキュメント作成・宣伝
|
229
|
+
* プラグインを作る\n
|
230
|
+
((*だけじゃない*))
|
231
|
+
* 本体と同様↑のことも大事な開発
|
232
|
+
|
233
|
+
= 開発の参加例
|
234
|
+
|
235
|
+
* Groongaプラグイン開発時の\n
|
236
|
+
知見をフィードバック
|
237
|
+
* Defect #21993: サイズ上限が小
|
238
|
+
* Patch #23153: フックを追加
|
239
|
+
* Feature #25198: スコアを表示
|
240
|
+
|
241
|
+
= 敷居が高そう?
|
242
|
+
|
243
|
+
* OSS Gateワークショップへ\n
|
244
|
+
参加してみよう
|
245
|
+
* 「OSS開発に参加」を経験できる\n
|
246
|
+
(('note:(Redmineもプラグインの多くもOSS!)'))\n
|
247
|
+
(('note:(もちろんこのプラグインもGroongaもOSS!)'))
|
248
|
+
* https://oss-gate.doorkeeper.jp/
|
249
|
+
|
250
|
+
= まとめ
|
251
|
+
|
252
|
+
* Redmineをさらに活用するなら\n
|
253
|
+
Groongaプラグインを使おう!
|
254
|
+
* Redmineの開発に参加しよう!
|
255
|
+
* OSS Gateワークショップが役立つ
|
256
|
+
* 宣伝:全文検索のことは\n
|
257
|
+
クリアコードに相談しよう!
|
Binary file
|
@@ -0,0 +1,1208 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
width="307.03229mm"
|
14
|
+
height="201.02916mm"
|
15
|
+
viewBox="0 0 307.03228 201.02916"
|
16
|
+
version="1.1"
|
17
|
+
id="svg8"
|
18
|
+
inkscape:version="0.92.1 r15371"
|
19
|
+
sodipodi:docname="redmine-search-no-noise.svg">
|
20
|
+
<defs
|
21
|
+
id="defs2">
|
22
|
+
<inkscape:perspective
|
23
|
+
id="perspective39"
|
24
|
+
inkscape:persp3d-origin="24 : 16 : 1"
|
25
|
+
inkscape:vp_z="47.999999 : 24 : 1"
|
26
|
+
inkscape:vp_y="0 : 1000 : 0"
|
27
|
+
inkscape:vp_x="0 : 24 : 1"
|
28
|
+
sodipodi:type="inkscape:persp3d" />
|
29
|
+
<linearGradient
|
30
|
+
id="linearGradient3290">
|
31
|
+
<stop
|
32
|
+
style="stop-color:#fffcde;stop-opacity:1.0000000;"
|
33
|
+
offset="0.0000000"
|
34
|
+
id="stop3292" />
|
35
|
+
<stop
|
36
|
+
id="stop3294"
|
37
|
+
offset="0.64485979"
|
38
|
+
style="stop-color:#f6e76a;stop-opacity:1.0000000;" />
|
39
|
+
<stop
|
40
|
+
style="stop-color:#ffb738;stop-opacity:1.0000000;"
|
41
|
+
offset="1.0000000"
|
42
|
+
id="stop3296" />
|
43
|
+
</linearGradient>
|
44
|
+
<linearGradient
|
45
|
+
id="linearGradient2509">
|
46
|
+
<stop
|
47
|
+
id="stop2511"
|
48
|
+
offset="0.0000000"
|
49
|
+
style="stop-color:#fffbd5;stop-opacity:1.0000000;" />
|
50
|
+
<stop
|
51
|
+
id="stop2513"
|
52
|
+
offset="1.0000000"
|
53
|
+
style="stop-color:#edd400;stop-opacity:1.0000000;" />
|
54
|
+
</linearGradient>
|
55
|
+
<radialGradient
|
56
|
+
gradientUnits="userSpaceOnUse"
|
57
|
+
fy="39.5928"
|
58
|
+
fx="25.0527"
|
59
|
+
r="15.7572"
|
60
|
+
cy="39.5928"
|
61
|
+
cx="25.0527"
|
62
|
+
id="aigrd2"
|
63
|
+
gradientTransform="matrix(1.25,0,0,1.25,-6.479446,-13.37211)">
|
64
|
+
<stop
|
65
|
+
id="stop8602"
|
66
|
+
style="stop-color:#777777;stop-opacity:1.0000000;"
|
67
|
+
offset="0.0000000" />
|
68
|
+
<stop
|
69
|
+
id="stop8604"
|
70
|
+
style="stop-color:#000000"
|
71
|
+
offset="1" />
|
72
|
+
</radialGradient>
|
73
|
+
<linearGradient
|
74
|
+
inkscape:collect="always"
|
75
|
+
id="linearGradient4565">
|
76
|
+
<stop
|
77
|
+
style="stop-color:#000000;stop-opacity:1;"
|
78
|
+
offset="0"
|
79
|
+
id="stop4567" />
|
80
|
+
<stop
|
81
|
+
style="stop-color:#000000;stop-opacity:0;"
|
82
|
+
offset="1"
|
83
|
+
id="stop4569" />
|
84
|
+
</linearGradient>
|
85
|
+
<linearGradient
|
86
|
+
id="linearGradient3824">
|
87
|
+
<stop
|
88
|
+
style="stop-color:#ffffff;stop-opacity:1;"
|
89
|
+
offset="0"
|
90
|
+
id="stop3826" />
|
91
|
+
<stop
|
92
|
+
style="stop-color:#c9c9c9;stop-opacity:1.0000000;"
|
93
|
+
offset="1.0000000"
|
94
|
+
id="stop3828" />
|
95
|
+
</linearGradient>
|
96
|
+
<linearGradient
|
97
|
+
id="linearGradient3800">
|
98
|
+
<stop
|
99
|
+
style="stop-color:#ffeed6;stop-opacity:1.0000000;"
|
100
|
+
offset="0.0000000"
|
101
|
+
id="stop3802" />
|
102
|
+
<stop
|
103
|
+
id="stop8664"
|
104
|
+
offset="0.50000000"
|
105
|
+
style="stop-color:#e49c2f;stop-opacity:1.0000000;" />
|
106
|
+
<stop
|
107
|
+
style="stop-color:#ffc66c;stop-opacity:1.0000000;"
|
108
|
+
offset="1.0000000"
|
109
|
+
id="stop3804" />
|
110
|
+
</linearGradient>
|
111
|
+
<inkscape:perspective
|
112
|
+
id="perspective39-7"
|
113
|
+
inkscape:persp3d-origin="24 : 16 : 1"
|
114
|
+
inkscape:vp_z="47.999999 : 24 : 1"
|
115
|
+
inkscape:vp_y="0 : 1000 : 0"
|
116
|
+
inkscape:vp_x="0 : 24 : 1"
|
117
|
+
sodipodi:type="inkscape:persp3d" />
|
118
|
+
<radialGradient
|
119
|
+
gradientUnits="userSpaceOnUse"
|
120
|
+
fy="39.5928"
|
121
|
+
fx="25.0527"
|
122
|
+
r="15.7572"
|
123
|
+
cy="39.5928"
|
124
|
+
cx="25.0527"
|
125
|
+
id="aigrd2-4"
|
126
|
+
gradientTransform="matrix(1.25,0,0,-1.25,-6.479446,73.66448)">
|
127
|
+
<stop
|
128
|
+
id="stop8602-2"
|
129
|
+
style="stop-color:#777777;stop-opacity:1.0000000;"
|
130
|
+
offset="0.0000000" />
|
131
|
+
<stop
|
132
|
+
id="stop8604-2"
|
133
|
+
style="stop-color:#000000"
|
134
|
+
offset="1" />
|
135
|
+
</radialGradient>
|
136
|
+
<inkscape:perspective
|
137
|
+
id="perspective40"
|
138
|
+
inkscape:persp3d-origin="24 : 16 : 1"
|
139
|
+
inkscape:vp_z="47.999999 : 24 : 1"
|
140
|
+
inkscape:vp_y="0 : 1000 : 0"
|
141
|
+
inkscape:vp_x="0 : 24 : 1"
|
142
|
+
sodipodi:type="inkscape:persp3d" />
|
143
|
+
<linearGradient
|
144
|
+
id="linearGradient3068">
|
145
|
+
<stop
|
146
|
+
id="stop3070"
|
147
|
+
offset="0.0000000"
|
148
|
+
style="stop-color:#cccccc;stop-opacity:1.0000000;" />
|
149
|
+
<stop
|
150
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;"
|
151
|
+
offset="0.34579438"
|
152
|
+
id="stop3076" />
|
153
|
+
<stop
|
154
|
+
id="stop3078"
|
155
|
+
offset="0.72486681"
|
156
|
+
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
|
157
|
+
<stop
|
158
|
+
id="stop3072"
|
159
|
+
offset="1.0000000"
|
160
|
+
style="stop-color:#cecece;stop-opacity:1.0000000;" />
|
161
|
+
</linearGradient>
|
162
|
+
<radialGradient
|
163
|
+
r="19.714285"
|
164
|
+
fy="38.57143"
|
165
|
+
fx="24.714285"
|
166
|
+
cy="38.57143"
|
167
|
+
cx="24.714285"
|
168
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.71429)"
|
169
|
+
gradientUnits="userSpaceOnUse"
|
170
|
+
id="radialGradient1360"
|
171
|
+
xlink:href="#linearGradient4565"
|
172
|
+
inkscape:collect="always" />
|
173
|
+
<radialGradient
|
174
|
+
r="8.9020796"
|
175
|
+
fy="15.755712"
|
176
|
+
fx="29.158466"
|
177
|
+
cy="15.720984"
|
178
|
+
cx="29.288071"
|
179
|
+
gradientUnits="userSpaceOnUse"
|
180
|
+
id="radialGradient1362"
|
181
|
+
xlink:href="#linearGradient3290"
|
182
|
+
inkscape:collect="always" />
|
183
|
+
<linearGradient
|
184
|
+
gradientTransform="matrix(1,0,0,1.033654,1.5,-0.627404)"
|
185
|
+
gradientUnits="userSpaceOnUse"
|
186
|
+
y2="32.875"
|
187
|
+
x2="14"
|
188
|
+
y1="21.0625"
|
189
|
+
x1="14"
|
190
|
+
id="linearGradient2108"
|
191
|
+
xlink:href="#linearGradient4565"
|
192
|
+
inkscape:collect="always" />
|
193
|
+
<linearGradient
|
194
|
+
gradientTransform="matrix(1,0,0,1.404523,10.5,-7.966331)"
|
195
|
+
y2="34.305527"
|
196
|
+
x2="14"
|
197
|
+
y1="21.0625"
|
198
|
+
x1="14"
|
199
|
+
gradientUnits="userSpaceOnUse"
|
200
|
+
id="linearGradient2112"
|
201
|
+
xlink:href="#linearGradient4565"
|
202
|
+
inkscape:collect="always" />
|
203
|
+
<linearGradient
|
204
|
+
y2="33.42667"
|
205
|
+
x2="13.5"
|
206
|
+
y1="21.0625"
|
207
|
+
x1="14"
|
208
|
+
gradientTransform="matrix(1,0,0,1.171895,2.5,-3.141166)"
|
209
|
+
gradientUnits="userSpaceOnUse"
|
210
|
+
id="linearGradient2116"
|
211
|
+
xlink:href="#linearGradient4565"
|
212
|
+
inkscape:collect="always" />
|
213
|
+
<linearGradient
|
214
|
+
y2="33.431156"
|
215
|
+
x2="14.5"
|
216
|
+
y1="21.0625"
|
217
|
+
x1="14"
|
218
|
+
gradientTransform="matrix(1,0,0,1.159815,18.5,-2.815047)"
|
219
|
+
gradientUnits="userSpaceOnUse"
|
220
|
+
id="linearGradient2120"
|
221
|
+
xlink:href="#linearGradient4565"
|
222
|
+
inkscape:collect="always" />
|
223
|
+
<linearGradient
|
224
|
+
y2="35.744175"
|
225
|
+
x2="14"
|
226
|
+
y1="21.0625"
|
227
|
+
x1="14"
|
228
|
+
gradientTransform="matrix(1,0,0,1.071351,-22.5,-3.854623)"
|
229
|
+
gradientUnits="userSpaceOnUse"
|
230
|
+
id="linearGradient2124"
|
231
|
+
xlink:href="#linearGradient4565"
|
232
|
+
inkscape:collect="always" />
|
233
|
+
<linearGradient
|
234
|
+
gradientTransform="matrix(1.048897,0,0,1,-1.267931,0)"
|
235
|
+
gradientUnits="userSpaceOnUse"
|
236
|
+
y2="29.629091"
|
237
|
+
x2="38.390732"
|
238
|
+
y1="29.629091"
|
239
|
+
x1="9.7892637"
|
240
|
+
id="linearGradient2132"
|
241
|
+
xlink:href="#linearGradient3068"
|
242
|
+
inkscape:collect="always" />
|
243
|
+
<inkscape:perspective
|
244
|
+
id="perspective52"
|
245
|
+
inkscape:persp3d-origin="24 : 16 : 1"
|
246
|
+
inkscape:vp_z="47.999999 : 24 : 1"
|
247
|
+
inkscape:vp_y="0 : 1000 : 0"
|
248
|
+
inkscape:vp_x="0 : 24 : 1"
|
249
|
+
sodipodi:type="inkscape:persp3d" />
|
250
|
+
<linearGradient
|
251
|
+
id="linearGradient2256">
|
252
|
+
<stop
|
253
|
+
id="stop2258"
|
254
|
+
offset="0"
|
255
|
+
style="stop-color:#ff0202;stop-opacity:1;" />
|
256
|
+
<stop
|
257
|
+
id="stop2260"
|
258
|
+
offset="1"
|
259
|
+
style="stop-color:#ff9b9b;stop-opacity:1;" />
|
260
|
+
</linearGradient>
|
261
|
+
<linearGradient
|
262
|
+
id="linearGradient2248"
|
263
|
+
inkscape:collect="always">
|
264
|
+
<stop
|
265
|
+
id="stop2250"
|
266
|
+
offset="0"
|
267
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
268
|
+
<stop
|
269
|
+
id="stop2252"
|
270
|
+
offset="1"
|
271
|
+
style="stop-color:#ffffff;stop-opacity:0;" />
|
272
|
+
</linearGradient>
|
273
|
+
<linearGradient
|
274
|
+
id="linearGradient9647">
|
275
|
+
<stop
|
276
|
+
id="stop9649"
|
277
|
+
offset="0"
|
278
|
+
style="stop-color:#ffffff;stop-opacity:1;" />
|
279
|
+
<stop
|
280
|
+
id="stop9651"
|
281
|
+
offset="1"
|
282
|
+
style="stop-color:#dbdbdb;stop-opacity:1;" />
|
283
|
+
</linearGradient>
|
284
|
+
<linearGradient
|
285
|
+
id="linearGradient4981">
|
286
|
+
<stop
|
287
|
+
id="stop4983"
|
288
|
+
offset="0"
|
289
|
+
style="stop-color:#cc0000;stop-opacity:1;" />
|
290
|
+
<stop
|
291
|
+
id="stop4985"
|
292
|
+
offset="1.0000000"
|
293
|
+
style="stop-color:#b30000;stop-opacity:1.0000000;" />
|
294
|
+
</linearGradient>
|
295
|
+
<linearGradient
|
296
|
+
id="linearGradient14236">
|
297
|
+
<stop
|
298
|
+
style="stop-color:#ed4040;stop-opacity:1.0000000;"
|
299
|
+
offset="0.0000000"
|
300
|
+
id="stop14238" />
|
301
|
+
<stop
|
302
|
+
style="stop-color:#a40000;stop-opacity:1.0000000;"
|
303
|
+
offset="1.0000000"
|
304
|
+
id="stop14240" />
|
305
|
+
</linearGradient>
|
306
|
+
<linearGradient
|
307
|
+
id="linearGradient11780">
|
308
|
+
<stop
|
309
|
+
id="stop11782"
|
310
|
+
offset="0.0000000"
|
311
|
+
style="stop-color:#ff8b8b;stop-opacity:1.0000000;" />
|
312
|
+
<stop
|
313
|
+
id="stop11784"
|
314
|
+
offset="1.0000000"
|
315
|
+
style="stop-color:#ec1b1b;stop-opacity:1.0000000;" />
|
316
|
+
</linearGradient>
|
317
|
+
<linearGradient
|
318
|
+
id="linearGradient11014">
|
319
|
+
<stop
|
320
|
+
id="stop11016"
|
321
|
+
offset="0.0000000"
|
322
|
+
style="stop-color:#a80000;stop-opacity:1.0000000;" />
|
323
|
+
<stop
|
324
|
+
id="stop13245"
|
325
|
+
offset="0.0000000"
|
326
|
+
style="stop-color:#c60000;stop-opacity:1.0000000;" />
|
327
|
+
<stop
|
328
|
+
id="stop11018"
|
329
|
+
offset="1.0000000"
|
330
|
+
style="stop-color:#e50000;stop-opacity:1.0000000;" />
|
331
|
+
</linearGradient>
|
332
|
+
<linearGradient
|
333
|
+
inkscape:collect="always"
|
334
|
+
xlink:href="#linearGradient2248"
|
335
|
+
id="linearGradient15772"
|
336
|
+
gradientUnits="userSpaceOnUse"
|
337
|
+
gradientTransform="rotate(180,15.86085,15.645395)"
|
338
|
+
x1="5.736527"
|
339
|
+
y1="5.3855424"
|
340
|
+
x2="9.8940229"
|
341
|
+
y2="9.650753" />
|
342
|
+
<linearGradient
|
343
|
+
gradientUnits="userSpaceOnUse"
|
344
|
+
y2="28.394291"
|
345
|
+
x2="32.166405"
|
346
|
+
y1="16.285088"
|
347
|
+
x1="15.578875"
|
348
|
+
id="linearGradient7901"
|
349
|
+
xlink:href="#linearGradient2248"
|
350
|
+
inkscape:collect="always" />
|
351
|
+
<linearGradient
|
352
|
+
gradientTransform="matrix(0.988373,0,0,0.988373,0.279002,0.278984)"
|
353
|
+
y2="37.959785"
|
354
|
+
x2="41.047836"
|
355
|
+
y1="20.105337"
|
356
|
+
x1="23.995985"
|
357
|
+
gradientUnits="userSpaceOnUse"
|
358
|
+
id="linearGradient2243"
|
359
|
+
xlink:href="#linearGradient4981"
|
360
|
+
inkscape:collect="always" />
|
361
|
+
<radialGradient
|
362
|
+
inkscape:collect="always"
|
363
|
+
xlink:href="#linearGradient4565"
|
364
|
+
id="radialGradient5066"
|
365
|
+
gradientUnits="userSpaceOnUse"
|
366
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.71429)"
|
367
|
+
cx="24.714285"
|
368
|
+
cy="38.57143"
|
369
|
+
fx="24.714285"
|
370
|
+
fy="38.57143"
|
371
|
+
r="19.714285" />
|
372
|
+
<radialGradient
|
373
|
+
inkscape:collect="always"
|
374
|
+
xlink:href="#linearGradient3290"
|
375
|
+
id="radialGradient5068"
|
376
|
+
gradientUnits="userSpaceOnUse"
|
377
|
+
cx="29.288071"
|
378
|
+
cy="15.720984"
|
379
|
+
fx="29.158466"
|
380
|
+
fy="15.755712"
|
381
|
+
r="8.9020796" />
|
382
|
+
<linearGradient
|
383
|
+
inkscape:collect="always"
|
384
|
+
xlink:href="#linearGradient3068"
|
385
|
+
id="linearGradient5070"
|
386
|
+
gradientUnits="userSpaceOnUse"
|
387
|
+
gradientTransform="matrix(1.048897,0,0,1,-1.267931,0)"
|
388
|
+
x1="9.7892637"
|
389
|
+
y1="29.629091"
|
390
|
+
x2="38.390732"
|
391
|
+
y2="29.629091" />
|
392
|
+
<linearGradient
|
393
|
+
inkscape:collect="always"
|
394
|
+
xlink:href="#linearGradient4565"
|
395
|
+
id="linearGradient5072"
|
396
|
+
gradientUnits="userSpaceOnUse"
|
397
|
+
gradientTransform="matrix(1,0,0,1.404523,10.5,-7.966331)"
|
398
|
+
x1="14"
|
399
|
+
y1="21.0625"
|
400
|
+
x2="14"
|
401
|
+
y2="34.305527" />
|
402
|
+
<linearGradient
|
403
|
+
inkscape:collect="always"
|
404
|
+
xlink:href="#linearGradient4565"
|
405
|
+
id="linearGradient5074"
|
406
|
+
gradientUnits="userSpaceOnUse"
|
407
|
+
gradientTransform="matrix(1,0,0,1.171895,2.5,-3.141166)"
|
408
|
+
x1="14"
|
409
|
+
y1="21.0625"
|
410
|
+
x2="13.5"
|
411
|
+
y2="33.42667" />
|
412
|
+
<linearGradient
|
413
|
+
inkscape:collect="always"
|
414
|
+
xlink:href="#linearGradient4565"
|
415
|
+
id="linearGradient5076"
|
416
|
+
gradientUnits="userSpaceOnUse"
|
417
|
+
gradientTransform="matrix(1,0,0,1.159815,18.5,-2.815047)"
|
418
|
+
x1="14"
|
419
|
+
y1="21.0625"
|
420
|
+
x2="14.5"
|
421
|
+
y2="33.431156" />
|
422
|
+
<radialGradient
|
423
|
+
inkscape:collect="always"
|
424
|
+
xlink:href="#linearGradient4565"
|
425
|
+
id="radialGradient5100"
|
426
|
+
gradientUnits="userSpaceOnUse"
|
427
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.71429)"
|
428
|
+
cx="24.714285"
|
429
|
+
cy="38.57143"
|
430
|
+
fx="24.714285"
|
431
|
+
fy="38.57143"
|
432
|
+
r="19.714285" />
|
433
|
+
<radialGradient
|
434
|
+
inkscape:collect="always"
|
435
|
+
xlink:href="#linearGradient3290"
|
436
|
+
id="radialGradient5102"
|
437
|
+
gradientUnits="userSpaceOnUse"
|
438
|
+
cx="29.288071"
|
439
|
+
cy="15.720984"
|
440
|
+
fx="29.158466"
|
441
|
+
fy="15.755712"
|
442
|
+
r="8.9020796" />
|
443
|
+
<linearGradient
|
444
|
+
inkscape:collect="always"
|
445
|
+
xlink:href="#linearGradient3068"
|
446
|
+
id="linearGradient5104"
|
447
|
+
gradientUnits="userSpaceOnUse"
|
448
|
+
gradientTransform="matrix(1.048897,0,0,1,-1.267931,0)"
|
449
|
+
x1="9.7892637"
|
450
|
+
y1="29.629091"
|
451
|
+
x2="38.390732"
|
452
|
+
y2="29.629091" />
|
453
|
+
<linearGradient
|
454
|
+
inkscape:collect="always"
|
455
|
+
xlink:href="#linearGradient4565"
|
456
|
+
id="linearGradient5106"
|
457
|
+
gradientUnits="userSpaceOnUse"
|
458
|
+
gradientTransform="matrix(1,0,0,1.404523,10.5,-7.966331)"
|
459
|
+
x1="14"
|
460
|
+
y1="21.0625"
|
461
|
+
x2="14"
|
462
|
+
y2="34.305527" />
|
463
|
+
<linearGradient
|
464
|
+
inkscape:collect="always"
|
465
|
+
xlink:href="#linearGradient4565"
|
466
|
+
id="linearGradient5108"
|
467
|
+
gradientUnits="userSpaceOnUse"
|
468
|
+
gradientTransform="matrix(1,0,0,1.171895,2.5,-3.141166)"
|
469
|
+
x1="14"
|
470
|
+
y1="21.0625"
|
471
|
+
x2="13.5"
|
472
|
+
y2="33.42667" />
|
473
|
+
<linearGradient
|
474
|
+
inkscape:collect="always"
|
475
|
+
xlink:href="#linearGradient4565"
|
476
|
+
id="linearGradient5110"
|
477
|
+
gradientUnits="userSpaceOnUse"
|
478
|
+
gradientTransform="matrix(1,0,0,1.159815,18.5,-2.815047)"
|
479
|
+
x1="14"
|
480
|
+
y1="21.0625"
|
481
|
+
x2="14.5"
|
482
|
+
y2="33.431156" />
|
483
|
+
<radialGradient
|
484
|
+
inkscape:collect="always"
|
485
|
+
xlink:href="#linearGradient4565"
|
486
|
+
id="radialGradient5134"
|
487
|
+
gradientUnits="userSpaceOnUse"
|
488
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.71429)"
|
489
|
+
cx="24.714285"
|
490
|
+
cy="38.57143"
|
491
|
+
fx="24.714285"
|
492
|
+
fy="38.57143"
|
493
|
+
r="19.714285" />
|
494
|
+
<radialGradient
|
495
|
+
inkscape:collect="always"
|
496
|
+
xlink:href="#linearGradient3290"
|
497
|
+
id="radialGradient5136"
|
498
|
+
gradientUnits="userSpaceOnUse"
|
499
|
+
cx="29.288071"
|
500
|
+
cy="15.720984"
|
501
|
+
fx="29.158466"
|
502
|
+
fy="15.755712"
|
503
|
+
r="8.9020796" />
|
504
|
+
<linearGradient
|
505
|
+
inkscape:collect="always"
|
506
|
+
xlink:href="#linearGradient3068"
|
507
|
+
id="linearGradient5138"
|
508
|
+
gradientUnits="userSpaceOnUse"
|
509
|
+
gradientTransform="matrix(1.048897,0,0,1,-1.267931,0)"
|
510
|
+
x1="9.7892637"
|
511
|
+
y1="29.629091"
|
512
|
+
x2="38.390732"
|
513
|
+
y2="29.629091" />
|
514
|
+
<linearGradient
|
515
|
+
inkscape:collect="always"
|
516
|
+
xlink:href="#linearGradient4565"
|
517
|
+
id="linearGradient5140"
|
518
|
+
gradientUnits="userSpaceOnUse"
|
519
|
+
gradientTransform="matrix(1,0,0,1.404523,10.5,-7.966331)"
|
520
|
+
x1="14"
|
521
|
+
y1="21.0625"
|
522
|
+
x2="14"
|
523
|
+
y2="34.305527" />
|
524
|
+
<linearGradient
|
525
|
+
inkscape:collect="always"
|
526
|
+
xlink:href="#linearGradient4565"
|
527
|
+
id="linearGradient5142"
|
528
|
+
gradientUnits="userSpaceOnUse"
|
529
|
+
gradientTransform="matrix(1,0,0,1.171895,2.5,-3.141166)"
|
530
|
+
x1="14"
|
531
|
+
y1="21.0625"
|
532
|
+
x2="13.5"
|
533
|
+
y2="33.42667" />
|
534
|
+
<linearGradient
|
535
|
+
inkscape:collect="always"
|
536
|
+
xlink:href="#linearGradient4565"
|
537
|
+
id="linearGradient5144"
|
538
|
+
gradientUnits="userSpaceOnUse"
|
539
|
+
gradientTransform="matrix(1,0,0,1.159815,18.5,-2.815047)"
|
540
|
+
x1="14"
|
541
|
+
y1="21.0625"
|
542
|
+
x2="14.5"
|
543
|
+
y2="33.431156" />
|
544
|
+
<radialGradient
|
545
|
+
inkscape:collect="always"
|
546
|
+
xlink:href="#linearGradient4565"
|
547
|
+
id="radialGradient5168"
|
548
|
+
gradientUnits="userSpaceOnUse"
|
549
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.71429)"
|
550
|
+
cx="24.714285"
|
551
|
+
cy="38.57143"
|
552
|
+
fx="24.714285"
|
553
|
+
fy="38.57143"
|
554
|
+
r="19.714285" />
|
555
|
+
<radialGradient
|
556
|
+
inkscape:collect="always"
|
557
|
+
xlink:href="#linearGradient3290"
|
558
|
+
id="radialGradient5170"
|
559
|
+
gradientUnits="userSpaceOnUse"
|
560
|
+
cx="29.288071"
|
561
|
+
cy="15.720984"
|
562
|
+
fx="29.158466"
|
563
|
+
fy="15.755712"
|
564
|
+
r="8.9020796" />
|
565
|
+
<linearGradient
|
566
|
+
inkscape:collect="always"
|
567
|
+
xlink:href="#linearGradient3068"
|
568
|
+
id="linearGradient5172"
|
569
|
+
gradientUnits="userSpaceOnUse"
|
570
|
+
gradientTransform="matrix(1.048897,0,0,1,-1.267931,0)"
|
571
|
+
x1="9.7892637"
|
572
|
+
y1="29.629091"
|
573
|
+
x2="38.390732"
|
574
|
+
y2="29.629091" />
|
575
|
+
<linearGradient
|
576
|
+
inkscape:collect="always"
|
577
|
+
xlink:href="#linearGradient4565"
|
578
|
+
id="linearGradient5174"
|
579
|
+
gradientUnits="userSpaceOnUse"
|
580
|
+
gradientTransform="matrix(1,0,0,1.404523,10.5,-7.966331)"
|
581
|
+
x1="14"
|
582
|
+
y1="21.0625"
|
583
|
+
x2="14"
|
584
|
+
y2="34.305527" />
|
585
|
+
<linearGradient
|
586
|
+
inkscape:collect="always"
|
587
|
+
xlink:href="#linearGradient4565"
|
588
|
+
id="linearGradient5176"
|
589
|
+
gradientUnits="userSpaceOnUse"
|
590
|
+
gradientTransform="matrix(1,0,0,1.171895,2.5,-3.141166)"
|
591
|
+
x1="14"
|
592
|
+
y1="21.0625"
|
593
|
+
x2="13.5"
|
594
|
+
y2="33.42667" />
|
595
|
+
<linearGradient
|
596
|
+
inkscape:collect="always"
|
597
|
+
xlink:href="#linearGradient4565"
|
598
|
+
id="linearGradient5178"
|
599
|
+
gradientUnits="userSpaceOnUse"
|
600
|
+
gradientTransform="matrix(1,0,0,1.159815,18.5,-2.815047)"
|
601
|
+
x1="14"
|
602
|
+
y1="21.0625"
|
603
|
+
x2="14.5"
|
604
|
+
y2="33.431156" />
|
605
|
+
<radialGradient
|
606
|
+
inkscape:collect="always"
|
607
|
+
xlink:href="#linearGradient4565"
|
608
|
+
id="radialGradient5202"
|
609
|
+
gradientUnits="userSpaceOnUse"
|
610
|
+
gradientTransform="matrix(1,0,0,0.333333,0,25.71429)"
|
611
|
+
cx="24.714285"
|
612
|
+
cy="38.57143"
|
613
|
+
fx="24.714285"
|
614
|
+
fy="38.57143"
|
615
|
+
r="19.714285" />
|
616
|
+
<radialGradient
|
617
|
+
inkscape:collect="always"
|
618
|
+
xlink:href="#linearGradient3290"
|
619
|
+
id="radialGradient5204"
|
620
|
+
gradientUnits="userSpaceOnUse"
|
621
|
+
cx="29.288071"
|
622
|
+
cy="15.720984"
|
623
|
+
fx="29.158466"
|
624
|
+
fy="15.755712"
|
625
|
+
r="8.9020796" />
|
626
|
+
<linearGradient
|
627
|
+
inkscape:collect="always"
|
628
|
+
xlink:href="#linearGradient3068"
|
629
|
+
id="linearGradient5206"
|
630
|
+
gradientUnits="userSpaceOnUse"
|
631
|
+
gradientTransform="matrix(1.048897,0,0,1,-1.267931,0)"
|
632
|
+
x1="9.7892637"
|
633
|
+
y1="29.629091"
|
634
|
+
x2="38.390732"
|
635
|
+
y2="29.629091" />
|
636
|
+
<linearGradient
|
637
|
+
inkscape:collect="always"
|
638
|
+
xlink:href="#linearGradient4565"
|
639
|
+
id="linearGradient5208"
|
640
|
+
gradientUnits="userSpaceOnUse"
|
641
|
+
gradientTransform="matrix(1,0,0,1.404523,10.5,-7.966331)"
|
642
|
+
x1="14"
|
643
|
+
y1="21.0625"
|
644
|
+
x2="14"
|
645
|
+
y2="34.305527" />
|
646
|
+
<linearGradient
|
647
|
+
inkscape:collect="always"
|
648
|
+
xlink:href="#linearGradient4565"
|
649
|
+
id="linearGradient5210"
|
650
|
+
gradientUnits="userSpaceOnUse"
|
651
|
+
gradientTransform="matrix(1,0,0,1.171895,2.5,-3.141166)"
|
652
|
+
x1="14"
|
653
|
+
y1="21.0625"
|
654
|
+
x2="13.5"
|
655
|
+
y2="33.42667" />
|
656
|
+
<linearGradient
|
657
|
+
inkscape:collect="always"
|
658
|
+
xlink:href="#linearGradient4565"
|
659
|
+
id="linearGradient5212"
|
660
|
+
gradientUnits="userSpaceOnUse"
|
661
|
+
gradientTransform="matrix(1,0,0,1.159815,18.5,-2.815047)"
|
662
|
+
x1="14"
|
663
|
+
y1="21.0625"
|
664
|
+
x2="14.5"
|
665
|
+
y2="33.431156" />
|
666
|
+
</defs>
|
667
|
+
<sodipodi:namedview
|
668
|
+
id="base"
|
669
|
+
pagecolor="#ffffff"
|
670
|
+
bordercolor="#666666"
|
671
|
+
borderopacity="1.0"
|
672
|
+
inkscape:pageopacity="0.0"
|
673
|
+
inkscape:pageshadow="2"
|
674
|
+
inkscape:zoom="0.7"
|
675
|
+
inkscape:cx="669.23276"
|
676
|
+
inkscape:cy="447.69085"
|
677
|
+
inkscape:document-units="mm"
|
678
|
+
inkscape:current-layer="layer1"
|
679
|
+
showgrid="false"
|
680
|
+
fit-margin-top="5"
|
681
|
+
fit-margin-left="5"
|
682
|
+
fit-margin-right="5"
|
683
|
+
fit-margin-bottom="5"
|
684
|
+
inkscape:window-width="1920"
|
685
|
+
inkscape:window-height="1016"
|
686
|
+
inkscape:window-x="1920"
|
687
|
+
inkscape:window-y="27"
|
688
|
+
inkscape:window-maximized="1" />
|
689
|
+
<metadata
|
690
|
+
id="metadata5">
|
691
|
+
<rdf:RDF>
|
692
|
+
<cc:Work
|
693
|
+
rdf:about="">
|
694
|
+
<dc:format>image/svg+xml</dc:format>
|
695
|
+
<dc:type
|
696
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
697
|
+
<dc:title></dc:title>
|
698
|
+
</cc:Work>
|
699
|
+
</rdf:RDF>
|
700
|
+
</metadata>
|
701
|
+
<g
|
702
|
+
inkscape:label="レイヤー 1"
|
703
|
+
inkscape:groupmode="layer"
|
704
|
+
id="layer1"
|
705
|
+
transform="translate(0.15384665,-53.696732)">
|
706
|
+
<g
|
707
|
+
inkscape:label="Layer 1"
|
708
|
+
id="layer1-0"
|
709
|
+
transform="matrix(0.26458333,0,0,0.26458333,3.5232367,89.344016)">
|
710
|
+
<ellipse
|
711
|
+
id="path4563-6"
|
712
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.53164559;fill:url(#radialGradient1360);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.40487173;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
713
|
+
cx="24.714285"
|
714
|
+
cy="38.57143"
|
715
|
+
rx="19.714285"
|
716
|
+
ry="6.5714288" />
|
717
|
+
<circle
|
718
|
+
transform="matrix(2.083142,0,0,2.083142,-40.54715,-16.49224)"
|
719
|
+
id="path4320-8"
|
720
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient1362);fill-opacity:1;fill-rule:evenodd;stroke:#9c8c0a;stroke-width:0.48004404;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
721
|
+
cx="31.112698"
|
722
|
+
cy="19.008621"
|
723
|
+
r="8.6620579" />
|
724
|
+
<circle
|
725
|
+
transform="matrix(1.979782,0,0,1.979782,-37.33128,-14.52746)"
|
726
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.67721522;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.50510627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
727
|
+
id="path4322-7"
|
728
|
+
cx="31.112698"
|
729
|
+
cy="19.008621"
|
730
|
+
r="8.6620579" />
|
731
|
+
<path
|
732
|
+
transform="rotate(-165.00001,13.399506,6.985646)"
|
733
|
+
sodipodi:open="true"
|
734
|
+
sodipodi:end="2.6179939"
|
735
|
+
sodipodi:start="0"
|
736
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
737
|
+
sodipodi:ry="2.875"
|
738
|
+
sodipodi:rx="2.9375"
|
739
|
+
sodipodi:cy="1.875"
|
740
|
+
sodipodi:cx="-3.8125"
|
741
|
+
id="path1364"
|
742
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
743
|
+
sodipodi:type="arc" />
|
744
|
+
<path
|
745
|
+
sodipodi:type="arc"
|
746
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
747
|
+
id="path2094"
|
748
|
+
sodipodi:cx="-3.8125"
|
749
|
+
sodipodi:cy="1.875"
|
750
|
+
sodipodi:rx="2.9375"
|
751
|
+
sodipodi:ry="2.875"
|
752
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
753
|
+
sodipodi:start="0"
|
754
|
+
sodipodi:end="2.6179939"
|
755
|
+
sodipodi:open="true"
|
756
|
+
transform="rotate(-165.00001,9.0245067,7.5616255)" />
|
757
|
+
<path
|
758
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient2132);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
759
|
+
d="m 9.1875355,21.044769 c -1.5389814,7.567378 4.6920355,17.167526 14.8511515,17.167526 10.247498,0 16.505528,-8.430424 14.72004,-17.105026 z"
|
760
|
+
id="path2096"
|
761
|
+
sodipodi:nodetypes="czcc"
|
762
|
+
inkscape:connector-curvature="0" />
|
763
|
+
<path
|
764
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient2112);stroke-width:0.99999988px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
765
|
+
d="M 24.5,21.528657 V 38.382936"
|
766
|
+
id="path2110"
|
767
|
+
inkscape:connector-curvature="0" />
|
768
|
+
<path
|
769
|
+
id="path2114"
|
770
|
+
d="M 16.5,21.468635 V 35.531381"
|
771
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient2116);stroke-width:1.00000024px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
772
|
+
inkscape:connector-curvature="0" />
|
773
|
+
<path
|
774
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient2120);stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
775
|
+
d="M 32.5,21.541107 V 35.458909"
|
776
|
+
id="path2118"
|
777
|
+
inkscape:connector-curvature="0" />
|
778
|
+
<path
|
779
|
+
sodipodi:nodetypes="czcc"
|
780
|
+
id="path2756"
|
781
|
+
d="m 9.4409398,20.615864 c -1.7806546,8.821926 5.1590122,18.087809 14.8090612,18.087809 10.003545,0 16.652216,-9.578383 14.371562,-18.150309 z"
|
782
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
783
|
+
inkscape:connector-curvature="0" />
|
784
|
+
</g>
|
785
|
+
<image
|
786
|
+
xlink:href="redmine-search-no-noise-screenshot.png"
|
787
|
+
width="285.22083"
|
788
|
+
height="191.02916"
|
789
|
+
preserveAspectRatio="none"
|
790
|
+
id="image4705"
|
791
|
+
x="16.657616"
|
792
|
+
y="58.696732" />
|
793
|
+
<rect
|
794
|
+
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.95999995;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
795
|
+
id="rect4647"
|
796
|
+
width="108.85714"
|
797
|
+
height="20.788691"
|
798
|
+
x="185.32173"
|
799
|
+
y="112.73661"
|
800
|
+
ry="0.30401948" />
|
801
|
+
<text
|
802
|
+
xml:space="preserve"
|
803
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:middle;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.95999995;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
804
|
+
x="240.15494"
|
805
|
+
y="127.37502"
|
806
|
+
id="text4645"><tspan
|
807
|
+
sodipodi:role="line"
|
808
|
+
id="tspan4643"
|
809
|
+
x="240.15494"
|
810
|
+
y="127.37502"
|
811
|
+
style="fill:#000000;stroke-width:1">全部それっぽい!</tspan></text>
|
812
|
+
<g
|
813
|
+
transform="matrix(0.26458333,0,0,0.26458333,3.5232367,117.31425)"
|
814
|
+
id="g5064"
|
815
|
+
inkscape:label="Layer 1">
|
816
|
+
<ellipse
|
817
|
+
ry="6.5714288"
|
818
|
+
rx="19.714285"
|
819
|
+
cy="38.57143"
|
820
|
+
cx="24.714285"
|
821
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.53164559;fill:url(#radialGradient5066);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.40487173;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
822
|
+
id="ellipse5044" />
|
823
|
+
<circle
|
824
|
+
r="8.6620579"
|
825
|
+
cy="19.008621"
|
826
|
+
cx="31.112698"
|
827
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5068);fill-opacity:1;fill-rule:evenodd;stroke:#9c8c0a;stroke-width:0.48004404;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
828
|
+
id="circle5046"
|
829
|
+
transform="matrix(2.083142,0,0,2.083142,-40.54715,-16.49224)" />
|
830
|
+
<circle
|
831
|
+
r="8.6620579"
|
832
|
+
cy="19.008621"
|
833
|
+
cx="31.112698"
|
834
|
+
id="circle5048"
|
835
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.67721522;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.50510627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
836
|
+
transform="matrix(1.979782,0,0,1.979782,-37.33128,-14.52746)" />
|
837
|
+
<path
|
838
|
+
sodipodi:type="arc"
|
839
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
840
|
+
id="path5050"
|
841
|
+
sodipodi:cx="-3.8125"
|
842
|
+
sodipodi:cy="1.875"
|
843
|
+
sodipodi:rx="2.9375"
|
844
|
+
sodipodi:ry="2.875"
|
845
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
846
|
+
sodipodi:start="0"
|
847
|
+
sodipodi:end="2.6179939"
|
848
|
+
sodipodi:open="true"
|
849
|
+
transform="rotate(-165.00001,13.399506,6.985646)" />
|
850
|
+
<path
|
851
|
+
transform="rotate(-165.00001,9.0245067,7.5616255)"
|
852
|
+
sodipodi:open="true"
|
853
|
+
sodipodi:end="2.6179939"
|
854
|
+
sodipodi:start="0"
|
855
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
856
|
+
sodipodi:ry="2.875"
|
857
|
+
sodipodi:rx="2.9375"
|
858
|
+
sodipodi:cy="1.875"
|
859
|
+
sodipodi:cx="-3.8125"
|
860
|
+
id="path5052"
|
861
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
862
|
+
sodipodi:type="arc" />
|
863
|
+
<path
|
864
|
+
inkscape:connector-curvature="0"
|
865
|
+
sodipodi:nodetypes="czcc"
|
866
|
+
id="path5054"
|
867
|
+
d="m 9.1875355,21.044769 c -1.5389814,7.567378 4.6920355,17.167526 14.8511515,17.167526 10.247498,0 16.505528,-8.430424 14.72004,-17.105026 z"
|
868
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient5070);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
869
|
+
<path
|
870
|
+
inkscape:connector-curvature="0"
|
871
|
+
id="path5056"
|
872
|
+
d="M 24.5,21.528657 V 38.382936"
|
873
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5072);stroke-width:0.99999988px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
874
|
+
<path
|
875
|
+
inkscape:connector-curvature="0"
|
876
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5074);stroke-width:1.00000024px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
877
|
+
d="M 16.5,21.468635 V 35.531381"
|
878
|
+
id="path5058" />
|
879
|
+
<path
|
880
|
+
inkscape:connector-curvature="0"
|
881
|
+
id="path5060"
|
882
|
+
d="M 32.5,21.541107 V 35.458909"
|
883
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5076);stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
884
|
+
<path
|
885
|
+
inkscape:connector-curvature="0"
|
886
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
887
|
+
d="m 9.4409398,20.615864 c -1.7806546,8.821926 5.1590122,18.087809 14.8090612,18.087809 10.003545,0 16.652216,-9.578383 14.371562,-18.150309 z"
|
888
|
+
id="path5062"
|
889
|
+
sodipodi:nodetypes="czcc" />
|
890
|
+
</g>
|
891
|
+
<g
|
892
|
+
inkscape:label="Layer 1"
|
893
|
+
id="g5098"
|
894
|
+
transform="matrix(0.26458333,0,0,0.26458333,3.5232367,142.63865)">
|
895
|
+
<ellipse
|
896
|
+
id="ellipse5078"
|
897
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.53164559;fill:url(#radialGradient5100);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.40487173;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
898
|
+
cx="24.714285"
|
899
|
+
cy="38.57143"
|
900
|
+
rx="19.714285"
|
901
|
+
ry="6.5714288" />
|
902
|
+
<circle
|
903
|
+
transform="matrix(2.083142,0,0,2.083142,-40.54715,-16.49224)"
|
904
|
+
id="circle5080"
|
905
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5102);fill-opacity:1;fill-rule:evenodd;stroke:#9c8c0a;stroke-width:0.48004404;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
906
|
+
cx="31.112698"
|
907
|
+
cy="19.008621"
|
908
|
+
r="8.6620579" />
|
909
|
+
<circle
|
910
|
+
transform="matrix(1.979782,0,0,1.979782,-37.33128,-14.52746)"
|
911
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.67721522;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.50510627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
912
|
+
id="circle5082"
|
913
|
+
cx="31.112698"
|
914
|
+
cy="19.008621"
|
915
|
+
r="8.6620579" />
|
916
|
+
<path
|
917
|
+
transform="rotate(-165.00001,13.399506,6.985646)"
|
918
|
+
sodipodi:open="true"
|
919
|
+
sodipodi:end="2.6179939"
|
920
|
+
sodipodi:start="0"
|
921
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
922
|
+
sodipodi:ry="2.875"
|
923
|
+
sodipodi:rx="2.9375"
|
924
|
+
sodipodi:cy="1.875"
|
925
|
+
sodipodi:cx="-3.8125"
|
926
|
+
id="path5084"
|
927
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
928
|
+
sodipodi:type="arc" />
|
929
|
+
<path
|
930
|
+
sodipodi:type="arc"
|
931
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
932
|
+
id="path5086"
|
933
|
+
sodipodi:cx="-3.8125"
|
934
|
+
sodipodi:cy="1.875"
|
935
|
+
sodipodi:rx="2.9375"
|
936
|
+
sodipodi:ry="2.875"
|
937
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
938
|
+
sodipodi:start="0"
|
939
|
+
sodipodi:end="2.6179939"
|
940
|
+
sodipodi:open="true"
|
941
|
+
transform="rotate(-165.00001,9.0245067,7.5616255)" />
|
942
|
+
<path
|
943
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient5104);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
944
|
+
d="m 9.1875355,21.044769 c -1.5389814,7.567378 4.6920355,17.167526 14.8511515,17.167526 10.247498,0 16.505528,-8.430424 14.72004,-17.105026 z"
|
945
|
+
id="path5088"
|
946
|
+
sodipodi:nodetypes="czcc"
|
947
|
+
inkscape:connector-curvature="0" />
|
948
|
+
<path
|
949
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5106);stroke-width:0.99999988px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
950
|
+
d="M 24.5,21.528657 V 38.382936"
|
951
|
+
id="path5090"
|
952
|
+
inkscape:connector-curvature="0" />
|
953
|
+
<path
|
954
|
+
id="path5092"
|
955
|
+
d="M 16.5,21.468635 V 35.531381"
|
956
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5108);stroke-width:1.00000024px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
957
|
+
inkscape:connector-curvature="0" />
|
958
|
+
<path
|
959
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5110);stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
960
|
+
d="M 32.5,21.541107 V 35.458909"
|
961
|
+
id="path5094"
|
962
|
+
inkscape:connector-curvature="0" />
|
963
|
+
<path
|
964
|
+
sodipodi:nodetypes="czcc"
|
965
|
+
id="path5096"
|
966
|
+
d="m 9.4409398,20.615864 c -1.7806546,8.821926 5.1590122,18.087809 14.8090612,18.087809 10.003545,0 16.652216,-9.578383 14.371562,-18.150309 z"
|
967
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
968
|
+
inkscape:connector-curvature="0" />
|
969
|
+
</g>
|
970
|
+
<g
|
971
|
+
transform="matrix(0.26458333,0,0,0.26458333,3.5232367,171.36484)"
|
972
|
+
id="g5132"
|
973
|
+
inkscape:label="Layer 1">
|
974
|
+
<ellipse
|
975
|
+
ry="6.5714288"
|
976
|
+
rx="19.714285"
|
977
|
+
cy="38.57143"
|
978
|
+
cx="24.714285"
|
979
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.53164559;fill:url(#radialGradient5134);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.40487173;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
980
|
+
id="ellipse5112" />
|
981
|
+
<circle
|
982
|
+
r="8.6620579"
|
983
|
+
cy="19.008621"
|
984
|
+
cx="31.112698"
|
985
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5136);fill-opacity:1;fill-rule:evenodd;stroke:#9c8c0a;stroke-width:0.48004404;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
986
|
+
id="circle5114"
|
987
|
+
transform="matrix(2.083142,0,0,2.083142,-40.54715,-16.49224)" />
|
988
|
+
<circle
|
989
|
+
r="8.6620579"
|
990
|
+
cy="19.008621"
|
991
|
+
cx="31.112698"
|
992
|
+
id="circle5116"
|
993
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.67721522;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.50510627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
994
|
+
transform="matrix(1.979782,0,0,1.979782,-37.33128,-14.52746)" />
|
995
|
+
<path
|
996
|
+
sodipodi:type="arc"
|
997
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
998
|
+
id="path5118"
|
999
|
+
sodipodi:cx="-3.8125"
|
1000
|
+
sodipodi:cy="1.875"
|
1001
|
+
sodipodi:rx="2.9375"
|
1002
|
+
sodipodi:ry="2.875"
|
1003
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
1004
|
+
sodipodi:start="0"
|
1005
|
+
sodipodi:end="2.6179939"
|
1006
|
+
sodipodi:open="true"
|
1007
|
+
transform="rotate(-165.00001,13.399506,6.985646)" />
|
1008
|
+
<path
|
1009
|
+
transform="rotate(-165.00001,9.0245067,7.5616255)"
|
1010
|
+
sodipodi:open="true"
|
1011
|
+
sodipodi:end="2.6179939"
|
1012
|
+
sodipodi:start="0"
|
1013
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
1014
|
+
sodipodi:ry="2.875"
|
1015
|
+
sodipodi:rx="2.9375"
|
1016
|
+
sodipodi:cy="1.875"
|
1017
|
+
sodipodi:cx="-3.8125"
|
1018
|
+
id="path5120"
|
1019
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
1020
|
+
sodipodi:type="arc" />
|
1021
|
+
<path
|
1022
|
+
inkscape:connector-curvature="0"
|
1023
|
+
sodipodi:nodetypes="czcc"
|
1024
|
+
id="path5122"
|
1025
|
+
d="m 9.1875355,21.044769 c -1.5389814,7.567378 4.6920355,17.167526 14.8511515,17.167526 10.247498,0 16.505528,-8.430424 14.72004,-17.105026 z"
|
1026
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient5138);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
1027
|
+
<path
|
1028
|
+
inkscape:connector-curvature="0"
|
1029
|
+
id="path5124"
|
1030
|
+
d="M 24.5,21.528657 V 38.382936"
|
1031
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5140);stroke-width:0.99999988px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
1032
|
+
<path
|
1033
|
+
inkscape:connector-curvature="0"
|
1034
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5142);stroke-width:1.00000024px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
1035
|
+
d="M 16.5,21.468635 V 35.531381"
|
1036
|
+
id="path5126" />
|
1037
|
+
<path
|
1038
|
+
inkscape:connector-curvature="0"
|
1039
|
+
id="path5128"
|
1040
|
+
d="M 32.5,21.541107 V 35.458909"
|
1041
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5144);stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
1042
|
+
<path
|
1043
|
+
inkscape:connector-curvature="0"
|
1044
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1045
|
+
d="m 9.4409398,20.615864 c -1.7806546,8.821926 5.1590122,18.087809 14.8090612,18.087809 10.003545,0 16.652216,-9.578383 14.371562,-18.150309 z"
|
1046
|
+
id="path5130"
|
1047
|
+
sodipodi:nodetypes="czcc" />
|
1048
|
+
</g>
|
1049
|
+
<g
|
1050
|
+
inkscape:label="Layer 1"
|
1051
|
+
id="g5166"
|
1052
|
+
transform="matrix(0.26458333,0,0,0.26458333,3.5232367,200.46901)">
|
1053
|
+
<ellipse
|
1054
|
+
id="ellipse5146"
|
1055
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.53164559;fill:url(#radialGradient5168);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.40487173;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1056
|
+
cx="24.714285"
|
1057
|
+
cy="38.57143"
|
1058
|
+
rx="19.714285"
|
1059
|
+
ry="6.5714288" />
|
1060
|
+
<circle
|
1061
|
+
transform="matrix(2.083142,0,0,2.083142,-40.54715,-16.49224)"
|
1062
|
+
id="circle5148"
|
1063
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5170);fill-opacity:1;fill-rule:evenodd;stroke:#9c8c0a;stroke-width:0.48004404;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1064
|
+
cx="31.112698"
|
1065
|
+
cy="19.008621"
|
1066
|
+
r="8.6620579" />
|
1067
|
+
<circle
|
1068
|
+
transform="matrix(1.979782,0,0,1.979782,-37.33128,-14.52746)"
|
1069
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.67721522;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.50510627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1070
|
+
id="circle5150"
|
1071
|
+
cx="31.112698"
|
1072
|
+
cy="19.008621"
|
1073
|
+
r="8.6620579" />
|
1074
|
+
<path
|
1075
|
+
transform="rotate(-165.00001,13.399506,6.985646)"
|
1076
|
+
sodipodi:open="true"
|
1077
|
+
sodipodi:end="2.6179939"
|
1078
|
+
sodipodi:start="0"
|
1079
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
1080
|
+
sodipodi:ry="2.875"
|
1081
|
+
sodipodi:rx="2.9375"
|
1082
|
+
sodipodi:cy="1.875"
|
1083
|
+
sodipodi:cx="-3.8125"
|
1084
|
+
id="path5152"
|
1085
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
1086
|
+
sodipodi:type="arc" />
|
1087
|
+
<path
|
1088
|
+
sodipodi:type="arc"
|
1089
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
1090
|
+
id="path5154"
|
1091
|
+
sodipodi:cx="-3.8125"
|
1092
|
+
sodipodi:cy="1.875"
|
1093
|
+
sodipodi:rx="2.9375"
|
1094
|
+
sodipodi:ry="2.875"
|
1095
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
1096
|
+
sodipodi:start="0"
|
1097
|
+
sodipodi:end="2.6179939"
|
1098
|
+
sodipodi:open="true"
|
1099
|
+
transform="rotate(-165.00001,9.0245067,7.5616255)" />
|
1100
|
+
<path
|
1101
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient5172);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1102
|
+
d="m 9.1875355,21.044769 c -1.5389814,7.567378 4.6920355,17.167526 14.8511515,17.167526 10.247498,0 16.505528,-8.430424 14.72004,-17.105026 z"
|
1103
|
+
id="path5156"
|
1104
|
+
sodipodi:nodetypes="czcc"
|
1105
|
+
inkscape:connector-curvature="0" />
|
1106
|
+
<path
|
1107
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5174);stroke-width:0.99999988px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
1108
|
+
d="M 24.5,21.528657 V 38.382936"
|
1109
|
+
id="path5158"
|
1110
|
+
inkscape:connector-curvature="0" />
|
1111
|
+
<path
|
1112
|
+
id="path5160"
|
1113
|
+
d="M 16.5,21.468635 V 35.531381"
|
1114
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5176);stroke-width:1.00000024px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
1115
|
+
inkscape:connector-curvature="0" />
|
1116
|
+
<path
|
1117
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5178);stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
1118
|
+
d="M 32.5,21.541107 V 35.458909"
|
1119
|
+
id="path5162"
|
1120
|
+
inkscape:connector-curvature="0" />
|
1121
|
+
<path
|
1122
|
+
sodipodi:nodetypes="czcc"
|
1123
|
+
id="path5164"
|
1124
|
+
d="m 9.4409398,20.615864 c -1.7806546,8.821926 5.1590122,18.087809 14.8090612,18.087809 10.003545,0 16.652216,-9.578383 14.371562,-18.150309 z"
|
1125
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1126
|
+
inkscape:connector-curvature="0" />
|
1127
|
+
</g>
|
1128
|
+
<g
|
1129
|
+
transform="matrix(0.26458333,0,0,0.26458333,3.5232367,231.46306)"
|
1130
|
+
id="g5200"
|
1131
|
+
inkscape:label="Layer 1">
|
1132
|
+
<ellipse
|
1133
|
+
ry="6.5714288"
|
1134
|
+
rx="19.714285"
|
1135
|
+
cy="38.57143"
|
1136
|
+
cx="24.714285"
|
1137
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.53164559;fill:url(#radialGradient5202);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.40487173;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1138
|
+
id="ellipse5180" />
|
1139
|
+
<circle
|
1140
|
+
r="8.6620579"
|
1141
|
+
cy="19.008621"
|
1142
|
+
cx="31.112698"
|
1143
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5204);fill-opacity:1;fill-rule:evenodd;stroke:#9c8c0a;stroke-width:0.48004404;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1144
|
+
id="circle5182"
|
1145
|
+
transform="matrix(2.083142,0,0,2.083142,-40.54715,-16.49224)" />
|
1146
|
+
<circle
|
1147
|
+
r="8.6620579"
|
1148
|
+
cy="19.008621"
|
1149
|
+
cx="31.112698"
|
1150
|
+
id="circle5184"
|
1151
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.67721522;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.50510627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1152
|
+
transform="matrix(1.979782,0,0,1.979782,-37.33128,-14.52746)" />
|
1153
|
+
<path
|
1154
|
+
sodipodi:type="arc"
|
1155
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
1156
|
+
id="path5186"
|
1157
|
+
sodipodi:cx="-3.8125"
|
1158
|
+
sodipodi:cy="1.875"
|
1159
|
+
sodipodi:rx="2.9375"
|
1160
|
+
sodipodi:ry="2.875"
|
1161
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
1162
|
+
sodipodi:start="0"
|
1163
|
+
sodipodi:end="2.6179939"
|
1164
|
+
sodipodi:open="true"
|
1165
|
+
transform="rotate(-165.00001,13.399506,6.985646)" />
|
1166
|
+
<path
|
1167
|
+
transform="rotate(-165.00001,9.0245067,7.5616255)"
|
1168
|
+
sodipodi:open="true"
|
1169
|
+
sodipodi:end="2.6179939"
|
1170
|
+
sodipodi:start="0"
|
1171
|
+
d="M -0.875,1.875 A 2.9375,2.875 0 0 1 -3.0522191,4.6520368 2.9375,2.875 0 0 1 -6.3564497,3.3124999"
|
1172
|
+
sodipodi:ry="2.875"
|
1173
|
+
sodipodi:rx="2.9375"
|
1174
|
+
sodipodi:cy="1.875"
|
1175
|
+
sodipodi:cx="-3.8125"
|
1176
|
+
id="path5188"
|
1177
|
+
style="fill:none;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
1178
|
+
sodipodi:type="arc" />
|
1179
|
+
<path
|
1180
|
+
inkscape:connector-curvature="0"
|
1181
|
+
sodipodi:nodetypes="czcc"
|
1182
|
+
id="path5190"
|
1183
|
+
d="m 9.1875355,21.044769 c -1.5389814,7.567378 4.6920355,17.167526 14.8511515,17.167526 10.247498,0 16.505528,-8.430424 14.72004,-17.105026 z"
|
1184
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient5206);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
|
1185
|
+
<path
|
1186
|
+
inkscape:connector-curvature="0"
|
1187
|
+
id="path5192"
|
1188
|
+
d="M 24.5,21.528657 V 38.382936"
|
1189
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5208);stroke-width:0.99999988px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
1190
|
+
<path
|
1191
|
+
inkscape:connector-curvature="0"
|
1192
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5210);stroke-width:1.00000024px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
1193
|
+
d="M 16.5,21.468635 V 35.531381"
|
1194
|
+
id="path5194" />
|
1195
|
+
<path
|
1196
|
+
inkscape:connector-curvature="0"
|
1197
|
+
id="path5196"
|
1198
|
+
d="M 32.5,21.541107 V 35.458909"
|
1199
|
+
style="opacity:0.18181817;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5212);stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
1200
|
+
<path
|
1201
|
+
inkscape:connector-curvature="0"
|
1202
|
+
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
|
1203
|
+
d="m 9.4409398,20.615864 c -1.7806546,8.821926 5.1590122,18.087809 14.8090612,18.087809 10.003545,0 16.652216,-9.578383 14.371562,-18.150309 z"
|
1204
|
+
id="path5198"
|
1205
|
+
sodipodi:nodetypes="czcc" />
|
1206
|
+
</g>
|
1207
|
+
</g>
|
1208
|
+
</svg>
|