rabbit-slide-kou-sapporoonga-20140329 2014.3.29.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 +65 -0
- data/Rakefile +17 -0
- data/config.yaml +24 -0
- data/how-to-start-droonga.rab +327 -0
- data/images/droonga-logo.svg +73 -0
- data/images/droonga-system.png +0 -0
- data/images/groonga-logo.svg +118 -0
- data/pdf/sapporoonga-20140329-how-to-start-droonga.pdf +0 -0
- metadata +83 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f70ed9638da51663ce8e8b1bc67b3f4d045a1b42
|
4
|
+
data.tar.gz: 378c11f12a6a15780dc3ec9bbaf600165accb9b9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 349247e21cc7daff1383f691ecf0427a7ec19a6b83af6c6dd7a6b3e756e8e129d88887a5396691231dafb72d9089c39072a89c25830f63c3946985f8231f9ff2
|
7
|
+
data.tar.gz: b62378c4c09d127de207066449ff78e05967e891add4288dfe47b70fb4c35f7386958dc88b9eff59da92018c6606f0f60361eb75427e9e6aec07bec94d7d5541
|
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
how-to-start-droonga.rab
|
data/README.rd
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
= Droongaのはじめかた
|
2
|
+
|
3
|
+
Droongaはまだ新しいプロダクトなのであまり情報がありません。今回はそんな
|
4
|
+
Droongaを使いはじめる方法を紹介します。
|
5
|
+
|
6
|
+
== ライセンス
|
7
|
+
|
8
|
+
=== 画像
|
9
|
+
|
10
|
+
==== Groonga関連プロジェクトの画像
|
11
|
+
|
12
|
+
images/以下にある以下のファイル。
|
13
|
+
|
14
|
+
* groonga-logo.svg
|
15
|
+
|
16
|
+
CC BY-SA 3.0
|
17
|
+
|
18
|
+
原著作者名は以下の通りです。
|
19
|
+
|
20
|
+
* Groongaプロジェクト
|
21
|
+
|
22
|
+
==== Droonga関連プロジェクトの画像
|
23
|
+
|
24
|
+
images/以下にある以下のファイル。
|
25
|
+
|
26
|
+
* droonga-logo.svg
|
27
|
+
* droonga-system.png
|
28
|
+
|
29
|
+
CC BY-SA 3.0
|
30
|
+
|
31
|
+
原著作者名は以下の通りです。
|
32
|
+
|
33
|
+
* Droongaプロジェクト
|
34
|
+
|
35
|
+
=== その他
|
36
|
+
|
37
|
+
上述以外のファイルです。
|
38
|
+
|
39
|
+
CC BY-SA 3.0
|
40
|
+
|
41
|
+
原著作者名には以下のどちらかを使ってください。
|
42
|
+
|
43
|
+
* 須藤功平
|
44
|
+
* Kouhei Sutou
|
45
|
+
|
46
|
+
== 作者向け
|
47
|
+
|
48
|
+
=== 表示
|
49
|
+
|
50
|
+
rake
|
51
|
+
|
52
|
+
=== 公開
|
53
|
+
|
54
|
+
rake publish
|
55
|
+
|
56
|
+
== 閲覧者向け
|
57
|
+
|
58
|
+
=== インストール
|
59
|
+
|
60
|
+
gem install rabbit-slide-kou-sapporoonga-20140329
|
61
|
+
|
62
|
+
=== 表示
|
63
|
+
|
64
|
+
rabbit rabbit-slide-kou-sapporoonga-20140329.gem
|
65
|
+
|
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
|
+
task.spec.files += Dir.glob("images/**/*.*")
|
9
|
+
# task.spec.files -= Dir.glob("private/**/*.*")
|
10
|
+
task.spec.add_runtime_dependency("rabbit-theme-groonga", ">= 1.0.1")
|
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,24 @@
|
|
1
|
+
---
|
2
|
+
id: sapporoonga-20140329
|
3
|
+
base_name: how-to-start-droonga
|
4
|
+
tags:
|
5
|
+
- rabbit
|
6
|
+
- groonga
|
7
|
+
- droonga
|
8
|
+
- sapporoonga
|
9
|
+
presentation_date: 2014-03-29
|
10
|
+
version: 2014.3.29.0
|
11
|
+
licenses:
|
12
|
+
- CC BY-SA 3.0
|
13
|
+
slideshare_id: sapporoonga-20140329
|
14
|
+
speaker_deck_id: droongafalsehazimekata
|
15
|
+
ustream_id:
|
16
|
+
vimeo_id:
|
17
|
+
youtube_id:
|
18
|
+
author:
|
19
|
+
markup_language: :rd
|
20
|
+
name: Kouhei Sutou
|
21
|
+
email: kou@clear-code.com
|
22
|
+
rubygems_user: kou
|
23
|
+
slideshare_user: kou
|
24
|
+
speaker_deck_user: kou
|
@@ -0,0 +1,327 @@
|
|
1
|
+
= Droongaの\nはじめかた
|
2
|
+
|
3
|
+
: author
|
4
|
+
須藤功平
|
5
|
+
: institution
|
6
|
+
クリアコード
|
7
|
+
: content-source
|
8
|
+
全文検索エンジンGroonga勉強会@札幌 2014/03/29
|
9
|
+
: date
|
10
|
+
2014/03/29
|
11
|
+
: allotted-time
|
12
|
+
20m
|
13
|
+
: theme
|
14
|
+
groonga
|
15
|
+
|
16
|
+
= この勉強会とこの話の関連
|
17
|
+
|
18
|
+
* 勉強会
|
19
|
+
* Groongaの利用事例を募集
|
20
|
+
* この話
|
21
|
+
* Groongaを使ったプロダクト\n
|
22
|
+
Droongaの話
|
23
|
+
|
24
|
+
= お知らせ1
|
25
|
+
|
26
|
+
# image
|
27
|
+
# src = images/groonga-logo.svg
|
28
|
+
# relative_width = 100
|
29
|
+
|
30
|
+
(('tag:center'))(('tag:x-large'))4.0.1リリース!
|
31
|
+
|
32
|
+
= 4.0.1の新機能1
|
33
|
+
|
34
|
+
* adjuster
|
35
|
+
* スコアブースト機能
|
36
|
+
* 使用例: 運営のオススメを上に表示
|
37
|
+
* 重み付きベクター
|
38
|
+
* レコード毎にn個の重みを設定
|
39
|
+
* adjusterと連携するとよい
|
40
|
+
|
41
|
+
= 4.0.1の新機能2
|
42
|
+
|
43
|
+
* データベース肥大化抑制
|
44
|
+
* Milkodeユーザーにも効果大なはず
|
45
|
+
* 注意: データベースの再作成が必要
|
46
|
+
* データベースの後方互換性あり
|
47
|
+
|
48
|
+
= お知らせ2
|
49
|
+
|
50
|
+
# image
|
51
|
+
# src = images/droonga-logo.svg
|
52
|
+
# relative_width = 100
|
53
|
+
|
54
|
+
(('tag:center'))(('tag:x-large'))1.0.1リリース!
|
55
|
+
|
56
|
+
= 1.0.1の新機能
|
57
|
+
|
58
|
+
* adjuster対応
|
59
|
+
* 重み付きベクター対応
|
60
|
+
* ユーザー視点の使い勝手向上
|
61
|
+
* grn2drn-schema, droonga-send, ...
|
62
|
+
|
63
|
+
(('note:今月は開発者としてよりもユーザーとして触っていたから'))
|
64
|
+
|
65
|
+
= 今日の目標
|
66
|
+
|
67
|
+
1人以上\n
|
68
|
+
Droongaデビュー
|
69
|
+
|
70
|
+
= 話すこと
|
71
|
+
|
72
|
+
Droonga\n
|
73
|
+
未経験者向け\n
|
74
|
+
ヒント\n
|
75
|
+
|
76
|
+
= 流れ
|
77
|
+
|
78
|
+
* ((*Droongaとはなにか*))
|
79
|
+
* Groongaの使い方
|
80
|
+
* ↑とDroongaの使い方の違い
|
81
|
+
* Droongaの考え方のイメージ
|
82
|
+
|
83
|
+
= Droongaとはなにか
|
84
|
+
|
85
|
+
# image
|
86
|
+
# src = images/droonga-logo.svg
|
87
|
+
# relative_width = 100
|
88
|
+
|
89
|
+
(('tag:center'))((*D*))istributed G((*roonga*))
|
90
|
+
|
91
|
+
= Distributed?
|
92
|
+
|
93
|
+
スケールアウト可能
|
94
|
+
|
95
|
+
= Droonga
|
96
|
+
|
97
|
+
スケールアウト可能な\nGroonga
|
98
|
+
|
99
|
+
= Groongaが透けて見える
|
100
|
+
|
101
|
+
スケールアウト可能な\n((*Groonga*))
|
102
|
+
|
103
|
+
= GroongaとDroonga
|
104
|
+
|
105
|
+
* 一部はGroonga != Droonga
|
106
|
+
* 一部はGroonga == Droonga
|
107
|
+
|
108
|
+
= Groonga != Droonga
|
109
|
+
|
110
|
+
* APIは違う
|
111
|
+
* DroongaにGroonga互換レイヤーあり
|
112
|
+
* 構成は違う
|
113
|
+
* 1台でDroongaを使っても嬉しくない
|
114
|
+
* 性能特性は違う
|
115
|
+
* 1台で捌ける量→Groongaの方が速い
|
116
|
+
|
117
|
+
= Groonga == Droonga
|
118
|
+
|
119
|
+
* クエリーの書き方は同じ
|
120
|
+
* スキーマの考え方は同じ
|
121
|
+
* 検索機能はだいたい同じ
|
122
|
+
|
123
|
+
= Droongaをはじめるために
|
124
|
+
|
125
|
+
教養として\n
|
126
|
+
Groongaを\n
|
127
|
+
押さえて\n
|
128
|
+
おくべき!
|
129
|
+
|
130
|
+
= Groongaの使い方
|
131
|
+
|
132
|
+
* Droongaとはなにか
|
133
|
+
* ((*Groongaの使い方*))
|
134
|
+
* ↑とDroongaの使い方の違い
|
135
|
+
* Droongaの考え方のイメージ
|
136
|
+
|
137
|
+
= なぜまずGroongaか
|
138
|
+
|
139
|
+
(('tag:center'))(('tag:x-large'))(('tag:margin-bottom'))Groongaはお手軽
|
140
|
+
|
141
|
+
* 1台のマシンで動く
|
142
|
+
* 設定ファイルなしで動く
|
143
|
+
* コマンドラインで動く
|
144
|
+
|
145
|
+
= Groongaを使う流れ
|
146
|
+
|
147
|
+
(('tag:center'))(('note:初心者向けの簡易版'))
|
148
|
+
|
149
|
+
(1) ((*スキーマを作る*))
|
150
|
+
(2) インデックスを作る
|
151
|
+
(3) データを入れる
|
152
|
+
(4) 検索する
|
153
|
+
|
154
|
+
= スキーマを作る
|
155
|
+
|
156
|
+
* 検索したいものを((*1つ*))決める
|
157
|
+
* 例: たいやき屋検索ならたいやき屋
|
158
|
+
* 検索したいものの集まりを\n
|
159
|
+
テーブルにする
|
160
|
+
* 例: TaiyakiShopsテーブル
|
161
|
+
* 付加情報をカラムにする
|
162
|
+
* 例: 店舗名、場所、メニューなど
|
163
|
+
|
164
|
+
= スキーマ例
|
165
|
+
|
166
|
+
table_create TaiyakiShops \
|
167
|
+
TABLE_HASH_KEY ShortText
|
168
|
+
# 店舗名
|
169
|
+
column_create TaiyakiShops name \
|
170
|
+
COLUMN_SCALAR ShortText
|
171
|
+
# 場所
|
172
|
+
column_create TaiyakiShops location \
|
173
|
+
COLUMN_SCALAR WGS84GeoPoint
|
174
|
+
|
175
|
+
= Groongaを使う流れ: 2
|
176
|
+
|
177
|
+
(1) スキーマを作る
|
178
|
+
(2) ((*インデックスを作る*))
|
179
|
+
(3) データを入れる
|
180
|
+
(4) 検索する
|
181
|
+
|
182
|
+
= インデックスを作る
|
183
|
+
|
184
|
+
* 全文検索対象を決める
|
185
|
+
* 例: 店舗名
|
186
|
+
* トークンの集合を格納する\n
|
187
|
+
テーブルを作る
|
188
|
+
* トークン: 最小検索単位
|
189
|
+
* ↑にインデックスカラムを作る
|
190
|
+
|
191
|
+
= インデックス例
|
192
|
+
|
193
|
+
# トークン用テーブル
|
194
|
+
# 初心者は常にこれでOK
|
195
|
+
table_create Tokens \
|
196
|
+
TABLE_PAT_KEY ShortText \
|
197
|
+
--default_tokenizer TokenBigram \
|
198
|
+
--normalizer NormalizerAuto
|
199
|
+
# インデックスカラム
|
200
|
+
column_create Tokens taiyaki_index \
|
201
|
+
COLUMN_INDEX|WITH_POSITION \
|
202
|
+
TaiyakiShops name
|
203
|
+
|
204
|
+
= Groongaを使う流れ: 3
|
205
|
+
|
206
|
+
(1) スキーマを作る
|
207
|
+
(2) インデックスを作る
|
208
|
+
(3) ((*データを入れる*))
|
209
|
+
(4) 検索する
|
210
|
+
|
211
|
+
= データを入れる
|
212
|
+
|
213
|
+
* フォーマットはJSON
|
214
|
+
* GroongaのJSONパーサーは緩い
|
215
|
+
* 多少壊れたJSONも受け付ける
|
216
|
+
|
217
|
+
= データ例
|
218
|
+
|
219
|
+
load --table TaiyakiShops
|
220
|
+
[
|
221
|
+
{
|
222
|
+
"_key": "sapporo-yanagiya",
|
223
|
+
"name": "札幌の柳屋",
|
224
|
+
"location": "43.11629x141.34855"
|
225
|
+
}
|
226
|
+
]
|
227
|
+
|
228
|
+
= Groongaを使う流れ: 4
|
229
|
+
|
230
|
+
(1) スキーマを作る
|
231
|
+
(2) インデックスを作る
|
232
|
+
(3) データを入れる
|
233
|
+
(4) ((*検索する*))
|
234
|
+
|
235
|
+
= 検索する
|
236
|
+
|
237
|
+
* 全文検索対象を指定する
|
238
|
+
* 検索キーワードを指定する
|
239
|
+
|
240
|
+
= 検索例
|
241
|
+
|
242
|
+
select TaiyakiShops \
|
243
|
+
--match_columns name \
|
244
|
+
--query "札幌"
|
245
|
+
# [[...], ← レスポンスヘッダー
|
246
|
+
# [[[1], ← ヒット件数
|
247
|
+
# ↓ 出力内容のメタデータ
|
248
|
+
# [["_id","UInt32"],...],
|
249
|
+
# ↓ マッチしたレコード
|
250
|
+
# [1,"sapporo-yanagiya","...","札幌の柳屋"]]]]
|
251
|
+
|
252
|
+
= Groongaを使う流れの再確認
|
253
|
+
|
254
|
+
(1) スキーマを作る
|
255
|
+
(2) インデックスを作る
|
256
|
+
(3) データを入れる
|
257
|
+
(4) 検索する
|
258
|
+
|
259
|
+
= 流れ3
|
260
|
+
|
261
|
+
* Droongaとはなにか
|
262
|
+
* Groongaの使い方
|
263
|
+
* ((*↑とDroongaの使い方の違い*))
|
264
|
+
* Droongaの考え方のイメージ
|
265
|
+
|
266
|
+
= Droongaを使う流れ
|
267
|
+
|
268
|
+
(1) クラスターを作る ← ((*New*))
|
269
|
+
(2) スキーマを作る
|
270
|
+
(3) インデックスを作る
|
271
|
+
(4) データを入れる
|
272
|
+
(5) 検索する
|
273
|
+
|
274
|
+
= クラスターを作る
|
275
|
+
|
276
|
+
(('note:大事だけど時間がないので'))\n
|
277
|
+
省略!
|
278
|
+
|
279
|
+
= 流れ4
|
280
|
+
|
281
|
+
* Droongaとはなにか
|
282
|
+
* Groongaの使い方
|
283
|
+
* ↑とDroongaの使い方の違い
|
284
|
+
* ((*Droongaの考え方のイメージ*))
|
285
|
+
|
286
|
+
= Droongaの構成
|
287
|
+
|
288
|
+
# image
|
289
|
+
# src = images/droonga-system.png
|
290
|
+
# relative_width = 80
|
291
|
+
|
292
|
+
(('tag:center'))(('note:http://droonga.org/overview/'))
|
293
|
+
|
294
|
+
= まとめ1
|
295
|
+
|
296
|
+
* Droonga
|
297
|
+
* スケールアウト可能なGroonga
|
298
|
+
* Groongaと同じことがいろいろある
|
299
|
+
* Groongaの理解が役立つ
|
300
|
+
|
301
|
+
= まとめ2
|
302
|
+
|
303
|
+
* Groongaの使い方
|
304
|
+
(1) スキーマを作る
|
305
|
+
(2) インデックスを作る
|
306
|
+
(3) データを入れる
|
307
|
+
(4) 検索する
|
308
|
+
|
309
|
+
= まとめ3
|
310
|
+
|
311
|
+
* Droongaの使い方
|
312
|
+
(1) クラスターを作る
|
313
|
+
(2) 以下、Groongaと同じ
|
314
|
+
|
315
|
+
= まとめ4
|
316
|
+
|
317
|
+
(('tag:center'))Droongaの構成
|
318
|
+
|
319
|
+
* n個のGroongaで\n
|
320
|
+
大きなGroongaを構成
|
321
|
+
* Droonga=大きなGroonga
|
322
|
+
|
323
|
+
= 今日の目標の確認
|
324
|
+
|
325
|
+
1人以上\n
|
326
|
+
Droongaデビュー\n
|
327
|
+
(('note:を見据えてGroongaデビュー'))
|
@@ -0,0 +1,73 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1"
|
5
|
+
id="svg4522" sodipodi:docname="譁ー隕上ラ繧ュ繝・繝。繝ウ繝10" inkscape:version="0.48.1 r9760" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:cc="http://creativecommons.org/ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="229.335px"
|
7
|
+
height="73.012px" viewBox="0 0 229.335 73.012" enable-background="new 0 0 229.335 73.012" xml:space="preserve">
|
8
|
+
<sodipodi:namedview id="base" inkscape:pageshadow="2" fit-margin-bottom="4.9" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-y="260" inkscape:pageopacity="0.0" inkscape:window-width="902" inkscape:window-height="442" inkscape:window-x="1920" fit-margin-right="5" inkscape:window-maximized="0" inkscape:cy="55.868778" fit-margin-left="5" bordercolor="#666666" inkscape:zoom="1.979899" inkscape:cx="101.4407" fit-margin-top="5" pagecolor="#ffffff" borderopacity="1.0" showgrid="false">
|
9
|
+
</sodipodi:namedview>
|
10
|
+
<g id="droonga">
|
11
|
+
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="62.063" y1="36.468" x2="122.8701" y2="36.468">
|
12
|
+
<stop offset="0.0061" style="stop-color:#AE5881"/>
|
13
|
+
<stop offset="1" style="stop-color:#90196E"/>
|
14
|
+
</linearGradient>
|
15
|
+
<path fill="url(#SVGID_1_)" d="M90.186,11.555c-2.265,2.265-3.981,5.176-4.874,8.385c-5.887-0.09-11.792,2.202-16.477,6.888
|
16
|
+
c-7.889,7.888-10.341,22.198,0.646,33.186c9.245,9.245,23.051,9.384,32.111,0.323c4.283-4.285,7.012-10.179,7.07-16.412
|
17
|
+
c3.041-0.809,5.934-2.429,8.399-4.891c6.739-6.743,8.801-18.329-0.301-27.436C109.171,4.012,97.747,3.994,90.186,11.555z
|
18
|
+
M115.009,31.341c-1.294,1.294-2.951,2.251-4.779,2.773c-2.932,0.84-4.511,0.754-5.519,2.436c-1.009,1.683-0.897,1.881-0.853,5.031
|
19
|
+
c0.054,3.575-1.292,7.281-4.663,10.653c-5.154,5.153-14.667,6.302-21.667-0.698c-5.516-5.518-8.103-14.802-0.753-22.151
|
20
|
+
c2.729-2.726,6.651-4.338,10.777-4.265c2.868,0.051,3.203,0.154,5.049-0.682c1.85-0.844,1.048-2.713,2.152-6.012
|
21
|
+
c0.539-1.608,1.497-3.192,2.997-4.693c3.997-3.996,11.355-4.912,16.746,0.476C118.886,18.603,120.747,25.602,115.009,31.341z"/>
|
22
|
+
<path fill="#040000" d="M58.593,25.397c-1.351-0.293-2.305-0.453-3.479-0.453c-2.877,0-5.387,0.841-7.471,2.493
|
23
|
+
c-0.093,0.063-0.194,0.142-0.307,0.251c-0.233,0.197-0.457,0.407-0.675,0.627c-1.494,1.327-2.79,1.971-2.79-1.249v-0.674
|
24
|
+
c0-0.408-0.331-0.739-0.74-0.739h-2.124c-0.201,0-0.393,0.08-0.532,0.225c-0.14,0.145-0.214,0.338-0.208,0.538
|
25
|
+
c0.107,3.369,0.217,6.85,0.217,9.726v18.952c0,0.408,0.331,0.74,0.74,0.74h2.232c0.408,0,0.739-0.332,0.739-0.74V45.073
|
26
|
+
c0-1.386,0.109-3.846,0.313-4.865c1.585-7.882,5.035-11.714,10.547-11.714c0.99,0,1.901,0.165,2.905,0.368
|
27
|
+
c0.048,0.009,0.097,0.015,0.145,0.015c0.15,0,0.297-0.047,0.421-0.133c0.165-0.115,0.276-0.292,0.309-0.49l0.327-2.015
|
28
|
+
C59.229,25.85,58.978,25.481,58.593,25.397z"/>
|
29
|
+
<path fill="#040000" d="M150.359,27.006c-2.538-1.794-5.35-2.063-6.799-2.063c-2.941,0-5.71,0.923-7.905,2.521
|
30
|
+
c-0.006,0.005-0.01,0.006-0.016,0.009c-1.016,0.655-2.655,0.92-2.646-0.631v-0.021c0.002-0.108-0.003-0.201-0.013-0.28
|
31
|
+
l-0.008-0.184c-0.019-0.396-0.345-0.705-0.739-0.705h-2.125c-0.205,0-0.4,0.084-0.539,0.234c-0.141,0.149-0.213,0.349-0.199,0.554
|
32
|
+
c0.154,2.307,0.217,4.217,0.217,6.596v22.057c0,0.408,0.33,0.74,0.739,0.74h2.233c0.408,0,0.74-0.332,0.74-0.74v-17.7
|
33
|
+
c0-0.82,0.255-1.78,0.495-2.403c0.003-0.008,0.007-0.018,0.009-0.025c1.055-3.076,4.27-6.187,8.509-6.545
|
34
|
+
c3.271,0.003,8.416,2.386,9.121,8.314c0.017,0.153,0.031,0.303,0.043,0.449c0.004,0.05,0.009,0.1,0.013,0.15
|
35
|
+
c0.004,0.07,0.01,0.142,0.014,0.21c0.009,0.193,0.014,0.39,0.014,0.59c0,0.338,0.006,0.644,0.018,0.92v16.04
|
36
|
+
c0,0.408,0.332,0.74,0.74,0.74h2.232c0.408,0,0.74-0.332,0.74-0.74V38.645C155.247,33.213,153.603,29.298,150.359,27.006z"/>
|
37
|
+
<path fill="#040000" d="M224.425,52.623c-0.135-0.115-0.305-0.177-0.479-0.177c-0.04,0-0.081,0.003-0.121,0.011
|
38
|
+
c-0.594,0.098-0.976,0.098-1.457,0.098c-1.161,0-2.202-0.338-2.202-4.432V38.101c0-2.369-0.182-5.426-1.601-8.058
|
39
|
+
c-1.842-3.42-5.235-5.153-10.087-5.153c-2.501,0-6.284,0.521-10.098,3.006c-0.318,0.206-0.427,0.621-0.254,0.959l0.872,1.688
|
40
|
+
c0.098,0.191,0.274,0.329,0.482,0.381c0.058,0.013,0.117,0.02,0.175,0.02c0.151,0,0.302-0.046,0.428-0.135
|
41
|
+
c2.339-1.657,5.243-2.533,8.395-2.533c4.04,0,6.069,1.874,7.075,3.982c0.002,0,0.002,0,0.002,0.001
|
42
|
+
c1.014,2.243-0.568,4.451-2.311,4.635c-0.085,0.003-0.172,0.007-0.256,0.012c-0.015,0-0.029,0.001-0.043,0
|
43
|
+
c-0.057-0.001-0.103,0.003-0.146,0.009c-11.096,0.634-16.715,4.357-16.715,11.1c0,2.049,0.811,4.1,2.227,5.628
|
44
|
+
c1.246,1.348,3.598,2.954,7.717,2.954c3.509,0,6.338-1.125,8.415-2.5c0.062-0.031,0.132-0.077,0.214-0.142
|
45
|
+
c0.021-0.019,0.043-0.032,0.064-0.049c0.129-0.091,0.259-0.18,0.381-0.271c1.291-0.833,1.991-0.354,2.651,0.509
|
46
|
+
c0.003,0.005,0.006,0.005,0.009,0.008c0.849,1.153,2.186,1.737,4.005,1.737c0.854,0,1.608-0.094,2.37-0.298
|
47
|
+
c0.322-0.087,0.549-0.38,0.549-0.715v-1.688C224.687,52.97,224.591,52.764,224.425,52.623z M205.974,53.155
|
48
|
+
c-3.074,0-6.176-1.741-6.176-5.631c0-4.916,6-6.651,12.298-7.121c2.346-0.044,4.141,2.186,4.358,4.626v0.999
|
49
|
+
c-0.063,0.653-0.25,1.304-0.575,1.907c-0.162,0.268-0.358,0.563-0.595,0.876c-0.04,0.047-0.076,0.093-0.104,0.134
|
50
|
+
C213.723,50.813,210.911,53.155,205.974,53.155z"/>
|
51
|
+
<path fill="#040000" d="M189.635,25.653h-2.07c-0.396,0-0.724,0.313-0.739,0.709c-0.066,1.636-0.9,1.856-2.731,0.774
|
52
|
+
c-0.01-0.006-0.019-0.014-0.028-0.02c-0.18-0.12-0.365-0.233-0.552-0.342c-0.011-0.009-0.021-0.015-0.03-0.022
|
53
|
+
c-0.09-0.057-0.171-0.103-0.248-0.139c-2.005-1.108-4.353-1.67-6.998-1.67c-3.781,0-7.509,1.564-10.232,4.296
|
54
|
+
c-2.105,2.11-4.613,5.89-4.613,11.911c0,3.86,1.361,7.493,3.832,10.231c2.623,2.905,6.303,4.506,10.36,4.506
|
55
|
+
c3.144,0,5.573-0.829,7.413-1.918c0.004-0.001,0.008-0.003,0.014-0.004c1.973-0.884,3.641-2.205,3.167,2.258
|
56
|
+
c-0.884,5.737-4.566,8.858-10.594,8.858c-4.22,0-7.39-1.42-9.304-2.612c-0.119-0.073-0.254-0.11-0.391-0.11
|
57
|
+
c-0.062,0-0.123,0.007-0.184,0.022c-0.197,0.05-0.363,0.178-0.461,0.354l-0.981,1.742c-0.19,0.339-0.086,0.77,0.241,0.983
|
58
|
+
c2.883,1.882,6.984,3.006,10.969,3.006c2.721,0,9.396-0.632,12.63-6.481c1.399-2.509,2.054-6.033,2.054-11.088V33.254
|
59
|
+
c0-2.501,0.069-4.729,0.215-6.811c0.015-0.205-0.057-0.405-0.196-0.557C190.036,25.737,189.84,25.653,189.635,25.653z
|
60
|
+
M172.56,51.96c-0.613-0.242-7.692-3.251-7.089-11.938c0.556-8.026,5.778-10.568,6.587-10.915c1.293-0.504,2.729-0.777,4.289-0.777
|
61
|
+
c5.396,0,8.549,3.399,9.702,6.583c0.28,0.845,0.396,1.675,0.396,2.861v5.229c0,0.893-0.205,1.953-0.55,2.836
|
62
|
+
c-1.603,3.981-5.485,6.663-9.657,6.663C174.88,52.502,173.657,52.307,172.56,51.96z"/>
|
63
|
+
<path fill="#040000" d="M33.397,48.249v-36.74c0-0.415-0.336-0.752-0.752-0.752h-2.269c-0.415,0-0.751,0.337-0.751,0.752v11.436
|
64
|
+
c0,0.978-0.897,4.216-3.652,2.909c-0.04-0.019-0.075-0.033-0.113-0.05c-1.74-0.839-3.866-1.381-6.383-1.381
|
65
|
+
c-4.175,0-8.011,1.655-10.801,4.661c-2.832,3.051-4.392,7.322-4.392,12.027c0,8.787,6.199,15.414,14.418,15.414
|
66
|
+
c3.305,0,5.961-0.874,8.003-2.17c0.057-0.031,0.118-0.067,0.184-0.112c0.01-0.008,0.019-0.013,0.028-0.019
|
67
|
+
c0.003-0.003,0.006-0.004,0.01-0.006c1.602-1.088,3.111-1.667,3.111,0.024c0,0.056,0.002,0.108,0.006,0.156l0.024,0.682
|
68
|
+
c0.014,0.405,0.347,0.725,0.751,0.725h2.047c0.21,0,0.408-0.087,0.551-0.239c0.142-0.152,0.214-0.356,0.2-0.564
|
69
|
+
C33.469,52.886,33.397,50.676,33.397,48.249z M8.055,40.834c0-7.792,4.524-13.024,11.256-13.024c5.774,0,8.93,3.582,9.959,6.938
|
70
|
+
c0.005,0.015,0.01,0.027,0.015,0.043c0.155,0.414,0.34,1.212,0.34,2.669v5.587c0,0.919-0.049,1.621-0.288,2.293
|
71
|
+
c-0.007,0.019-0.013,0.038-0.018,0.056c-1.244,4.561-5.405,7.745-10.119,7.745C11.501,53.14,8.055,46.96,8.055,40.834z"/>
|
72
|
+
</g>
|
73
|
+
</svg>
|
Binary file
|
@@ -0,0 +1,118 @@
|
|
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="232.17999"
|
14
|
+
height="73.112274"
|
15
|
+
id="svg3635"
|
16
|
+
version="1.1"
|
17
|
+
inkscape:version="0.48.1 r9760"
|
18
|
+
sodipodi:docname="新規ドキュメント 1">
|
19
|
+
<defs
|
20
|
+
id="defs3637">
|
21
|
+
<linearGradient
|
22
|
+
gradientTransform="translate(-419.62671,208.8676)"
|
23
|
+
id="SVGID_1_"
|
24
|
+
gradientUnits="userSpaceOnUse"
|
25
|
+
x1="223.6167"
|
26
|
+
y1="76.3564"
|
27
|
+
x2="223.6167"
|
28
|
+
y2="137.38029">
|
29
|
+
<stop
|
30
|
+
offset="0"
|
31
|
+
style="stop-color:#3FA9F5"
|
32
|
+
id="stop160" />
|
33
|
+
<stop
|
34
|
+
offset="1"
|
35
|
+
style="stop-color:#0071BC"
|
36
|
+
id="stop162" />
|
37
|
+
</linearGradient>
|
38
|
+
<linearGradient
|
39
|
+
inkscape:collect="always"
|
40
|
+
xlink:href="#SVGID_1_"
|
41
|
+
id="linearGradient3693"
|
42
|
+
gradientUnits="userSpaceOnUse"
|
43
|
+
gradientTransform="translate(-419.62671,208.8676)"
|
44
|
+
x1="223.6167"
|
45
|
+
y1="76.3564"
|
46
|
+
x2="223.6167"
|
47
|
+
y2="137.38029" />
|
48
|
+
</defs>
|
49
|
+
<sodipodi:namedview
|
50
|
+
id="base"
|
51
|
+
pagecolor="#ffffff"
|
52
|
+
bordercolor="#666666"
|
53
|
+
borderopacity="1.0"
|
54
|
+
inkscape:pageopacity="0"
|
55
|
+
inkscape:pageshadow="2"
|
56
|
+
inkscape:zoom="1.4"
|
57
|
+
inkscape:cx="202.10766"
|
58
|
+
inkscape:cy="3.8593771"
|
59
|
+
inkscape:document-units="px"
|
60
|
+
inkscape:current-layer="layer1"
|
61
|
+
showgrid="false"
|
62
|
+
fit-margin-top="5"
|
63
|
+
fit-margin-left="5"
|
64
|
+
fit-margin-right="5"
|
65
|
+
fit-margin-bottom="5"
|
66
|
+
inkscape:window-width="902"
|
67
|
+
inkscape:window-height="442"
|
68
|
+
inkscape:window-x="2411"
|
69
|
+
inkscape:window-y="568"
|
70
|
+
inkscape:window-maximized="0" />
|
71
|
+
<metadata
|
72
|
+
id="metadata3640">
|
73
|
+
<rdf:RDF>
|
74
|
+
<cc:Work
|
75
|
+
rdf:about="">
|
76
|
+
<dc:format>image/svg+xml</dc:format>
|
77
|
+
<dc:type
|
78
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
79
|
+
<dc:title></dc:title>
|
80
|
+
</cc:Work>
|
81
|
+
</rdf:RDF>
|
82
|
+
</metadata>
|
83
|
+
<g
|
84
|
+
inkscape:label="レイヤー 1"
|
85
|
+
inkscape:groupmode="layer"
|
86
|
+
id="layer1"
|
87
|
+
transform="translate(-229.62429,-318.66319)">
|
88
|
+
<g
|
89
|
+
id="g3685"
|
90
|
+
transform="translate(520,37.142857)">
|
91
|
+
<path
|
92
|
+
id="path149"
|
93
|
+
d="m -228.72771,306.3346 c -1.336,-0.29 -2.281,-0.448 -3.442,-0.448 -2.847,0 -5.33,0.831 -7.391,2.468 -0.091,0.06 -0.192,0.14 -0.303,0.245 -0.231,0.197 -0.452,0.406 -0.668,0.621 -1.478,1.314 -2.76,1.952 -2.76,-1.235 v -0.666 c 0,-0.404 -0.327,-0.732 -0.732,-0.732 h -2.101 c -0.198,0 -0.388,0.081 -0.525,0.223 -0.139,0.143 -0.212,0.335 -0.206,0.532 0.105,3.333 0.215,6.778 0.215,9.621 v 18.75 c 0,0.404 0.328,0.731 0.732,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -9.914 c 0,-1.37 0.107,-3.805 0.309,-4.813 1.569,-7.797 4.982,-11.588 10.435,-11.588 0.979,0 1.881,0.165 2.874,0.363 0.048,0.011 0.096,0.015 0.144,0.015 0.148,0 0.294,-0.045 0.417,-0.131 0.163,-0.113 0.273,-0.288 0.306,-0.484 l 0.323,-1.994 c 0.062,-0.384 -0.187,-0.752 -0.568,-0.833 z"
|
94
|
+
inkscape:connector-curvature="0" />
|
95
|
+
<path
|
96
|
+
id="path151"
|
97
|
+
d="m -139.68071,307.9266 c -2.512,-1.774 -5.292,-2.04 -6.726,-2.04 -2.91,0 -5.648,0.912 -7.822,2.495 -0.005,0.004 -0.01,0.005 -0.014,0.009 -1.004,0.648 -2.627,0.909 -2.618,-0.625 l 0,-0.021 c 0.002,-0.107 -0.003,-0.199 -0.013,-0.277 l -0.008,-0.182 c -0.019,-0.391 -0.34,-0.698 -0.731,-0.698 h -2.102 c -0.203,0 -0.396,0.084 -0.535,0.232 -0.138,0.148 -0.209,0.347 -0.195,0.549 0.152,2.28 0.214,4.171 0.214,6.524 v 21.821 c 0,0.404 0.328,0.731 0.731,0.731 h 2.209 c 0.404,0 0.732,-0.328 0.732,-0.731 v -17.511 c 0,-0.813 0.253,-1.761 0.49,-2.377 0.004,-0.008 0.006,-0.018 0.01,-0.026 1.043,-3.042 4.224,-6.12 8.417,-6.475 3.236,0.002 8.327,2.358 9.024,8.226 0.016,0.15 0.03,0.299 0.042,0.444 0.004,0.049 0.008,0.099 0.011,0.149 0.005,0.07 0.009,0.139 0.014,0.209 0.009,0.19 0.015,0.384 0.015,0.582 0,0.335 0.006,0.638 0.017,0.911 v 15.869 c 0,0.404 0.328,0.731 0.733,0.731 h 2.208 c 0.404,0 0.732,-0.328 0.732,-0.731 v -16.272 c 0,-5.375 -1.627,-9.248 -4.835,-11.516 z"
|
98
|
+
inkscape:connector-curvature="0" />
|
99
|
+
<path
|
100
|
+
id="path153"
|
101
|
+
d="m -63.456714,333.2686 c -0.133,-0.113 -0.301,-0.174 -0.473,-0.174 -0.04,0 -0.08,0.003 -0.12,0.01 -0.587,0.098 -0.965,0.098 -1.442,0.098 -1.147,0 -2.177,-0.335 -2.177,-4.387 v -9.913 c 0,-2.343 -0.179,-5.368 -1.583,-7.972 -1.822,-3.382 -5.181,-5.098 -9.978,-5.098 -2.475,0 -6.217,0.516 -9.99,2.974 -0.315,0.205 -0.422,0.615 -0.25,0.949 l 0.861,1.67 c 0.098,0.189 0.272,0.326 0.478,0.375 0.058,0.014 0.116,0.021 0.173,0.021 0.151,0 0.299,-0.047 0.424,-0.135 2.314,-1.639 5.186,-2.504 8.305,-2.504 3.995,0 6.004,1.854 7,3.939 l 0,0 c 1.004,2.221 -0.561,4.404 -2.285,4.584 -0.085,0.005 -0.17,0.008 -0.254,0.013 -0.014,0 -0.028,0.001 -0.042,0 -0.055,-10e-4 -0.101,0.003 -0.143,0.009 -10.978,0.626 -16.538,4.313 -16.538,10.98 0,2.027 0.803,4.057 2.202,5.569 1.233,1.333 3.56,2.921 7.635,2.921 3.471,0 6.271,-1.112 8.325,-2.472 0.061,-0.031 0.13,-0.076 0.211,-0.141 0.023,-0.017 0.042,-0.031 0.064,-0.048 0.128,-0.088 0.256,-0.177 0.378,-0.268 1.275,-0.825 1.969,-0.351 2.623,0.504 0.002,0.002 0.006,0.005 0.008,0.007 0.84,1.14 2.161,1.718 3.962,1.718 0.846,0 1.591,-0.094 2.344,-0.294 0.32,-0.085 0.543,-0.375 0.543,-0.707 v -1.67 c -0.002,-0.214 -0.097,-0.419 -0.261,-0.558 z m -18.252,0.527 c -3.042,0 -6.111,-1.723 -6.111,-5.572 0,-4.863 5.936,-6.58 12.167,-7.043 2.32,-0.043 4.097,2.162 4.311,4.575 v 0.989 c -0.062,0.647 -0.246,1.289 -0.568,1.888 -0.162,0.263 -0.356,0.556 -0.589,0.864 -0.04,0.047 -0.075,0.093 -0.103,0.134 -1.442,1.848 -4.223,4.165 -9.107,4.165 z"
|
102
|
+
inkscape:connector-curvature="0" />
|
103
|
+
<path
|
104
|
+
id="path155"
|
105
|
+
d="m -257.43671,306.5866 h -2.047 c -0.392,0 -0.715,0.311 -0.731,0.703 -0.065,1.618 -0.892,1.836 -2.704,0.766 -0.01,-0.006 -0.018,-0.014 -0.026,-0.019 -0.178,-0.119 -0.361,-0.231 -0.545,-0.339 -0.011,-0.007 -0.021,-0.012 -0.032,-0.02 -0.088,-0.059 -0.169,-0.104 -0.245,-0.14 -1.982,-1.096 -4.306,-1.65 -6.923,-1.65 -3.739,0 -7.428,1.548 -10.122,4.25 -2.083,2.087 -4.564,5.826 -4.564,11.784 0,3.818 1.347,7.413 3.792,10.122 2.594,2.875 6.234,4.458 10.249,4.458 3.11,0 5.514,-0.819 7.334,-1.897 0.004,-0.002 0.008,-0.003 0.012,-0.005 1.953,-0.873 3.601,-2.182 3.135,2.232 -0.875,5.678 -4.519,8.765 -10.482,8.765 -4.175,0 -7.31,-1.404 -9.204,-2.583 -0.117,-0.072 -0.251,-0.11 -0.387,-0.11 -0.061,0 -0.122,0.008 -0.182,0.023 -0.193,0.049 -0.358,0.176 -0.456,0.35 l -0.969,1.725 c -0.189,0.336 -0.085,0.761 0.237,0.972 2.852,1.863 6.909,2.975 10.853,2.975 2.691,0 9.293,-0.625 12.494,-6.412 1.384,-2.481 2.03,-5.968 2.03,-10.968 v -17.457 c 0,-2.474 0.07,-4.679 0.214,-6.738 0.014,-0.202 -0.057,-0.402 -0.195,-0.549 -0.139,-0.153 -0.333,-0.238 -0.536,-0.238 z m -16.892,26.028 c -0.605,-0.24 -7.609,-3.216 -7.013,-11.811 0.551,-7.946 5.723,-10.459 6.518,-10.798 1.278,-0.5 2.7,-0.769 4.241,-0.769 1.664,0 3.112,0.327 4.354,0.873 6.846,3.871 7.696,16.453 0.885,21.467 -1.592,0.999 -3.437,1.573 -5.346,1.573 -1.342,0 -2.552,-0.194 -3.639,-0.535 z"
|
106
|
+
inkscape:connector-curvature="0" />
|
107
|
+
<path
|
108
|
+
id="path157"
|
109
|
+
d="m -99.588714,306.5866 h -2.046996 c -0.393,0 -0.716,0.311 -0.731,0.703 -0.066,1.618 -0.892,1.836 -2.703,0.766 -0.009,-0.005 -0.018,-0.014 -0.027,-0.019 -0.178,-0.119 -0.362,-0.231 -0.546,-0.339 -0.011,-0.008 -0.02,-0.014 -0.031,-0.02 -0.087,-0.059 -0.168,-0.104 -0.244,-0.139 -1.982,-1.097 -4.307,-1.651 -6.924,-1.651 -3.739,0 -7.429,1.548 -10.122,4.25 -2.082,2.087 -4.564,5.826 -4.564,11.784 0,3.818 1.346,7.413 3.792,10.122 2.595,2.875 6.234,4.458 10.248,4.458 3.111,0 5.514,-0.819 7.335,-1.897 0.004,-0.002 0.007,-0.003 0.012,-0.005 1.954,-0.874 3.603,-2.183 3.135,2.233 -0.875,5.678 -4.519,8.764 -10.482,8.764 -4.175,0 -7.31,-1.404 -9.204,-2.583 -0.118,-0.072 -0.251,-0.11 -0.387,-0.11 -0.06,0 -0.122,0.008 -0.182,0.023 -0.193,0.049 -0.358,0.176 -0.456,0.35 l -0.97,1.725 c -0.189,0.336 -0.085,0.761 0.237,0.972 2.853,1.863 6.91,2.975 10.854,2.975 2.689,0 9.293,-0.625 12.493,-6.412 1.384996,-2.481 2.030996,-5.968 2.030996,-10.968 v -17.457 c 0,-2.474 0.07,-4.679 0.214,-6.738 0.014,-0.202 -0.057,-0.402 -0.195,-0.549 -0.139,-0.153 -0.332,-0.238 -0.536,-0.238 z m -16.891996,26.028 c -0.605,-0.24 -7.609,-3.216 -7.013,-11.811 0.551,-7.94 5.716,-10.455 6.517,-10.798 1.278,-0.5 2.701,-0.769 4.242,-0.769 1.665,0 3.113,0.327 4.354,0.873 6.845,3.871 7.696,16.453 0.884,21.467 -1.592,1 -3.436,1.573 -5.345,1.573 -1.343,0 -2.553,-0.194 -3.639,-0.535 z"
|
110
|
+
inkscape:connector-curvature="0" />
|
111
|
+
<path
|
112
|
+
id="path164"
|
113
|
+
d="m -198.36371,292.3616 c -2.337,2.336 -4.109,5.342 -5.032,8.654 -6.076,-0.093 -12.171,2.273 -17.007,7.11 -8.142,8.141 -10.674,22.913 0.667,34.253 9.542,9.543 23.793,9.687 33.145,0.333 4.421,-4.424 7.236,-10.506 7.297,-16.94 3.14,-0.835 6.125,-2.507 8.67,-5.049 6.956,-6.959 9.086,-18.919 -0.311,-28.318 -7.833,-7.83 -19.626,-7.847 -27.429,-0.043 z m 25.622,20.422 c -1.335,1.338 -3.045,2.324 -4.932,2.864 -3.027,0.867 -4.657,0.777 -5.698,2.515 -1.041,1.735 -0.926,1.94 -0.88,5.194 0.056,3.689 -1.333,7.513 -4.813,10.995 -5.32,5.318 -15.14,6.504 -22.366,-0.721 -5.693,-5.694 -8.365,-15.278 -0.778,-22.865 2.816,-2.813 6.866,-4.477 11.124,-4.402 2.961,0.053 3.306,0.161 5.212,-0.704 1.909,-0.869 1.082,-2.799 2.222,-6.205 0.556,-1.66 1.545,-3.294 3.092,-4.844 4.126,-4.126 11.721,-5.072 17.285,0.491 4.533,4.535 6.455,11.759 0.532,17.682 z"
|
114
|
+
inkscape:connector-curvature="0"
|
115
|
+
style="fill:url(#linearGradient3693)" />
|
116
|
+
</g>
|
117
|
+
</g>
|
118
|
+
</svg>
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rabbit-slide-kou-sapporoonga-20140329
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2014.3.29.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kouhei Sutou
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-03-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rabbit
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.0.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.0.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rabbit-theme-groonga
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.0.1
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.0.1
|
41
|
+
description: |-
|
42
|
+
Droongaはまだ新しいプロダクトなのであまり情報がありません。今回はそんな
|
43
|
+
Droongaを使いはじめる方法を紹介します。
|
44
|
+
email:
|
45
|
+
- kou@clear-code.com
|
46
|
+
executables: []
|
47
|
+
extensions: []
|
48
|
+
extra_rdoc_files: []
|
49
|
+
files:
|
50
|
+
- .rabbit
|
51
|
+
- config.yaml
|
52
|
+
- Rakefile
|
53
|
+
- README.rd
|
54
|
+
- images/droonga-logo.svg
|
55
|
+
- images/groonga-logo.svg
|
56
|
+
- images/droonga-system.png
|
57
|
+
- how-to-start-droonga.rab
|
58
|
+
- pdf/sapporoonga-20140329-how-to-start-droonga.pdf
|
59
|
+
homepage: http://slide.rabbit-shocker.org/authors/kou/sapporoonga-20140329/
|
60
|
+
licenses:
|
61
|
+
- CC BY-SA 3.0
|
62
|
+
metadata: {}
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - '>='
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 2.0.13
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: Droongaのはじめかた
|
83
|
+
test_files: []
|