rroonga 5.0.0-x86-mingw32 → 5.0.1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (733) hide show
  1. checksums.yaml +8 -8
  2. data/.yardopts +1 -0
  3. data/Rakefile +1 -16
  4. data/example/bookmark.rb +1 -6
  5. data/example/index-html.rb +0 -1
  6. data/ext/groonga/extconf.rb +4 -7
  7. data/ext/groonga/rb-grn-array.c +1 -1
  8. data/ext/groonga/rb-grn-column.c +33 -67
  9. data/ext/groonga/rb-grn-context.c +5 -5
  10. data/ext/groonga/rb-grn-database.c +2 -2
  11. data/ext/groonga/rb-grn-double-array-trie.c +4 -2
  12. data/ext/groonga/rb-grn-encoding-support.c +7 -1
  13. data/ext/groonga/rb-grn-equal-operator.c +85 -0
  14. data/ext/groonga/rb-grn-exception.c +17 -0
  15. data/ext/groonga/rb-grn-expression.c +85 -43
  16. data/ext/groonga/rb-grn-greater-equal-operator.c +88 -0
  17. data/ext/groonga/rb-grn-greater-operator.c +85 -0
  18. data/ext/groonga/rb-grn-hash.c +1 -1
  19. data/ext/groonga/rb-grn-index-column.c +150 -11
  20. data/ext/groonga/rb-grn-less-equal-operator.c +88 -0
  21. data/ext/groonga/rb-grn-less-operator.c +85 -0
  22. data/ext/groonga/rb-grn-logger.c +5 -5
  23. data/ext/groonga/rb-grn-match-operator.c +86 -0
  24. data/ext/groonga/rb-grn-normalizer.c +8 -1
  25. data/ext/groonga/rb-grn-not-equal-operator.c +85 -0
  26. data/ext/groonga/rb-grn-object.c +170 -36
  27. data/ext/groonga/rb-grn-operator.c +395 -172
  28. data/ext/groonga/rb-grn-patricia-trie.c +10 -8
  29. data/ext/groonga/rb-grn-plugin.c +51 -3
  30. data/ext/groonga/rb-grn-prefix-operator.c +86 -0
  31. data/ext/groonga/rb-grn-procedure-type.c +4 -0
  32. data/ext/groonga/rb-grn-query-logger.c +4 -4
  33. data/ext/groonga/rb-grn-regexp-operator.c +85 -0
  34. data/ext/groonga/rb-grn-snippet.c +1 -1
  35. data/ext/groonga/rb-grn-table-key-support.c +9 -5
  36. data/ext/groonga/rb-grn-table.c +52 -66
  37. data/ext/groonga/rb-grn-type.c +1 -1
  38. data/ext/groonga/rb-grn-utils.c +22 -3
  39. data/ext/groonga/rb-grn.h +31 -4
  40. data/ext/groonga/rb-groonga.c +9 -9
  41. data/lib/1.9/groonga.so +0 -0
  42. data/lib/2.0/groonga.so +0 -0
  43. data/lib/2.1/groonga.so +0 -0
  44. data/lib/2.2/groonga.so +0 -0
  45. data/lib/groonga/context.rb +31 -0
  46. data/lib/groonga/expression-builder.rb +14 -1
  47. data/lib/groonga/record.rb +10 -8
  48. data/lib/groonga/schema.rb +3 -1
  49. data/rroonga-build.rb +2 -2
  50. data/rroonga.gemspec +3 -3
  51. data/test/groonga-test-utils.rb +4 -0
  52. data/test/test-column.rb +28 -26
  53. data/test/test-exception.rb +1 -0
  54. data/test/test-expression-builder.rb +83 -1
  55. data/test/test-expression.rb +80 -48
  56. data/test/test-index-column.rb +102 -29
  57. data/test/test-normalizer.rb +35 -29
  58. data/test/test-operator.rb +214 -0
  59. data/test/test-plugin.rb +24 -6
  60. data/test/test-procedure.rb +29 -0
  61. data/test/test-schema-type.rb +14 -0
  62. data/test/test-table-select-mecab.rb +1 -4
  63. data/test/test-table.rb +7 -0
  64. data/test/test-token-regexp.rb +30 -0
  65. data/test/test-type.rb +24 -0
  66. data/vendor/local/bin/grndb.exe +0 -0
  67. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  68. data/vendor/local/bin/groonga.exe +0 -0
  69. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  70. data/vendor/local/bin/libgroonga-0.dll +0 -0
  71. data/vendor/local/bin/libmecab-1.dll +0 -0
  72. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  73. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  74. data/vendor/local/bin/libonig-5.dll +0 -0
  75. data/vendor/local/bin/libstdc++-6.dll +0 -0
  76. data/vendor/local/bin/lz4.exe +0 -0
  77. data/vendor/local/bin/lz4c.exe +0 -0
  78. data/vendor/local/bin/lz4cat +0 -0
  79. data/vendor/local/bin/mecab-config +2 -2
  80. data/vendor/local/bin/mecab.exe +0 -0
  81. data/vendor/local/bin/onig-config +1 -1
  82. data/vendor/local/bin/zlib1.dll +0 -0
  83. data/vendor/local/etc/groonga/groonga.conf +1 -1
  84. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  85. data/vendor/local/include/groonga/groonga.h +1 -0
  86. data/vendor/local/include/groonga/groonga/expr.h +2 -0
  87. data/vendor/local/include/groonga/groonga/groonga.h +32 -5
  88. data/vendor/local/include/groonga/groonga/ii.h +7 -0
  89. data/vendor/local/include/groonga/groonga/obj.h +37 -0
  90. data/vendor/local/include/groonga/groonga/scorer.h +95 -0
  91. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  92. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  93. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  94. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  95. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  96. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  97. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  98. data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
  99. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  100. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  101. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  102. data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
  103. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +6 -3
  104. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +6 -5
  105. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +421 -17
  106. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  107. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  108. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  109. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  110. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  111. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  112. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  113. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  114. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  115. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  116. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  117. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
  118. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  119. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  120. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  121. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  122. data/vendor/local/lib/groonga/scripts/ruby/backtrace_entry.rb +12 -4
  123. data/vendor/local/lib/groonga/scripts/ruby/database.rb +11 -3
  124. data/vendor/local/lib/groonga/scripts/ruby/expression.rb +23 -0
  125. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +158 -0
  126. data/vendor/local/lib/groonga/scripts/ruby/index_column.rb +39 -0
  127. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +4 -0
  128. data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +2 -0
  129. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +11 -7
  130. data/vendor/local/lib/groonga/scripts/ruby/object.rb +11 -0
  131. data/vendor/local/lib/groonga/scripts/ruby/operator.rb +22 -0
  132. data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +7 -2
  133. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +7 -11
  134. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +137 -34
  135. data/vendor/local/lib/groonga/scripts/ruby/scan_info_search_index.rb +9 -0
  136. data/vendor/local/lib/libgroonga.a +0 -0
  137. data/vendor/local/lib/libgroonga.dll.a +0 -0
  138. data/vendor/local/lib/libgroonga.la +2 -2
  139. data/vendor/local/lib/liblz4.a +0 -0
  140. data/vendor/local/lib/liblz4.dll +0 -0
  141. data/vendor/local/lib/liblz4.dll.1 +0 -0
  142. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  143. data/vendor/local/lib/libmecab.a +0 -0
  144. data/vendor/local/lib/libmecab.dll.a +0 -0
  145. data/vendor/local/lib/libmecab.la +2 -2
  146. data/vendor/local/lib/libmsgpack.a +0 -0
  147. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  148. data/vendor/local/lib/libmsgpack.la +2 -2
  149. data/vendor/local/lib/libmsgpackc.a +0 -0
  150. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  151. data/vendor/local/lib/libmsgpackc.la +2 -2
  152. data/vendor/local/lib/libonig.a +0 -0
  153. data/vendor/local/lib/libonig.dll.a +0 -0
  154. data/vendor/local/lib/libonig.la +2 -2
  155. data/vendor/local/lib/libz.a +0 -0
  156. data/vendor/local/lib/libz.dll.a +0 -0
  157. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  158. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  159. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  160. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  161. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  162. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  163. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  164. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  165. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  166. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  167. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  168. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  169. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  170. data/vendor/local/share/doc/groonga/en/html/_images/used-when-indexing.png +0 -0
  171. data/vendor/local/share/doc/groonga/en/html/_images/used-when-searching.png +0 -0
  172. data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +1 -1
  173. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +32 -17
  174. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  175. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
  176. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
  177. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  178. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  179. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  180. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
  181. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  182. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +194 -0
  183. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +1 -1
  184. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +2 -2
  185. data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +2 -2
  186. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
  187. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +3 -0
  188. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +42 -0
  189. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/overview.txt +54 -0
  190. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
  191. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt +2 -2
  192. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
  193. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -3
  194. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt +4 -4
  195. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt +5 -5
  196. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +4 -4
  197. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +173 -0
  198. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +112 -0
  199. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +7 -6
  200. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +64 -0
  201. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +63 -0
  202. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +11 -1
  203. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +3 -2
  204. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
  205. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
  206. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +17 -17
  207. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +12 -12
  208. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +7 -7
  209. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +4 -4
  210. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +6 -6
  211. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -1
  212. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +47 -26
  213. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/between.txt +5 -5
  214. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +3 -3
  215. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +6 -6
  216. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +1 -1
  217. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +1 -1
  218. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/in_values.txt +54 -2
  219. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +4 -4
  220. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +4 -4
  221. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
  222. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
  223. data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -0
  224. data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +4 -0
  225. data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations.txt +2 -1
  226. data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +403 -0
  227. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +217 -0
  228. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
  229. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
  230. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +13 -0
  231. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tables.txt +8 -0
  232. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +530 -16
  233. data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +2 -1
  234. data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +15 -0
  235. data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +66 -1
  236. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  237. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +0 -81
  238. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +6 -68
  239. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -26
  240. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  241. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  242. data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
  243. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +9404 -4
  244. data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
  245. data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
  246. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
  247. data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +1415 -31
  248. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  249. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  250. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
  251. data/vendor/local/share/doc/groonga/en/html/characteristic.html +18 -20
  252. data/vendor/local/share/doc/groonga/en/html/client.html +22 -24
  253. data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
  254. data/vendor/local/share/doc/groonga/en/html/contribution.html +18 -20
  255. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
  256. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
  257. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
  258. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
  259. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +51 -38
  260. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
  261. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
  262. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
  263. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
  264. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
  265. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +24 -26
  266. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
  267. data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
  268. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +24 -26
  269. data/vendor/local/share/doc/groonga/en/html/genindex.html +26 -14
  270. data/vendor/local/share/doc/groonga/en/html/index.html +150 -130
  271. data/vendor/local/share/doc/groonga/en/html/install.html +32 -34
  272. data/vendor/local/share/doc/groonga/en/html/install/centos.html +28 -30
  273. data/vendor/local/share/doc/groonga/en/html/install/debian.html +24 -26
  274. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -30
  275. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +22 -24
  276. data/vendor/local/share/doc/groonga/en/html/install/others.html +87 -89
  277. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +22 -24
  278. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +25 -27
  279. data/vendor/local/share/doc/groonga/en/html/install/windows.html +30 -32
  280. data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
  281. data/vendor/local/share/doc/groonga/en/html/news.html +256 -27
  282. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
  283. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +19 -21
  284. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
  285. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +32 -34
  286. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +27 -29
  287. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +98 -100
  288. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +68 -70
  289. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +102 -104
  290. data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
  291. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  292. data/vendor/local/share/doc/groonga/en/html/reference.html +139 -118
  293. data/vendor/local/share/doc/groonga/en/html/reference/api.html +51 -52
  294. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +49 -51
  295. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +60 -62
  296. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +80 -82
  297. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +42 -44
  298. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +37 -39
  299. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +130 -80
  300. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +48 -50
  301. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +44 -46
  302. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +79 -81
  303. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +42 -44
  304. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +44 -46
  305. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +42 -44
  306. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +41 -43
  307. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +41 -43
  308. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +40 -42
  309. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +89 -91
  310. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +44 -46
  311. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +39 -41
  312. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +75 -77
  313. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +64 -66
  314. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +40 -42
  315. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +39 -41
  316. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +202 -0
  317. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +58 -60
  318. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
  319. data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
  320. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +17 -19
  321. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +22 -24
  322. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +17 -19
  323. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +58 -60
  324. data/vendor/local/share/doc/groonga/en/html/reference/command.html +56 -54
  325. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
  326. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +53 -55
  327. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +22 -24
  328. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +94 -96
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +39 -41
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +43 -45
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +23 -25
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +39 -41
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +71 -73
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +24 -26
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -46
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +37 -39
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +24 -26
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +35 -37
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +22 -24
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -45
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +49 -47
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +23 -25
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +24 -26
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +26 -28
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +314 -0
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +252 -0
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +87 -89
  348. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +46 -48
  349. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +195 -0
  350. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +193 -0
  351. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +38 -40
  352. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +37 -39
  353. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +61 -51
  354. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +72 -74
  355. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +54 -56
  356. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +54 -56
  357. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +590 -592
  358. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +37 -39
  359. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +40 -42
  360. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +92 -94
  361. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +152 -154
  362. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +49 -51
  363. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +39 -41
  364. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +68 -70
  365. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +103 -105
  366. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +45 -47
  367. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +52 -54
  368. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +19 -21
  369. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +35 -37
  370. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +21 -23
  371. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +26 -28
  372. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +73 -75
  373. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
  374. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  375. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +42 -44
  376. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +34 -36
  377. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +124 -90
  378. data/vendor/local/share/doc/groonga/en/html/reference/function.html +42 -44
  379. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +66 -68
  380. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +44 -46
  381. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +113 -115
  382. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +55 -57
  383. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +45 -47
  384. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +81 -83
  385. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +65 -67
  386. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +54 -56
  387. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +135 -44
  388. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +40 -42
  389. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +81 -83
  390. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +43 -45
  391. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +67 -69
  392. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +66 -70
  393. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +39 -41
  394. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +349 -286
  395. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +483 -417
  396. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -37
  397. data/vendor/local/share/doc/groonga/en/html/reference/log.html +38 -40
  398. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +44 -46
  399. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +30 -31
  400. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +32 -34
  401. data/vendor/local/share/doc/groonga/en/html/reference/output.html +32 -34
  402. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
  403. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +60 -62
  404. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +931 -0
  405. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +442 -0
  406. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +153 -0
  407. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +287 -0
  408. data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +114 -0
  409. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +45 -47
  410. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +51 -53
  411. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +40 -42
  412. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +38 -40
  413. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +40 -42
  414. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +52 -54
  415. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +36 -38
  416. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +1394 -34
  417. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +57 -59
  418. data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -40
  419. data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
  420. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  421. data/vendor/local/share/doc/groonga/en/html/server.html +23 -24
  422. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +28 -30
  423. data/vendor/local/share/doc/groonga/en/html/server/http.html +42 -44
  424. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +68 -70
  425. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +30 -32
  426. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +29 -31
  427. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +137 -0
  428. data/vendor/local/share/doc/groonga/en/html/server/package.html +36 -38
  429. data/vendor/local/share/doc/groonga/en/html/spec.html +22 -24
  430. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +208 -129
  431. data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
  432. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
  433. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
  434. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  435. data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -25
  436. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +17 -19
  437. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +31 -33
  438. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +20 -22
  439. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
  440. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +17 -19
  441. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +21 -23
  442. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +50 -52
  443. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +27 -125
  444. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +18 -20
  445. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +20 -22
  446. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +33 -35
  447. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  448. data/vendor/local/share/doc/groonga/ja/html/_images/used-when-indexing.png +0 -0
  449. data/vendor/local/share/doc/groonga/ja/html/_images/used-when-searching.png +0 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +1 -1
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +32 -17
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +194 -0
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +1 -1
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +2 -2
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +2 -2
  464. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
  465. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +3 -0
  466. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +42 -0
  467. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/overview.txt +54 -0
  468. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
  469. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt +2 -2
  470. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
  471. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -3
  472. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt +4 -4
  473. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt +5 -5
  474. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +4 -4
  475. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +173 -0
  476. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +112 -0
  477. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +7 -6
  478. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +64 -0
  479. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +63 -0
  480. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +11 -1
  481. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +3 -2
  482. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
  483. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
  484. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +17 -17
  485. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +12 -12
  486. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +7 -7
  487. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +4 -4
  488. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +6 -6
  489. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -1
  490. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +47 -26
  491. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/between.txt +5 -5
  492. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +3 -3
  493. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +6 -6
  494. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +1 -1
  495. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +1 -1
  496. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/in_values.txt +54 -2
  497. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +4 -4
  498. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +4 -4
  499. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
  500. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
  501. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -0
  502. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +4 -0
  503. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations.txt +2 -1
  504. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +403 -0
  505. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +217 -0
  506. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
  507. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
  508. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +13 -0
  509. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tables.txt +8 -0
  510. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +530 -16
  511. data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +2 -1
  512. data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +15 -0
  513. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +66 -1
  514. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  515. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +0 -81
  516. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +6 -68
  517. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -26
  518. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  519. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  520. data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
  521. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +9404 -4
  522. data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
  523. data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
  524. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  525. data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +1415 -31
  526. data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
  527. data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
  528. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
  529. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
  530. data/vendor/local/share/doc/groonga/ja/html/client.html +22 -24
  531. data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
  532. data/vendor/local/share/doc/groonga/ja/html/contribution.html +18 -20
  533. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
  534. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
  535. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
  536. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
  537. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +51 -38
  538. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
  539. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
  540. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
  541. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
  542. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +17 -19
  543. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +24 -26
  544. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +17 -19
  545. data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
  546. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +20 -22
  547. data/vendor/local/share/doc/groonga/ja/html/genindex.html +26 -14
  548. data/vendor/local/share/doc/groonga/ja/html/index.html +150 -130
  549. data/vendor/local/share/doc/groonga/ja/html/install.html +32 -34
  550. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +31 -33
  551. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -27
  552. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +29 -31
  553. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +22 -24
  554. data/vendor/local/share/doc/groonga/ja/html/install/others.html +78 -80
  555. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +21 -23
  556. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +26 -28
  557. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +29 -31
  558. data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
  559. data/vendor/local/share/doc/groonga/ja/html/news.html +210 -27
  560. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
  561. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +19 -21
  562. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
  563. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +32 -34
  564. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +27 -29
  565. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +91 -93
  566. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +59 -61
  567. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +89 -91
  568. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
  569. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  570. data/vendor/local/share/doc/groonga/ja/html/reference.html +139 -118
  571. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +51 -52
  572. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +49 -51
  573. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +55 -57
  574. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +80 -82
  575. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +42 -44
  576. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +37 -39
  577. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +126 -76
  578. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +48 -50
  579. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +44 -46
  580. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +74 -76
  581. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +42 -44
  582. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +44 -46
  583. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +42 -44
  584. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +41 -43
  585. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +41 -43
  586. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +40 -42
  587. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +89 -91
  588. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +44 -46
  589. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +39 -41
  590. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +75 -77
  591. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +64 -66
  592. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +40 -42
  593. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +39 -41
  594. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +197 -0
  595. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +58 -60
  596. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
  597. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
  598. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +17 -19
  599. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +22 -24
  600. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +17 -19
  601. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +48 -50
  602. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
  603. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
  604. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +43 -45
  605. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +22 -24
  606. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +93 -95
  607. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +35 -37
  608. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +43 -45
  609. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +23 -25
  610. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +39 -41
  611. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +62 -64
  612. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +24 -26
  613. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +38 -40
  614. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +37 -39
  615. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +24 -26
  616. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +32 -34
  617. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +22 -24
  618. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +33 -35
  619. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +48 -46
  620. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +23 -25
  621. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +24 -26
  622. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +26 -28
  623. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +314 -0
  624. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +250 -0
  625. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +80 -81
  626. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +46 -48
  627. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +188 -0
  628. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +190 -0
  629. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +38 -40
  630. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +37 -39
  631. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +57 -47
  632. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +71 -73
  633. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +53 -55
  634. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +53 -55
  635. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +394 -396
  636. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +37 -39
  637. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +38 -40
  638. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +78 -80
  639. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +123 -125
  640. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +49 -51
  641. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +39 -41
  642. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +61 -63
  643. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +89 -91
  644. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +46 -48
  645. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +51 -53
  646. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +19 -21
  647. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -37
  648. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +21 -23
  649. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +26 -28
  650. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +61 -63
  651. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
  652. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  653. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +42 -44
  654. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +34 -36
  655. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +126 -90
  656. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +42 -44
  657. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +63 -65
  658. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +44 -46
  659. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +94 -96
  660. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +55 -57
  661. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +45 -47
  662. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +66 -68
  663. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +55 -57
  664. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +53 -55
  665. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +135 -44
  666. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +40 -42
  667. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +70 -72
  668. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +43 -45
  669. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +53 -55
  670. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +56 -62
  671. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +36 -38
  672. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +229 -171
  673. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +381 -322
  674. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -36
  675. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +38 -40
  676. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +38 -40
  677. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +28 -30
  678. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +32 -34
  679. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +28 -30
  680. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
  681. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +39 -41
  682. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +878 -0
  683. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +442 -0
  684. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +154 -0
  685. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +287 -0
  686. data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +115 -0
  687. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +45 -47
  688. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +48 -50
  689. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +40 -42
  690. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +38 -40
  691. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +40 -42
  692. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +42 -44
  693. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +37 -39
  694. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +1300 -34
  695. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +57 -59
  696. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -40
  697. data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
  698. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  699. data/vendor/local/share/doc/groonga/ja/html/server.html +23 -24
  700. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +28 -30
  701. data/vendor/local/share/doc/groonga/ja/html/server/http.html +42 -44
  702. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +62 -64
  703. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +30 -32
  704. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +29 -31
  705. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +138 -0
  706. data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -37
  707. data/vendor/local/share/doc/groonga/ja/html/spec.html +22 -24
  708. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +207 -128
  709. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
  710. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
  711. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
  712. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  713. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -25
  714. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -19
  715. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +30 -32
  716. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +17 -19
  717. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +17 -19
  718. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
  719. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +23 -25
  720. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +47 -49
  721. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +27 -125
  722. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +18 -20
  723. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +20 -22
  724. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +31 -33
  725. data/vendor/local/share/license/mruby/README.md +2 -2
  726. data/vendor/local/share/man/ja/man1/groonga.1 +6205 -2251
  727. data/vendor/local/share/man/man1/groonga.1 +7210 -3029
  728. metadata +75 -11
  729. data/doc/text/news.textile +0 -1217
  730. data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +0 -10308
  731. data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +0 -999
  732. data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +0 -10308
  733. data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +0 -999
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>検索 &mdash; Groonga v5.0.0ドキュメント</title>
10
+ <title>検索 &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.0.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -27,7 +27,7 @@
27
27
  <script type="text/javascript" src="_static/translations.js"></script>
28
28
  <script type="text/javascript" src="_static/searchtools.js"></script>
29
29
  <link rel="shortcut icon" href="_static/favicon.ico"/>
30
- <link rel="top" title="Groonga v5.0.0ドキュメント" href="index.html" />
30
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="index.html" />
31
31
  <script type="text/javascript">
32
32
  jQuery(function() { Search.loadIndex("searchindex.js"); });
33
33
  </script>
@@ -36,7 +36,7 @@
36
36
 
37
37
 
38
38
  </head>
39
- <body role="document">
39
+ <body>
40
40
  <div class="header">
41
41
  <h1 class="title">
42
42
  <a id="top-link" href="index.html">
@@ -54,20 +54,20 @@
54
54
  </div>
55
55
 
56
56
 
57
- <div class="related" role="navigation" aria-label="related navigation">
57
+ <div class="related">
58
58
  <h3>ナビゲーション</h3>
59
59
  <ul>
60
60
  <li class="right" style="margin-right: 10px">
61
61
  <a href="genindex.html" title="総合索引"
62
62
  accesskey="I">索引</a></li>
63
- <li><a href="index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
63
+ <li><a href="index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
64
  </ul>
65
65
  </div>
66
66
 
67
67
  <div class="document">
68
68
  <div class="documentwrapper">
69
69
  <div class="bodywrapper">
70
- <div class="body" role="main">
70
+ <div class="body">
71
71
 
72
72
  <h1 id="search-documentation">検索</h1>
73
73
  <div id="fallback" class="admonition warning">
@@ -92,22 +92,22 @@
92
92
  </div>
93
93
  </div>
94
94
  </div>
95
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
95
+ <div class="sphinxsidebar">
96
96
  <div class="sphinxsidebarwrapper">
97
97
  </div>
98
98
  </div>
99
99
  <div class="clearer"></div>
100
100
  </div>
101
- <div class="related" role="navigation" aria-label="related navigation">
101
+ <div class="related">
102
102
  <h3>ナビゲーション</h3>
103
103
  <ul>
104
104
  <li class="right" style="margin-right: 10px">
105
105
  <a href="genindex.html" title="総合索引"
106
106
  >索引</a></li>
107
- <li><a href="index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
107
+ <li><a href="index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
108
108
  </ul>
109
109
  </div>
110
- <div class="footer" role="contentinfo">
110
+ <div class="footer">
111
111
  &copy; Copyright 2009-2015, Brazil, Inc.
112
112
  </div>
113
113
  </body>
@@ -1 +1 @@
1
- Search.setIndex({envversion:46,filenames:["characteristic","client","community","contribution","contribution/development","contribution/development/com","contribution/development/cooperation","contribution/development/query","contribution/development/release","contribution/development/repository","contribution/development/test","contribution/documentation","contribution/documentation/c-api","contribution/documentation/i18n","contribution/documentation/introduction","contribution/report","development","development/travis-ci","index","install","install/centos","install/debian","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/senna","reference","reference/api","reference/api/global_configurations","reference/api/grn_cache","reference/api/grn_column","reference/api/grn_command_version","reference/api/grn_content_type","reference/api/grn_ctx","reference/api/grn_db","reference/api/grn_encoding","reference/api/grn_expr","reference/api/grn_geo","reference/api/grn_hook","reference/api/grn_ii","reference/api/grn_index_cursor","reference/api/grn_info","reference/api/grn_match_escalation","reference/api/grn_obj","reference/api/grn_proc","reference/api/grn_search","reference/api/grn_table","reference/api/grn_table_cursor","reference/api/grn_type","reference/api/grn_user_data","reference/api/plugin","reference/cast","reference/column","reference/columns/index","reference/columns/pseudo","reference/columns/scalar","reference/columns/vector","reference/command","reference/command/command_version","reference/command/output_format","reference/command/request_id","reference/command/return_code","reference/commands/cache_limit","reference/commands/check","reference/commands/clearlock","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/load","reference/commands/lock_clear","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/select","reference/commands/shutdown","reference/commands/status","reference/commands/suggest","reference/commands/table_create","reference/commands/table_list","reference/commands/table_remove","reference/commands/table_tokenize","reference/commands/tokenize","reference/commands/tokenizer_list","reference/commands/truncate","reference/executables","reference/executables/grndb","reference/executables/grnslap","reference/executables/groonga","reference/executables/groonga-benchmark","reference/executables/groonga-httpd","reference/executables/groonga-server-http","reference/executables/groonga-suggest-create-dataset","reference/executables/groonga-suggest-httpd","reference/executables/groonga-suggest-learner","reference/function","reference/functions/between","reference/functions/edit_distance","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_values","reference/functions/now","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/sub_filter","reference/grn_expr","reference/grn_expr/query_syntax","reference/grn_expr/script_syntax","reference/indexing","reference/log","reference/normalizers","reference/operations","reference/operations/geolocation_search","reference/output","reference/query_expanders","reference/query_expanders/tsv","reference/suggest","reference/suggest/completion","reference/suggest/correction","reference/suggest/introduction","reference/suggest/suggestion","reference/tables","reference/token_filters","reference/tokenizers","reference/tuning","reference/types","server","server/gqtp","server/http","server/http/comparison","server/http/groonga","server/http/groonga-httpd","server/package","spec","spec/gqtp","spec/search","troubleshooting","troubleshooting/different_results_with_the_same_keyword","troubleshooting/mmap_cannot_allocate_memory","tutorial","tutorial/data","tutorial/drilldown","tutorial/index","tutorial/introduction","tutorial/lexicon","tutorial/match_columns","tutorial/micro_blog","tutorial/network","tutorial/patricia_trie","tutorial/query_expansion","tutorial/search"],objects:{"":{"--address":[113,0,1,"cmdoption--address"],"--bind-address":[113,0,1,"cmdoption--bind-address"],"--cache-limit":[113,0,1,"cmdoption--cache-limit"],"--config-path":[113,0,1,"cmdoption--config-path"],"--daemon":[119,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[113,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[114,0,1,"cmdoption--dir"],"--disable-max-fd-check":[118,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[113,0,1,"cmdoption--document-root"],"--encoding":[113,0,1,"cmdoption--encoding"],"--ftp":[114,0,1,"cmdoption--ftp"],"--groonga":[114,0,1,"cmdoption--groonga"],"--help":[113,0,1,"cmdoption--help"],"--host":[114,0,1,"cmdoption--host"],"--log-base-path":[119,0,1,"cmdoption--log-base-path"],"--log-level":[119,0,1,"cmdoption--log-level"],"--log-output-dir":[114,0,1,"cmdoption--log-output-dir"],"--log-path":[119,0,1,"cmdoption--log-path"],"--max-threads":[113,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[118,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[118,0,1,"cmdoption--n-threads"],"--pid-path":[113,0,1,"cmdoption--pid-path"],"--port":[118,0,1,"cmdoption--port"],"--protocol":[114,0,1,"cmdoption--protocol"],"--query-log-path":[113,0,1,"cmdoption--query-log-path"],"--receive-endpoint":[119,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[119,0,1,"cmdoption--send-endpoint"],"--server-id":[113,0,1,"cmdoption--server-id"],"-P":[112,0,1,"cmdoption-P"],"-a":[113,0,1,"cmdoption-a"],"-c":[113,0,1,"cmdoption-c"],"-d":[119,0,1,"cmdoption-d"],"-e":[113,0,1,"cmdoption-e"],"-h":[113,0,1,"cmdoption-h"],"-i":[114,0,1,"cmdoption-i"],"-l":[119,0,1,"cmdoption-l"],"-m":[112,0,1,"cmdoption-m"],"-n":[113,0,1,"cmdoption-n"],"-p":[118,0,1,"cmdoption-p"],"-r":[119,0,1,"cmdoption-r"],"-s":[119,0,1,"cmdoption-s"],"-t":[118,0,1,"cmdoption-t"],GRN_COLUMN_NAME_ID:[43,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[43,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[43,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[43,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[43,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[43,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[43,3,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[43,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[43,3,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[43,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[44,3,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[44,3,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[44,3,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[56,3,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[56,3,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[56,3,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[56,3,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[56,3,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[56,3,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[56,3,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[56,3,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[56,3,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[56,3,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[63,3,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[63,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[63,3,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[63,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[63,3,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[63,3,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[63,3,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[63,1,1,"c.GRN_PLUGIN_REGISTER"],command:[113,0,1,"cmdoption-arg-command"],db:[114,0,1,"cmdoption-arg-db"],dest:[113,0,1,"cmdoption-arg-dest"],grn_builtin_type:[61,2,1,"c.grn_builtin_type"],grn_cache:[42,2,1,"c.grn_cache"],grn_cache_close:[42,1,1,"c.grn_cache_close"],grn_cache_current_get:[42,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[42,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[42,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[42,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[42,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[43,1,1,"c.grn_column_create"],grn_column_index:[43,1,1,"c.grn_column_index"],grn_column_index_update:[43,1,1,"c.grn_column_index_update"],grn_column_name:[43,1,1,"c.grn_column_name"],grn_column_rename:[43,1,1,"c.grn_column_rename"],grn_column_table:[43,1,1,"c.grn_column_table"],grn_column_truncate:[43,1,1,"c.grn_column_truncate"],grn_command_version:[44,2,1,"c.grn_command_version"],grn_content_type:[45,2,1,"c.grn_content_type"],grn_ctx:[46,2,1,"c.grn_ctx"],grn_ctx_at:[46,1,1,"c.grn_ctx_at"],grn_ctx_close:[46,1,1,"c.grn_ctx_close"],grn_ctx_db:[46,1,1,"c.grn_ctx_db"],grn_ctx_fin:[46,1,1,"c.grn_ctx_fin"],grn_ctx_get:[46,1,1,"c.grn_ctx_get"],grn_ctx_get_command_version:[46,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[55,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[46,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[46,1,1,"c.grn_ctx_init"],grn_ctx_open:[46,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[46,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[46,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[55,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[46,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[46,1,1,"c.grn_ctx_use"],grn_db:[47,2,1,"c.grn_db"],grn_db_create:[47,1,1,"c.grn_db_create"],grn_db_create_optarg:[47,2,1,"c.grn_db_create_optarg"],grn_db_open:[47,1,1,"c.grn_db_open"],grn_db_recover:[47,1,1,"c.grn_db_recover"],grn_db_touch:[47,1,1,"c.grn_db_touch"],grn_encoding:[48,2,1,"c.grn_encoding"],grn_encoding_parse:[48,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[48,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[49,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[49,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[49,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[49,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[49,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[49,1,1,"c.grn_expr_append_op"],grn_expr_close:[49,1,1,"c.grn_expr_close"],grn_expr_compile:[49,1,1,"c.grn_expr_compile"],grn_expr_create:[49,1,1,"c.grn_expr_create"],grn_expr_exec:[49,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[49,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[49,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[49,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[49,1,1,"c.grn_expr_syntax_escape_query"],grn_geo_cursor_next:[50,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[50,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[50,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[50,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[50,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[44,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[48,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[55,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[41,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[51,2,1,"c.grn_hook_entry"],grn_ii:[52,2,1,"c.grn_ii"],grn_ii_buffer:[52,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[52,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[52,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[52,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[52,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[53,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[53,1,1,"c.grn_index_cursor_open"],grn_info_type:[54,2,1,"c.grn_info_type"],grn_obj:[56,2,1,"c.grn_obj"],grn_obj_add_hook:[51,1,1,"c.grn_obj_add_hook"],grn_obj_check:[56,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[56,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[56,1,1,"c.grn_obj_close"],grn_obj_column:[56,1,1,"c.grn_obj_column"],grn_obj_db:[47,1,1,"c.grn_obj_db"],grn_obj_defrag:[56,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[56,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[51,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[56,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[54,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[51,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[54,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[51,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[56,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[56,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[56,1,1,"c.grn_obj_get_values"],grn_obj_id:[56,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[56,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[56,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[56,1,1,"c.grn_obj_lock"],grn_obj_name:[56,1,1,"c.grn_obj_name"],grn_obj_path:[56,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[56,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[56,1,1,"c.grn_obj_reinit"],grn_obj_remove:[56,1,1,"c.grn_obj_remove"],grn_obj_rename:[56,1,1,"c.grn_obj_rename"],grn_obj_search:[58,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[54,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[57,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[54,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[56,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[56,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[56,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[62,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[63,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[63,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[63,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[63,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[63,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[63,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[63,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[63,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[63,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[63,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[63,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[63,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[63,1,1,"c.grn_plugin_win32_base_dir"],grn_proc_create:[57,1,1,"c.grn_proc_create"],grn_proc_func:[57,2,1,"c.grn_proc_func"],grn_proc_get_info:[57,1,1,"c.grn_proc_get_info"],grn_proc_type:[57,2,1,"c.grn_proc_type"],grn_search_optarg:[58,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[44,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[48,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[55,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[41,1,1,"c.grn_set_lock_timeout"],grn_table_add:[59,1,1,"c.grn_table_add"],grn_table_at:[59,1,1,"c.grn_table_at"],grn_table_columns:[59,1,1,"c.grn_table_columns"],grn_table_create:[59,1,1,"c.grn_table_create"],grn_table_cursor:[60,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[60,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[60,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[60,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[60,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[60,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[60,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[60,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[60,1,1,"c.grn_table_cursor_table"],grn_table_delete:[59,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[59,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[59,1,1,"c.grn_table_difference"],grn_table_get:[59,1,1,"c.grn_table_get"],grn_table_get_key:[59,1,1,"c.grn_table_get_key"],grn_table_group:[59,1,1,"c.grn_table_group"],grn_table_group_flags:[59,2,1,"c.grn_table_group_flags"],grn_table_group_result:[59,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[59,1,1,"c.grn_table_lcp_search"],grn_table_rename:[59,1,1,"c.grn_table_rename"],grn_table_setoperation:[59,1,1,"c.grn_table_setoperation"],grn_table_size:[59,1,1,"c.grn_table_size"],grn_table_sort:[59,1,1,"c.grn_table_sort"],grn_table_sort_flags:[59,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[59,2,1,"c.grn_table_sort_key"],grn_table_truncate:[59,1,1,"c.grn_table_truncate"],grn_table_update:[59,1,1,"c.grn_table_update"],grn_table_update_by_id:[59,1,1,"c.grn_table_update_by_id"],grn_type_create:[61,1,1,"c.grn_type_create"],grn_user_data:[62,2,1,"c.grn_user_data"],script:[114,0,1,"cmdoption-arg-script"]},grn_db_create_optarg:{builtin_type_names:[47,4,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[47,4,1,"c.grn_db_create_optarg.n_builtin_type_names"]}},objnames:{"0":["std","option","option"],"1":["c","function","C \u306e\u95a2\u6570"],"2":["c","type","C \u306e\u30c7\u30fc\u30bf\u578b"],"3":["c","macro","C \u306e\u30de\u30af\u30ed"],"4":["c","member","C \u306e\u30e1\u30f3\u30d0\u5909\u6570"]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},terms:{"!!":[86,115,172,176],"!(n":137,"!)":115,"!\"":[35,72,99,107,115,136,137,138,159,170,172,173,175,176,177],"!\\":137,"!condition":137,"!xxx":37,"#'":113,"#groonga":[145,176],"#proxy":115,"#set":114,"#worker":115,"#{":139,"#{l":139,"$(":[20,21,22,23,26],"$groonga":8,"$home":8,"$prefix":33,"${":[13,99,131,137,154],"%'":37,"%\\":27,"%post":35,"& (":137,"& _":180,"& b":137,"& x":37,"& y":36,"&!":137,"&&":[99,134,137,167,178],"&..":177,"&filter":96,"&gt":[126,127,133],"&lt":[126,127,133],"&q":118,"&query":177,"&request":96,"&s":118,"'(":113,"')":[37,86,112,113],"',":[37,56,117,150],"'-":[36,113],"'.":[13,56],"'..":36,"';":113,"'='":113,"'>":128,"'\"":[35,36],"'\u3002":113,"'a":134,"'alice":136,"'article":175,"'column":35,"'config":113,"'grn":48,"'hay":7,"'haystack":7,"'ja":13,"'localhost":[112,113],"'m":[138,152,175,176],"'mroonga":[131,175],"'n":113,"'needle":7,"'now":176,"'or":35,"'pid":113,"'query":35,"'s":[13,72,86,99,134,136,137,138,139],"'t":[41,45,46,47,49,73,87,96,115,150,154],"'user":131,"'ve":176,"(!":7,"(&":49,"('":[67,78,86,113,173],"((":[69,99],"((x":155,"()":3,"(-":137,"(.":[8,175],"(..":36,"(<":7,"(=":[7,74,137],"(>":7,"([":132,"(\"":[35,36,48,96,113,123,126,127,131,133,173],"(\u300c":8,"(_":[102,137,147,148,150],"(a":17,"(age":121,"(argument":137,"(arugment":137,"(body":[126,127],"(byte":[43,59],"(cmp":37,"(column":[37,121,126,127,133],"(comments":134,"(content":[128,133],"(ctx":[7,42,43,49],"(cutter":10,"(cve":37,"(database":168,"(debian":162,"(drilldown":67,"(fedora":162,"(get":112,"(grn":49,"(html":128,"(init":46,"(keyword":49,"(location":[123,172,176,180],"(match":131,"(mroonga":145,"(name":63,"(news":8,"(nginx":162,"(null":37,"(packages":8,"(point":[123,124,125],"(popular":99,"(pos":[124,125],"(precise":8,"(ptr":31,"(r":114,"(scan":10,"(scope":134,"(select":137,"(string":122,"(tab":145,"(table":37,"(title":[36,122],"(wgs":180,"(windows":114,"(x":37,"(xxx":36,"({":118,")'":[102,126,127,133,134,136,137,147,148,150,172,176,180],"))":[99,137,145],"),":[36,78],")-":8,").":[8,118,133,162],")..":8,"):":[8,162],");":[7,42,43,49],")=":168,")\"":[36,128,133,136,179],")\u3001":37,")\u300d":113,")\u3059\u3079\u3066":121,")]":36,")groonga":145,")mroonga":145,")offset":[59,60],")senna":145,"*'":99,"**":[43,47,56,57,60,89],"***":89,"*/":49,"*\"":[32,37,99,175],"*added":59,"*bottom":50,"*bsd":[31,33],"*buffer":56,"*cache":42,"*column":43,"*ctx":[42,43,46,47,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],"*cursor":50,"*data":51,"*db":[46,47,56],"*dest":59,"*escaped":49,"*expr":49,"*fin":57,"*func":[46,57],"*ic":53,"*ii":52,"*index":[50,53],"*init":57,"*key":59,"*keybuf":59,"*keys":59,"*keywords":49,"*max":60,"*min":60,"*mutex":63,"*name":[43,46,48,49,56,57,59,61,63],"*namebuf":[43,56],"*newvalue":43,"*next":57,"*nvars":57,"*obj":[43,47,49,51,54,56,57,58,62],"*oldvalue":43,"*optarg":[47,58],"*path":[43,47,59],"*proc":51,"*query":[49,58],"*res":[50,58,59],"*result":59,"*results":59,"*s":37,"*section":43,"*src":59,"*str":[49,63],"*string":49,"*table":[43,56,59,60],"*target":49,"*tc":[53,60],"*tid":53,"*top":50,"*type":43,"*user":[57,63],"*value":[52,54,56,59,60],"*valuebuf":54,"*var":63,"*vars":[57,63],"+ \"":35,"+ y":155,"++":[0,8,20,22,24,33,34,37,49],"+-":[49,115],"+a":136,"+ff":140,"+fffe":107,", \"":[69,126,175],", {":[115,159],",'":[155,170],",.":8,",..":[86,99,104],",[":167,",[\"":167,",\"":[37,76,85,143,172,175,176],",\"domain":171,",\"http":170,",\"link":170,",\"links":170,",\"location":[172,180],",\"tags":172,",\"title":173,",\\\"":86,",\n#":[69,99,106,107,131,136,137,170,172,173,176,177,180],",\n[":[85,133],",\n]":[134,167,178,180],",\n{":[69,99,102,115,131,134,136,137,140,147,148,150,152,171,175,178],",_":[69,99,102,131,137,171,172,173,176,180],",{":[114,143],"- \"":37,"-(":[8,137],"-+":115,"--":[8,27,30,31,32,33,35,36,37,41,42,43,44,46,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63,69,99,106,107,113,114,115,116,126,127,128,131,133,137,145,150,152,167,171,172,176,179,180],"->":31,"-\"":106,"-_":99,"-a":[35,113,136],"-add":47,"-address":[33,35,113],"-adjuster":[69,99],"-admin":35,"-aki":37,"-alloc":101,"-analyzer":[33,35],"-api":12,"-apt":26,"-base":[118,119],"-benchmark":[18,35,36,37,39,110],"-binary":[115,159],"-bind":[33,35,113],"-blog":176,"-build":10,"-bye":[99,106,136,137,152],"-c":[20,22,113,177],"-cache":[36,113],"-check":[31,33,118],"-chroot":8,"-ci":[36,37],"-ci\u4e0a":36,"-code":[8,37],"-com":8,"-command":[17,31],"-commnad":71,"-common":[26,35],"-conditional":33,"-config":[24,30,31,33,35,113],"-count":101,"-create":[18,32,36,39,47,102,110],"-cutter":8,"-d":[113,115,118,119,177],"-daemon":[118,119],"-databases":[79,81,104,118,173,177],"-dataset":[18,32,36,39,102,110],"-db":34,"-dd":[137,139],"-deafult":33,"-deb":8,"-debug":31,"-default":19,"-dev":[2,8,10,21,26,33,35,36,37],"-devel":[20,22],"-dir":114,"-directory":35,"-disable":[31,33,37,118],"-doc":34,"-document":[3,8],"-docutils":8,"-drilldown":[37,99,171],"-e":113,"-each":33,"-efficient":69,"-enable":[3,14,31],"-encoding":19,"-encodiong":137,"-endpoint":[118,119],"-escalation":19,"-essential":[21,26],"-exact":101,"-existence":36,"-fd":[33,118],"-file":[33,72,113,118],"-files":3,"-filter":[21,26,33,35,37,69,99,120,127,131,133,134,137,176,178],"-frequency":33,"-ftp":114,"-g":27,"-get":[8,14,21,26,35],"-github":8,"-gqtp":[18,20,21,22,26,35,37,156],"-gram":[0,107,137,165,167,173],"-groonga":[8,9,114,176],"-h":[113,115,159],"-help":19,"-history":33,"-host":114,"-html":[31,35],"-http":[18,35,36,37,115,156],"-httpd":[18,20,21,22,26,33,35,37,39,42,96,110],"-i":[113,114],"-id":[35,96,113],"-in":[8,56],"-ipadic":22,"-j":24,"-jemalloc":37,"-jinja":8,"-jp":36,"-jumandic":22,"-key":[8,34],"-keyring":[21,35],"-keys":8,"-known":133,"-l":[113,118,119,139],"-latest":3,"-leak":31,"-leaner":119,"-learner":[18,31,37,39,110,117],"-level":[37,113,119],"-libedit":31,"-libevent":34,"-libstemmer":37,"-limit":[30,36,99,113],"-line":17,"-lines":[33,118],"-localstatedir":19,"-log":19,"-login":154,"-lz4":19,"-lzo":78,"-m":112,"-match":19,"-max":[33,113,118],"-mecab":[20,21,22,23,26,35,36,37],"-memory":31,"-message":19,"-mm":[137,139],"-mode":13,"-mruby":37,"-msgpack":159,"-munin":[19,20,21,22],"-mysql":[20,21,22,26,91,140],"-n":[33,113,118,173],"-node":20,"-normalizer":[20,21,22,26,35,91,140],"-offset":99,"-oriented":133,"-output":[35,36,99,114,126,127,128,133],"-p":[112,113,114,118,177],"-pack":19,"-package":[8,19],"-packages":8,"-patch":13,"-path":[8,19],"-per":[33,118],"-pid":[33,113],"-pip":14,"-platform":19,"-plugin":9,"-plugins":[19,20,21,22],"-po":3,"-point":155,"-port":[113,114,118],"-prefix":19,"-properties":26,"-protocol":[113,114,177],"-query":[33,35,36,37,113,115,126,127,131,133,136,139,145,162,173,176,178],"-r":[118,119],"-receive":[118,119],"-release":3,"-repository":[8,26,35],"-root":[31,113,116],"-rpm":8,"-rroonga":42,"-rsync":8,"-ruby":[8,35],"-s":[113,118,119,177],"-scorer":120,"-search":37,"-secret":8,"-send":[118,119],"-server":[18,20,21,22,26,33,34,35,36,37,113,156],"-sortby":36,"-source":8,"-sphinx":14,"-src":21,"-static":33,"-stem":[21,26,37],"-strings":34,"-suggest":[18,31,32,33,35,36,37,39,102,110],"-t":[113,118],"-talk":[2,8,36],"-tar":25,"-terminated":[57,63],"-test":[8,10],"-threads":[113,118],"-threashold":[31,167],"-threshold":19,"-time":133,"-token":[21,26,37],"-tokenizer":[20,21,22,26,35,36],"-type":[33,115,147,148,150,159],"-unauthenticated":[21,35],"-version":[8,31],"-w":8,"-with":[19,23],"-wno":33,"-word":99,"-working":35,"-x":[8,36],"-yyy":13,"-z":118,"-za":118,"-zlib":19,".$":99,".'":[35,36,78],".(":8,".)":[36,96,137,139,154],".-":13,"..":[13,35,36,63,69,73,76,79,85,86,87,96,99,102,103,113,115,116,131,136,137,159,173],"...":[33,35,36,37,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,64,76,85,96,99,102,104,114,115,116,118,126,134,136,137,138,143,176],"./":[13,24],".:":[118,119],".\"":[99,126,127,131,133,137,138,170,172,173,177,179],".]":[69,76,96,102,104,137],"._":[36,37,56,99,136,137,170,171],".am":14,".am\u30d5\u30a1\u30a4\u30eb":8,".asc":8,".askmonty":37,".blog":167,".body":[77,83,179],".builtin":47,".c":[38,99],".clean":8,".co":[38,99],".column":[36,37],".com":[8,9,13,17,140,170,171,173,177,180],".comment":[175,176],".conf":[115,154,162,168],".content":[99,134,136,137,138,154,175],".d":[21,154,168],".db":[36,113,173,177],".ddl":114,".deb":8,".description":176,".dll":63,".dump":33,".en":8,".entries":154,".exe":27,".fedoraproject":20,".flags":59,".garbage":36,".git":[8,9,13],".github":[8,13],".gpg":8,".grn":[85,115],".groonga":[8,13,20,21,22,23,24,25,26,27,114],".group":134,".gz":[8,13,20,21,22,23,24,25,26],".h":[12,63],".hash":176,".html":[8,13,113,115],".htpasswd":[115,159],".i":20,".jp":[2,8,38,85,99],".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":17,".json":[115,143],".kentaro":36,".key":59,".label":99,".list":21,".load":114,".location":176,".log":[24,71,87,113,114,115,162],".md":8,".mo\u30d5\u30a1\u30a4\u30eb":13,".msgpack":143,".n":[47,99,136,137,154],".name":[76,134,176],".ncpu":23,".ne":38,".nested":99,".net":[2,8,170,171,172,173,177,180],".nginx":115,".o":172,".offset":59,".org":[8,13,20,21,22,23,24,25,26,27,37,42,69,85,114,115,128,170,171,172,173,177,180],".output":116,".overcommit":35,".patch":13,".pc":[32,33],".php":8,".pid":113,".po":3,".po\u30d5\u30a1\u30a4\u30eb":[3,8],".posted":176,".rb":[31,37,98],".repoforge":20,".rpm":[20,22],".score":109,".scr":114,".select":[114,137],".service":35,".sh":[8,10,13,17,35],".so":95,".sourceforge":[2,8],".spec":33,".ssssss":139,".status":114,".sub":99,".synonym":99,".tag":99,".tar":13,".textile":8,".title":[87,170],".travis":17,".tsv":[143,145],".txt":8,".uuuuuu":137,".value":99,".weight":36,".x":20,".xml":143,".yml":17,".zip":13,".}":[69,76,137],"/ '":56,"/#":42,"/$":13,"/'":37,"/(":8,"/*":[12,13,115,162,168],"/.":33,"/..":[8,87,115],"/;":115,"/?":118,"/\"":[69,85,170,171,172,173,177,180],"/\u65e5":176,"/\u6708":176,"/\uff09":31,"/_":8,"/aba":[171,173,180],"/acccess":162,"/admin":[33,113],"/afr":[171,173,180],"/api":159,"/apt":[8,21],"/archive":8,"/atv":[171,173,180],"/base":8,"/bc":8,"/bin":24,"/blog":8,"/branches":10,"/c":[0,12],"/cache":115,"/centos":[8,20,162],"/column":87,"/command":[115,177],"/commands":[29,37,79,81,87,104],"/commits":37,"/copyright":37,"/coremodule":115,"/cpuinfo":[20,21,22,26],"/cutter":8,"/d":[37,115,159],"/data":17,"/database":[87,115,159],"/db":[85,102,111,115,119,162],"/db1":159,"/db2":159,"/dd":137,"/debian":21,"/default":[35,162],"/dev":8,"/dictionary":31,"/doc":8,"/docs":115,"/en":[8,14,115],"/epel":20,"/etc":[8,21,35,115,145,154,162,168],"/eval":97,"/example":87,"/f":8,"/false":[30,170],"/fedora":[8,22,31,35],"/files":[8,14],"/function":8,"/functions":10,"/gat":[171,173,180],"/gqtp":[36,162],"/grntest":8,"/groonga":[8,9,12,13,17,20,21,22,23,24,25,26,27,31,33,35,36,79,81,95,104,111,113,115,118,140,145,154,162,173,177],"/header":25,"/hoge":113,"/homebrew":8,"/hostname":[113,114],"/hosts":8,"/html":[13,14,33,159],"/http":[115,162],"/httpd":[115,162],"/index":[8,13,113],"/introduction":[173,177],"/ja":[8,13,42],"/javascript":33,"/json":[33,115,159],"/key":56,"/kytea":107,"/lc":[8,13],"/lib":[95,111,115,162],"/limits":154,"/linux":[14,18,19],"/lists":8,"/load":[98,115,159],"/local":[8,24,115],"/locale":[8,13,14],"/lock":87,"/log":[24,113,115,118,162],"/logical":29,"/lzo":[31,33,36],"/mailarchive":8,"/managers":[115,159],"/master":[13,17],"/max":37,"/message":8,"/mm":137,"/modules":[31,115],"/munin":24,"/mxcl":8,"/news":8,"/nfs":24,"/ngx":115,"/non":36,"/null":30,"/o":103,"/or":87,"/other":115,"/packages":8,"/pipermail":37,"/plugins":[24,31,36,95],"/ppa":26,"/projects":8,"/pub":20,"/pull":8,"/query":95,"/rab":[171,173,180],"/raw":17,"/reference":[29,87],"/repositories":8,"/request":96,"/result":34,"/rpmforge":20,"/rroonga":37,"/run":[8,113],"/rurema":37,"/sbin":23,"/security":154,"/select":[96,115,177],"/senna":85,"/setup":17,"/share":[33,113],"/shutdown":[115,159],"/source":[8,12,13,14,20,21,22,23,24,25,26,27],"/sources":21,"/span":[126,127,133],"/srpm":8,"/status":[112,115,143,159,177],"/stem":152,"/stop":[106,152],"/synonyms":145,"/sysconfig":162,"/sysctl":[23,154,168],"/table":87,"/tmp":[145,159],"/to":[115,159],"/travis":17,"/tsv":[95,145],"/ubuntu":[35,162],"/unit":10,"/usr":[24,113],"/var":[24,111,113,115,162],"/vdw":[171,173,180],"/wgs":180,"/windows":[8,27],"/work":8,"/x":159,"/xml":159,"/yum":8,"0e":114,"0mq":36,"0x":[34,136,155,164,170],"0xc":164,"10":[114,173],"11":[69,99,107,131,137,154,167],"1\u305a":[67,71],"1\u3064":[6,28,33,36,37,49,65,69,75,79,87,95,96,97,98,99,102,103,107,109,114,115,127,131,133,134,136,137,149,151,159,164,172,175,176],"1\u4ef6":[167,176],"1\u6708":[99,137,155,170,176],"1\u884c":114,"1byte":164,"1g":[21,26],"2\u3064":[15,20,21,22,26,36,37,78,79,99,103,122,131,134,136,150,158,159,162,171,173,175,176],"2\u3064\u3081":[136,159,175],"2byte":164,"2grn":37,"3\u3064":[10,36,72,81,99,126,133,135,170,171,173,175],"3ki":31,"4\u3064":[133,151],"4byte":164,"4e":168,"4gbyte":28,"4gib":[151,164],"5\u3064":121,"5c":101,"5f":114,"6elz":37,"6gib":154,"7e":114,"8bit":155,"8byte":164,"8r":[24,35,113],"9\u3064":173,"9e":140,"9f":143,": n":112,":!":136,":#":37,":#{":139,":$":[14,136,137,178],":')":78,":..":99,":/":[8,9,13,17,20,21,22,23,24,25,26,27,37,42,69,85,96,112,113,115,116,118,128,140,143,159,170,171,172,173,177,180],"::":[74,87,143],":<":[99,136],":=":[99,136],":>":[99,136],":@":[99,131,136,170,172,173,176,177],":[":114,":\"":[49,173],":\\":27,":\\\"":86,":\u5206":176,":\u79d2":176,":^":[136,178],":bob":176,":byte":61,":clear":8,":groonga":[8,26,99,136],":mm":[137,139],":port":[113,115,116],":public":8,":set":37,":ss":[137,139],":value":[99,136],";/":[126,127],";\"":35,";b":[126,127],";rroonga":[126,127],"< n":137,"< t1":7,"< y":36,"<#{":139,"<-":159,"</":[126,127,128,133,143],"<=":[36,115,137,176],"<directory":119,"<encoding":113,"<endpoint":119,"<gqtp":114,"<groonga":114,"<ip":[113,114],"<level":119,"<limit":113,"<log":113,"<max":113,"<path":[113,119],"<port":[113,114],"<protocol":113,"<span":[126,127,133],"<threshold":113,"= \"":[37,99,137],"= n":137,"= y":36,"=$":[8,13,24],"='":128,"=(":8,"=)":7,"=-":24,"=..":8,"=/":[8,10,24,113,145],"==":137,"=\"":[8,25,99,126,127,133,143],"=\\":[126,127,128,133],"=`":14,"=add":107,"=allow":99,"=c":27,"=complete":118,"=dat":34,"=encoding":19,"=fedora":8,"=g":118,"=get":106,"=gr":118,"=gro":118,"=groo":118,"=groonga":[115,118],"=grooon":118,"=i":8,"=largetable":96,"=message":19,"=none":[91,99,106,107],"=null":[75,87,99,103,107],"=number":19,"=pat":34,"=path":19,"=platform":19,"=query":118,"=r":35,"=redhat":24,"=site":177,"=sjis":24,"=squeeze":8,"=submit":118,"=table":103,"=title":177,"=true":96,"=unique":96,"=users":[115,159],"=yes":[8,10,34,36,99],"> y":36,">#{":139,">.":[126,127],"><":[49,143],">=":[36,137],">>":[36,137],">\"":[36,99,126,128],">\n<":143,">\u3001":82,">\u529b":89,">_":140,">alloc":143,">cache":143,">command":143,">default":143,">max":143,">n":143,">rroonga":[126,127],">starttime":143,">uptime":143,">version":143,"??":99,"?id":96,"?msg":8,"?parameter":115,"?table":[96,115,159,177],"@'":173,"@ceekz":36,"@do":37,"@github":8,"@groonga":[2,8],"@kiske":35,"@lists":[2,8],"@naoina":[35,36],"@orangain":36,"@packages":8,"@s":31,"@soundkitchen":[33,35],"@tomotaka":33,"@uzulla":33,"@wareohji":35,"@yappo":[36,37],"@yito":[35,36],"[#":[33,34,35,37],"[,":124,"[2":113,"[:":177,"[@":[33,35,36,37],"[[":[69,81,84,96,97,98,99,104,106,109,113,118,123,126,127,131,133,136,137,138,147,152,167,170,172,175,176,178],"[[\"":76,"[\"":[69,76,79,99,102,133,137,147,167,170,172,176],"[\u8a9e":76,"[a":118,"[admin":[33,35,36],"[apt":35,"[args":113,"[backslash":136,"[benchmark":37,"[bernard":29,"[cmake":29,"[column":37,"[dat":[34,35],"[deb":[33,35,36,37],"[doc":[29,33,34,35,36,37],"[dump":[35,36,37],"[element":[69,137],"[example":37,"[fedora":[35,37],"[geo":[33,36],"[github":37,"[gqtp":36,"[grntest":33,"[groonga":[8,33,35,37],"[header":[72,75,78,81,84,87,91,92,95,97,98,103,107,108,109],"[http":[35,36,37],"[httpd":[35,36,37],"[index":37,"[label":99,"[label1":[37,99],"[label2":99,"[libedit":33,"[linux":35,"[load":[35,37],"[macports":33,"[mdev":29,"[mruby":37,"[munin":[33,35,36,37],"[n":[36,37],"[normalizer":37,"[number":86,"[os":37,"[output":34,"[pat":35,"[php":[35,37],"[pkg":[33,35],"[plugin":37,"[power8":37,"[rpm":[33,34,35,36,37],"[snippet":[37,133],"[solaris":35,"[space":136,"[suggest":[34,35,36],"[table":36,"[tag":99,"[test":35,"[token":36,"[tokenizer":[35,36],"[travis":36,"[windows":[33,35,36,37],"[yum":35,"[{":[115,159],"\"#":33,"\"#\"":114,"\"#{":137,"\"'":[35,36,37,69,99,136,137,165,167],"\"(":[36,179],"\")":[35,36,37,48,96,121,122,123,125,131,137,172,180],"\"*":35,"\",":[36,69,72,76,79,81,84,85,86,96,99,102,104,106,107,109,113,114,115,121,123,126,127,128,131,133,134,136,137,138,140,147,148,150,152,167,170,171,172,173,175,176,177,178,179,180],"\"-":[33,123],"\".":[96,137,171],"\"/":[79,81,104,113,180],"\":":[69,76,81,84,86,91,92,96,97,98,99,101,102,106,107,108,109,114,115,121,123,126,127,128,131,134,136,137,138,140,143,147,148,150,152,159,170,171,172,173,175,176,177,178,179,180],"\";":[114,115,159],"\"<":[36,126,127],"\">":[126,127,133,143],"\"?":[99,143],"\"@":176,"\"[":35,"\"\"":[34,134,137,155],"\"\u3001":[147,171],"\"\u3002":37,"\"\u308d\u3086\u304d":178,"\"\u30df\u30ea":137,"\"\uff08":147,"\"\uff09":[30,147,170,180],"\"]":[69,79,85,99,113,133,137,147,167,172,173,176],"\"_":[36,69,72,79,81,84,85,86,99,102,106,109,115,121,123,128,131,134,136,137,138,140,147,148,150,152,159,167,170,171,172,173,175,176,177,178,179,180],"\"a":[37,99,107,134],"\"ab":149,"\"alice":136,"\"apple":140,"\"application":33,"\"b":[99,134],"\"black":140,"\"blank":140,"\"blt":85,"\"book":137,"\"c":[99,134],"\"canceled":96,"\"co":149,"\"color":140,"\"complete":149,"\"content":[99,136,137,152],"\"correction":149,"\"ddl":37,"\"double":137,"\"e":[102,107,147],"\"element":69,"\"ellip":124,"\"ellipsoid":124,"\"engine":[147,148,150],"\"fulltext":107,"\"good":[99,137],"\"gr":103,"\"gronga":149,"\"groonga":[69,99,103,133,134,137,149],"\"h":107,"\"hello":[106,152],"\"http":69,"\"i":[72,99,136,137,138,152,175,176],"\"is":170,"\"items":85,"\"k":172,"\"keyword":99,"\"localhost":177,"\"mori":85,"\"mroonga":[69,99,134,137],"\"mysql":[69,149],"\"n":[72,99,101,115,136,137,173,177],"\"name":131,"\"ni":147,"\"no":35,"\"null":35,"\"popular":99,"\"pp":37,"\"rect":[35,124],"\"rectangle":[35,123,124],"\"requires":35,"\"roonga":149,"\"ruby":69,"\"s":[102,107,147,148],"\"saerch":148,"\"say":137,"\"se":147,"\"sea":147,"\"search":[136,147,148,150],"\"sequence":[102,147,148,150],"\"serach":148,"\"service":148,"\"sound":148,"\"sphere":124,"\"sphr":124,"\"starttime":143,"\"sug":149,"\"suggest":149,"\"t":107,"\"table":113,"\"tags":69,"\"text":33,"\"theater":179,"\"theatre":179,"\"tritonn":99,"\"type":102,"\"unknown":48,"\"uptime":143,"\"utf":48,"\"value":99,"\"vector":36,"\"version":143,"\"web":[148,150],"\"weight":170,"\"x":[36,37,137],"\"xxx":36,"\"yu":85,"\"yyyy":137,"\"}":[84,86,99,102,115,131,134,136,137,138,140,147,148,150,152,159,170,171,172,175,178,180],"\\%":27,"\\'":[113,136],"\\(":136,"\\\"":[49,86,126,127,128,133,134,165],"\\\"a":134,"\\\"}":86,"\\\\":[49,126,134],"\\bin":27,"\\groonga":27,"\u2026\uff09":148,"\u2192id":151,"\u25a1\u25a1":6,"\u25cb\u25cb":6,"\u3001#":176,"\u3001$":8,"\u3001'":[37,48,113,131,137,155,170],"\u3001(":[59,60,114,121,155],"\u3001-":[31,114,116,155],"\u3001.":[10,13],"\u3001/":[173,177],"\u3001:":114,"\u3001>":80,"\u3001[":173,"\u3001\"":[33,35,36,128,134,147,148,149,150,155,173,176,179],"\u3001\u00d7":6,"\u3001\u300c":[30,99,113,147,165,167,171,172,180],"\u3001_":173,"\u3001c":173,"\u3002#":[31,33,176],"\u3002'":56,"\u3002(":[7,8,22,41,57,60,84,86,113,114,162,175],"\u3002)":[60,84,99,114,175],"\u3002-":[24,51,60,116],"\u3002.":13,"\u3002:":[6,8,10,13,33,71,76,78,82,85,86,92,99,102,103,104,108,113,114,115,116,137,147,148,149,150,154,159,165,167,168,173],"\u3002[":[35,36,37,173],"\u3002\"":[36,37,148,167,171,176,177],"\u3002\u00d7":6,"\u3002\u2193":113,"\u3002\u3002":142,"\u3002\u300c":[37,91,99,103,106,107,136,137,172,175],"\u3002\u300d":167,"\u3002\u3044":7,"\u3002\u3044\u307e":34,"\u3002\u3056\u3063\u304f\u308a":69,"\u3002\u3057\u304b\u3057":[0,19,33,69,81,99,123,138,140,148,155,159],"\u3002\u3057\u304b\u3082":158,"\u3002\u3059":[114,138],"\u3002\u3059\u3050":115,"\u3002\u3059\u3079\u3066":[10,13,81],"\u3002\u3064\u307e\u308a":[41,99,136,173,179],"\u3002\u3069\u308c":118,"\u3002\u307e\u305a":167,"\u3002\u307e\u305f":[0,7,71,99,112,113,114,116,137,145,148,155,170,173,177,180],"\u3002\u307e\u3060":37,"\u3002\u30ad\u30fc":99,"\u3002\u30bf\u30b0":[69,99,127,172],"\u3002\u30d0\u30b0":15,"\u3002\u30df\u30ea":170,"\u3002\u30ed\u30b0":[103,115],"\u3002\u4f8b":56,"\u3002\u5024":121,"\u3002\u7701\u7565\u53ef\u80fd":126,"\u3002\uff08":[13,17,31,33,46,60,76,99,127,133,135,136,137,142,147,148,150,151,155,165],"\u3002\uff09":[13,17,30,31,33,60,99,103,127,133,136,137,142,148,150,151,165],"\u3002_":[67,173],"\u3002adjuster":37,"\u3002amazon":99,"\u3002api":[126,127,133,135],"\u3002ascii":[136,137],"\u3002blogs":167,"\u3002buf":43,"\u3002c":[0,12,74],"\u3002callback":7,"\u3002column":[7,43,173],"\u3002command":71,"\u3002cpu\u30b3\u30a2":159,"\u3002ctrl\u30ad\u30fc":173,"\u3002cursor":60,"\u3002db":[7,33,46,173,177],"\u3002debian":10,"\u3002dump":85,"\u3002eclipse":13,"\u3002ecmascript":99,"\u3002ftp":114,"\u3002functions":10,"\u3002gdb":10,"\u3002geopoint":176,"\u3002git":8,"\u3002gnr":135,"\u3002google":136,"\u3002gqtp":[74,112,164,177],"\u3002grn":[7,135],"\u3002groonga":[0,3,20,21,22,24,26,27,35,36,37,65,71,78,99,101,114,115,136,137,143,147,151,173,175,177],"\u3002hook":51,"\u3002host":177,"\u3002html":126,"\u3002http":36,"\u3002id":46,"\u3002int":36,"\u3002iptables":177,"\u3002json":86,"\u3002key":[59,165,173],"\u3002keys":59,"\u3002lzo":78,"\u3002make":114,"\u3002max":60,"\u3002messagepack":[24,72],"\u3002min":60,"\u3002mroonga":[0,56],"\u3002munin":[20,21,22,26],"\u3002mysql":[20,21,22,26],"\u3002n":[91,107,167],"\u3002name":[43,46,59],"\u3002none":113,"\u3002null":[46,47,59],"\u3002obj":56,"\u3002offset":51,"\u3002optarg":47,"\u3002output":[37,85],"\u3002pcre":115,"\u3002point":[124,125],"\u3002post":159,"\u3002rroonga":135,"\u3002run":10,"\u3002scan":10,"\u3002set":114,"\u3002sql":99,"\u3002squeeze":10,"\u3002table":[59,62,84],"\u3002tag":172,"\u3002timeout":56,"\u3002tokendelimit":150,"\u3002travis":17,"\u3002tsv":[72,145],"\u3002utf":[36,140],"\u3002value":[56,67],"\u3002video":172,"\u3002xml":72,"\u3002zlib":78,"\u300c#":31,"\u300c,":85,"\u300c\"":113,"\u300c\u30e9\u30d9\u30eb":99,"\u300c\u5024":103,"\u300c\u5f0f":49,"\u300c\u6771\u4eac\u90fd":167,"\u300c\u697d\u3057":165,"\u300c\u697d\u3057\u3044":165,"\u300c\uff76":140,"\u300calice":176,"\u300cbill":165,"\u300cbilliard":165,"\u300cbob":176,"\u300ccharlie":176,"\u300ccommand":116,"\u300ccomments":176,"\u300cgrand":176,"\u300cgroonga":[37,99,135],"\u300chello":99,"\u300cnew":176,"\u300cnihon":147,"\u300cnippon":147,"\u300coutput":116,"\u300cpopular":99,"\u300csenna":99,"\u300cusers":176,"\u300cv":8,"\u300d:":140,"\u300d\u3001":[37,172,176],"\u300d\u3002":135,"\u300d\uff08":[85,99,165],"\u3042\u3044\u307e\u3044":103,"\u3042\u304d":178,"\u3042\u304d\u3089":37,"\u3042\u304f":42,"\u3042\u3052\u308b":[18,166],"\u3042\u305f\u3044":75,"\u3042\u305f\u308a":[31,33],"\u3042\u3063":[8,13,22,35,36,43,56,59,67,71,86,99,102,114,137,159,172],"\u3042\u3068":[8,13],"\u3042\u306a\u305f":[2,8],"\u3042\u307e\u308a":[6,59,175],"\u3042\u3089\u304b\u3058\u3081":[8,22,155],"\u3042\u3089\u308f\u3057":179,"\u3042\u308a":[0,1,2,3,6,7,8,9,10,12,13,15,19,20,21,22,24,26,27,28,33,35,36,37,41,42,46,49,53,56,59,60,67,69,71,72,75,78,79,84,86,87,90,91,92,93,95,96,97,98,99,100,101,102,103,104,106,107,108,114,115,116,118,121,123,126,127,128,131,133,134,135],"\u3042\u308b":[0,1,6,7,8,13,16,24,27,31,33,35,36,37,49,53,56,60,69,71,74,76,77,78,79,80,82,83,84,85,86,88,89,90,93,99,100,101,102,103,104,105,107,111,112,113,114,116,121,122,123,124,125,130,131,132,133,134,135,136,137,142,145,147,148,151,155,159,167,168,170,171,172,173,175],"\u3042\u308b\u3044":[0,7,22,37,43,58,59,71,103,115,124,125,136,137,164],"\u3042\u308c":[8,42,103,114,121,137,138,167],"\u3042\u308c\u3053\u308c":6,"\u3042\u308f\u305b\u308b":35,"\u3044\u3044":[2,6],"\u3044\u3044\u306d":[99,136,137],"\u3044\u3046":99,"\u3044\u304d":[6,8,173],"\u3044\u304f":[3,4],"\u3044\u304f\u3064":3,"\u3044\u304f\u3064\u304b":[1,2,7,8,10,22,24,36,67,91,96,99,106,107,120,131,140,158],"\u3044\u304f\u3089":0,"\u3044\u305a\u308c":[67,71,155],"\u3044\u3064":147,"\u3044\u307e":98,"\u3044\u307e\u305b":[20,36,37,72,99,102,103,107,115,136,137,142,145,151,158,159],"\u3044\u308b":[0,6,7,8,10,13,17,24,26,29,30,31,32,33,34,35,36,37,40,43,46,51,56,57,59,60,69,72,75,76,77,78,79,80,81,83,84,86,90,92,95,97,98,99,100,103,104,105,107,108,113,114,115,116,121,123,127,128,131,133,134,136,137,138,140,141],"\u3044\u308c":[35,56,170],"\u3044\u308d\u3044\u308d":[18,169],"\u3044\u308f\u3086\u308b":172,"\u3044b":[165,167],"\u3046\u3048":[33,35],"\u3046\u3061":[7,33,35,43,56,59,60,71,76,121,142],"\u3046\u3061\u3044":113,"\u3046\u3063\u304b\u308a":36,"\u3046\u307e\u304f":[3,4],"\u304a\u3044":[0,8,10,13,33,36,43,56,59,67,170,173],"\u304a\u304b":24,"\u304a\u304b\u3057":31,"\u304a\u304b\u3057\u304f":31,"\u304a\u304d":[0,8],"\u304a\u304d\u307e\u3057\u3087":170,"\u304a\u3051":99,"\u304a\u3051\u308b":[0,28,35,36,136,155,170,172,173],"\u304a\u3053":[0,170],"\u304a\u3053\u306a\u3063":173,"\u304a\u3055\u3089\u3044\u3057":6,"\u304a\u3059\u3059\u3081":159,"\u304a\u3059\u3059\u3081\u3057":[8,136,137,162],"\u304a\u3070":[30,33,36],"\u304a\u3070\u305f":[33,36],"\u304a\u3088":41,"\u304a\u3088\u3073":[0,8,24,35,57,113,170,173],"\u304a\u3089":8,"\u304a\u308a":[37,180],"\u304a\u5f85\u3061":2,"\u304a\u77e5\u3089":18,"\u304a\u9858\u3044":[6,114],"\u304b\u3048\u308b":134,"\u304b\u304b\u3063":[72,99],"\u304b\u304b\u308a":[136,137,138],"\u304b\u304b\u308b":[59,138,173],"\u304b\u304e\u308a":114,"\u304b\u3051":[36,77],"\u304b\u3051\u308b":[6,115],"\u304b\u305a":[35,37],"\u304b\u305a\u3072\u3053\u3055\u3093":35,"\u304b\u3061":[99,165],"\u304b\u3064":[36,60,99,137,165],"\u304b\u3069":[37,99,102,115,121,124,125,136,167,168,180],"\u304b\u3069\u3046":[24,74,121,131,134,167],"\u304b\u306a\u308a":37,"\u304b\u307e\u3044":173,"\u304b\u3082":[6,37,72,81,91,92,97,98,108,137,175],"\u304b\u3089":[0,3,5],"\u304b\u308f\u308a":[22,37,167],"\u304by":36,"\u304c\u3042\u308a":[8,15,99,123,145,152],"\u304c\u3053\u306e":136,"\u304c\u3059":59,"\u304c\u3063":79,"\u304c\u3064\u3044":[31,35,69,99,151],"\u304c\u3072\u3068\u3064":145,"\u304c\u308f\u304b\u308a":[128,176],"\u304c\u308f\u304b\u308b":123,"\u304c\u308f\u304b\u308c":99,"\u304f\u3060":[0,2,13,20,21,22,23,24,25,26,27,35,36,37,41,55,69,74,75,78,79,81,84,87,91,92,95,96,97,98,99,102,103,106,107,108,109,114,115,116,123,128,131,134,136,137,151,155,157,159,162,167,168,170,171,173,176,177,178,180],"\u304f\u308c":6,"\u304f\u308c\u308b":[0,12,13],"\u3050\u3088\u3046":123,"\u3050\u308b":[135,136,137],"\u3050\u308b\u3093":[136,137,172],"\u3053\u3046":6,"\u3053\u3046\u3059\u308c":6,"\u3053\u3053":[8,72,99,102,136,137,140,145,167,170,173,176,180],"\u3053\u3053\u3067":8,"\u3053\u3068":[0,1,3,5,6,7],"\u3053\u306a\u3044":37,"\u3053\u306e":[0,2,3,7,8,13,16,17,19,20,21,22,23,24,25,26,27,33,34,35,36,37,40,41,42,49,59,60,63,69,70,72,74,75,78,79,81,86,87,91,96,97,98,99,103,106,107,109,111,113,114,115,120,121,123,124,126,127,131,133,134,136,137,138,141,143,145,146,147,148,150,151,154,158,159,164,165,167,170,171,172,173,174,175,176,179,180],"\u3053\u3080":98,"\u3053\u308c":[0,7,8,12,13,24,33,35,36,37,42,47,69,75,78,95,99,103,107,115,121,123,127,133,134,136,137,138,140,145,147,148,149,150,151,159,164,165,167,168,170,171,175,176,179,180],"\u3053\u308c\u3089":[3,20,21,22,24,25,26,35,36,67,69,91,95,99,115,116,123,135,136,137,140,143,149,150,151,159,167,171,172,173,176],"\u3054\u3068":[5,8,35,36,46,107,126,131,168,174],"\u3054\u307f":[6,36],"\u3054\u3089\u3093\u304f":9,"\u3054\u89a7\u304f":[10,173],"\u3055\u3044":[0,2,10,13,20,21,22,23,24,25,26,27,35,36,37,41,55,69,74,75,78,79,81,84,87,91,92,95,96,97,98,99,102,103,106,107,108,109,114,115,116,123,128,131,134,136,137,151,155,157,159,162,167,168,170,171,173,176,177,178,180],"\u3055\u304d":170,"\u3055\u305b":6,"\u3055\u307e\u3056\u307e\u306a":[18,169,176],"\u3055\u3089":175,"\u3055\u3089\u306b":[0,37,69,71,149,151,172,173],"\u3055\u3093":[13,29,31,32,33,34,35,36,37,133,149,159,171],"\u3057\u3044":[165,167],"\u3057\u3046\u308b":37,"\u3057\u304b":[13,37,99,103,115,136,137,159,170,175],"\u3057\u304b\u3057":[13,99,137,145,159,165,167,175],"\u3057\u304d\u308c":35,"\u3057\u304f":36,"\u3057\u3064\u3064":10,"\u3057\u3066":[6,8,10,13,26,31,35,36,59,99,115,167,171,172,173],"\u3057\u307e":6,"\u3057\u307e\u3044":[114,148,167,170,178],"\u3057\u307e\u3046":[0,6,8,31,33,35,36,37],"\u3057\u307e\u3057":36,"\u3057\u307e\u3057\u3087":[69,179],"\u3057\u307e\u3059":[20,99,136,137,149,165,176],"\u3057\u307e\u305b":[6,24,99,115,147,167],"\u3057\u307e\u3063":37,"\u3057\u3084\u3059\u304f":35,"\u3057\u3088":[7,33,36,41,46,54,86,123,138,170],"\u3057\u308a":6,"\u3057\u308c":[37,72,81,92,108,137],"\u3058\u304d":133,"\u3059\u304e\u307e\u305b":172,"\u3059\u304e\u308b":69,"\u3059\u304f":134,"\u3059\u3050":[0,159],"\u3059\u3053\u308c\u3089":99,"\u3059\u3067":[8,37,81,107,138,165],"\u3059\u306a\u308f\u3061":170,"\u3059\u3079":[7,33,37,71,77,85,87,99,107,109,114,115,137,147,151,159,164,176],"\u3059\u3079\u304d":7,"\u3059\u3079\u3066":[24,31,33,35,37,59,69,71,79,81,99,106,107,114,115,121,137,152,171,173],"\u3059\u308b":[0,1,2,3,5],"\u3059\u308b\u304b":171,"\u3059\u308c":[0,59,95,99,114,121,126,136,137,171,173],"\u305a\u3064":[113,114,175],"\u305a\u306b":69,"\u305a\u308c":[0,7,59,71,78,86,88,89,113,123,155,164,170],"\u305b\u3044":[36,37],"\u305b\u3044\u305c\u3044":103,"\u305b\u306a":[136,137],"\u305b\u308b":[0,7,10,103,116,126,127,131,162],"\u305b\u308c":0,"\u305d\u3046":[6,17,121,137],"\u305d\u3053":[8,167,170],"\u305d\u3053\u306b":104,"\u305d\u3057\u3066":[0,99,107,133,147,170,171,175,176],"\u305d\u3061\u3089":24,"\u305d\u306e":[0,6,7,8,13,18,19],"\u305d\u306e\u307e\u307e":8,"\u305d\u306e\u3088\u3046":84,"\u305d\u306e\u5f8c":[46,99,137],"\u305d\u306e\u969b":8,"\u305d\u308c":[7,8,13,22,27,31,53,56,60,61,79,99,101,103,128,136,137,150,155,165,167,170,171,173,175,179],"\u305d\u308c\u304b\u3089":[69,99],"\u305d\u308c\u305e\u308c":[7,8,10,24,37,56,59,72,99,103,107,113,116,131,137,143,151,164,165,167,170,171,173,175,180],"\u305d\u308c\u3086\u3048":[136,170],"\u305d\u308c\u3089":[41,43,78,99,112,145,159],"\u305d\u308d\u305d\u308d":173,"\u305d\u3093\u306a":[24,103],"\u305e\u308c":[7,8,53,99,137,150],"\u305f\u304b":[33,99,148],"\u305f\u304b\u3063":[148,179],"\u305f\u304f":[13,33,36,133,149,159,171],"\u305f\u3051\u3069":99,"\u305f\u3055\u3093":[30,33,36],"\u305f\u3059\u3079\u3066":99,"\u305f\u3060":[22,69],"\u305f\u3060\u3051":35,"\u305f\u3060\u3057":[30,33,36,37,60,67,78,113,116,136,137,165],"\u305f\u3068\u3048":167,"\u305f\u3069\u3063":176,"\u305f\u3069\u308b":172,"\u305f\u3070\u304b\u308a":138,"\u305f\u3073":[8,71,114,180],"\u305f\u3076\u3093":24,"\u305f\u307e\u307e":159,"\u305f\u3081":[0,1,2,3,4],"\u305f\u3081\u3057":180,"\u305f\u3089":[6,8,13,24,31,37,99,121,131,134,137,147,159,162],"\u305f\u308a":[0,3,6,37,51,99,103,135,151,155,162],"\u3060\u3044":[33,37],"\u3060\u304b\u3089":99,"\u3060\u3055\u3044":[0,3,8,9,10,13,15,17,19,24,25,26,35,37,69,72,99,103,115,136,137,140,145,159,164,171,173,177],"\u3060\u3057":[33,114],"\u3060\u3063":[35,59,71,99,137,167],"\u3060\u3068":6,"\u3061\u3083\u3093":172,"\u3064\u3044":176,"\u3064\u304b":32,"\u3064\u304d":[28,37,69,75,78,97,98,99,128,145],"\u3064\u3051":[99,123],"\u3064\u3051\u308b":[6,37,69,99,178],"\u3064\u3064":[131,167],"\u3064\u3065\u3044":176,"\u3064\u3076\u3084\u304d":138,"\u3064\u307e\u308a":[8,99,107],"\u3065\u3051":[35,36],"\u3066\u304d":74,"\u3066\u304f":10,"\u3066\u3057\u307e\u3044":6,"\u3066\u307f\u307e\u3057\u3087":180,"\u3067\u3044":[99,137,170,176],"\u3067\u3044\u3046":[140,171],"\u3067\u304d":[0,1,6,7,8,9,10,13,17,20,21,22,23,24,26,30,31,33,35,36,37,40,42,43,46,47,49,51,53,56,59,60,67,69,71,72,74,75,78,79,81,85,86,91,95,97,98,99,102,103,106,107,112,113,114,115,116,121,122,123,124,125,126,127,130,131,132,133,134,135,136,137,138,140,142,143,145,147,148,149,150,151,152],"\u3067\u304d\u308b":[0,3,5],"\u3067\u304f":[3,17,19,37,69,99,137,145],"\u3067\u3057":[25,37,137,170],"\u3067\u3057\u3087":[0,16,24,37,81,137,138,171],"\u3067\u3059":[0,3,6,7,8,10,12,13,14,15,17,20,21,22,24,25,26,27,28,33,35,36,37,41,42,43,45,46,47,49,52,56,57,59,62,65,67,69,70,71,72,73,74,75,76,78,79,81,84,85,86,87,91,92,95,96,97,98,99,102,103,104,106,107,108,109,111,112,113,114,115,116,118,119,121,123,124,126,127,128,131,133,134,135,136,137,138,140,142,143,145,147,148,149,150,151,152,153,154,155,158,159,162,164,165,167,168,170,171,173,174,175,176,177,179,180],"\u3067\u3059\u306d":6,"\u3067\u3064\u306a\u3052\u308b":99,"\u3067\u3069":102,"\u3067\u3069\u3053":74,"\u3067\u306a\u3051\u308c":137,"\u3067\u306b":[95,138,167],"\u3067\u306e":[37,72,133],"\u3067\u306f":37,"\u3067\u307e\u3068\u3081":145,"\u3067\u307f":0,"\u3067\u3082":[0,8,10,13,15,19,20,21,22,24,26,27,33,35,36,37,74,78,99,103,114,115,127,131,133,134,147,151,164,165,167,173,175,177,180],"\u3067\u3082\u3063\u3068\u3082":70,"\u3067\u3088\u308a":37,"\u3067\u5024":[113,173],"\u3068\u3044\u3046":[0,5,6,8,10,13,24,33,35,36,37,49,69,71,73,76,91,95,97,99,102,103,107,114,115,116,123,127,131,133,134,135,136,137,140,143,145,147,148,151,152,155,159,165,167,170,171,172,173,175,176,177,180],"\u3068\u3044\u3051":[99,103,147,164,168],"\u3068\u3044\u3063":[22,35,36,37,69,99,123,135,136,137,151,159,180],"\u3068\u3048":[0,24,37,48,49,71,99,127,133,165,180],"\u3068\u304a\u308a":[28,114,170,171,180],"\u3068\u304d":[0,5,6,7,8,20,21,22,23,24,26,30,31,33,35,36,37,46,53,57,59,60,69,72,78,95,99,102,103,107,113,115,123,131,133,135,136,137,140,145,147,148,149,150,155,159,164,165,170,171,172,173,176,177],"\u3068\u3053\u306e":[99,147],"\u3068\u3053\u308d":[12,13,34,78,95,97,98,137],"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":69,"\u3068\u3057":[7,36,37,46,98,99,112,113,114,115,123,137,138,145,147,148,149,150,155,170,172,175],"\u3068\u3057\u3066":[0,7,8,10,11,13,14,16,20,21,22,23,24,26,31,33,34,35,36,37,40,42,43,46,56,57,58,67,71,74,78,84,86,87,97,98,99,102,103,109,113,114,115,122,123,127,131,133,135,136,137,140,142,145,147,148,149,151,152],"\u3068\u3057\u307e\u3057\u3087":[175,179],"\u3068\u3057\u307e\u305b":41,"\u3068\u3059\u3050":138,"\u3068\u3059\u3079\u3066":[35,99],"\u3068\u3059\u308c":0,"\u3068\u305d\u306e":71,"\u3068\u3063":115,"\u3068\u3064\u3044":180,"\u3068\u3066":[0,99,147,151,159],"\u3068\u3068":[12,13],"\u3068\u3068\u3082\u306b":170,"\u3068\u3069":146,"\u3068\u306a\u3063":36,"\u3068\u306a\u308a":[127,133,136,159,177],"\u3068\u306e":137,"\u3068\u307f":[36,99,116,136],"\u3068\u3082":[99,114,133,134,136,137,168,180],"\u3068\u3082\u3063\u3068":24,"\u3068\u3088\u3044":24,"\u3068\u308a\u3068\u3093":[136,137],"\u3068\u308b":56,"\u3068\u308f\u304b\u308b":8,"\u3069\u3046":[6,30,35,47,77,80,82,88,89,90,99,105,115,167,171],"\u3069\u3053":[24,33,37],"\u3069\u3061\u3089":[15,46,65,91,149,159,173,175],"\u3069\u3061\u3089\u304b":[127,133,136,137],"\u3069\u306e":[24,99,107,123,124,137,142,148,171],"\u3069\u308c":[72,79,99,103,159],"\u3069\u3093":104,"\u306a\u3044":[0,5],"\u306a\u304a":[8,165],"\u306a\u304a\u3053\u306e":114,"\u306a\u304a\u3057":37,"\u306a\u304a\u3059":37,"\u306a\u304b":6,"\u306a\u304b\u3063":[35,37,71,77,80,82,88,89,90,99,105,113,114,121,131,134,137,167,173],"\u306a\u304c\u3089":[0,8,35,99,107,173],"\u306a\u304c\u308b":35,"\u306a\u304e":134,"\u306a\u304f":[0,3,6,8,17,24,30,31,33,35,36,37,46,56,79,95,99,103,114,115,121,133,134,135,136,137,142,151,159,162,170,171,173,175,179],"\u306a\u3051\u308c":[17,24,35,42,43,46,49,54,56,59,65,69,74,78,79,81,86,99,103,113,114,115,121,128,134,136,137,145,170],"\u306a\u3055":[116,132],"\u306a\u3055\u3093":3,"\u306a\u3057":[36,37,60,71,74,75,99,124,128,131,134,136],"\u306a\u3059":125,"\u306a\u305c":[99,103,136,137,140,147,148,152],"\u306a\u3063":[0,6,8,10,31,33,34,35,36,37,69,71,72,76,99,107,136,147,159,162,167,170,173,175,176,177],"\u306a\u3067":147,"\u306a\u3068\u304d":0,"\u306a\u3069":[0,7,8,9,13,16,24,33,35,37,47,56,71,76,90,97,98,99,107,114,126,127,133,135,136,137,138,142,145,147,148,150,151,155,159,165,167,170,173,174,176,177],"\u306a\u306a\u3069":[136,137],"\u306a\u306b":147,"\u306a\u306b\u5bfe\u3057":[136,137],"\u306a\u306e":147,"\u306a\u3082\u306e":[8,43],"\u306a\u3084\u308a\u304b\u305f":179,"\u306a\u3089":[7,10,17,20,21,22,26,35,36,37,43,47,56,59,69,71,84,93,99,101,103,113,114,115,128,136,137,140,147,148,152,168,175],"\u306a\u308a":[0,6,8,17,29,33,35,36,37,42,43,46,47,49,56,59,65,67,69,71,72,74,75,77,78,83,86,95,99,102,103,113,114,115,116,123,124,133,136,137,138,140,143,145,147,148,152,155,164,167,170,171,172,173,175,176,177,178,180],"\u306a\u308b":[0,6,7,8,13,19,20,21,22,24,26,27,30,31,32,35,36,37,46,47,56,77,78,83,84,85,99,103,113,114,115,121,124,125,131,133,137,138,150,155,167,170,171,173],"\u306a\u308c":71,"\u306a\u3093":71,"\u306b\u3042\u308a":[91,103],"\u306b\u3044\u304f\u3064\u304b":36,"\u306b\u304a\u3044":[8,71,170],"\u306b\u304f\u3044":0,"\u306b\u304f\u308b":167,"\u306b\u3057":[36,37,99,136,137],"\u306b\u3059":167,"\u306b\u3059\u3050":138,"\u306b\u3059\u308b":159,"\u306b\u3064":35,"\u306b\u3064\u3044\u3066":[0,3,7,8,15,16,17,20,21,22,23,24,25,26,33,35,36,37,41,53,56,60,69,70,71,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,120,122,123,124,125,130,131,132,134,136,145,147,148,150,154,155,159,164,165,168,170,171,173,174,176,180],"\u306b\u3064\u3051":137,"\u306b\u3064\u3076\u3084\u3051":6,"\u306b\u3064\u3076\u3084\u3051\u308b":6,"\u306b\u3066":[8,35,36,123],"\u306b\u3068\u3063":6,"\u306b\u3068\u3063\u3066":[6,107],"\u306b\u3069":7,"\u306b\u3082":[99,165],"\u306b\u3088":35,"\u306b\u3088\u3063":[0,5,7,36,46,56,59,69,71,76,77,78,80,81,82,83,85,88,89,90,93,99,100,101,104,105,112,113,116,135,165,170,172,173,177],"\u306b\u3088\u3063\u3066":[0,10,36,46,67,71,167,170,173],"\u306b\u3088\u308a":[0,8,28,35,36,37,76,99,115,123,155,159,167,170,173,175,177,178],"\u306b\u3088\u308b":[0,6,8,18,33,34,35,36,37,123,137,155,169,170],"\u306b\u5bfe\u3057":[0,7,8,30,35,36,37,51,56,59,69,78,95,99,101,102,109,112,116,134,136,137,165,171,172,173,175,179,180],"\u306b\u5bfe\u3057\u7570":131,"\u306b\u5bfe\u3059\u308b":[0,7,8,18,31,33,36,37,60,102,169,170,172,173],"\u306b\u5bfe\u5fdc":[33,34,35,37,43,46,51,54,56,57,59,61,86,90,99,113,116],"\u306b\u5bfe\u5fdc\u4ed8\u3051":147,"\u306b\u5bfe\u8c61":33,"\u306b\u95a2\u3057":[7,29,36,46,114],"\u306b\u95a2\u3059\u308b":[2,18,33,34,35,36,37,39,55,60,99,115,136,137,147],"\u306e\u3042\u3068":35,"\u306e\u3044":[0,7,59,71,86,88,89,113,123,155,164],"\u306e\u3044\u305a\u308c":[79,179],"\u306e\u3044\u305a\u308c\u304b":[58,59,61,124,125],"\u306e\u3046\u3061":[79,136],"\u306e\u304b":[165,176],"\u306e\u304b\u308f\u308a":37,"\u306e\u3059\u3079\u3066":[99,159],"\u306e\u3067":[0,1,6,8,13,27,33,35,36,37,72,97,98,99,103,115,116,121,123,131,133,134,145,147,159,162,165,167,168,170,173,175,176],"\u306e\u3067\u3057\u3087":99,"\u306e\u3069\u3061\u3089":[99,137],"\u306e\u3069\u3061\u3089\u304b":[99,121,136,137],"\u306e\u3069\u308c":[118,147],"\u306e\u306b":[18,35,36,37,91,166],"\u306e\u306b\u5bfe\u3057":46,"\u306e\u307b\u304b":[155,170],"\u306e\u307f":[0,7],"\u306e\u307f\u3057\u304b":149,"\u306e\u3088\u3046":[36,37,42,79,81,99,135,136,137],"\u306f\u3044":170,"\u306f\u3044\u304f\u3064\u304b":[28,41,72,136,159],"\u306f\u3044\u3051":[46,56,84,137],"\u306f\u3053\u306e":[99,134,168],"\u306f\u3058\u307e\u308a":71,"\u306f\u3058\u3081":[13,18,39,71,102,146],"\u306f\u3059\u3079\u3066":[75,86,87,97,98,99,103,106,107,115,135,137,140,154,173],"\u306f\u305a":[35,114],"\u306f\u305d\u306e":46,"\u306f\u3061\u3087\u3046":137,"\u306f\u3068":151,"\u306f\u3069":[99,103,147],"\u306f\u3069\u3061\u3089":159,"\u306f\u3069\u3061\u3089\u304b":[136,137],"\u306f\u307b\u3068\u3093\u3069":99,"\u306f\u307e\u305a":8,"\u306f\u307e\u3060":[81,159],"\u306f\u307e\u3068\u3081\u3066":8,"\u306f\u307f":3,"\u306f\u6708":137,"\u3070\u3044\u3051":[17,24,35,43,46,49,54,56,59,65,69,79,81,99,103,115,134,136,137,145],"\u3070\u308c\u308b":31,"\u3072\u3053\u3055\u3093":[35,37],"\u3072\u3068\u3064":[35,122,136],"\u3072\u3089":[136,137,147],"\u3072\u308d":178,"\u3072\u308d\u3086\u304d":178,"\u3075\u306a\u3068":37,"\u3075\u308a":102,"\u3076\u3093":6,"\u3078\u306e":[24,170],"\u3079\u304d":[8,56,79,137,140,164],"\u3079\u304f":173,"\u3079\u3066":[99,115,171],"\u3079\u30fc\u30b9":37,"\u307b\u3046":37,"\u307b\u304b":[0,170],"\u307b\u3057\u304f":99,"\u307b\u3068\u3093\u3069":46,"\u307b\u3069":[102,103,113,162,170,173],"\u307e\u3057":[6,8,13,29,33,35,36,37,99,103,115,123,136,137,140,148,167,171,172,176],"\u307e\u3057\u3087":[99,123,172,173],"\u307e\u3059":[0,1,2,3,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,33,35,36,37,40,41,42,43,44,46,47,48,49,51,53,54,55,56,57,58,59,60,61,62,63,65,67,69,70,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,140,141,142,143,145,146,147,148,149,150,151,152,154,155,158,159,162,164,165,167,168,170,171,172,173,174,175,176,177,178,179,180],"\u307e\u305a":[8,13,24,27,114,115,137,165,167,171,173,175,176,179],"\u307e\u305b":[0,6,8,13,24,33,35,36,37,41,42,43,46,49,53,54,56,59,60,63,65,67,69,72,74,75,78,79,81,84,86,87,90,91,92,93,95,97,98,99,100,101,102,103,104,107,108,113,114,115,121,123,127,131,133,134,136,137,138,140,142,145,147,148,149,151,152,155,159,162,164,165,167,168,170,171,173,175,177,179],"\u307e\u305f":[8,10,15,17,24,33,34,37,43,46,59,65,72,76,77,78,79,80,82,83,85,87,88,89,90,93,99,100,101,103,104,105,109,113,114,115,121,123,127,133,136,137,143,151,155,159],"\u307e\u305f\u3044":[35,123],"\u307e\u305f\u3050":[18,35,123,169],"\u307e\u3060":[33,36,37,71,97,98,99,101,102,133,137,164],"\u307e\u3064\u308f":36,"\u307e\u3067":[7,8,13,28,36,37,41,42,86,99,113,114,121,138,151,171,173,175,176,178],"\u307e\u3068\u3081":[3,6],"\u307e\u3068\u3081\u3066":[0,8,170,171],"\u307e\u3068\u3081\u308b":115,"\u307e\u307e":[6,8,36,71,137,170,171],"\u307e\u307e\u3067":167,"\u307e\u308a":99,"\u307e\u308d\u3086\u304d":178,"\u307e\u308f\u308a":3,"\u307f\u304c":7,"\u307f\u305f\u3059":176,"\u307f\u3066":180,"\u307f\u306a\u3055":7,"\u307f\u307e\u3057\u3087":[99,137,170,171,172,173,175,176,179,180],"\u3080\u308b":[136,137],"\u3080\u308b\u3093":[136,137],"\u3082\u3046":[35,46,115,122,138,170,175],"\u3082\u3046\u307e\u304f":24,"\u3082\u304d\u3061\u3093":115,"\u3082\u3057":[17,24,36,37,42,72,74,99,103,114,115,121,123,131,134,136,137,145,159],"\u3082\u3057\u304f":[8,22,29,35,36,37,59,60,115,121,126,127,133,136,137,155,168,170,175,177],"\u3082\u3057\u3053\u306e":168,"\u3082\u3057\u3054":35,"\u3082\u3057\u308c":145,"\u3082\u3057x":36,"\u3082\u3059":95,"\u3082\u3061\u308d\u3093":[114,171],"\u3082\u3063\u3068":99,"\u3082\u3063\u3068\u3082":10,"\u3082\u3064":[84,171],"\u3082\u306e":[7,8,13,27,35,36,37,42,59,60,71,99,112,113,114,115,123,124,132,140,148,164,170,173,175],"\u3082\u3089\u3048":6,"\u3082\u3089\u3048\u308b":6,"\u3082\u3089\u3063":173,"\u3084\u304c":71,"\u3084\u3057":99,"\u3084\u3059\u3044":[30,99,127,133,135],"\u3084\u3059\u3044\u304b":145,"\u3084\u3059\u304f":[31,37],"\u3084\u305d\u306e":84,"\u3084\u307e":37,"\u3084\u307e\u3060":37,"\u3084\u307e\u306d":[36,37],"\u3084\u3081":[33,36,37],"\u3084\u3089":8,"\u3084\u308b":3,"\u3086\u304d":178,"\u3086\u304d\u3072\u308d":178,"\u3088\u3044":[13,56,99,136,137,159,171,175],"\u3088\u3046":[0,6,7,8,10,17,24,29,30,31,33,34,35,36,37,43,59,69,71,72,76,84,85,91,95,99,103,107,113,114,115,116,123,124,127,131,133,134,136,137,138,140,142,145,146],"\u3088\u304b\u3063":167,"\u3088\u304f":[69,99,121],"\u3088\u3063":180,"\u3088\u3063\u3066":[65,107,142,155,174,180],"\u3088\u3073":7,"\u3088\u308a":[7,19,24,31,33,35,36,37,60,69,99,103,114,123,124,136,137,138,145,147,155,165,167,170,171,175,176],"\u3089\u308c":[0,6,7,31,33,35,36,42,77,79,84,104,107,151,173,175,179],"\u3089\u308c\u308b":[0,7,35,36,37,43,60,165],"\u308c\u305a":71,"\u308c\u307e\u305b":[24,59,71,76,113,126,145,175],"\u308c\u308b":[0,5,7,8,10,13,24,33,35,36,37,42,46,51,57,60,67,69,71,75,76,81,90,91,97,98,99,102,103,113,114,121,123,133,134,138,140,142,147,148,150,151,155,164,165,167,173,180],"\u308f\u304b\u3061":165,"\u308f\u304b\u308a":[31,37,99,171],"\u308f\u304b\u308b":37,"\u308f\u304b\u308c":99,"\u308f\u3051":[99,106,107,137,147,170],"\u3092\u304a\u3053":176,"\u3092\u3054":10,"\u3092\u3054\u89a7\u304f":0,"\u3092\u3064\u3051":[99,136],"\u3092\u3064\u3051\u308b":137,"\u3092\u308a":115,"\u3092\u901a\u3057":[113,173],"\u3093\u304c":[136,137],"\u3093\u3057\u304d":135,"\u30a2\u30ab\u30a6\u30f3\u30c8":[2,8,37],"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":6,"\u30a2\u30af\u30bb\u30b5":56,"\u30a2\u30af\u30bb\u30b9":[8,13,31,33,35,36,37,41,59,81,99,112,113,115,116,170,177],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[147,148,150,158],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[69,99],"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":103,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[8,37,158],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":3,"\u30a2\u30c9\u30ec\u30b9":[33,59,113,114,177],"\u30a2\u30ca\u30a6\u30f3\u30b9":8,"\u30a2\u30d4\u30fc\u30eb":8,"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[0,16,52,137],"\u30a2\u30e1\u30ea\u30ab":123,"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[75,123,135],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[37,60,99,103,107,148,165,167],"\u30a2\u30ed\u30b1\u30fc\u30c8":101,"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":35,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[67,78,103],"\u30a2\u30fc\u30ab\u30a4\u30d6":[8,13,27],"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":3,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[3,4],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":37,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[8,33],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[18,19],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[0,3,8],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":33,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[31,33],"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":36,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":3,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[0,114,135],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":143,"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":17,"\u30a4\u30f3\u30c7\u30c3\u30af":175,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":18,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[18,30,36,37,39,53,65],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":28,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":36,"\u30a4\u30f3\u30dd\u30fc\u30c8":3,"\u30a6\u30a7\u30a4\u30c8":78,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":3,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[113,115,116],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":113,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":31,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[24,55,99,113],"\u30a8\u30b9\u30b1\u30fc\u30d7":[35,36,37,49,86,126,127,133],"\u30a8\u30c7\u30a3\u30bf":13,"\u30a8\u30e9\u30fc":[8,18,19,20,21,22,24,26,27,30,33,34,35,36,37,42,43,46,47,49,56,71],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[35,37,173],"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[33,35,37],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[30,31,33,34,35,36,37,71,72],"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":35,"\u30a8\u30e9\u30fc\u30ed\u30b0":162,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[24,30,37,46,48,49,113,137,140],"\u30a8\u30f3\u30b3\u30fc\u30c9":[31,116,140],"\u30a8\u30f3\u30b8\u30f3":[0,99,113,170,172],"\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":113,"\u30a8\u30f3\u30c8\u30ea":[42,43,99,134,136,137],"\u30a8\u30f3\u30c8\u30ea\u30fc":99,"\u30aa\u30b9\u30b9\u30e1":[19,20,21,22,26,27],"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":31,"\u30aa\u30d5\u30bb\u30c3\u30c8":[35,99,102],"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":34,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[18,33,35,37,39,42,43,46,56,59,65,69,76,77,83,91,92,95,107,108,130,135,137],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":133,"\u30aa\u30d7\u30b7\u30e7\u30f3":[8,10,20,21,22,23,24,25,26,30,31,33,34,35,36,37,46,47,91,99,101,103,106,107],"\u30aa\u30fc\u30ca\u30fc":36,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[33,36,37],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":33,"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[37,162],"\u30aa\u30fc\u30d7\u30f3":[33,35,36,42],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":17,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":17,"\u30ab\u30a6\u30f3\u30c8":[36,176],"\u30ab\u30b9\u30b1\u30fc\u30c9":[36,37],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[24,29,35,36,37,82,91,99,103,106,107,113,133,136,140,147,152,154,171],"\u30ab\u30b9\u30bf\u30e0":115,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":35,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":37,"\u30ab\u30bf\u30ab\u30ca":[60,102,140,147],"\u30ab\u30c6\u30b4\u30ea":[99,106,107],"\u30ab\u30d0\u30ec\u30c3\u30b8":3,"\u30ab\u30d0\u30fc":10,"\u30ab\u30e9\u30e0":[0,18,24],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[18,35,169],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":81,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[136,137],"\u30ab\u30e9\u30e0id":59,"\u30ab\u30e9\u30e0n":134,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[8,13,114],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":60,"\u30ab\u30ec\u30fc":165,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":165,"\u30ab\u30f3\u30de":[85,86,137,171,173],"\u30ab\u30fc\u30bd\u30eb":[31,33,53,60],"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":35,"\u30ad\u30e3\u30b9\u30c8":[31,34,35,36,136,176],"\u30ad\u30e3\u30c3\u30b7\u30e5":[0,30,35,42,47,75],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":75,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":42,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":115,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":36,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":115,"\u30ad\u30fc":[28,31,34,35,36,37,43,57,59,67,69,84,99,103,113,136,137,140,151,155,173],"\u30ad\u30fc\u30b5\u30a4\u30ba":151,"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":151,"\u30ad\u30fc\u30dc\u30fc\u30c9":99,"\u30ad\u30fc\u30ef\u30fc\u30c9":[0,18,30,32,35,36,99,103,126,127,131,133,136,149,165,166],"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":7,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":37,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":37,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[99,115],"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":112,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":30,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":35,"\u30af\u30a8\u30ea\u30da\u30a2":149,"\u30af\u30a8\u30ea\u30ed\u30b0":[33,35,147,148,150],"\u30af\u30a8\u30ea\u30fc":[18,35,37,39,49,95,99,102],"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":143,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":75,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":75,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":99,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":159,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[37,113,115],"\u30af\u30a8\u30ea\u30fcapi":[70,74],"\u30af\u30a9\u30fc\u30c8":[91,107,136],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":37,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":93,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[31,35,113,116],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[1,162],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":37,"\u30af\u30e9\u30c3\u30b7\u30e5":[31,33,35,36,37,81],"\u30af\u30ea\u30a2":[33,35,56],"\u30af\u30ea\u30c3\u30af":99,"\u30af\u30ea\u30fc\u30f3":8,"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":8,"\u30af\u30ed\u30fc\u30f3":24,"\u30b0\u30e9\u30d5":0,"\u30b0\u30eb\u30fc\u30d7":[0,35,36,37,59,67,99],"\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc":99,"\u30b0\u30ed\u30fc\u30d0\u30eb":[35,41],"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":42,"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":142,"\u30b1\u30fc\u30b9":[37,42,47,81,99,103,115,167,171,180],"\u30b2\u30c3\u30c8":2,"\u30b3\u30a2":[24,115,159],"\u30b3\u30b9\u30c8":[59,138],"\u30b3\u30d4\u30fc":[8,35,43,51,56,59,81,85],"\u30b3\u30de\u30f3\u30c9":[7,8,9,10,18,24,27,30,31,33,34,35,36,37,39,42,69],"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":7,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":7,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[18,31,37,39,46,70],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[27,35,114],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[8,13,14,24,27,33,37,85,113],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[24,71,72,114,158],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":143,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":136,"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":113,"\u30b3\u30de\u30f3\u30c9url":159,"\u30b3\u30df\u30c3\u30c8":8,"\u30b3\u30e1\u30f3\u30c8":[31,36,113,114,134,145,175],"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":175,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":175,"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":175,"\u30b3\u30e1\u30f3\u30c8id":176,"\u30b3\u30ed\u30f3":78,"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[42,46,134],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":164,"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":37,"\u30b3\u30f3\u30d1\u30a4\u30e9":[33,37],"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":24,"\u30b3\u30f3\u30d1\u30a4\u30eb":[34,36],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc":29,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":8,"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":71,"\u30b3\u30fc\u30c9":[13,36,37,107],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":7,"\u30b4\u30df":[31,33,76],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":76,"\u30b5\u30a4\u30ba":[0,19,20,21,22,26,27,28,33,35,36,37,43,54,56,59,60,76,103,133,151,164,168,170],"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":83,"\u30b5\u30a4\u30c8":[8,99,135,170,172],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":99,"\u30b5\u30b8\u30a7\u30b9\u30c8":[18,24,31,33,35,37,39,102,117],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":148,"\u30b5\u30d6\u30bb\u30c3\u30c8":[59,155],"\u30b5\u30d6\u30bf\u30b9\u30af":8,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":8,"\u30b5\u30dd\u30fc\u30c8":[0,1,6,8,17,24,26,30,31,33,34,35,36,37,60,71,97,98,103,107,114,115,131,133,136,137,138,140,142,143,145,151,155,159,162,170,171,175,177],"\u30b5\u30de\u30ea":36,"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":123,"\u30b5\u30f3\u30d7\u30eb":[31,32,35,36,99],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":31,"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[128,131,134],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[84,99,121,123,126,127,128,131,133,134],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":114,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[100,101],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":113,"\u30b5\u30fc\u30d0\u30fc":[1,18,20,21,22,26,33,35,36,37,39,110,115],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[18,35,37,156],"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":36,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":164,"\u30b5\u30fc\u30d0\u30fcid":33,"\u30b5\u30fc\u30d3\u30b9":[0,17,35,36,37],"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":36,"\u30b7\u30a7\u30a2":2,"\u30b7\u30a7\u30eb":[24,114,136],"\u30b7\u30b0\u30ca\u30eb":[33,37],"\u30b7\u30b9\u30c6\u30e0":[0,3],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":36,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":[29,151],"\u30b7\u30e3\u30fc\u30d7":103,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[36,91,107,113,173],"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":37,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":37,"\u30b7\u30f3\u30d7\u30eb":[135,158,171],"\u30b7\u30f3\u30dc\u30eb":78,"\u30b7\u30fc\u30b1\u30f3\u30b9":[147,148,150],"\u30b8\u30aa\u30b5\u30fc\u30c1":[18,33,169],"\u30b9\u30ab\u30e9":43,"\u30b9\u30ab\u30e9\u30fc":69,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[18,39,65],"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":69,"\u30b9\u30ad\u30c3\u30d7":[36,37],"\u30b9\u30ad\u30e3\u30f3":[126,127],"\u30b9\u30ad\u30fc\u30de":[49,84,85,99,121,123,126,127,128,131,133,134,136,137,138,154,175],"\u30b9\u30af\u30ea\u30d7\u30c8":3,"\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb":113,"\u30b9\u30b3\u30a2":[7,35,67,69,99,102,118,167,180],"\u30b9\u30b3\u30a2\u30fc":69,"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":36,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[113,116],"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":27,"\u30b9\u30c6\u30df\u30f3\u30b0":[37,152],"\u30b9\u30c6\u30fc\u30bf\u30b9":[36,74,164],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":35,"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":164,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[37,99,152,174],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":37,"\u30b9\u30c8\u30ea\u30fc\u30e0":37,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":36,"\u30b9\u30cb\u30da\u30c3\u30c8":[36,133],"\u30b9\u30da\u30a4\u30f3":123,"\u30b9\u30da\u30eb":145,"\u30b9\u30da\u30fc\u30b9":[33,36,99],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[33,159],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":33,"\u30b9\u30ec\u30c3\u30c9":[0,5,46,113,114,159],"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":115,"\u30b9\u30fc\u30d7":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":165,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[18,169],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":[29,37],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":37,"\u30bb\u30af\u30b7\u30e7\u30f3":[3,13,16,17,19,20,21,22,23,24,25,26,27,37,43,69,70,72,75,79,81,86,87,91,96,97,98,99,103,106,107,109,111,115,120,123,136,141,145,146,147,148,150,154,164,171],"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":35,"\u30bb\u30b0\u30e1\u30f3\u30c8":[37,56,76,83],"\u30bb\u30c3\u30b7\u30e7\u30f3":[93,113,164],"\u30bb\u30c3\u30c8":[7,56,59,60,77,106,165],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[13,36,118],"\u30bb\u30df\u30b3\u30ed\u30f3":114,"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":176,"\u30bd\u30b1\u30c3\u30c8":[35,76,77,78,80,82,83,85,88,89,90,93,100,101,104,105],"\u30bd\u30d5\u30c8":145,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":3,"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":172,"\u30bd\u30fc\u30b9":[8,18,19],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[8,24],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":8,"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[37,79],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":3,"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":13,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":27,"\u30bd\u30fc\u30c8":[18,30,31,33,36,59,99,102,142,151,169],"\u30bd\u30fc\u30c8\u30ad\u30fc":[30,59,99,102],"\u30bf\u30a4\u30c8\u30eb":[99,136,137,170,172,175],"\u30bf\u30a4\u30d7":[33,51,99,114,159],"\u30bf\u30a4\u30df\u30f3\u30b0":[35,173],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[36,41],"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[32,147,148,150],"\u30bf\u30b0":[8,18,31,33,35,36,37,69,99,103,126,127,128,133,137,151,169],"\u30bf\u30d6":[143,145,164],"\u30bf\u30fc\u30b2\u30c3\u30c8":35,"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":42,"\u30bf\u30fc\u30df\u30ca\u30eb":115,"\u30c0\u30a4\u30a2\u30ed\u30b0":36,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":159,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":158,"\u30c0\u30d6\u30eb":[33,35,103,136,137,151],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[91,107,113,173],"\u30c0\u30e1\u30fc\u30b8":167,"\u30c0\u30f3\u30d7":[31,35,36],"\u30c1\u30a7\u30c3\u30af":[31,33,35,36,37,76,111,112,114,121],"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":8,"\u30c1\u30e3\u30f3\u30af":76,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":76,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":76,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[18,33,35,37],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[69,99,168],"\u30c4\u30a4\u30fc\u30c8":2,"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":8,"\u30c4\u30ea\u30fc":37,"\u30c4\u30fc\u30eb":[13,18,19],"\u30c6\u30ad\u30b9\u30c8":[8,13,31,35,36,49,69,91,103,106,107,114,126,127,128,133,140],"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":114,"\u30c6\u30b9\u30c8":[3,4,8],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":10,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":8,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":114,"\u30c6\u30fc\u30d6\u30eb":[7,18],"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":104,"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":35,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":53,"\u30c7\u30a3\u30b9\u30af":[30,175],"\u30c7\u30a3\u30b9\u30afi":103,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[8,24,31],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[35,36],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":3,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":36,"\u30c7\u30b6\u30a4\u30f3":35,"\u30c7\u30d0\u30c3\u30b0":[37,76,107,115],"\u30c7\u30d5\u30a9\u30eb\u30c8":[7,24,30,31,33,34,35,36,37,41,44,46,48,55,69,71,82,86,90,99,102,103,106,107,112,113,114,115,123,124,131,136,137,138,143,155,159,165,167,170,171,173,177],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[35,103,148],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":37,"\u30c7\u30d5\u30e9\u30b0":33,"\u30c7\u30d7\u30ed\u30a4":115,"\u30c7\u30e1\u30ea\u30c3\u30c8":151,"\u30c7\u30fc\u30bf":[0,7,18,19,20,21,22,26,27,30,31,33,34,35,36,37,39,69,79,85,99,102],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":42,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[65,69],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":65,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[102,147],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":114,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":159,"\u30c7\u30fc\u30bf\u30d9\u30fc":33,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[0,7,16,18,24,30,33,35,36,37,42,47,67,76,77,78,79,83,85,86,87,92,95,103,108,111,113,114,115,118,119,135,136,137,140,147,151,155,158],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":36,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[30,103,176],"\u30c7\u30fc\u30e2\u30f3":[30,35,36,113,115],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":115,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[36,37,113],"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":10,"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":8,"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":171,"\u30c8\u30d4\u30c3\u30af":8,"\u30c8\u30e2":172,"\u30c8\u30e9\u30a4":[33,103,136,137,151],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[18,31],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":167,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":35,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":35,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[18,20,21,22,23,26,31,32,33,35,36,99,103,106,107,108,136,137,148,150,153,165,166],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[37,107],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":35,"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[24,33,99,103,106,107,140,148,150,152,165,167,173],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[106,107],"\u30c8\u30fc\u30af\u30f3":[31,33,36,37,103,106,107,137,140,148,150,151,152,165],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":37,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[18,21,26,37,39,103,106,107],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":152,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":152,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":3,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[11,14],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":8,"\u30c9\u30e1\u30a4\u30f3":[37,171],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[18,33,36,37],"\u30ca\u30ce":[31,72],"\u30cb\u30c3\u30dd\u30f3":147,"\u30cb\u30db\u30f3":147,"\u30cb\u30db\u30f3\u30b4":147,"\u30cb\u30db\u30f3\u30b8\u30f3":147,"\u30cb\u30e5\u30fc\u30b9":138,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[123,176],"\u30cd\u30b9\u30c8":[35,36,37,175],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[159,177],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[35,164],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":35,"\u30ce\u30a4\u30ba":[148,167],"\u30ce\u30fc\u30c9":[35,60],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[18,20,21,22,26,35,36,37,39,91,92,103,106,107,126,127],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":140,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[91,140],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":140,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[36,37,91,107],"\u30cf\u30a4\u30d5\u30f3":[103,173],"\u30cf\u30a4\u30e9\u30a4\u30c8":[126,127],"\u30cf\u30c3\u30b7\u30e5":[8,35,76,101],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[33,36,103,137,151],"\u30d0\u30a4\u30b0\u30e9\u30e0":167,"\u30d0\u30a4\u30c8":[31,33,35,36,37,43,46,60,74,99,133,151,155],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":35,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":49,"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":36,"\u30d0\u30a4\u30ca\u30ea":[8,27],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":35,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[1,10,18,169],"\u30d0\u30a4\u30ca\u30ea\u30fc":72,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[16,17,135],"\u30d0\u30b0":[6,33,36],"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":[35,37],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":3,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":85,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[36,49,113,136],"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":35,"\u30d0\u30c3\u30d5\u30a1":[35,36,43,49,51,54,56,59,76,175],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":76,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":36,"\u30d0\u30c3\u30d5\u30a1id":76,"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":151,"\u30d0\u30f3\u30c9\u30eb":[36,37],"\u30d1\u30a4\u30d7":78,"\u30d1\u30b9":[8,24,31,32,33,37,47,79,95,112,113,114,115,116,119,159,173,177],"\u30d1\u30bf\u30fc\u30f3":[72,137],"\u30d1\u30c3\u30b1\u30fc\u30b8":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":31,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":36,"\u30d1\u30c3\u30c1":12,"\u30d1\u30c8\u30ea\u30b7\u30a2":[18,35,60,165,169,173],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[31,33,36,103,136,137,151],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[136,137],"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[36,37,112,115,162],"\u30d1\u30e9\u30e1\u30bf":[41,42,43,44,46,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63],"\u30d1\u30e9\u30e1\u30fc\u30bf":[18,33,35,36,37,43,56,59,60],"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[27,33,34,37,99,103,107,115,131,134,145,170],"\u30d1\u30ea":123,"\u30d1\u30fc\u30b5\u30fc":136,"\u30d1\u30fc\u30b9":[33,48,49,135],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":37,"\u30d2\u30c3\u30c8":[7,36,99,138,147,165,167,176,178],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[99,135,167],"\u30d2\u30e5\u30d9\u30cb":[123,124],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":37,"\u30d3\u30c3\u30c8":[60,136],"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":137,"\u30d3\u30e5\u30fc":35,"\u30d3\u30eb\u30c8\u30a4\u30f3":36,"\u30d3\u30eb\u30c9":3,"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":37,"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[24,27],"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":24,"\u30d4\u30ea\u30aa\u30c9":[78,175],"\u30d5\u30a1\u30a4\u30eb":3,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":33,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":31,"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":35,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[43,47,56,59],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":145,"\u30d5\u30a1\u30bb\u30c3\u30c8":99,"\u30d5\u30a3\u30eb\u30bf":35,"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":36,"\u30d5\u30a3\u30eb\u30bf\u30fc":134,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":99,"\u30d5\u30a3\u30fc\u30eb\u30c9":79,"\u30d5\u30a9\u30eb\u30c0\u30fc":27,"\u30d5\u30a9\u30ed\u30ef\u30fc":8,"\u30d5\u30a9\u30ed\u30fc":2,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":176,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[76,85],"\u30d5\u30a9\u30fc\u30e0":[36,99,135,136],"\u30d5\u30c3\u30af":17,"\u30d5\u30e9\u30b0":[30,33,34,35,37,46,60,69,76,77,78,79,80,82,88,89,90,91,99,103,105,107,136,137,140,164,170,173,174,178],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":83,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[30,83],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":56,"\u30d5\u30e9\u30f3\u30b9":123,"\u30d5\u30ec\u30fc\u30ba":35,"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":10,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":69,"\u30d6\u30e9\u30a6\u30b6":[8,13,24,177],"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[18,169],"\u30d6\u30e9\u30b8\u30ea\u30a2":123,"\u30d6\u30e9\u30b8\u30eb":123,"\u30d6\u30ed\u30b0":3,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[99,136,137,175],"\u30d6\u30ed\u30c3\u30af":[0,36,115],"\u30d6\u30fc\u30ea\u30a2\u30f3":155,"\u30d6\u30fc\u30eb":[155,170],"\u30d7\u30e9\u30b0\u30a4\u30f3":[0,13,20,21,22,24,26,29,30,31,32,33,35,36,37,95,97,98,131,140,145,152],"\u30d7\u30e9\u30b0\u30a4\u30f3api":37,"\u30d7\u30e9\u30b0\u30de":99,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[10,13,19,24,33],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[115,151,173],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":158,"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":36,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":1,"\u30d7\u30ed\u30b0\u30e9\u30e0":[3,31,35,79,115,137],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[0,3],"\u30d7\u30ed\u30bb\u30b9":[0,35,36,71,76,81,93,95,101,112,113,114,115,159,173],"\u30d7\u30ed\u30bb\u30b9id":177,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":115,"\u30d7\u30ed\u30c8\u30b3\u30eb":[0,1,18,35,74,112,114,115,162],"\u30d7\u30ed\u30f3\u30d7\u30c8":143,"\u30d8\u30c3\u30c0":[36,37],"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":35,"\u30d8\u30c3\u30c0\u30fc":[29,35,37,74,159],"\u30d8\u30eb\u30d7":10,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[31,113],"\u30d9\u30af\u30bf":[30,31,35,36,56],"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[33,35,36],"\u30d9\u30af\u30bf\u30fc":[33,36,37,69,84,99],"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[18,36,37,39,65],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":69,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":37,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":114,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":36,"\u30d9\u30fc\u30b7\u30c3\u30af":159,"\u30d9\u30fc\u30b9":[0,13,31,33,35,37,59,60,107,136,137,158,162],"\u30d9\u30fc\u30b9\u30d1\u30b9":115,"\u30da\u30a2":[99,145,147,148,149,150,170,179],"\u30da\u30fc\u30b8":[2,8,13,18,35,36,99,113,116,173],"\u30da\u30fc\u30b9\u30c8":35,"\u30db\u30b9\u30c8":[8,33,35,112,113,114,177],"\u30dc\u30bf\u30f3":[8,13,35,36],"\u30dc\u30c3\u30af\u30b9":99,"\u30dc\u30c7\u30a3":[95,103,164],"\u30dd\u30a4\u30f3\u30bf":[46,56,57,59,60,62],"\u30dd\u30a4\u30f3\u30c8":[69,145],"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[33,36],"\u30dd\u30fc\u30c8":[36,112,113,114,143,159,162,177],"\u30de\u30a4\u30af\u30ed":[137,155,170,176],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[18,169],"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":142,"\u30de\u30af\u30ed":[33,36,56],"\u30de\u30b7\u30f3":113,"\u30de\u30c3\u30c1":[7,24,30,33,36,37,49,58,69,99,121,126,127,131,133,134,135,136],"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":24,"\u30de\u30c3\u30d4\u30f3\u30b0":168,"\u30de\u30c9\u30ea\u30fc\u30c9":123,"\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8":113,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[36,37,79,175],"\u30de\u30eb\u30c1\u30b3\u30a2":0,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":24,"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[37,159],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":36,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":80,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":33,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[33,159],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":37,"\u30de\u30fc\u30b8":[13,35],"\u30df\u30b9":147,"\u30df\u30ea":[33,137,155,170,180],"\u30df\u30ea\u79d2":155,"\u30e1\u30bf\u30c7\u30fc\u30bf":[79,97,98],"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":35,"\u30e1\u30c3\u30bb\u30fc\u30b8":[37,71,176],"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":36,"\u30e1\u30e2\u30ea":[19,20,21,22,26,27,31,35,36,37,42,46,56],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":10,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":31,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":101,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[10,30,31,33,35,36,37,78],"\u30e1\u30e2\u30ea\u30fc":103,"\u30e1\u30f3\u30d0":59,"\u30e1\u30fc\u30c8\u30eb":[123,124],"\u30e1\u30fc\u30eb":[13,15],"\u30e2\u30b8\u30e5\u30fc\u30eb":[0,18,31,71],"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":36,"\u30e2\u30cb\u30bf\u30fc":[20,21,22,26],"\u30e2\u30fc\u30c9":[7,37,107,116,173,177],"\u30e6\u30fc\u30b6":[7,8,35,78,99,114,147,148,149,150,155,173],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":62,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":7,"\u30e6\u30fc\u30b6\u30fc":[3,4],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":6,"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":69,"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":31,"\u30e9\u30a4\u30bb\u30f3\u30b9":35,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[7,113],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":37,"\u30e9\u30d9\u30eb":[36,37,99],"\u30e9\u30f3\u30ad\u30f3\u30b0":[37,173],"\u30e9\u30f3\u30c0\u30e0":180,"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":0,"\u30ea\u30af\u30a8\u30b9\u30c8":[36,37,70,73,76,77,78,80,82,83,85,88,89,90,93,96,99,100,101,104,105,112,115,116,137,159,164],"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":164,"\u30ea\u30af\u30a8\u30b9\u30c8id":[18,39,70],"\u30ea\u30af\u30a8\u30b9\u30c8uri":115,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":35,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":37,"\u30ea\u30b9\u30c8":[8,9,13,35,49,86,99,104,113,136,137,140,142,145,152,153,172,173],"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":8,"\u30ea\u30bd\u30fc\u30b9":[37,42,138],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[18,35,37,39,70,72],"\u30ea\u30c6\u30e9\u30eb":[30,33,35,126,127,133,136],"\u30ea\u30c8\u30e9\u30a4":41,"\u30ea\u30cd\u30fc\u30e0":33,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed":115,"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":8,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":37,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[18,37],"\u30ea\u30dd\u30b8\u30c8\u30ea":[3,4,8],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":8,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":26,"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[18,169],"\u30ea\u30ea\u30fc\u30b9":[3,4,6],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":3,"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":8,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":8,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":3,"\u30ea\u30f3\u30af":[8,9,35,36,37,99,136,137,170],"\u30eb\u30fc\u30c8":33,"\u30eb\u30fc\u30d7":[31,35,37],"\u30eb\u30fc\u30eb":[31,37,99,107,159],"\u30ec\u30a4\u30e4":7,"\u30ec\u30b3\u30fc\u30c9":[0,7,18,28,29,31,33,35,36,37,43,49,53,54,56,58,59,60,67,69,82,84,86],"\u30ec\u30b3\u30fc\u30c9id":[18,35,39,53,56,59],"\u30ec\u30b3\u30fc\u30c9r":7,"\u30ec\u30b9\u30c8\u30e9\u30f3":0,"\u30ec\u30b9\u30dd\u30f3\u30b9":[33,35,36,37,42,74,159,164],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":159,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":159,"\u30ec\u30d9\u30eb":[35,37,88,89,113],"\u30ec\u30dd\u30fc\u30c8":24,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":0,"\u30ec\u30fc\u30bf":35,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":121,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":30,"\u30ed\u30ae\u30f3\u30b0":46,"\u30ed\u30b0":[8,30,32,33,35,37,88,89],"\u30ed\u30b0\u30a4\u30f3":8,"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":37,"\u30ed\u30b0\u30d1\u30b9":31,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[24,71,90,99,114,168],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[35,36],"\u30ed\u30b0\u30ec\u30d9\u30eb":[113,115],"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":35,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":8,"\u30ed\u30b4":35,"\u30ed\u30c3\u30af":[30,33,35,36,41,56,77,87,113],"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[36,41],"\u30ed\u30f3\u30c9\u30f3":123,"\u30ed\u30fc\u30ab\u30eb":[8,137],"\u30ed\u30fc\u30c9":[0,18,31,33,36,37],"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":35,"\u30ed\u30fc\u30de":147,"\u30ef\u30a4\u30c9":33,"\u30ef\u30fc\u30ab":115,"\u30ef\u30fc\u30ab\u30fc":115,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":36,"\u30fb\u30b5\u30fc\u30d0":173,"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":176,"\u30fb\u5168":82,"\u30fb\u5186":0,"\u30fb\u6d6e\u52d5\u5c0f":99,"\u30fb\u81ea\u5df1\u7d39":176,"\u30fbor":180,"\u4e00\u3064":[0,42,43,46,59,71,76,77,78,80,82,83,85,88,89,90,93,100,101,104,105,122,123,124,125,128,130,132,134,155,165,170],"\u4e00\u4ef6\u9032\u3081":60,"\u4e00\u500b":7,"\u4e00\u5bfe":170,"\u4e00\u5de5":178,"\u4e00\u5ea6":[33,35,37,41,95,115,138,140,145,171,175],"\u4e00\u5f0f":56,"\u4e00\u610f":[67,78,113],"\u4e00\u62ec\u3057":59,"\u4e00\u6587\u5b57":37,"\u4e00\u65b9":[0,99,127,131,133,134,136,137,167,170,173,175],"\u4e00\u6642":[18,39,56,123],"\u4e00\u6642\u7684":[56,168],"\u4e00\u6642\u7d50\u679c":35,"\u4e00\u6b69":173,"\u4e00\u6c17":8,"\u4e00\u756a":[24,69,99,159],"\u4e00\u756a\u5de6":137,"\u4e00\u77ed":0,"\u4e00\u7dd2":[30,35,37,43,46,69,99,103,123,167,173],"\u4e00\u7fa4":7,"\u4e00\u81f4":[7,8,18,30,32,34,35,37,46,59,60,99,102,103],"\u4e00\u81f4\u3057":[37,99,165],"\u4e00\u81f4\u7528":178,"\u4e00\u822c":[0,42,56,99,135,136,173],"\u4e00\u822c\u7684":0,"\u4e00\u884c":[31,113,114],"\u4e00\u89a7":[13,18,39],"\u4e00\u8a9e":167,"\u4e00\u8cab\u6027":6,"\u4e00\u90e8":[8,35,80,149,173],"\u4e00\u9577":0,"\u4e09\u3064":[123,165],"\u4e09\u756a\u76ee":137,"\u4e09\u8c37":37,"\u4e09\u8c37\u3055\u3093":37,"\u4e0a\u3052\u308b":167,"\u4e0a\u4f4d":[59,167],"\u4e0a\u554f":162,"\u4e0a\u66f8\u304d":[8,180],"\u4e0a\u8a18":[13,17,24,28,35,99,103,114,121,128,131,134,145,148,150,167,171,173,177,180],"\u4e0a\u8a18url":8,"\u4e0a\u8ff0":145,"\u4e0a\u91ce":31,"\u4e0a\u9650":[5,18],"\u4e0b\u304c\u308a":167,"\u4e0b\u3055\u3044":[1,8,19,20,21,22,26,27,35,36,59,79,107],"\u4e0b\u66f8\u304d":142,"\u4e0b\u8a18":[7,60,71,76,81,101],"\u4e0b\u90e8":8,"\u4e0b\u9650":[53,60],"\u4e0d\u5177\u5408":[3,35,36,37],"\u4e0d\u5909":67,"\u4e0d\u5b8c\u5168":33,"\u4e0d\u6574\u5408":30,"\u4e0d\u6b63":[10,30,31,33,36,37,103],"\u4e0d\u6b63\u78ba":[35,101],"\u4e0d\u80fd":114,"\u4e0d\u8981":[0,35,36,37],"\u4e0d\u8db3":[19,20,21,22,26,27,37],"\u4e0d\u9069\u5207":[35,37],"\u4e0e\u3048":[7,35,36,48,60,86,113,167,173,177],"\u4e0e\u3048\u308b":[71,86,112,113,180],"\u4e16\u4ee3":71,"\u4e16\u754c":[123,124,125,155,170,180],"\u4e21\u65b9":[0,69,99,136,137,138,147,151,176,178],"\u4e21\u8005":180,"\u4e26\u3073":[137,165],"\u4e26\u3073\u9806":180,"\u4e26\u3079":[18,169],"\u4e2d\u4e95":36,"\u4e2d\u56fd":123,"\u4e2d\u592e\u5024":37,"\u4e2d\u5fc3":124,"\u4e2d\u65ad":[33,35,37,51],"\u4e2d\u7a0b\u5ea6":[19,20,21,22,26,27],"\u4e2d\u8eab":[37,114,164,173],"\u4e2d\u9593":[7,165],"\u4e38\u62ec":173,"\u4e3b\u30ad\u30fc":[18,31,35,67,86,104],"\u4e3b\u8981":19,"\u4e43\u6bc5":31,"\u4e71\u6570":[132,180],"\u4e88\u3081":[113,155],"\u4e88\u5b9a":[12,33,69,71,97,98,123,133,159],"\u4e88\u7d04":78,"\u4e8b\u524d":[8,97,98,149,167],"\u4e8b\u67c4":6,"\u4e8b\u9805":18,"\u4e8c\u3064":[7,46,71,91,106,107,114,123,131,134,165],"\u4e8c\u756a\u76ee":137,"\u4e8c\u91cd":[36,37,136],"\u4e8c\u9805":137,"\u4e92\u63db":[8,20,21,22,26,29,37,71,91,116,137,159],"\u4e92\u63db\u6027":8,"\u4e94\u5165":33,"\u4eac\u90fd":[165,167],"\u4eba\u3068":6,"\u4eca\u56de":[35,133,137,173],"\u4eca\u5f8c":[33,90,97,107],"\u4ecb\u3057":[0,177],"\u4ecb\u6587":176,"\u4ed5\u65b9":3,"\u4ed5\u69d8":[18,31,34,35,37,55,71,102,115,116],"\u4ed5\u7d44":[13,159],"\u4ed5\u7d44\u307f":[35,115],"\u4ed8\u3044":140,"\u4ed8\u304d":[18,25,31,69,74,99,102,136],"\u4ed8\u3051":[35,84,121,126,127,159,170,173,175,177],"\u4ed8\u3051\u308b":[5,137,140,152,173,179],"\u4ed8\u4e0e":[43,59,67,114,172],"\u4ed8\u5c5e":[115,116],"\u4ed8\u968f":[80,105],"\u4ee3\u308a":[35,123,136],"\u4ee3\u308f\u308a":[24,27,103,113,115,126,127,133,136,140,177],"\u4ee3\u5165":[7,31,36,136],"\u4ee3\u8868":0,"\u4ee5\u4e0a":[7,8,10,13,27,35,36,37,43,46,60,65,69,79,99,102,103,113,114,115,126,131,133,134],"\u4ee5\u4e0b":[7,8,10,13,14,17,24,27,28,33,35,37,42,43,45,47,49,56,65,69,72,73,74,76,78,79,81,84,85,86,87,88,89,91,92,95,96,99,102,103,104,106,107,108,109,111,113,114,115,116,121,123,124,126,127,128,131,133,134],"\u4ee5\u5185":[137,147,148,176,180],"\u4ee5\u524d":[33,35,36,37,140,167,170,176],"\u4ee5\u5916":[0,7,8,31,33,36,37,42,43,46,47,49,53,56,59,61,69,99,101,103,114,136,142,151,155],"\u4ee5\u964d":[8,10,13,31,33,36,37,113,126,127,128,140,142,177],"\u4eee\u60f3":[36,171,180],"\u4ef6\u542b":176,"\u4ef6\u6570":[37,56,59,67,86,99,165,167,173],"\u4efb\u610f":[0,8,113,114,155,173],"\u4f1a\u793e":37,"\u4f1d\u7d71":0,"\u4f3c\u305f":140,"\u4f4e\u3044":[99,167],"\u4f4e\u304f":167,"\u4f4e\u4e0b":36,"\u4f4e\u6a5f":7,"\u4f4e\u6e1b":[31,162],"\u4f4f\u3093":176,"\u4f4f\u6240":35,"\u4f53\u8fd1":124,"\u4f55\u3089\u304b":155,"\u4f55\u500b":99,"\u4f55\u5ea6":36,"\u4f59\u308a":137,"\u4f59\u8a08":6,"\u4f5c\u3063":[33,59,60,115,140,147,167,171],"\u4f5c\u3089\u308c":[37,114],"\u4f5c\u308a":[37,103,147,148,175],"\u4f5c\u308b":[5,13,37,69,99,103,135,137,148,172,176,179],"\u4f5c\u6210":3,"\u4f5c\u6210\u6e08":113,"\u4f5c\u696d":[3,6],"\u4f5c\u7528":35,"\u4f75\u305b":173,"\u4f7f\u3044":[0,7,11,13,14,17,18,20,21,22,23,24,26,29,33,37,41,47,49,69,72,84,91,99,102,103,106,107,115,127,128,133,135,136,137,138,140,145,146,147,148,150,152,155,159],"\u4f7f\u3044\u5206\u3051":[165,167],"\u4f7f\u3044\u65b9":[0,18,39],"\u4f7f\u3046":[7,8,12,17,19,20,21,22,24,26,30,31,33,35,36,37,40,42,43,49,69,72,75,84,85,91,95,97,98,99,102,103,107,114],"\u4f7f\u3048":[17,33,36,37,78,99,103,107,115,120,121,135,136,137,158,171],"\u4f7f\u3048\u308b":[17,24,33,35,36,37,99,113,136],"\u4f7f\u3063":[3,6,7,8,13,15,16,17,19,20,21,22,23,24,26,27,34,35,36,37,46,53,69,72,74,75,76,78,91,98,99,103,107,115,127,131,133,135,136,137,140,145,148,149,155,159,164,165,167,170,171,172,173,176,177,178,179,180],"\u4f7f\u308f":[8,17,33,36,37,42,46,74,99,103,107,115,121,135,136,140,145,147,151,164,171,172,179],"\u4f7f\u308f\u305a":131,"\u4f7f\u7528":[7,8,30,31,35,36,37,42,43,46,56,57,59,62,71,76,78,79,81,84,86,91,92,96,99,101,106,107,108,109,113,114,115,116,123,126,131,134,136,137],"\u4f7f\u7528\u4f8b":123,"\u4f8b\u3068\u3057\u3066":170,"\u4f8b\u3068\u3068\u3082":123,"\u4f8b\u5916":[22,37,97,98],"\u4f9d\u5b58":[18,19],"\u4fbf\u5229":[0,1,24,43,69,72,91,99,107,135,136,147,170],"\u4fc2\u6570":[7,99],"\u4fdd\u5b58":[18,35,36,69,79,99],"\u4fdd\u6301":[42,46,170,174,176],"\u4fdd\u8a3c":[71,76],"\u4fee\u5e73":37,"\u4fee\u6b63\u4e2d":148,"\u500b\u3005":[7,71,167],"\u500b\u4eba":24,"\u500b\u5225":8,"\u500b\u5b9a":5,"\u500b\u6240":37,"\u500b\u6570":[35,43],"\u500d\u7cbe":155,"\u5019\u88dc":[102,147,148,149],"\u5024\u304b":123,"\u5024\u3054":171,"\u5024\u3054\u3068":171,"\u5024\u3060\u3051":137,"\u5024\u3068":[99,136,170],"\u5024\u3068\u3057\u3066":[113,123,168,176],"\u5024\u306a\u3057":34,"\u5024\u306a\u3089":36,"\u5024\u3088\u308a":[7,99],"\u5024\u578b":170,"\u5024\u57df":65,"\u5024\u6bce":171,"\u5024\u7528":33,"\u5024\u8a18":137,"\u505c\u6b62":[36,71,81,100,113],"\u5065\u4f5c":172,"\u5074\u9762":0,"\u5076\u6570":137,"\u5099\u8003":36,"\u50be\u5411":175,"\u512a\u308c":0,"\u512a\u5148":[0,114,147],"\u5143\u6c17":36,"\u5148\u60c5":176,"\u5148\u982d":[51,56,99,115,173],"\u5149\u7537":36,"\u5165\u3063":[10,35,36,72,147,164,172,173,175],"\u5165\u308a":[137,171,173],"\u5165\u308b":104,"\u5165\u308c":[167,172,176],"\u5165\u529b":[30,33,34,36,72,76,77,78,80,82,83,85,86,88,90,93,99,101,102,104,105,112,113,114,137,147,148,149,150,173,177],"\u5165\u529b\u30df\u30b9":148,"\u5168\u3066":[13,59,99,115,135,137,138,155,175],"\u5168\u4e16\u754c":36,"\u5168\u4ef6":[60,136,137],"\u5168\u4f53":[18,24,36,39,40],"\u5168\u6587\u691c":[18,31,103,169],"\u5168\u6587\u691c\u7d22":[35,103],"\u5168\u89d2":[33,60,140,173],"\u5168\u90e8":164,"\u5168suffix":59,"\u516c\u5e73":36,"\u516c\u5f0f":[20,22,33,131],"\u516c\u8f14":36,"\u516c\u958b":[8,31,33,36,37,42],"\u516c\u958b\u9375":8,"\u5171\u306b":[43,56],"\u5171\u901a":[6,33,137,151,155,175],"\u5171\u901a\u63a5":151,"\u5177\u4f53":[167,171,175],"\u5177\u5408":99,"\u5185\u5bb9":[6,8,13,35,37,47,51,54,60,72,79,99,104,112,114,133,136,137,147,150,154,162,170,173,175,176,177],"\u5185\u8a33":167,"\u5185\u8fd1\u304f":137,"\u5185\u90e8":[8,34,37,42,46,52,56,59,101,133,170],"\u5186\u6ed1":8,"\u518d\u3073":37,"\u518d\u5229":[37,67,99,151],"\u518d\u5e30":[7,56,77,99,105,115,145],"\u518d\u5ea6":[7,37,41],"\u518d\u691c":135,"\u518d\u69cb":33,"\u518d\u73fe":[6,36,135,167],"\u518d\u751f":115,"\u518d\u767a":37,"\u518d\u8aad":[90,145],"\u518d\u8d77":[145,154,162],"\u518d\u8d77\u52d5":95,"\u51e6\u7406":[0,7,13,30,31,35,36,37,51,67,70,74,91,99,103,106,107,114,115,127,133,136,137,152,159,164,165,180],"\u51fa\u3055":36,"\u51fa\u3057":176,"\u51fa\u3059":176,"\u51fa\u305b\u308b":0,"\u51fa\u529b":[0,3,10],"\u51fa\u6765":[107,172,175],"\u51fa\u6765\u308b":176,"\u51fa\u73fe":[0,43,79,102,174],"\u5206\u304b\u3061":0,"\u5206\u3051":[8,18,79],"\u5206\u3051\u308b":[8,170],"\u5206\u5272":[0,33,137,151,165,173],"\u5206\u5c90":10,"\u5206\u6790":0,"\u5206\u89e3":7,"\u5206\u985e":[170,171],"\u5206z":155,"\u5207\u3089":37,"\u5207\u308a":[8,33,36,37,93],"\u5207\u308a\u6368\u3066":170,"\u5207\u308b":[37,115],"\u5217\u4e2d":137,"\u5217\u578b":[37,136,170,171],"\u5217\u5f0f":49,"\u5217\u5f15":7,"\u5217\u60c5":107,"\u5217\u6307\u5411":[0,113],"\u5217\u6319":173,"\u5217\u8868":[49,155],"\u521d\u56de":13,"\u521d\u671f":[0,31,33,35,37,47,56],"\u521d\u671f\u5024":112,"\u521d\u671f\u5316":[35,46,57],"\u5224\u5b9a":180,"\u5224\u65ad":[47,137],"\u5225\u3005":[99,171],"\u5225\u9014":[56,155],"\u5225\u9014deb":8,"\u5229\u70b9":0,"\u5229\u7528":[0,1,6,8,10,13,18,19,20,21,22,24,26,27,33,35,36,37,39,42,47,59,72,85,103,107,111,113,114],"\u5229\u7528\u4f8b":0,"\u5230\u9054":28,"\u5236\u5fa1":[35,115,121,131],"\u5236\u7d04":28,"\u5236\u9650":18,"\u524a\u9664":[0,30,31,33,34,35,36,37,51,56,58,59,60,67,80],"\u524d\u3082\u3063":29,"\u524d\u4ed8\u304d":56,"\u524d\u56de":8,"\u524d\u5f8c":[113,173],"\u524d\u63d0":3,"\u524d\u65b9":[7,18,30,32,34,35,37,60,102,103],"\u524d\u8005":[140,145,180],"\u524d\u8ff0":[103,115,140,167],"\u5270\u4f59":37,"\u5272\u308a":[46,104,107,137,151,170],"\u5272\u308a\u5f53\u3066":[31,42],"\u5272\u308a\u5f53\u3066\u308b":[73,151,170,173],"\u52a0\u3048":[7,17,170,178],"\u52a0\u3048\u308b":[33,78],"\u52a0\u308f\u308b":6,"\u52a0\u7b97":[56,67,69],"\u52b9\u679c":176,"\u52b9\u7387":175,"\u52d5\u304b":[36,37],"\u52d5\u304d":[99,159],"\u52d5\u304f":[24,33,35,158],"\u52d5\u4f5c":3,"\u52d5\u5c0f":155,"\u52d5\u74b0":112,"\u52d5\u753b":172,"\u52d5\u7684":[0,18,31,34,39,115],"\u52e7\u3081":37,"\u5316\u4f5c":8,"\u5316\u51e6":[33,67],"\u5316\u524d":67,"\u5316\u5bfe":13,"\u5316\u65b9":[91,140],"\u5316\u6642":33,"\u5316\u6e08":[47,56],"\u5316\u6f0f\u308c":35,"\u5316\u95a2":31,"\u5317\u4eac":123,"\u5317\u534a\u7403":35,"\u533a\u5207\u3063":[91,99,106,107,164],"\u533a\u5207\u3089":33,"\u533a\u5207\u308a":[0,35,85,86,99,102,107,112,113,136,137,143,150,155,170,171,173],"\u533a\u5207\u308b":[31,99,145],"\u533a\u5225":[99,155,178],"\u5341\u5206":[54,167,168],"\u5341\u5206\u6c17":99,"\u534a\u5f84":124,"\u534a\u7121":[33,103],"\u534a\u89d2":[60,140,173],"\u5354\u529b":[3,4],"\u5357\u534a":35,"\u5358\u306b":[36,98],"\u5358\u4e00":78,"\u5358\u4f4d":[0,31,33,61,70,72,123,124,133,137,155,164,165,173,176],"\u5358\u4f53":[0,114],"\u5358\u72ec":[43,114],"\u5358\u7d14":[7,124,178],"\u5358\u8a9e":[35,99,135,136],"\u5360\u6709":56,"\u5371\u967a":[8,81,159],"\u539f\u56e0":[6,18,114,166],"\u539f\u99c5":180,"\u53b3\u5bc6":[37,147],"\u53c2\u52a0":[2,3],"\u53c2\u7167\u5143":170,"\u53c2\u7167\u5148":36,"\u53c2\u8003":[8,18,39],"\u53ca\u3073":114,"\u53cb\u4eba":172,"\u53cc\u65b9":6,"\u53cd\u6620":[0,7,8,154],"\u53cd\u8ee2":137,"\u53ce\u96c6":[0,72],"\u53d6\u308a\u51fa\u3055":170,"\u53d6\u308a\u51fa\u3057":[53,60,173],"\u53d6\u308a\u51fa\u3059":[7,31,53,60,170],"\u53d6\u308a\u5f97\u308b":155,"\u53d6\u308a\u8fbc\u307e":8,"\u53d6\u308a\u8fbc\u307f":33,"\u53d6\u308a\u9664\u3044":59,"\u53d6\u308a\u9664\u304d":[7,128],"\u53d6\u308b":[137,164],"\u53d6\u308c\u308b":86,"\u53d6\u5f97":[3,6],"\u53d7\u3051":[5,35,36,37,115,121,123,137,159,164,173,177,179],"\u53d7\u3051\u308b":[37,162],"\u53d7\u3051\u4ed8\u3051":[31,35,137],"\u53d7\u3051\u53d6\u3063":0,"\u53d7\u3051\u53d6\u308a":[7,115,173],"\u53d7\u4ed8":[36,179],"\u53e4\u3044":8,"\u53e4\u304f":37,"\u53ef\u5426":173,"\u53ef\u5909":[33,79,83,164],"\u53ef\u8aad":37,"\u53f3\u4e0a":30,"\u53f3\u4e0b":[30,125],"\u53f3\u8fba":[31,33],"\u5404\u547d":114,"\u5404\u56fd":8,"\u5404\u7a2e":8,"\u5404\u7d22":173,"\u5404\u8981":69,"\u5404\u8a9e":76,"\u5408\u308f\u305b":[35,43,137],"\u5408\u81f4":[173,180],"\u5408\u8a08":[28,37,76,99,114,151,167,168],"\u5409\u7530":36,"\u540c\u3058":[0,18,30,31,33,37,46,49,60,69,71,72,90,95,99,102,104,107,113,114,115,116,131,137,140,145,148,155,159,166],"\u540c\u3058\u4f8b":175,"\u540c\u3058\u5024":[115,173],"\u540c\u3058\u578b":69,"\u540c\u3058\u6570":[113,115,159],"\u540c\u3058\u91cd\u307f":131,"\u540c\u6642":[0,5,59,60,71,99,114,180],"\u540c\u671f":[8,114],"\u540c\u68b1":[13,31,35,37],"\u540c\u69d8":[7,8,60,114,142,170,177,180],"\u540c\u7b49":[114,165],"\u540c\u7fa9":145,"\u540d\u524d":[8,13,18,31,32,33,35,39,43,46,47,56,57,59,61],"\u540d\u7b49":56,"\u540dn":[99,104],"\u5411\u3044":[37,72,99,151],"\u5411\u3051":3,"\u5411\u4e0a":[33,115,135,159,162],"\u5426\u304b":121,"\u5426\u5b9a":[7,99],"\u542b\u307e":[7,8,20,35,37,72,79,86,95,97,98,99,103,104,121,131,133,136,137,145,150,159,165,173,176],"\u542b\u307e\u308c":[0,36,72,95,99,103,121,133,165],"\u542b\u307e\u308c\u308b":[0,7,8,99,113,126,127,167,170,173],"\u542b\u307f":[60,72],"\u542b\u3080":[5,7,35,36,37,69,78,99,102,112,136,137,165,173,175,176],"\u542b\u3080\u5024":[113,173],"\u542b\u3080\u5168\u3066":81,"\u542b\u3081":[8,99,121,136,145],"\u542b\u3081\u308b":[8,33,34,37,91,99,107,136,145,173],"\u542b\u3093":[7,37,72,99,133,136,137,148,149,170,176],"\u5438\u53ce":173,"\u5468\u4e0a":124,"\u5468\u8fba":[35,133],"\u547c\u3070":[36,46,57,59,81,99,137,155,173],"\u547c\u3073":[7,69,99,113,114,133,170],"\u547c\u3073\u5143":46,"\u547c\u3073\u51fa\u3055":[51,99],"\u547c\u3073\u51fa\u3057":[0,7,31,35,37,46,85,133,135],"\u547c\u3073\u51fa\u3059":[122,124,125,130,132,135],"\u547c\u3076":[10,35,135],"\u547c\u3093":[37,99,165,171],"\u547c\u51fa":[43,54,56,59],"\u547d\u4ee4":113,"\u547d\u540d":35,"\u548c\u5e83":36,"\u554f\u3044\u5408\u308f":7,"\u554f\u984c":[8,13,29,30,31,32,33,35,36,37,42,46,76,78,114,115,136,137,168,173],"\u559c\u3073":[12,13],"\u56db\u3064":165,"\u56db\u5247":37,"\u56db\u6368":33,"\u56db\u89d2\u5f62":142,"\u56de\u52d5":114,"\u56de\u547c":31,"\u56de\u6307\u5b9a":136,"\u56de\u6570":35,"\u56de\u7279":114,"\u56de\u7e70\u308a":114,"\u56de\u907f":[8,18,37,166,167],"\u56f0\u3063":6,"\u56f0\u96e3":[0,35],"\u56f2\u307e":[127,133],"\u56f2\u307f":[113,126,127,133],"\u56f2\u3080":[36,133,173],"\u56f2\u3093":137,"\u56fa\u5b9a":[37,56,60,79,103,164,173],"\u56fa\u5b9a\u9577":31,"\u56fa\u6709":[51,69],"\u56fd\u3054":171,"\u56fd\u540d":171,"\u56fd\u969b":13,"\u56fd\u969b\u5316":[3,11],"\u570f\u5185":176,"\u5727\u7e2e":[24,33,35,36,37,43,78,158],"\u5730\u56f3":0,"\u5730\u57df":0,"\u5730\u5f62":[123,124],"\u5730\u70b9":[123,180],"\u5730\u7cfb":123,"\u578b\u304b":155,"\u578b\u3068\u3057\u3066":155,"\u578b\u540d":79,"\u578b\u5909":33,"\u578b\u60c5":35,"\u578b\u6307":35,"\u578b\u7528":49,"\u578bn":99,"\u57cb\u3081\u8fbc\u307e":8,"\u57cb\u3081\u8fbc\u307f":[127,133],"\u57cb\u3081\u8fbc\u3080":114,"\u57f7\u7b46":[142,174,175],"\u57fa\u6570":137,"\u57fa\u672c":[0,8,18,35,37,99],"\u57fa\u6e96":[0,8,170,173],"\u57fa\u76e4":46,"\u5831\u4ee5":107,"\u5831\u544a":[3,6],"\u5834\u5408":[6,7],"\u5834\u6240":2,"\u5883\u754c":[35,123],"\u5897\u3048":[69,97,107,175],"\u5897\u3048\u308b":[92,108],"\u5897\u3084":69,"\u5897\u3084\u3059":[10,69,99],"\u5897\u5206":99,"\u5897\u52a0":[36,99],"\u5897\u5927":123,"\u58ca\u3059":35,"\u58ca\u308c":[31,33,35,76,111],"\u58ca\u308c\u308b":[30,31,33,35,36,37],"\u5909\u3048\u308b":[99,167],"\u5909\u308a":37,"\u5909\u308f\u308a":[75,76,165,180],"\u5909\u308f\u308b":[126,127,133,167],"\u5909\u5316":0,"\u5909\u63db":[33,60,74,115,137,140,151,155,176],"\u5909\u6570":[8,10,25,29,32,33,34,35,36,37,57,63,99,137,145],"\u5909\u66f4":[8,17,18,24,30],"\u5909\u66f4\u5f8c":[44,46,48,55,56,59],"\u5909\u66f4\u70b9":3,"\u5916\u90e8":5,"\u591a\u3044":[136,137,167],"\u591a\u304f":[33,99,103,113,115,133,158,162,167,170,173],"\u591a\u3059\u304e":31,"\u591a\u3059\u304e\u308b":99,"\u591a\u5f69":0,"\u591a\u69d8":0,"\u591a\u91cd":112,"\u591a\u9762":0,"\u5927\u304d":[35,69,76,103,115,151],"\u5927\u304d\u3044":[7,33,37,99,113,136,151],"\u5927\u304d\u304f":[31,71,85,124,170],"\u5927\u304d\u3055":151,"\u5927\u304d\u306a":[103,159],"\u5927\u4e08":15,"\u5927\u4e08\u592b":[6,24],"\u5927\u4e8b":[136,145],"\u5927\u5207":0,"\u5927\u5225":170,"\u5927\u62b5":115,"\u5927\u6587":99,"\u5927\u6587\u5b57":[37,103,173],"\u5927\u898f\u6a21":0,"\u5927\u8cb4":35,"\u5927\u91cf":[7,37,103,151,172,173],"\u5927\u95a2":37,"\u592a\u90ce":172,"\u592b\u5fc5":178,"\u5931\u308f":35,"\u5931\u52b9":[75,115],"\u5931\u6557":[8,29,31,33,35,36,37,41,42,63,78,81,84,87,95,103,109,136,173],"\u5947\u6570":137,"\u5968\u6271\u3044":37,"\u597d\u304d":13,"\u59a5\u5f53":151,"\u59cb\u307e\u3063":[72,149],"\u59cb\u307e\u308a":8,"\u59cb\u307e\u308b":[37,59,67,78,99,114,136,137,145,147,149,159],"\u59cb\u3081":13,"\u59cb\u70b9":173,"\u5b09\u3057\u304f":6,"\u5b50\u5348\u7dda":123,"\u5b57\u5217":[33,37,103,136,155],"\u5b57\u5c0f":99,"\u5b58\u5426":56,"\u5b58\u5728":[0,30,31,35,36,37,46,56,59,60,67,72,85,99,114,115,121,124,125,162,165,168,171,173,175,177,180],"\u5b66\u3073":[99,123,171],"\u5b66\u3093":176,"\u5b66\u7fd2":[31,36,102],"\u5b89\u5168":177,"\u5b89\u5b9a":[0,34,71,76],"\u5b89\u5fc3":6,"\u5b8c\u4e86":[8,13,99],"\u5b8c\u5168":[7,59,78,99,103,137,151],"\u5b8c\u7d50":6,"\u5b9a\u5024":35,"\u5b9a\u7fa9":[7,35,37,43,51,57,59,61,67,78,80,82,84,99,104,105,113,121,123,126,127,128,131,133,134,136,137,138,145,155,164,173,175],"\u5b9f\u4f53":46,"\u5b9f\u4f8b":[3,4],"\u5b9f\u51e6":[7,57],"\u5b9f\u6570":155,"\u5b9f\u65bd":8,"\u5b9f\u73fe":[0,3,4],"\u5b9f\u7528":37,"\u5b9f\u7a3c":112,"\u5b9f\u884c":[0,3],"\u5b9f\u884c\u4f8b":[10,35],"\u5b9f\u88c5":[13,33,35,37,97,98,99,115,116,123,158],"\u5b9f\u969b":[28,36,167,172,175],"\u5b9f\u9a13":29,"\u5bb9\u91cf":[76,99],"\u5bc6\u9375":3,"\u5bfe\u51e6":37,"\u5bfe\u5fdc":[0,5],"\u5bfe\u7167":131,"\u5bfe\u7b56":[18,166],"\u5bfe\u8a71":[173,177],"\u5bfe\u8c61":[0,5,7,8,10,13,24,33,34,37,43,46,47,49,53,56,58,59,60,65,71,77,78,80,82,83,84,85,86,96,99,102,103,105,107,112,126,127,131,133,136,159,165,167,172,173,175,176],"\u5bfe\u8c61column":43,"\u5bfe\u8c61ctx":46,"\u5bfe\u8c61cursor":[53,60],"\u5bfe\u8c61id":54,"\u5bfe\u8c61obj":54,"\u5bfe\u8c61object":[43,47,51,54,56,57,62],"\u5bfe\u8c61table":[43,56,59,60],"\u5bfe\u8c61table1":59,"\u5bfe\u8c61table2":59,"\u5c02\u7528":[1,8,13,18,169],"\u5c06\u6765":[36,69,91,92,97,98,108,123,159,164],"\u5c0e\u5165":[10,37,71],"\u5c0f\u3055\u3044":[7,32,60,99,103,124,136,151],"\u5c0f\u3055\u304f":[37,123,124,138,151,159],"\u5c0f\u306a\u308a":135,"\u5c0f\u6570":[33,72,99],"\u5c0f\u6570\u70b9":170,"\u5c0f\u6587\u5b57":[60,103,107,140,173],"\u5c0f\u897f":36,"\u5c11\u304f":168,"\u5c11\u3057":24,"\u5c11\u3057\u9055\u3044":99,"\u5c11\u306a\u3044":[37,99,135,136,137,138,145],"\u5c11\u306a\u304f":[0,6,133,136,137,138],"\u5c11\u306a\u3051\u308c":103,"\u5c1a\u4e5f":36,"\u5c3a\u5ea6":0,"\u5c55\u958b":[8,18,24,27,33,35,36,39,95,99,131],"\u5c55\u958b\u5f8c":99,"\u5c55\u958b\u7528":33,"\u5c5e\u3057":[65,155,171],"\u5c5e\u3059\u308b":[43,56,60,104,155],"\u5c5e\u6027":[32,78,91,92,104,107,108,128],"\u5c65\u6b74":8,"\u5c71\u672c":37,"\u5ca9\u4e95":[35,36],"\u5cf6\u7530":35,"\u5d8b\u7530":35,"\u5de6\u4e0a":[30,125],"\u5de6\u4e0b":30,"\u5de6\u53f3":173,"\u5dee\u3057":8,"\u5dee\u5206":114,"\u5dee\u96c6\u5408":137,"\u5e02\u5185":142,"\u5e03\u6559":3,"\u5e73\u5747":[37,99],"\u5e73\u884c":8,"\u5e74\u9f62":[0,103],"\u5e83\u304f":8,"\u5ea6\u3068":33,"\u5ea6\u5206":155,"\u5ea6\u5408\u3044":167,"\u5ea6\u6570":[33,137,170,180],"\u5ea6\u6d6e":155,"\u5ea6\u8868":31,"\u5ea6y":155,"\u5ea7\u6a19":[33,123,124,125,137,142,176],"\u5ea7\u6a19\u5024":33,"\u5ec3\u6b62":71,"\u5f0f\u5168":[136,137],"\u5f0f\u8868":49,"\u5f15\u3044":137,"\u5f15\u304d\u51fa\u3059":0,"\u5f15\u304d\u7d9a\u304d":36,"\u5f15\u304d\u8d77\u3053\u3059":[35,36],"\u5f15\u304d\u8d77\u3059":[35,36],"\u5f15\u6570":[7,18,30,35,36,37,39,46,60,71],"\u5f15\u7528":[36,113],"\u5f15\u8a9e":173,"\u5f31\u70b9":0,"\u5f35\u3063":[36,99],"\u5f35\u3089":[35,36,43,170],"\u5f35\u308b":[136,137],"\u5f35\u308c\u308b":36,"\u5f37\u5236":[30,35,37,56],"\u5f37\u5316":[31,33,37],"\u5f53\u3066":[46,104,107,151],"\u5f53\u3066\u308b":170,"\u5f53\u8a72":[56,71],"\u5f62\u5f0f":[7,18,30,33,34,35,37,39,45,46,48,70],"\u5f62\u614b":[0,24,137],"\u5f62\u72b6":142,"\u5f71\u97ff":[8,35,36,37],"\u5f79\u5272":[131,173],"\u5f79\u7acb\u3061":36,"\u5f85\u3061\u53d7\u3051\u308b":177,"\u5f8c\u304b\u3089":85,"\u5f8c\u65b9":[7,18,35,37],"\u5f8c\u8005":[140,145,180],"\u5f8c\u8ff0":[7,8,60,134],"\u5f93\u3046":31,"\u5f93\u3063":[58,59,60,99,116,159],"\u5f93\u6765":37,"\u5f97\u308b":115,"\u5fa9\u53f7":8,"\u5fa9\u65e7":[34,47,111],"\u5fc3\u304c":10,"\u5fc3\u914d":19,"\u5fc5\u305a":[59,65,71,99,103,164],"\u5fc5\u8981":[0,3,6,7,8,10,13],"\u5fc5\u9808":[24,27],"\u5fd8\u308c":[33,69],"\u5fdc\u3058":[0,54,114],"\u5fdc\u7528":0,"\u5fdc\u7b54":[0,36],"\u601d\u3044":13,"\u601d\u3044\u51fa\u3057":99,"\u601d\u3046":[171,175],"\u601d\u3063":12,"\u6027\u5225":0,"\u6027\u80fd":0,"\u6069\u6075":162,"\u60aa\u610f":137,"\u60c5\u5831\u540d":104,"\u60f3\u5b9a":[76,85,101,172],"\u610f\u5473":[7,24,36,49,69,79,99,102,113,114,136,137,145,147,171,173,180],"\u610f\u56f3":[35,36,37,131,134,136,175],"\u610f\u8b58":103,"\u611f\u3058":6,"\u614e\u91cd":10,"\u6163\u308c":171,"\u6163\u7fd2":35,"\u6210\u308a":[99,136,164],"\u6210\u308a\u7acb\u3063":7,"\u6210\u529f":[24,42,43,46,47,49,59,63],"\u6210\u679c":3,"\u623b\u3063":115,"\u623b\u308a":[35,56],"\u623b\u308a\u5024":[41,42,43,46,47,49,53,56,59,63],"\u6240\u5b9a":[103,152,165,167],"\u6240\u5c5e":81,"\u624b\u52d5":115,"\u624b\u6bb5":[7,49],"\u624b\u7d9a\u304d":[51,57],"\u624b\u9593":6,"\u624b\u9806":[3,4,6],"\u6253\u3061\u5207\u308a":36,"\u6253\u3064":8,"\u6253\u3064\u524d":8,"\u6271\u3044":[37,71,147,165,170],"\u6271\u3046":[0,2,34,36,74,137,167,168],"\u6271\u3048":[46,174],"\u6271\u3048\u308b":[36,37,168],"\u6271\u3063":[30,36,176],"\u6271\u308f":[35,36,37,46,99,107,114,136,140,142,167,170],"\u627f\u8a8d":37,"\u628a\u63e1":6,"\u6291\u3048":167,"\u6291\u5236":[35,36,37],"\u6295\u5165":[30,167],"\u6295\u7a3f\u5834\u6240":176,"\u629c\u304d\u51fa\u3059":0,"\u629c\u3051":[33,36,37],"\u629c\u3051\u308b":173,"\u62bc\u3057":173,"\u62bc\u3059":[13,173],"\u62bd\u51fa":[35,103,127,133,134],"\u62c5\u5f53":8,"\u62c5\u5f53\u8005":8,"\u62e1\u5927":6,"\u62e1\u5f35":[18,33,37,169],"\u62e1\u5f35\u578b":170,"\u62e1\u5f35\u5b50":[31,95,114,143],"\u62ec\u5f27":86,"\u6301\u3061":[7,65,79,99,107,113,115],"\u6301\u3063":[0,6,35,69,79,91,92,99,107,108,136,137,140,148],"\u6301\u3064":[0,5,33,59,67,79,86,92,99,108,113,123,134,137,140,142,148,170,171,172,173],"\u6301\u3064\u3059\u3079":99,"\u6301\u3066":[79,152],"\u6307\u3057":170,"\u6307\u3059\u5024":60,"\u6307\u5b9a":[0,7],"\u6307\u6570":137,"\u6307\u6a19":56,"\u6307\u793a":[51,147,173,177],"\u6307\u91dd":[3,4],"\u6319\u52d5":[18,31,35,37,55,113],"\u632f\u821e":123,"\u632f\u821e\u3044":[35,36,37,121,131],"\u633f\u5165":[8,35,51,113,133,173],"\u6368\u3066":33,"\u639b\u3051":137,"\u63a1\u7528":[0,167,177],"\u63a2\u3057":[0,99,114],"\u63a2\u3059":175,"\u63a2\u7d22":0,"\u63a5\u7d9a":[1,5,35,93,100,113,114,173],"\u63a5\u7d9a\u5148":112,"\u63a5\u8fd1":7,"\u63a5\u982d":[33,137,151],"\u63a8\u5968":[19,35,37,71,72,99,177],"\u63a8\u79fb":71,"\u63a8\u9032":36,"\u63d0\u4f9b":[0,1],"\u63d0\u6848":[6,18,31,33,34,35,36,37,39,102],"\u63d0\u6848\u7528":118,"\u63db\u3048":[56,60,179],"\u63db\u3048\u308b":[8,65],"\u63db\u6642":33,"\u63fa\u308c":179,"\u642d\u8f09":0,"\u643a\u5e2f":0,"\u64a4\u53bb":33,"\u64a4\u5ec3":[31,37,77,113],"\u64cd\u4f5c":[0,7,18,36,39,43,46,49,56,59,81,99,113,135,137],"\u64ec\u4f3c":[18,39,43,65],"\u652f\u63f4":149,"\u6539\u540d":[33,35],"\u6539\u5584":[30,33,35,36,37],"\u6539\u884c":[33,34,113],"\u6570\u3048":171,"\u6570\u3048\u308b":[99,171],"\u6570\u5024":[7,18,30,31,69,75,78,97,99,113,124,136,137,165,169],"\u6570\u5b57":[37,99,103,114,137,148,167],"\u6570\u70b9":[99,155],"\u6570\u73e0":134,"\u6574\u3063":10,"\u6574\u5217":[0,173],"\u6574\u5408":[30,56],"\u6574\u6570":[67,69,74,99,132],"\u6574\u7406":[35,36],"\u6587\u5b57":[0,7,30,33,35,36,37,46,47,49,56,59,60,69,86,89,91,99,103,106,107,113,122,123,124,125,126,127,133,136,137,140,145,147,148,155,165,170,171,172,173,175,176,179,180],"\u6587\u5b57\u5217":[18,35,36,37,48,49,69,72,86,91,99,107,122,123,126,127,133,134,135],"\u6587\u5b57\u6570":[133,137],"\u6587\u66f8":[0,37,135],"\u6587\u66f8\u5185":152,"\u6587\u6cd5":[18,169],"\u6587\u8108":134,"\u65ad\u7247":133,"\u65b0\u3057\u3044":[0,3],"\u65b0\u3057\u304f":[6,37,71,99,103,135,138,173],"\u65b0\u305f":[7,43,47,51,59],"\u65b0\u5bbf":180,"\u65b0\u5bbf\u99c5":180,"\u65b9\u5411":60,"\u65b9\u5f0f":[0,113,173,175],"\u65b9\u5f62":[123,124],"\u65b9\u6cd5":0,"\u65e2\u5b58":[0,1,8,35,37,47,59,90,111,114,162,170,173,177],"\u65e2\u5b9a":35,"\u65e2\u5b9a\u5024":162,"\u65e5\u3005":6,"\u65e5\u4ed8":[0,8,123],"\u65e5\u6642":[18,155,169],"\u65e5\u672c":[8,37,124,125,136,137,147,155,180],"\u65e5\u672c\u4eba":147,"\u65e5\u672c\u6e2c":123,"\u65e5\u672c\u8a9e":[0,13,15,35,136,137,147,167],"\u6607\u964d":60,"\u6607\u9806":[56,59,60,99,171,173,180],"\u660e\u78ba":37,"\u6642\u306b":33,"\u6642\u4ee3":0,"\u6642\u4ee5\u5916":31,"\u6642\u523b":[47,72,101,114,130,148,176],"\u6642\u70b9":[8,35,41,42,46,48,71],"\u6642\u9593":[0,31,33,36,37,41,72,99,101,114,136],"\u666e\u53ca":0,"\u666e\u901a":[6,137],"\u6697\u53f7":8,"\u66f8\u3044":[37,136,137,176],"\u66f8\u304b":[35,176],"\u66f8\u304d":[0,99,114],"\u66f8\u304d\u5f8c":165,"\u66f8\u304d\u63db\u3048":[8,17],"\u66f8\u304d\u8fbc\u307e":90,"\u66f8\u304d\u8fbc\u307f":24,"\u66f8\u304d\u8fbc\u3080":114,"\u66f8\u304d\u8fbc\u3081\u308b":37,"\u66f8\u304f":[37,136,175],"\u66f8\u3051\u308b":[35,36,37],"\u66f8\u5f0f":[18,99],"\u66ff\u3048":[8,18,37,167,169],"\u66ff\u3048\u308b":173,"\u6700\u3082":[46,76,99],"\u6700\u4e2d":0,"\u6700\u521d":[6,33,37,46,72,99,103,118,121,126,127,133,136,137,145,162,170,173,175],"\u6700\u5927":[28,30,31,33,35,36,37,42,61,75,99,113,114,121,132,133,137,151,159,164,168],"\u6700\u5927\u5024":[35,37,99],"\u6700\u5c0f":[20,21,22,26,99,121,162],"\u6700\u5c0f\u5024":[37,99,137],"\u6700\u5c0f\u9650":115,"\u6700\u5f8c":[8,31,35,46,107,114,115,137,167,170],"\u6700\u65b0":[2,8,33,75],"\u6700\u7d42":[47,69,99],"\u6700\u7d42\u66f4":47,"\u6700\u9069":115,"\u6700\u9577":[33,114,137],"\u6709\u3057":79,"\u6709\u529b":102,"\u6709\u52b9":[0,8,20,24,26,29,33,34,36,37,43,47,56,59,79,86,99,103,107,113,114,115,133,136,170,177],"\u6709\u7121":[126,170],"\u6709\u7528":[37,72,79,115,151,159,173],"\u6709\u76ca":0,"\u6709\u9650":99,"\u671b\u307e\u3057\u3044":[0,6,8],"\u671f\u5316":[35,46],"\u671f\u5f85":[0,170],"\u6728\u4e0a":60,"\u672a\u4f7f":37,"\u672a\u4f7f\u7528":164,"\u672a\u521d":35,"\u672a\u5b9a":170,"\u672a\u5b9a\u7fa9":37,"\u672a\u5bfe":35,"\u672a\u6e80":[60,136],"\u672a\u77e5":34,"\u672a\u8a2d":35,"\u672a\u958b\u653e":31,"\u672b\u5c3e":[51,56,60],"\u672c\u4f53":3,"\u672c\u5f53":[147,179],"\u672c\u6587":[128,175],"\u672c\u756a":8,"\u672c\u8cea":114,"\u6751\u4e0a":[36,37],"\u6761\u4ef6":[3,7],"\u6761\u4ef6\u5f0f":35,"\u6771\u4eac":[123,165,167,180],"\u6771\u4eac\u90fd":[165,167],"\u6790\u5668":0,"\u6790\u7cfb":137,"\u679c\u305f":173,"\u67af\u308c":[1,162],"\u67d4\u8edf":[0,131,135],"\u682a\u5f0f":37,"\u683c\u7d0d":[0,7,28,33,42,43,47,51,54,56,58,59,67,78,103,104,113,137,138,142,151],"\u6848\u5185":[6,8],"\u68ee\u7530":172,"\u691c\u67fb":56,"\u691c\u7d22\u4f8b":3,"\u691c\u7d22id":59,"\u691c\u7d22key":59,"\u691c\u8a0e":[162,167],"\u691c\u8a3c":[37,112],"\u6955\u5186":[123,124],"\u6975\u4ed8":[123,124],"\u697d\u3057":[165,167],"\u697d\u3057\u3044":[165,167],"\u6982\u5ff5":71,"\u69cb\u3044":[13,127,133,147],"\u69cb\u6210":[7,8,20,21,22,26,37,162,173],"\u69cb\u6587":[18,29,32,35,36,37,39,49,69],"\u69cb\u7bc9":3,"\u69cb\u9020":[0,7,46,59,72,151,172],"\u69cb\u9020\u4f53":[37,46,53,57],"\u69d8\u3005":[3,7],"\u6a19\u6e96":[30,34,37,71,76,77,78,80,82,83,85,86,88,89,90,93,100,101,104,105,112,113,115,116,173,177],"\u6a19\u8a18":37,"\u6a29\u8868":37,"\u6a29\u9650":[24,36,177],"\u6a2a\u5c71":[36,37],"\u6a5f\u68b0":37,"\u6a5f\u80fd":[0,7,24,30,31,33,34,35,36,37,46,69,91,96,99,102,103,111,113,114,115,126,127,131,133,135,136,141],"\u6b20\u70b9":0,"\u6b20\u843d":36,"\u6b21\u56de":[8,71],"\u6b21\u671f":8,"\u6b21\u90ce":172,"\u6b53\u8fce":3,"\u6b62\u3081":37,"\u6b63\u3057\u3044":[145,148,149],"\u6b63\u3057\u304f":[35,36,37,136,147],"\u6b63\u5e38":[8,114],"\u6b63\u5f0f":37,"\u6b63\u78ba":[101,170,173],"\u6b63\u898f":[34,35,37,59,91,103,106,107,126,127,137,140,145,173],"\u6b63\u898f\u5316":[35,91,133],"\u6b66\u8005":29,"\u6b8a\u547d":114,"\u6b8b\u3057":99,"\u6b8b\u3063":[31,36],"\u6b8b\u308a":[71,99,103,145],"\u6b8b\u308b":33,"\u6b8b\u5ff5":170,"\u6bb5\u843d":[43,78,79],"\u6bd4\u3079":[37,138],"\u6bd4\u8f03":[18,31,35,37,99,114,136],"\u6c17\u306b":[13,56,79],"\u6c17\u8efd":[6,37],"\u6c38\u7d9a":[18,39,43,56,59,79,103],"\u6c42\u307e\u308a":0,"\u6c42\u3081":[0,122],"\u6c42\u3081\u308b":[0,123,124,171],"\u6c4e\u7528":[113,114,115],"\u6c7a\u307e\u308a":145,"\u6c7a\u307e\u308b":173,"\u6c7a\u3081":103,"\u6c7a\u3081\u308b":[7,99],"\u6c7a\u5b9a":99,"\u6cbf\u3046":37,"\u6ce8\u610f":[8,33,36,59,69,99,103,114,115,128,136,137,159,167,170,171,173,178],"\u6ce8\u76ee":[99,171],"\u6ce8\u8a18":36,"\u6d0b\u5fd7":37,"\u6d0b\u723e":33,"\u6d3b\u304b\u3059":99,"\u6d3b\u7528":162,"\u6d41\u3057":8,"\u6d41\u308c":3,"\u6d41\u91cf":159,"\u6d45\u898b":36,"\u6d69\u4e8c":35,"\u6d6e\u52d5":72,"\u6d88\u3048":151,"\u6d88\u305b":115,"\u6d88\u53bb":36,"\u6d88\u8cbb":138,"\u6df1\u523b":[35,37,167],"\u6df7\u305c":[102,170],"\u6df7\u305c\u308b":69,"\u6df7\u5728":116,"\u6dfb\u4ed8":35,"\u6e08\u307f":[6,8,20,21,22,26,33,35,36,43,78,86,107,145,147,148,149,155,162],"\u6e1b\u3089":[35,148,151,179],"\u6e1b\u7b97":56,"\u6e21\u3055":[7,35,36,57,123],"\u6e21\u3057":[7,37,86,136,173,177],"\u6e21\u3059":[34,137,173],"\u6e2c\u4f4d":0,"\u6e2c\u5730":[123,124,125,155,170,180],"\u6e2c\u5730\u7cfb":155,"\u6e2c\u5b9a":114,"\u6e2c\u7528":30,"\u6e80\u3055":36,"\u6e80\u3059":36,"\u6e80\u305f":[7,134,180],"\u6e96\u5099":3,"\u6e96\u62e0":[36,115],"\u6f0f\u308c":[0,8,35,135,179],"\u6f14\u7b97":[24,31,35,36,37,59,135,137],"\u6f14\u7b97\u5b50":[7,31,35,36,99],"\u6fc1\u70b9":140,"\u7027\u5185":36,"\u70b9\u4ee5\u4e0b":170,"\u70b9\u6570":72,"\u70b9\u9593":[123,142],"\u7121\u52b9":[24,34,35,36,48,59,60,99,115,136,147],"\u7121\u540d":[56,59],"\u7121\u8996":[31,33,35,36,37,59,60,84,85,91,99,107,113,136,145,151,167],"\u7121\u9650":[31,35,37],"\u7121\u99c4":0,"\u7279\u306b":[7,8],"\u7279\u5225":[24,41,49,74,107,136,147],"\u7279\u5316":[13,137],"\u7279\u5b9a":0,"\u7279\u6027":151,"\u7279\u6709":69,"\u7279\u6b8a":[36,56,72],"\u72b6\u614b":[0,6,8,20,21,22,26,31,35,37,46,76,101,112,113,147,167,173],"\u72b6\u6cc1":[0,51,99,137,167],"\u72ec\u81ea":[0,72,112],"\u7389\u91ce":37,"\u73fe\u308c":107,"\u73fe\u308c\u308b":167,"\u73fe\u4ee3":0,"\u73fe\u5728":[0,8,42,46,47,53,56,57,75,81,90,103,112,114,130,142,173,174,176],"\u73fe\u5728\u5730":176,"\u73fe\u5b9f":171,"\u73fe\u72b6":71,"\u73fe\u983b":37,"\u7403\u9762":[123,124],"\u7406\u7531":0,"\u7406\u89e3":[99,173],"\u7406\u95a2":57,"\u74b0\u5883":[0,3],"\u751f\u3058":[77,80,82,88,89,90,105],"\u751f\u6210":3,"\u7528\u3044":[0,10,18,30,33,42],"\u7528\u3044\u308b":[0,56,170,172,173,174,177,180],"\u7528\u5909":37,"\u7528\u610f":[7,8,24,56,99,114,123,147,148,149,150],"\u7528\u79d8":3,"\u7528\u8a9e\u96c6":76,"\u7528\u9014":[0,19,20,21,22,26,27,36,37,69,72,99,151,162],"\u7530\u6cbc":37,"\u7530\u8fba":36,"\u7531\u6765":135,"\u753b\u9762":[8,30,37],"\u7551\u30b1":37,"\u7551\u30f6":37,"\u756a\u53f7":[36,37,43,67,112,113,114,159,162,177],"\u756a\u76ee":[36,59,60,79,91,99,107,136,137,170,173],"\u7570\u306a\u3063":60,"\u7570\u306a\u308a":[37,99,136],"\u7570\u306a\u308b":[18,35,37,113,114,131,166],"\u7570\u5e38":[76,114],"\u7591\u4f3c":[35,36,37,67,86,132],"\u7591\u554f":175,"\u767a\u63ee":0,"\u767a\u751f":[0,8,24,30,35,36,37,46,56,59,72,78,103,167],"\u767a\u884c":177,"\u767b\u9332":[0,3,7,8],"\u7686\u5ddd":37,"\u76ee\u304f\u3089\u3044":103,"\u76ee\u4ee5\u964d":99,"\u76ee\u5b89":8,"\u76ee\u7684":[24,36,107],"\u76ee\u8996":72,"\u76f4\u4e0b":33,"\u76f4\u524d":51,"\u76f4\u5f8c":46,"\u76f4\u611f":178,"\u76f4\u63a5":[85,176],"\u76f8\u5bfe":[8,33,99],"\u76f8\u5bfe\u30d1\u30b9":37,"\u76f8\u5f53":[72,171,173,180],"\u76f8\u5fdc":59,"\u76f8\u624b":6,"\u7701\u7565":[8,36,43,75,79,86],"\u771f\u306a\u3089":137,"\u771f\u507d":[36,136,137,155,170],"\u771f\u507d\u5024":18,"\u77e5\u308b":171,"\u77e5\u308c":[6,91,97,98,175],"\u77e5\u8b58":114,"\u77e9\u5f62":[0,125,180],"\u77ed\u3044":[31,176],"\u77ed\u304f":[0,138],"\u77ed\u6642\u9593":0,"\u7834\u58ca":59,"\u7834\u68c4":[46,57],"\u78ba\u4fdd":[46,49,54,168],"\u78ba\u5b9a":102,"\u78ba\u5b9f":148,"\u78ba\u7387":102,"\u78ba\u8a8d":[3,6],"\u78ef\u90e8":36,"\u793a\u3055":104,"\u793a\u3057":[8,40,74,91,101,123,142,167,171,173,175,177],"\u793a\u3059":[72,74,84,86,99,104,121,123,124,125,126,127,128,131,133,134,136,137,159,170,178],"\u79cb\u8449":180,"\u79d2\u3088\u308a":32,"\u79d2\u5358":[155,170],"\u79d2\u5f62":155,"\u79d2\u60c5":33,"\u79d2\u6570":[72,99,101,137,155,170,176],"\u79d2\u8868":[137,167,170,180],"\u79d2\u9593":33,"\u79d8\u5bc6":8,"\u79fb\u52d5":[8,12,27,33,35,90],"\u79fb\u884c":[33,71],"\u7a0b\u5ea6":[33,36,173],"\u7a2e\u5225":91,"\u7a2e\u985e":[1,7,8,18,33,54,57,59,67,69,74,99,102,103,107,113,114,118,136,137,147,148,150,151,164,167,169],"\u7a32\u7530":36,"\u7a3c\u52d5":101,"\u7a4d\u307f\u91cd\u306a\u3063":36,"\u7a4d\u7528":99,"\u7a4d\u7b97":[7,99],"\u7a7a\u304d":[76,168],"\u7a7a\u6587":[37,136,155],"\u7a7a\u767d":[0,86,91,107,113,136,150,167,173],"\u7a81\u7136":36,"\u7acb\u3061":72,"\u7acb\u3061\u4e0a\u304c\u3063":114,"\u7acb\u3061\u4e0a\u3052":114,"\u7acb\u5834":3,"\u7aef\u672b":0,"\u7b26\u53f7":74,"\u7b49\u3057\u3044":[7,56,99,136,137],"\u7b49\u3057\u304f":[7,136,137],"\u7b49\u4fa1":[31,37,99,135],"\u7b49\u5024":31,"\u7b87\u6240":[8,36,72,133],"\u7b97\u51fa":[35,37],"\u7b97\u8853":36,"\u7ba1\u7406":[8,18,24,30,33,34,35,37,46,76,113],"\u7bc4\u56f2":[0,18,35,36,37,53,56,60,67,71,99],"\u7bc4\u56f2\u5916":37,"\u7be0\u7530":37,"\u7c21\u5358":[8,24,37,79,81,91,92],"\u7c21\u6613":[37,123,162],"\u7c21\u7565":36,"\u7cfb\u5ea7":[124,125],"\u7d20\u65b9":0,"\u7d20\u6734":171,"\u7d20\u89e3":[0,24,137],"\u7d22\u6642":31,"\u7d22\u7528":[18,103,169],"\u7d30\u5206":170,"\u7d39\u4ecb":[3,8,37,99,176],"\u7d42\u3048":8,"\u7d42\u308f\u308b":[136,137,138],"\u7d42\u4e86":[8,31,35,36,37,46,57,71,93,113,114],"\u7d42\u4e86\u30bf\u30b0":126,"\u7d42\u7aef":[35,46,47,49],"\u7d44\u307f\u5408\u308f":[0,7,99,103,121],"\u7d44\u307f\u5408\u308f\u305b":[0,7,8,37,78,167,173],"\u7d44\u307f\u8fbc\u307f":[18,39,47,70,85,91,107],"\u7d44\u307f\u8fbc\u3080":[0,7,115],"\u7d44\u307f\u8fbc\u3093":[0,37],"\u7d44\u5408":131,"\u7d44\u8fbc":[76,77,78,80,82,83,85,88,89,90,93,100,101,104,105,122,124,125,130,132,155],"\u7d44\u8fbc\u578b":[18,39],"\u7d4c\u7531":[8,31,35,37,76,77,78,80,82,83,85,88,89,90,93,100,101,104,105,114],"\u7d4c\u7def":[155,170,180],"\u7d4c\u7def\u5ea6":[18,169],"\u7d4c\u904e":[33,41,56,71,72,101,137,155,170,176],"\u7d50\u3073\u3064\u3044":5,"\u7d50\u3073\u3064\u304f":5,"\u7d50\u5408":[7,135,136],"\u7d50\u5408\u5f0f":35,"\u7d50\u57ce":37,"\u7d50\u679c":[0,7,8,10,17,18,31,33,35,36,37,58,59,67,72,75,85,91,97,98,99],"\u7d5e\u308a\u8fbc\u307f":[0,173],"\u7d5e\u308a\u8fbc\u3080":[37,99,149],"\u7d5e\u308a\u8fbc\u3093":[0,36],"\u7d5e\u8fbc":[18,169],"\u7d71\u5408":[0,35,36],"\u7d76\u5bfe":95,"\u7d99\u627f":36,"\u7d99\u7d9a":[17,35,113],"\u7d9a\u3044":[99,167],"\u7d9a\u304d":86,"\u7d9a\u3051":114,"\u7dad\u6301":[0,159],"\u7db2\u7f85":115,"\u7de8\u96c6":[3,8,10],"\u7e26\u68d2":103,"\u7e4b\u3052":37,"\u7e4b\u3052\u308b":6,"\u7e70\u308a\u8fd4\u3057":[13,114,137],"\u7e70\u308a\u8fd4\u3057\u6570":114,"\u7e70\u308a\u8fd4\u3059":31,"\u7f6e\u3044":[8,37],"\u7f6e\u304b":[24,115,116,145],"\u7f6e\u304d":[8,31,56,60,179],"\u7f6e\u304d\u63db\u3048":[13,37,113,136],"\u7f6e\u304f":24,"\u7f6e\u304f\u4f8b":24,"\u7f6e\u63db":99,"\u7f72\u540d":3,"\u7fa9\u8a9e":145,"\u7ffb\u8a33":3,"\u8003\u3048":[0,6,99,136,137,159,171,173],"\u8003\u3048\u65b9":37,"\u8003\u616e":[167,179],"\u80a5\u5927":37,"\u811a\u6ce8":[80,123,124,125,155,173],"\u81a8\u5927":0,"\u81ea\u4f53":[37,136],"\u81ea\u5206":[6,13,19,114,115],"\u81ea\u52d5":[8,13,33,35,37,43,59,67,95,114,115,136,137,151,172,173,178],"\u81ea\u52d5\u5207\u308a":37,"\u81ea\u52d5\u7684":114,"\u81ea\u5df1":176,"\u81ea\u5df1\u7d39":176,"\u81ea\u7531":[0,7,67,164],"\u81ea\u8eab":[33,35,107,113,145],"\u81f3\u308b":170,"\u81f4\u547d":35,"\u8208\u5473":0,"\u826f\u3044":[6,175],"\u826f\u3044\u4f8b":6,"\u826f\u304f":175,"\u826f\u4e8c":37,"\u82b1\u5b50":172,"\u82e6\u624b":0,"\u82f1\u8a9e":[8,13,15,33,37],"\u840e\u7e2e":6,"\u843d\u3061":[31,36],"\u843d\u3061\u308b":[31,33,36],"\u8457\u4f5c":37,"\u884c\u3044":[7,8,56,59,60,112,113,114,131,165,167,172,173,175,176],"\u884c\u3046":[6,8,10,31,35,37,60,103,112,123,131,152,162,165,172,175,176,178,180],"\u884c\u3048":[10,37,131,136,173],"\u884c\u3048\u308b":[35,172],"\u884c\u3063":[8,10,37,171,180],"\u884c\u306a\u308f":35,"\u884c\u308f":[99,112,114,172],"\u884c\u6307\u5411":0,"\u884c\u6570":33,"\u884c\u756a":[33,72],"\u884c\u76ee":[8,72,114],"\u8868\u3057":[7,67,71,72,74,142,155,173],"\u8868\u3059":[7,78,107,123,132,142,170,172],"\u8868\u3059\u578b":155,"\u8868\u308f":56,"\u8868\u73fe":3,"\u8868\u793a":[0,8,18,24,30,31,33,34,35,36,37,71,76,99,101,104,113,114,143,167,169,170,172],"\u8868\u8a08":145,"\u8868\u8a18":[8,13,33,35,36,69,123,137,155,170,179,180],"\u88d5\u4e5f":37,"\u88dc\u3046":0,"\u88dc\u5b8c":[18,31,36,39,95,102,146],"\u88dc\u5b8c\u8a9e":147,"\u88dc\u6b63":[18,39,102,146],"\u88dc\u8db3":115,"\u8907\u6570":[0,6,7,18,30,31,33,35,36,37,42,43,49,51,69,78,84,91,99,102,103,104,106,107,114,115,116,126,131,136,141,147,158],"\u8907\u96d1":[7,35,36,99,137],"\u897f\u66a6":137,"\u8981\u6c42":[6,36,134,173],"\u8981\u7d20":[7,35,36,59,69,72,74,79,86,114,133,173],"\u898b\u3064":[31,35,102],"\u898b\u3064\u304b\u3063":[99,149],"\u898b\u3064\u304b\u3089":59,"\u898b\u3064\u304b\u308a":99,"\u898b\u3064\u304b\u308b":35,"\u898b\u3064\u304b\u308c":6,"\u898b\u3064\u3051":[6,30,35,99,147],"\u898b\u3064\u3051\u308b":[81,99,115,140,147],"\u898b\u3066":[72,99,115],"\u898b\u306a\u3057":60,"\u898b\u308b":[74,99],"\u898b\u4ed8":36,"\u898b\u4ed8\u3051":36,"\u898b\u76f4\u3057":37,"\u898b\u7a4d\u308b":168,"\u898b\u8fbc\u3081":37,"\u898f\u5247":35,"\u898f\u683c":60,"\u8996\u899a":0,"\u89a7\u4e0b":10,"\u89aa\u5207":31,"\u89b3\u70b9":[37,137,168],"\u89e3\u50cf":31,"\u89e3\u653e":[37,42,46,53,56,60,87,101],"\u89e3\u6790":3,"\u89e3\u6c7a":[6,33,35,76,168],"\u89e3\u6c7a\u7b56":6,"\u89e3\u6d88":[30,36,56,69,83],"\u89e3\u91c8":[7,31,85,136],"\u89e3\u9664":[30,56,77,113],"\u89e6\u308c":173,"\u8a00\u3044":[65,134],"\u8a00\u3046":[69,147],"\u8a00\u3048":[136,167],"\u8a00\u53ca":[134,176],"\u8a00\u8a9e":[1,3,7],"\u8a00\u8a9e\u540d":13,"\u8a02\u6b63":145,"\u8a08\u6e2c":[10,30,33],"\u8a08\u7b97":[0,30,35,36,37,97,99,122,123,124,137,142,147,148,150,155,180],"\u8a18\u4e8b":[8,138,175],"\u8a18\u53f7":[31,113,165,167,173],"\u8a18\u6cd5":[137,175],"\u8a18\u8f09":[8,35],"\u8a18\u8ff0":[7,113,114,173,175,176],"\u8a18\u9332":[0,35,67,95],"\u8a2d\u5b9a":3,"\u8a2d\u5b9a\u5024":[30,168],"\u8a2d\u5b9a\u6e08\u307f":162,"\u8a2d\u6a02":33,"\u8a2d\u8a08":[99,162],"\u8a55\u4fa1":[7,36,97,134,137],"\u8a66\u3057":6,"\u8a66\u3059":158,"\u8a66\u884c":0,"\u8a71\u3057":3,"\u8a71\u984c":2,"\u8a72\u5f53":[37,42,43,56,59,60,121,126,127,133,175],"\u8a73\u3057\u304f":[0,170,173],"\u8a73\u7d30":[1,10,13,20,21,22,24,26,35,36,37,42,55,58,69,72,79,95,99,103,106,107,114,115,116,131,155,162,167,171,173,180],"\u8a8d\u8a3c":[115,158],"\u8a8d\u8b58":6,"\u8a9e\u4ee5":137,"\u8a9e\u53e5":[36,172],"\u8a9e\u5f59":[18,28,103,106,140,151,152,165,169],"\u8a9e\u6271":165,"\u8a9e\u691c":99,"\u8a9e\u7248":8,"\u8aa4\u3063":[8,35,36,37],"\u8aa4\u308a":[35,36,37],"\u8aa4\u5b57":[31,33,35,36,145],"\u8aa4\u5dee":[33,123,124],"\u8aac\u660e":[3,7,8,13,15,16,17,18,19,20,21,22,23,24,25,26,27,35,36,37,39],"\u8aad\u307f":[0,8,30,135,146],"\u8aad\u307f\u3084\u3059\u3044":34,"\u8aad\u307f\u51fa\u3057":0,"\u8aad\u307f\u53d6\u308a":[81,86,113],"\u8aad\u307f\u8fbc\u307f":[33,36,37,95,98,145,173],"\u8aad\u307f\u8fbc\u3080":[30,98],"\u8aad\u307f\u8fbc\u3081\u308b":85,"\u8aad\u307f\u8fbc\u3093":[98,177],"\u8aad\u307f\u98db\u3070":173,"\u8aad\u3080":98,"\u8aad\u3081":35,"\u8aad\u3093":[3,17],"\u8ab0\u304b":3,"\u8ab0\u304c":176,"\u8ab0\u3067":37,"\u8ab2\u7a0b":36,"\u8ab2\u984c":3,"\u8abf\u3079":[51,56,124,125,171],"\u8abf\u3079\u308b":[36,124,125,168],"\u8abf\u6574":[99,135,167,168],"\u8ad6\u7406":[0,7,28,35,76,99],"\u8ad6\u7406\u548c":[7,99],"\u8af8\u6761":28,"\u8b66\u544a":[31,34,35,36,37,71,99],"\u8b70\u8ad6":15,"\u8ca0\u62c5":6,"\u8ca0\u6570":[35,41],"\u8ca0\u8377":[31,115],"\u8ca2\u732e":36,"\u8d64\u9053":123,"\u8d70\u3063":81,"\u8d70\u3089":81,"\u8d70\u67fb":37,"\u8d77\u3053\u3063":81,"\u8d77\u3053\u308a":179,"\u8d77\u52d5":[8,27,31,35,36,71,101,113,114,116,143,159],"\u8d77\u6e90":170,"\u8d77\u70b9":99,"\u8d85\u3048":[36,167],"\u8d85\u3048\u308b":[35,60,151,168,170],"\u8d85\u904e":[36,168],"\u8d8a\u3048":[37,167],"\u8d8a\u3048\u308b":[37,167],"\u8db3\u3057":137,"\u8db3\u308a":[33,145],"\u8ddd\u96e2":[0,30,35,122,123,124,137,142,180],"\u8efd\u3044":81,"\u8f09\u305b\u308b":8,"\u8f9e\u66f8":[22,30,31,35,36,37,167],"\u8f9e\u691c":[33,137,151],"\u8fbc\u307f":[90,145],"\u8fd1\u3044":[60,112],"\u8fd1\u3044\u9806":142,"\u8fd1\u304f":[0,137,142],"\u8fd1\u3055":137,"\u8fd1\u4f3c":[33,35,123,124],"\u8fd1\u508d":[35,37,135],"\u8fd4\u3055":[35,37,48,56,71,76,86,99,102],"\u8fd4\u3057":[7,36,37,41,42,43,44,46,47,48,51,53,55,56,59,60,62,63,75,78,79,81,84,87,92,97,98,99,101,102,106,107,108,109,121,122,123,124,125,126,127,128,130,131,132,133,134,137,147,148,149,150,159,173,176,179,180],"\u8fd4\u3059":[30,31,33,35,36,37,43,46,49,77,80,82,83,88,89,90,101,102,105,113,114,121,130,137,159,164,180],"\u8fd4\u3059\u304b":102,"\u8fd4\u3063":[37,136,137],"\u8fd4\u308a":[99,171,180],"\u8fd4\u308a\u5024":[36,37],"\u8fd4\u308b":31,"\u8fd4\u4fe1":[6,175,176],"\u8fd4\u4fe1\u5143":176,"\u8fd4\u4fe1\u5148":176,"\u8fd4\u5024":76,"\u8fd4\u5374":[99,104,173],"\u8ff0\u3079":173,"\u8ffd\u52a0":[0,3,7],"\u8ffd\u8a18":[8,35],"\u8ffd\u8de1":3,"\u9001\u3063":[3,12,13,15],"\u9001\u308a":[8,164],"\u9001\u308a\u65b9":3,"\u9001\u308b":[13,15,159,164],"\u9001\u4fe1":[36,76,77,78,80,82,83,85,88,89,90,93,100,101,104,105,114],"\u9006\u306b":[172,176],"\u9006\u5f15":172,"\u9006\u5f15\u304d":[18,169],"\u9006\u6587\u66f8\u51fa":37,"\u9006\u9806":173,"\u9010\u6b21":[0,37],"\u9014\u4e2d":[8,35,37,113,147,148,164],"\u901a\u308a":[8,17,24,26,45,79,84,91,99,102,103,104,107,111,121,123,124,126,127,128,131,133,134,136,137,142,150,167,175],"\u901a\u4fe1":[3,4],"\u901a\u5e38":[35,37,46,67,72,79,99,107,115,136,140,145,155,170,173],"\u901a\u77e5":8,"\u901f\u3044":[37,151],"\u901f\u304f":[24,103,172],"\u901f\u3084\u304b":71,"\u901f\u5ea6":[33,36,114,151,172],"\u9023\u643a":0,"\u9023\u7d50":[35,36,56,175],"\u9023\u7d61":13,"\u9023\u7d9a":[36,56,107,148,165,167],"\u9032\u3081":[3,4],"\u9032\u3093":0,"\u9032\u6570":[76,137],"\u9045\u3044":[123,151],"\u9045\u304f":[124,171],"\u904b\u7528":0,"\u904e\u7a0b":67,"\u9054\u3059\u308b":60,"\u9055\u3044":[99,103,123,136,159,170,173,175,180],"\u9055\u3046":31,"\u9055\u3063":147,"\u9069\u3057":[0,103,138],"\u9069\u5207":[0,31,37,99,103,107,114,173],"\u9069\u5408":[167,173],"\u9069\u5b9c":[8,37],"\u9069\u6642":51,"\u9069\u7528":[37,49],"\u9078\u3073":149,"\u9078\u3076":[0,99,115],"\u9078\u3079":99,"\u9078\u629e":[0,8,37,49,99,123],"\u907f\u3051\u308b":99,"\u90e8\u5206":[7,10,24,37,72,136,137],"\u90fd\u6c11":[165,167],"\u914d\u4e0b":[8,116],"\u914d\u5217":[7,31,33,35,37,43,47,56,57,59,69,72,76,78,79,91,92,99,103,104,107,108,133,136],"\u914d\u5e03":[19,20,21,22,26,27,35,37],"\u914d\u7f6e":[8,173],"\u91cd\u3044":[0,99],"\u91cd\u304f":167,"\u91cd\u306a\u3063":36,"\u91cd\u307f":[18,35,36],"\u91cd\u307f\u3064\u304d":37,"\u91cd\u307f\u4ed8\u304d":37,"\u91cd\u307f\u4ed8\u3051":[99,167],"\u91cd\u8907":[37,59],"\u91cd\u8981":[0,6,8,10,24,42,46,69,70,99,103,107,115,138,159,174],"\u91cd\u8996":[138,167],"\u91ce\u9996":37,"\u91cf\u8a08":30,"\u9234\u6728":35,"\u932f\u8aa4":0,"\u9577\u3055":[35,43,56,59,60,61,114,170],"\u9577\u3059\u304e\u308b":36,"\u9577\u4ee5\u4e0a":[56,59],"\u9577\u5185":37,"\u9577\u5185\u6b69":37,"\u9577\u578b":[60,79],"\u9577\u65b9\u5f62":33,"\u9577\u751f\u304d":103,"\u9577\u91ce":37,"\u9589\u3058":[33,151],"\u9589\u3058\u308b":[30,33,151],"\u958b\u3044":[31,33,36,77,83,140],"\u958b\u304d":[42,47],"\u958b\u304f":[33,35,42,140],"\u958b\u304f\u969b":35,"\u958b\u3051":35,"\u958b\u3051\u308b":35,"\u958b\u3053":47,"\u958b\u59cb":[10,33,36,37,56,81,99,101,114,123,126],"\u958b\u767a":[0,3],"\u9593\u9055\u3063":[33,35,36,37,148,149],"\u95a2\u308f\u3089":[99,114],"\u95a2\u4fc2":[7,9,18,19],"\u95a2\u4fc2\u5f0f":3,"\u95a2\u6570":7,"\u95a2\u9023":[0,2,3,6,8],"\u95b2\u89a7":177,"\u95be\u5024":[18,24,33,37,46,55,99,102,113,165,166],"\u9632\u304e":36,"\u9632\u3050":137,"\u964d\u9806":[59,60,99,102,173],"\u9650\u3063":56,"\u9650\u3089":6,"\u9650\u308a":[7,56,67,86,165,167],"\u9650\u6587":[33,103],"\u9664\u3044":[114,133],"\u9664\u304f":35,"\u9664\u3051":59,"\u9664\u53bb":[31,36,106,128,152],"\u9664\u7b97":37,"\u9665\u3063":35,"\u968e\u5c64":7,"\u96a3\u63a5":[0,136],"\u96c5\u5e83":37,"\u96c6\u307e\u3063":171,"\u96c6\u307e\u308a":99,"\u96c6\u3081":171,"\u96c6\u5408":[35,59,65,69,135],"\u96e2\u308c":180,"\u96e3\u3057\u3044":0,"\u9759\u7684":3,"\u975e\u308f":165,"\u975e\u4e92":[35,36,37],"\u975e\u4e92\u63db":[33,37],"\u975e\u4f9d":20,"\u975e\u516c\u958b":8,"\u975e\u5206":99,"\u975e\u5e38":[35,159],"\u975e\u63a8":[33,35,36,37,103,123],"\u975e\u63a8\u5968":35,"\u9805\u76ee":[30,76,99,101,103,159,162,174],"\u9806\u4f4d":51,"\u9806\u5e8f":[99,104,167,173],"\u9806\u6b21":[112,113,173,177],"\u9806\u756a":[53,60,113,136,167,173],"\u9818\u57df":[24,35,37,56,59,180],"\u982d\u6587":164,"\u982d\u8f9e":151,"\u983b\u5ea6":102,"\u983b\u7e41":[24,59],"\u985e\u4f3c":[7,35,36,37,102,135],"\u985e\u7d39":167,"\u985e\u7fa9":99,"\u99c4\u76ee":6,"\u9ad8\u3044":[0,76,99,102,115,173],"\u9ad8\u3044\u9806":173,"\u9ad8\u304f":[69,167],"\u9ad8\u307e\u3063":0,"\u9ad8\u6a5f":[0,7],"\u9ad8\u7cbe":0,"\u9ad8\u901f":[0,7,30,33,36,65,103,113,123,124,136,137,142,151,158,159,172,173],"\u9bae\u5ea6":138,"\u9df2\u7530":36,"\u9df2\u7530\u57fa":36,"\u9ed2\u3044\u70b9":142,"\uff01:":24,"\uff01\u300d":[99,136,137],"\uff01\u3057":2,"\uff01\uff08":13,"\uff01\uff09":[147,148],"\uff08,":173,"\uff08-":[99,173],"\uff08=":99,"\uff08@":[31,33],"\uff08\u300c":[140,167],"\uff08\u578b":61,"\uff08\u79d2":56,"\uff08age":103,"\uff08and":135,"\uff08byte":[43,56],"\uff08ci":17,"\uff08document":37,"\uff08gnu":24,"\uff08groonga":0,"\uff08least":75,"\uff08longest":[33,137],"\uff08messagepack":24,"\uff08node":17,"\uff08normalization":140,"\uff08not":135,"\uff08or":135,"\uff08perl":115,"\uff08personal":[18,19],"\uff08piro":37,"\uff08proc":51,"\uff08romaji":147,"\uff08ruby":17,"\uff08score":99,"\uff08todo":137,"\uff08tokenbigram":167,"\uff08tokenmecab":167,"\uff08true":170,"\uff08world":155,"\uff09:":[20,21,22,23,25,26,97,98,165],"\uff09\u3001":[151,165],"\uff09\u3002":167,"\uff09\u307e\u305f":[91,107,136,137],"\uff09\uff08":103,"\uff11\u3064":[5,79],"\uff11\u5bfe":5,"\uff12\u3064":180,"\uff13\u3064":155,"\uff1f\u300d":171,"\uff4d\uff59\uff53\uff51\uff4c":[126,127],"\ufffecrch":107,"\ufffetext":107,"] [":114,"]'":[115,159],"])":[41,124,126,132],"],":[69,72,76,79,81,84,85,86,91,92,96,99,101,102,104,106,107,108,109,113,114,118,121,123,126,127,128,131,133,134,136,137,138,140,147,148,150,152,167,170,171,172,173,175,176,177,178,179,180],"].":[37,99],"]/":177,"][":[33,34,35,36,37,136],"]\"":[35,36,176],"]\u3002":37,"]]":[82,84,86,99,102,113,114,118],"]]]":[82,102,137,167],"]x":176,"]}":[76,134,170],"^ \"":137,"^commit":8,"_$":[102,103],"_')":[67,78],"_\"":33,"_a":[74,164],"_accepted":96,"_account":13,"_add":[49,51,59],"_address":[74,164,177],"_adjust":[7,58,99],"_age":121,"_alloc":[49,63],"_allowed":[74,164],"_already":[74,164],"_and":[7,58],"_animal":170,"_append":[7,49,52,56],"_arg":74,"_argument":[56,59,60,74,164],"_asc":59,"_ascending":60,"_at":[31,34,35,46,49,56,59,167],"_auto":[35,36],"_available":[74,164],"_avg":99,"_avoided":[56,74,164],"_bad":74,"_basic":[115,159],"_batch":37,"_between":37,"_binary":35,"_blank":91,"_block":[74,164],"_blog":175,"_body":[78,167,179],"_bool":[31,56],"_broken":74,"_buffer":[52,74,164],"_build":10,"_builtin":[33,47,56,61],"_bulk":49,"_busy":[74,164],"_but":7,"_by":[32,33,34,37,49,56,59,60,63,176],"_byte":[74,164],"_cache":[18,36,39,40],"_calc":37,"_call":[7,74,96,164],"_cancel":[18,37,39,70,73],"_cas":74,"_character":49,"_characters":49,"_charlen":63,"_check":[10,37,56],"_checks":91,"_child":[74,164],"_circle":[18,33,36,39,120],"_clear":[18,33,37,39,56,70,77],"_client":137,"_clone":8,"_close":[7,33,37,42,46,49,52,53,56,60,63],"_code":[63,72,139],"_column":[18,31,36,37,39,40],"_columns":[18,31,35,36,37,59,69,82],"_com":8,"_command":[18,37,39,40],"_comment":134,"_commit":52,"_compare":56,"_compile":49,"_compress":43,"_concurrency":112,"_configure":36,"_connected":[74,164],"_connection":74,"_const":[7,49],"_content":[18,39,40],"_control":[74,164],"_corrupt":[74,164],"_count":[29,101,115,143],"_create":[7,18,32,33,35,36,37,39,43,47,49,57,59,61,63,69,70],"_ctx":[18,33,35,37,39,40,41,42,43,45],"_current":42,"_cursor":[18,31,36,39,40,50],"_dat":[33,34,36,37,59,103,104,136,137],"_data":[18,39,40,57],"_database":[35,36],"_dataset":[32,117,119,150],"_date":8,"_db":[18,31,32,33,34,37,39,40,46],"_db\u30d5\u30e9\u30b0":33,"_deadlock":[56,74,164],"_debug":10,"_decr":56,"_default":[35,44,48,55,159],"_defrag":56,"_delete":[33,51,56,59,60],"_delimited":38,"_delimiter":[91,107],"_denied":[74,164],"_desc":59,"_descending":60,"_descriptor":[74,164],"_device":[74,164],"_difference":59,"_dir":[8,29,33,63],"_directory":[74,164],"_dist":35,"_distance":[18,30,33,35,36,39,120],"_domain":74,"_down":[74,164],"_element":54,"_empty":[74,164],"_enc":[48,60],"_encoding":[18,39,40],"_end":74,"_enough":[74,164],"_entries":[42,75],"_entry":51,"_error":[63,74,164],"_escalation":[18,24,31,39,40,46],"_escape":49,"_estimate":[33,50],"_eval":[18,36,39,70],"_example":147,"_exec":[46,49,74],"_exists":[74,164],"_expander":36,"_expanders":[95,145],"_expansion":[33,36],"_expire":56,"_expr":3,"_expression":99,"_extract":38,"_false":56,"_file":[72,74,115,145,159,164],"_filename":74,"_files":[74,164],"_filter":[18,36,37,39,70],"_filters":37,"_fin":[35,46,49,63],"_finalizer":[46,57],"_flags":[35,43,49,59,61,63],"_float":61,"_flow":[74,164],"_for":7,"_format":[74,164],"_free":63,"_friends":172,"_full":[8,18,37,39,120],"_func":[37,46,57,63],"_function":[63,74,96,164],"_geo":[18,33,39,40],"_get":[33,34,35,37,41,42,43,44,46,48,49,51,54,55,56,57,59,60,63],"_github":[8,13],"_gqpt":114,"_gqtp":114,"_groonga":72,"_group":59,"_gt":60,"_hash":[50,59,60,69,84,85,87,99,103,104,121,123,128,131,137,138,140],"_header":79,"_hit":[101,115,143,173,177],"_hook":[18,39,40],"_host":114,"_html":[18,33,35,36,37,39,113,120],"_http":[114,115],"_hugetlb":33,"_i":[74,164],"_id":[8,33,34,37,43,46,49,52,53,54,56,59,60,63,67,73,96,99,137,173,180],"_ii":[18,39,40],"_illegal":74,"_implemented":[74,164],"_improper":74,"_in":[18,30,31,33,36,37,39,50,72,74,120],"_inappropriate":74,"_incompatible":74,"_incr":56,"_index":[18,31,36,37,38,39,40,43],"_indexer":34,"_info":[18,35,39,40],"_information":79,"_init":[33,35,37,46,49,56,63,139],"_initialized":[74,164],"_input":[72,74,137],"_install":[17,19],"_int":[49,56,61],"_interrupted":[74,96],"_invalid":[56,59,60,74],"_io":37,"_ip":177,"_is":[33,56,72,74,96,164],"_isspace":63,"_ito":33,"_itoh":33,"_ja":36,"_jis":24,"_jp":24,"_json":45,"_key":[30,31,33,34,35,36,37,43,50,59,60,61,67,69,79,81,84,85,86,87,99,102,103,104,106,109,113,121,123,126,127,128,131,133,134,136,137,138,140,147],"_keys":[59,99],"_keywords":49,"_large":[74,164],"_lcp":59,"_leading":99,"_leak":10,"_left":[33,50,74,125,164],"_len":[35,43,49],"_length":[63,164],"_level":[18,36,39,63,70],"_likes":[72,99,136,137,154],"_limit":[18,30,36,39,70,74],"_link":[74,164],"_links":[74,164],"_list":[18,30,31,33,35,37,39,70,74],"_literal":37,"_load":[18,36,39,70],"_local":[85,114],"_location":[72,176],"_lock":[33,41,56,63],"_locked":56,"_locks":[74,164],"_log":[35,36,37,63],"_logger":35,"_long":[74,164],"_lt":60,"_lzo":[43,74,78],"_malloc":63,"_many":[37,74,164],"_mask":56,"_match":[18,37,39,40],"_max":[42,44,53,74,99,132,164],"_memo":131,"_memory":[35,74],"_message":[72,175],"_messages":[8,13],"_min":[44,53,99],"_mode":37,"_modified":176,"_module":115,"_msgpack":45,"_mutex":63,"_n":[36,42,118],"_nabe":37,"_name":[32,37,43,56,72],"_names":47,"_network":74,"_new":[5,33,35],"_next":[31,36,50,53,60],"_nhooks":51,"_nil":[31,49,59,60],"_no":[31,37,59,60,74,84,85,87,99,103,104,126,127,131,133,136,137,138],"_nofile":[36,139],"_none":45,"_normalize":[35,38,59,99,103,131,133,136,137,138,140,154,167,173,175,176,179],"_not":[58,74,81,84,87,96,99,109,164],"_nromalize":140,"_nsubrecs":[37,43,67,99,171],"_number":[72,177],"_o":[74,164],"_obj":[7,18,33,34,35,36,37,39,40,43,46,47,49,50,51,52,53,54],"_object":74,"_of":[74,164],"_offline":34,"_offset":[37,49,63,74,82],"_on":[74,164],"_only":[74,164],"_op":[7,49,58],"_open":[31,33,35,42,46,47,50,52,53,60,63,74,164],"_operation":[74,164],"_operator":[43,49,50,58,59],"_optarg":[47,58],"_options":[36,137],"_or":[7,58,74,81,84,87,96,109],"_otoj":10,"_output":[37,46,74,82],"_over":[74,164],"_pack":19,"_parse":[48,49],"_pass":115,"_pat":[31,36,59,60,69,79,81,85,99,103,104,106,109,113,126,127,131,133,134,136,137],"_path":[8,34,35,36,37,56,111,114],"_per":[33,46],"_permission":74,"_permitted":[74,164],"_persistent":[43,59],"_pipe":[74,164],"_plugin":[32,33,37,63],"_plugins":[29,33],"_point":[50,124,172],"_port":114,"_position":[43,78,79,99,126,127,131,133,134,136,137,138,152,154,167,173,175,176,179],"_posting":[50,53],"_pragma":99,"_prefix":19,"_preparer":[102,147,148,150],"_prepend":56,"_previous":42,"_printf":37,"_probability":[33,102],"_proc":[18,37,39,40,46],"_process":[74,164],"_processes":74,"_proxy":115,"_ptr":[49,63],"_push":7,"_put":[18,36,39,70,88],"_pvector":49,"_ql":37,"_qlog":35,"_queries":[101,115,143,173,177],"_query":[7,35,36,37,49,102],"_range":[56,74],"_rate":[101,115,143,173,177],"_ratio":37,"_rc":[41,42,43,44,46,47,48,49,50,51,52,54,55,56,57,58,59,60,63,99],"_read":74,"_realloc":63,"_records":[35,36],"_recover":[37,47],"_rectangle":[18,30,31,33,36,39,50,120],"_recv":37,"_reference":99,"_refused":[74,164],"_register":[32,63],"_reinit":56,"_release":8,"_remove":[18,33,35,36,37,39,56,70],"_rename":[18,34,36,37,39,43,56,59,70],"_reopen":[18,35,39,70,88,89],"_repair":34,"_request":96,"_res":114,"_resource":[56,74],"_result":[59,74,99],"_results":59,"_retry":74,"_right":[33,50,125],"_rk":60,"_s":37,"_same":36,"_scalar":[43,78,79,81,84,85,87,99,106,109,121,123,126,127,128,131,133,134,136,137,138,152,154,167,171,172,175,176,179],"_score":[33,35,36,43,67,99,102,137,176,180],"_script":97,"_search":[18,33,35,39,40],"_section":[37,43,78,79,175,176],"_seek":[74,164],"_sel":38,"_select":3,"_selector":[18,37,39,70],"_send":[42,45,46],"_sequence":[74,164],"_set":[34,35,37,41,42,44,46,48,51,54,55,56,57,60],"_setoperation":59,"_setpshared":36,"_shutdowned":[74,164],"_sis":[59,103,136,137,165,178],"_size":[7,43,46,49,52,56,57,59,60,61,63],"_sjlj":37,"_skip":36,"_small":[74,164],"_snip":[35,37],"_socket":[74,164],"_sort":59,"_sortby":82,"_source":8,"_space":[74,164],"_stable":44,"_stack":74,"_stamp":139,"_started":72,"_stop":[37,106,152],"_str":[49,176],"_strerror":37,"_string":[10,36,48,49],"_success":[41,42,43,46,47,49,63,74,99,139],"_such":[74,164],"_suffix":33,"_suggest":32,"_sum":99,"_supported":[74,164],"_symbolic":[74,164],"_synonyms":145,"_syntax":[49,74],"_system":[33,74,164],"_t":74,"_table":3,"_tables":36,"_tag":126,"_tags":[172,176],"_target":37,"_temporarily":[74,164],"_term":38,"_text":[10,37,49,91],"_thread":114,"_threshold":[24,31,33,46,55],"_time":[72,139],"_timeout":[41,74,164],"_title":[114,173,175],"_to":[48,175,176],"_token":37,"_tokenize":[18,39,70],"_tokenized":[91,107],"_tokenizer":[35,74,99],"_too":[37,74,164],"_touch":[31,47],"_tp":112,"_true":56,"_truncate":[33,37,43,59],"_tsv":[45,145],"_type":[18,35,37,39,40],"_types":[37,91],"_uint":61,"_unavailable":[74,164],"_unknown":74,"_unlink":56,"_unlock":[56,63],"_unsupported":74,"_untag":[18,36,39,120],"_update":[43,59,74,99,136],"_use":[37,46,74,164],"_user":[18,39,40,57],"_users":176,"_utf":[48,60],"_valid":115,"_value":[31,33,34,36,37,43,49,56,60,67,97,98,99],"_values":[18,33,37,39,56,120],"_var":[37,49,57,61,63],"_vars":63,"_vector":[36,37,43,49,56,69,78,79,84,99,134,170,172,176],"_version":[8,18,33,37,39,40],"_versions":8,"_vesion":128,"_vprintf":37,"_vsize":49,"_weight":[37,43,69,78,79],"_when":72,"_win":63,"_with":[43,59,103,136,137,165,178],"_word":[37,106,152],"_would":[74,164],"_xml":45,"_xxx":99,"_zlib":[43,74,78],"_zone":115,"_{":36,"`/":14,"``":[30,31,49],"`hostname":113,"boolean":38,"break":111,"byte":[35,43,56,59,73,114,133,164],"case":[63,119,154],"char":[37,43,46,47,48,49,56,57,59,61,63],"ci\u4e00\u822c":17,"ci\u4e0a":17,"class":[126,127,128,133],"const":[34,43,46,47,48,49,56,57,59,60,61,63],"continue":37,"cpu\u30b3\u30a2":[113,158],"d\u30ad\u30fc":173,"dat\u30ad\u30fc":36,"default":14,"delete":[14,18,30,31,33,39,56,70],"do":[37,87,114],"double":137,"enter\u30ad\u30fc":36,"enum":47,"error\u30bf\u30b0":35,"export":14,"false":[8,31,36,37,77,78,80,81,82,84,87,88,89,90,96,105,109,121,126,131,134,136,137,155,170,178],"float":[35,99,123,143,155,170],"for":[2,35,38,41,45,47,49,50,56,63,73,87,96,109,111,115,117,118,119,123,133,137,139,150,154,155,162,176],"function":[38,46,63,72,118,120,164],"geopoint\u9593":33,"get\u30e1\u30bd\u30c3\u30c9":116,"gmo\u30e1\u30c7\u30a3\u30a2":37,"html\u30bf\u30b0":128,"id\u9806":60,"if":[7,41,43,45,46,47,50,56,57,59,63,69,73,87,96,111,115,117,118,119,137,139,154],"import":8,"in":[7,14,18,29,35,37],"int":[31,35,36,37,41,42,43,46,47,49,50,51,52,53,55,56,57,59,60,61,63,69,81,99,102,109,121,123,131,132,136,137,143,147,148,150,155,167,170,171,172,173,175,176,180],"interface":118,"long":[52,55,96,111],"lzo\u3044":78,"mo\u30d5\u30a1\u30a4\u30eb":13,"new":[8,14,46,63],"nginx\u3089\u3057\u3044":37,"null":[7,33,35,36,42,43,46,47,49,50,53,56,57,59,60,63,98,99,104,126,127,128,133],"package":[8,18,19],"po\u30d5\u30a1\u30a4\u30eb":13,"post\u30e1\u30bd\u30c3\u30c9":36,"return":[72,139],"sort\u30ad\u30fc":30,"this":[14,35,43,45,46,47,56,63,87,96,99,111,115,117,118,133,136,137,139,154,159,170,173,177,179],"true":[30,36,37,69,77,78,79,80,81,82,84,86,87,88,89,90,95,96,97,98,99,103,105,106,109,121,123,124,125,126,127,128,131,133,134,136,137,138,140,152,155,170,171,172,173,175,176,178,179,180],"try":[41,176],"var":[7,24,63,79,111,113,115],"void":[34,41,44,47,48,55,56,59,60,63],"while":87,"with":[3,8],"x\u30df\u30ea":[137,155],"{\"":[69,76,97,98,102,114,126,127,131,136,137,138,147,148,150,152,175],"{\"_":[99,121,136,137,170,172,180],"{\\":86,"{key":99,"{label":99,"{language":13,"{name":137,"{path":24,"{prefix":[24,95],"{table":[99,131],"{time":139,"{type":118,"{user":154,"| _":180,"| c":137,"| n":137,"| y":36,"|')":78,"|..":37,"|:":139,"|<":139,"|>":139,"|allow":[99,136],"|correct":102,"|enable":107,"|ga":99,"|http":114,"|key":[99,103,131,133,136,137,138,154,167,173,175,176,178,179],"|ng":99,"|none":99,"|on":99,"|oo":99,"|persistent":[79,81,104],"|ro":99,"|suggest":102,"|table":103,"|with":[37,69,78,79,91,99,126,127,131,133,134,136,137,138,152,154,167,173,175,176,179],"||":[7,35,36,137,175],"})":118,"},":[69,81,92,99,106,107,108,109,114,123,128,131,136,137,138,172,173,175,176,178,179],"}.":[99,131],"}/":[13,24,95],"}\\":137,"}]":[96,97,98],"}attr":36,"}e":137,"}|":139,"}}":69,"~*":49,"~number":137,abcde:91,about:[14,17,42,63,72,73,120,139,154],above:[96,118,150],ac:140,accept:[31,73],accepted:96,accepts:[109,118],access:154,accesses:[43,154],accessor:[56,59],accurate:133,acquire:41,acquires:41,actual:115,add:[13,14,26,35,37,99,107,120],added:[38,50,59],adding:[14,73],additional:36,address:[33,35,118,164],adjust:99,adjuster:[37,69],admin:[31,37],advanced:38,advantage:133,after:[14,50,118,154],again:[41,115],against:[43,47],age:[79,99,121],ages:[103,104,121],aggregate:133,aio:36,akio:[31,35],alert:[37,88,89,115,139],alice:[81,99,109,115,121,131,136,159,176],alisa:131,all:[8,35,43,50,73,87,99,136,137,139,150,154,179],alloc:[101,115,143,173,177],allocate:[18,166],allocated:63,allocates:63,allow:[21,35,99,136],allowed:119,allows:133,almost:154,already:[41,63,119,154],also:[73,99,118,133,136,137],always:154,am:[127,133],amd:8,an:[47,50,59,63,111,115,154],and:[14,36,37,38,41,43,45,47,49,50,56,59,63,87,96,99,106,111,115,117,118,119,131,133,137,139,150,152,154,175,180],animation:172,ann:8,api:[1,3,7,11],appears:133,apple:140,application:[115,159],applications:133,applied:[38,154],appveyor:37,april:8,apt:[8,14,17,21,26,35],aptitude:10,ar:[107,165,167],aramaki:[31,33],arc:107,architectures:8,archive:[18,19],are:[13,36,41,49,50,63,69,87,99,111,117,118,119,133,139,150,154],aren:154,args:113,argument:137,arguments:63,armhf:37,arnaud:33,array:76,art:176,arted:137,article:175,articles:175,as:[13,35,63,73,96,107,115,117,118,119,133,154,162],ascii:[136,137],assigned:96,associated:63,assume:96,assumed:57,at:[14,38,50,139,154,176],auth:[115,159],auto:102,autoconf:33,autogen:[8,13,35],automake:31,automatically:111,available:[38,63],avg:[37,99,112],aware:63,back:137,backup:[47,85],backward:109,bad:[36,37,164],base:[8,63,115],baseball:[172,175],based:[50,96,126,127,133,162],bash:24,be:[14,43,47,49,50,56,59,63,73,87,96,109,118,119,139,150,154],became:162,because:[115,118,143,150,154],become:38,been:8,before:17,begin:112,behaves:118,bernard:29,beta:38,between:[18,36,37,39,56,119,120],bi:[165,167],bigram:[114,117,165,167],bill:[165,167],billiard:[165,167],bin:[14,27],binary:[0,143,155],bind:33,binding:[38,126,127],binlib:8,bit:[17,19,20,21,22,25,26,27,36,114,155],black:140,block:170,blog:[134,167,173,175],blogroonga:3,blogs:167,bob:[81,99,109,115,121,131,136,159,176],bom:31,book:137,bookmark:69,bookmarks:69,bool:[36,106,124,125,136,152,155,170,178],boost:147,boston:176,bottom:[33,50,125],brazil:171,brew:[14,23],british:179,broken:[43,47,87,111,164],brooklyn:176,brother:136,browser:13,bsd:[24,37],buf:[43,56,59],buffer:[56,76],buffered:52,bug:[35,38],build:[8,14,17,21,26,27,36,101],builder:52,building:45,built:56,bulk:49,but:[96,109,118,119,154],by:[14,35,46,47,49,50,63,73,96,111],bye:106,bytes:[28,57,63],cache:[18,30,35,39,42,56,70],calc:99,calculate:118,called:63,caller:57,calling:63,calros:121,camp:176,can:[13,14,41,45,47,63,73,96,109,111,115,133,139,150,154],cancel:[73,96],canceled:96,canceling:73,cancels:96,candidate1:102,candidate2:102,candidate:[102,118],cannot:[18,166],carlos:[81,109],cas:164,cd:[8,13,20,21,22,23,24,25,26,27],cdbs:33,ceekz:36,center:124,centos6:35,centos:[8,14,18,19],central:176,cflags:[8,25],ch:107,change:[14,35,115,159],changed:[38,96,115],character:[63,139],characteristics:133,charlie:176,check:[10,18,30,33,39,56,70],checked:8,checking:[47,118],checks:[37,47,91,111],china:171,chroot:8,chunk:[76,154],chunks:168,ci:16,ciritical:115,cities:123,city:[123,176],clean:10,clear:[37,56,87],cleared:87,clearlock:[18,30,35,37,39,70],clears:43,client:115,clone:[3,8,9],clumns:154,cmake:[24,27,35,36],code:[13,72,109,139,143],codes:8,col:56,color:140,colum:154,column:[7,18,30,31,33,34,35,36,37,39,43,47,50,56,57,59,62,69,70],columnn:35,columns:[31,35,86,99,111,117,154],com:[5,171],come:176,command:[14,17,35,44,46,63],commands:73,comment:[134,175,176],comments:[85,134,175],commit:13,common:[33,59,60,137],compared:133,compatibility:[109,140],compatible:115,complete:[34,102,118,147,149],composition:140,compress:78,compute:154,computed:63,concatinated:118,concurrently:139,cond:36,condition:137,conditional:102,conf:168,config:[27,30,71],configuration:[36,115,154],configure:3,confirm:13,confiugration:154,conifugration:17,connection:164,container:49,content:[33,35,36,37,72,99,115,128,131,133,134,136,137,138,152,154,159,175],contents:63,context:[46,49,56,115,133],contrast:115,copied:63,core:114,cores:118,correct:[102,118,148],correction:148,corresponding:56,cosmo:[36,37],count:99,country:[84,171,177],cover:133,coverage:10,cpu:[0,24,114,115,118,159],crashed:87,crch:107,create:63,created:[63,118,176],createrepo:8,creates:[49,63,117,139,154],creating:154,crit:[88,89],critical:[63,139],ctrl:177,ctx:[5,42,43,46,47,49,56,57,59,63],curl:[17,23,24,35,96,115,118,143,159],currently:[45,47,115],cursor:[50,53,60],customize:115,customized:139,cutter:3,cxxflags:[8,25],daemon:119,daemonize:118,daiki:[31,32,35],dangerous:[43,47,87],dash:24,dat:151,data:[47,51,111],database:[47,56,59,87,111,115,117],dataset:[117,118,119],datasets:117,date:114,dave:121,day:[138,139],db1:159,db2:159,dbms:133,dcb:37,dcmake:27,dd:[137,139],ddl:167,de:13,deb:[8,21,26,35],debhelper:33,debian:3,debootstrap:8,debug:[88,89,115,139],decrypt:8,defalt:31,define:[18,39,70],defines:117,defrag:[18,30,36,39,70],deleted:56,delimit:36,demo:172,depends:38,deprecated:[71,99],derived:119,describe:63,describes:[14,72],description:[165,176],dest:[59,112,113],detail:114,details:[63,73,139,154],dev:[21,26],develop:[71,152],developed:152,developer:176,developing:152,development:176,develops:152,dictionary:140,diff:114,different:118,digits:139,directive:115,directory:[63,118,119,164],disable:[33,115,118],disabled:139,disables:[14,115],dist:8,distance:123,distinct:118,distributions:8,dll:[33,35,37],doc:[8,12,13,14,179],document:[8,31,113,116,126,127,133,137],documentation:[14,17,154],documentations:120,documents:[131,133],does:111,doesn:[96,115,154],doing:87,domain:[12,49,56,63,79,81,104,113,164],don:[45,49,87,115,150],done:41,download:[8,20],downloads:27,dpkg:8,dragonfly:31,draw:172,drilldown:[30,37,82],due:133,dump:[18,30,31,33,35,37,39,45,70],ea:[107,139],each:[49,73,96,102,115,118,139,147,148,150],ear:107,earch:107,earlier:109,ec:99,ecmascript:[35,36,99,135,137],edge:5,edict:37,edit:[8,18,30,39,120],editor:13,editrc:33,eggs:175,eight:173,eito:36,el:20,elapsed:[72,118,139,143],element:[69,137],elements:69,elfring:35,ellip:123,emacs:13,emerg:[88,89],emergency:[115,139],emphasize:128,en:[102,107,147],enable:8,enabled:139,enables:115,encoded:118,encoding:[48,63,143],ency:114,end:[112,126,143,164],endpoint:[118,119],eng:[102,147],engi:[102,147],engin:[102,147],engine:[102,107,126,127,133,147,148,149,150],enginen:147,english:[2,14,99],enhanced:38,enourmous:150,enqueue:5,entries:[85,99,126,127,136,137,154],entry:[51,77,78,80,82,83,84,86,87,105],env:145,environment:17,eof:113,epel:[20,35],eric:121,errno:37,error:[36,37,50,63,72,88,89,115,139],escape:49,escaped:49,estimated:50,estimates:50,etc:[115,154,159],etime:112,euc:[24,36,113],evaluated:97,event:[102,117,119,147,148,150],events:159,ex:107,exact:7,example:[99,115,118,147,154,170,171,172,173,177,180],examples:31,excel:145,except:154,exclude:[35,36,37,121],exe:[8,27],exec:164,executable:111,execute:[118,119,150],executed:177,executes:118,executing:[46,118],exist:96,existence:47,existing:[14,111,119],exists:111,exit:111,exits:111,expect:37,experimental:111,explicitly:14,expr:[49,56,57,62],express:[27,35,36],expression:[49,98,99,118,154],expressions:115,ext:107,extract:[139,150],extracted:49,extracts:49,fa:107,factor:[37,99],failed:41,failures:8,fast:[72,86,99,107,126,127,128,133,136,137,175],favorite:13,favorited:176,favorites:176,fd:118,feature:[13,47,111,115],fedora:[8,14,18,19],fetched:150,file:[14,30,31,115,118,154,164],filename:164,files:[8,115],fills:118,filter:[31,35,36,69,82,84],fin:57,finalizes:63,find:14,finds:59,finished:[96,139],firefox:13,firewood:[35,36],first:[63,96,99,136,137,176],five:173,fix:[38,79,81],fixed:35,flags:[43,46,49,53,56,59,60,61,63,76,78,79,81],floating:155,flower:170,fluent:9,followee:176,follower:176,following:[14,43,63,117,118,119,139,154],fontaine:33,fork:[13,113],form:[118,136,140,173],format:[13,38,45,63,118,139,143],formats:139,formula:8,found:[50,59],four:[139,173],frank:121,free:[31,37,76,139],freebsd:[18,29,39],frees:63,freq:150,frequency:[37,102,147,148,150],friends:172,from:[38,46,47,49,50,63,96,115,118],fsf:35,ftb:38,ftp:114,fu:107,ful:107,full:[8,107,133],fulltext:[107,126,127,133],fumiyasu:33,func:[46,57,63],functionality:118,functions:[37,38,63],ga:[107,114,140],garbage:[36,76],gb:[143,168],gbyte:28,gcc:[20,22,24,25,33,35,36],gdb:10,gem:8,gemfile:35,generate:[14,63],generated:[14,63,117],generates:117,generation:14,geo:[18,30,31,33,34,35,36,39,50,120],geodetic:155,geoindex:172,geopoint:[30,31,36,50,123,124,125,155,170,171,172],geoppoint:50,get:[33,35,37,50,106,107],getaddrinfo:35,gets:63,gettext:[13,14],ggdb:8,ghz:114,gi:107,gib:[28,154],git:[8,9,13],github:[8,9,13,15,17,29,33,35,36,37,78,140],glib:36,glossary:17,gnu:[14,18,19],gnupg:8,go:138,gone:172,goo:[136,137],good:[99,106,136,137,138,152],google:[99,149],gpg:8,gpl:38,gps:0,gqtp:[0,1,3],gr:[99,107],grease:170,gregex:36,grep:[20,21,22,26],grn:3,grndb:[18,37,39,110],grnslap:[18,39,110],gro:133,gronga:[145,149],gronnga:149,gronoga:115,groo:99,groogna:[34,159],group:[59,171],grroonga:149,gt:[126,127],gtar:25,gted:13,gtihub:33,gzip:[24,35,158],halfwidth:140,hana:172,hanako:84,handle:154,handled:115,handling:154,hard:154,hardy:31,has:[8,38,50,59,63,96,117,139,154],hash:[151,176],hat:3,have:[45,47,138,154],haystack:7,hdd:114,head:[37,112,164],hello:[99,106,137,138,152],help:[10,13,33],hendro:36,here:[63,115,117,118,119,139,150,154],hex:172,hh:[137,139],highlight:[18,37,39,120],hino:36,hiroshi:[31,33],hmm:176,hobby:139,hoge:122,home:[8,24],homebrew:3,homepage:114,hook:51,horikoshi:33,host:[114,177],hostname:[113,115,116],hottolink:38,hour:[41,139],how:[14,63],html:[3,8,10],http:[0,1,8,13,18,20,21,22,23,24,25,26,27,31,33,35,36,37,39,42,69,85,96,110,112,113,114,115],httpd:[8,34,35,36,37],httprewritemodule:115,https:[8,13,17,140,158],hw:23,ia:[165,167],ic:53,ichii:33,id:[0,31,37,43,46,50,53,54,56,59,60,67,69,72],idf:37,ids:[50,69],ieee:155,ifexists:86,ignored:[35,47,96],il:[165,167],ill:165,illegal:164,immediately:96,implemented:38,improper:164,improving:154,inappropriate:164,include:[12,37,87,121],incompatible:164,increase:154,increasing:154,incremented:73,index:[8,37,38,43,47,50,52,53,79,111,133,136,137,154,172,175],indexblog:175,indexbuf:43,indexed:111,indicates:139,info:[88,89,115],information:139,init:[24,35,37,57],initialization:118,initialized:63,initializes:63,innodb:0,input:[45,72,86,164],install:[8,10,14,17,19,20,21,22,23],installer:8,instantly:133,instead:[77,99,113,162],intel:114,internal:37,internally:[45,46],interrupted:164,into:[118,150],introduced:115,introduction:[3,11],inv:114,invalid:[63,99,118,164],inverted:133,io:38,ip:[114,118,177],ipa:22,iptables:159,is:[13,14,35,37,41,43,45,46,47,49,50,57,59,63,69,73,87,96,99,106,107,109,111,115,117,118,119,126,127,128,131,133,136,137,139,143,150,152,154,159,162,164,170,173,175,177,179],isn:46,iso:137,issue:15,issues:37,it:[14,43,45,46,47,49,50,59,63,72,86,87,96,99,109,111,118,119,136,137,138,139,154,162,172],itagaki:31,item:[102,117,147,148,150],items:99,its:[49,63,139],itself:69,ivh:[20,22],iwai:[34,35],ja:[8,13],james:178,january:118,japan:[84,171,177],japanese:2,jason:178,javascript:[18,115,116,169,177],je:178,jeff:178,jekyll:8,jemalloc:37,jennifer:178,jersey:176,jessie:[36,37],jiro:172,jis:60,job:114,jobs:114,john:[84,178],joseph:178,jquery:[31,37],json:[31,33,35,37,45,69],jsonp:[33,118],juman:22,jun:37,just:[47,56,96,117,118,138,139,176],ka:140,kana:[102,117,147,148,150],karmic:10,kashihara:37,katagiri:36,katakana:[140,147],kawada:37,kawaji:35,kb:168,kbytes:114,keeps:69,ken:172,kenichi:[31,33],kernel:154,key:[8,35,36,37,43,56,59,60,69,72,79,81,84,85,86,96,99,102],keybuf:59,keys:[37,59],keyword:[35,36,49,99,126,127,133,136],keywords:49,kib:154,kinjirou:172,kiske:35,km:176,know:111,ko:38,koi:[24,35,113],korea:171,kuriyama:37,kwic:133,kytea:[24,35,36,107],language:13,large:[111,154],larger:[119,150,154],largetext:151,last:[35,176],lat:114,latency:114,latin1:35,latin:[24,35,113],launchpad:[26,37],layout:8,lc:13,learing:150,learn:[118,119],learned:119,learning:118,least:154,left:50,length:63,lenny:33,let:138,letter:140,level:[63,88,89,113,115,119,139,164],levels:115,lexicon:[103,104,114,131,134,138,140,175],lf:112,lgpl:38,li:[165,167],lib:[31,36,95],libedit:[22,24,30,31,33,35],libevent:[21,24,26],libgcc:37,libgroonga:16,liblzo:[21,26],libmecab:[8,21,26],libmsgpack:[21,26],library:45,libstemmer:37,libwinpthread:37,libzmq:[21,26],license:[8,38],like:[43,115],limit:[33,50,59,60,82],limitation:154,limits:154,line:[17,46,72,115],lines:[10,118],link:[170,171,177],links:[170,171,177],linux:[18,39,114],lion:35,list:[8,14,117,119],listen:[35,113,115,159],lists:37,ll:[107,165,167],llt:107,load:[18,30,31,33,34,35,36,39,69,70,71,77,81,84,85],loaded:98,loads:[115,119],local:85,locale:13,localhost:[8,33,96,112,113,114,115,118,143,159],localnames:85,localstatedir:[24,31],location:[17,36,72,115],lock:[18,37,39,41,47,56,70,77],locked:63,locks:[63,87,133],log:[8,18,24,33,35,39,63,70],logaling:17,logged:139,logrotate:[35,37],logs:[103,104,118,119,139],logyyyymmddhhmmss:118,longer:38,longest:59,longitudexlatitude:36,longtext:[50,155],lru:75,ls:8,lt:[107,126,127,133],lte:107,lts:[8,17,26],lucid:[8,31,36],lz4:[24,37],lz:24,lzo:[33,35,37,43,164],m6:25,mac:[18,19],macports:[18,19],mail:114,main:21,make:3,makecache:[20,35],makefile:8,malloc:37,man:[30,121],manage:14,managed:[73,96],management:[17,47,133],manager:[115,159],manages:111,managing:47,many:[69,117,154],map:[33,139,154],mapped:154,maps:154,mariadb:[36,37],mark:140,marked:162,markup:12,markus:35,marverick:31,masaharu:[34,35],masahiro:31,massachusetts:176,master:115,match:[18,24,31,36,37,46,69,82],matched:[50,118],matsuu:31,maverick:33,max:[35,37,60],maximum:73,may:[43,47,87,96,111,154],mb:35,mbytes:114,me:[94,153],means:[45,50,63,87,96,99,115,139,154],mecab:[0,8,20,21,22,23,24,26,30,31,33,35,36,37,38],meerkat:33,memcached:[0,1,10,18,169],memo:[37,131],memory:[18,63,154,166],memos:152,memry:154,mercurial:8,message:[63,89,139,175],messagepack:[24,33,34,35,45],messages:36,metadata:35,method:115,micro:176,microsecond:139,microsoft:27,migrated:[99,136,137],mike:84,millisecond:41,milliseconds:118,mime:159,min:[35,37,41,60,99,112,114],minagawa:36,mingw:[8,33],minimum:63,minute:139,mitsuhiro:31,mkdir:85,mkostemp:37,ml:6,mlock:31,mm:[137,139],mmap:[18,36,166],modern:176,moero:172,money:172,monkey:170,month:[139,172],montywi:34,mooz:33,more:[63,111,119,133,154,164],moritapo:172,moritars:175,morning:138,most:50,mpaa:121,mruby:[36,37,97,98],msec:41,msg:5,msgpack:[143,164],msvc:29,msyql:69,mte:38,multiple:[96,118],multithread:59,multithreading:96,munin:[20,21,22,24,26,30,33,35],museum:176,music:[139,172],must:[43,47,49,50,63,87,96,111,118,119,150,154],mutex:[36,63],mv:90,my:[99,136,137],myisam:0,mysql:[0,8,20,21,22,26,37,38,69,91,99,126,127,133,145],name:[43,46,47,48,49,56,57,59,61,63,76,78,79,80],namebuf:[43,56],nanoseconds:139,naoina:[35,36],nargs:49,narwhal:33,natty:33,ne:107,need:[14,45,49,96,109,118,154],needed:[46,115],needs:154,negative:[57,63],nested:36,net:171,netbsd:[31,36],network:164,newark:176,newly:[109,133],news:[8,29],newvalue:43,next:[50,57],nfkc:140,nfs:24,ng:107,nginx:[20,21,22,26,35,36,37],nginxhttpstubstatusmodule:37,nice:138,night:[138,179],nihon:147,niku:37,nine:173,nippon:147,nise:37,nneded:154,no:[30,36,38,50,99,102,151,154,164],noarch:[20,22],nogpgcheck:35,non:111,none:[24,87,91,99,106,107,115,117,164,175],nonexistent:99,normalize:[18,37,39,70],normalized:91,normalizer:[18,37,39,70],normalizerauto:[91,92,99,103,104,106,107,126,127,131],normalizernfkc:92,normalizers:92,normallexicon:140,normally:[45,46,154],note:[63,96,118,154],nothing:[45,111],notice:[88,89,115],notification:139,notified:96,now:[14,18,39,120],nroonga:[17,131,175],nsis:8,nsubrecs:[43,99,171,172,176],nterms:76,nul:[33,47,63],number:[50,57,63,76,113,114,118,137,150],numbers:73,nvars:57,ny:176,o0:8,obata:31,obj:[43,47,49,51,54,56,57,58,62,76],object:[35,47,51,56,57,58,59,62,63,87,137,155,164],objname:[77,83],obsolete:162,obtained:63,occurred:[50,154],ocelot:[33,36],october:37,of:[14,35,38,43,46,50,57,59,63,76,87,96,102,115,117,118,119,126,127,133,134,139,150],off:[37,115],official:8,offset:[47,49,50,51,56,59,60,63,82],ok:84,old:[8,63],oldvalue:43,omitted:[87,143],on:[13,38,45,47,50,56,59,63,107,115,118,126,127,133,159],one:[63,87,111,119,133,154],oneiric:[33,36],onga:133,ongaeshi:[31,35,36],onigmo:[29,37],oniguruma:29,only:[45,63,96,111,115],onto:154,oo:[107,151],ooo:151,op:[43,49,50,58,59],opaque:164,opened:[111,139,154],opens:[47,50,154],operation:[50,87,164],operator:50,optarg:[47,58],option:[14,118,119,139],options:[111,112,113,114,115,117],or:[37,43,45,47,50,59,63,87,96,99,109,111,118,131,136,139,145,154,164,179,180],oracle:[18,19],orangain:36,org:[171,177],origin:13,original:[45,85,178],os:[8,14,18,19],other:[41,43,47,63,87,119],otherwise:[56,63,96],out:114,output:[31,34,35,36,37,45,46,69,82],outputs:[119,139],outputting:45,overcommit:154,owned:49,owner:115,packages:[8,13,20,21,22,23,24,25,26,27,162],pair:[102,117,147,148,150],palallel:8,palalles:8,pangolin:[8,26,35],parameter:[50,57,59,73,96,109,118,154],parameters:[87,118,154],parent:99,partial:7,pass:115,passed:[8,47,96],passes:[8,96],pat:[60,151],patch:38,path:[14,43,47,56,59,63,79,81,95],patprefix:178,patsuffix:178,pcre:35,pentium:114,performance:[118,133,154],period:29,permission:164,persistent:[47,59,79],pg:121,php:35,physical:76,pid:[24,30,113],pikonyan:172,pip:14,pkg:[24,25,31],pkgs:20,platforms:63,play:179,please:[13,47,162],plugin:[18,33,37,39,40],plugins:154,po:3,poedit:13,point:[34,50,81,96,118],pointed:63,pointer:63,popular:99,port:[23,114,118,177],porting:38,position:[50,63,106,107],posix:137,post:[8,35,36,37,99],posted:176,postgresql:[0,133],posting:50,ppa:[18,19],pre:38,precise:[8,26,35],prefer:118,prepare:115,previous:162,price:170,priority:99,problem:154,proc:[20,21,22,26,51,57,59,62,63,99],process:[18,39,43,47,87,115],processed:139,processing:139,processor:[20,21,22,26],program:[118,119],progress:139,project:137,properties:139,protocol:[0,113,116,143,159,162],provide:118,pthread:[33,36],ptr:63,pub:8,published:8,pull:8,push:[8,13],put:136,putting:154,python:[8,14],qps:[112,114],quantal:35,queries:[114,133],query:[0,7,18,32,35,36,37,39,49,58,69,82,95],queryexpandertsv:[18,35,36,39,95,131,144],quetzal:35,queue:5,quiet:164,quit:[8,18,39,70],quiz:172,quote:137,qwik:85,raccoon:172,radious:124,rake:8,rakutan:175,raltime:150,ram:114,rand:[18,39,120],range:[18,37,39,70,79,81],ranguba:[37,42,69],raring:[36,37],rc:[74,107,139],rch:107,rd:[165,167],rdbms:0,re:[47,154],reaches:154,read:[133,164],readme:[8,36],reads:119,ready:14,real:[133,154],realloc:31,really:[99,136,137],realtime:[102,150],reasons:111,receiver:[118,119],recently:75,recommends:154,record:[50,59,69,123,170,173,177],records:[50,139,150],recoverable:111,recovered:47,recovers:[47,111],rect:123,rectangle:[35,50],recursive:[8,9],recursively:87,red:3,redcloth:8,redhat:[24,33],reference:[36,69,99],register:[18,29,36,39,70,91],registered:[63,133],regular:[115,118],related:154,relation:56,relax:154,release:[8,27],released:[8,38],remained:139,remove:[56,91],removep:56,removing:47,rep:114,replaced:[117,119],replied:176,replies:175,reply:175,repoforge:[20,35],report:111,reports:[63,111],repositories:8,request:8,requests:[73,118,139],required:[115,118,159],requires:111,reqular:118,res2:59,res:[50,58,59,114],resizes:63,resource:164,response:[96,118],rest:63,restart:162,restarted:154,result:[7,59,96,111,119,123,133,143,164,175],results:[35,59,118,133],retry:164,returned:[50,63],returns:[43,50,59,63,96,109,118],reverse:[8,115],rewrited:38,rf:[20,115],rid:[52,53],right:50,ringtail:[36,37],rinse:8,rk:147,rlimit:[36,139],rm:115,ro:107,root:[36,115,177],rose:170,row:133,rpm:[8,20,22,31,33,35,36,37],rpmforge:20,rroonga:[17,36,37,42,131,134,135,175],ruby:[0,8,17,18,35,36,37,38,39,69,70],rubygems:35,run:[3,8,10],running:[73,96],runs:119,sa:[102,148],sae:[102,148],saer:[102,148],saerc:[102,148],saerch:[102,148],salamander:[36,37],same:[36,41,69,73,96],sample:[114,118,119],satoh:33,saucy:[36,37],save:[8,118],saves:118,say:137,scan:10,schema:117,score1:7,score2:7,score:[7,36,43,69,81,99,102,109,118,123,131,137,147,148,150,167,172,173,175,176,180],scorer:[18,82],script:[37,86],se:[107,147],sea:[107,147],sear:147,searc:147,search:[33,35,59,60,99,102,107,126,127,133,136,137,145,147,148,149,150],searched:50,sebastian:37,sec:41,second:[96,139],section:[43,52,63],sed:[33,35],see:[14,63,73,154],segment:76,segments:76,segv:[30,36],select:[18,29,30,31,32,33,35,36,37,39,42,69,70,71,73,75,81,84,94,96],selector:82,selects:50,self:114,sen:38,senboku:36,send:96,sender:[118,119],senna:29,separated:45,sequence:[73,102,117,139,147,148,150],serach:148,serch:[102,148],sergey:37,serihiro:35,serve:8,server:[35,37,96,115,118,159,162,172],service:[148,154,162],session:118,set:[56,114,154],sets:46,setting:154,seven:173,sh:[8,17],sha:8,sharding:29,share:24,shared:[41,43,47],shibuya:31,shidara:33,shift:24,shimada:31,shimoda:31,shimomura:35,shinya:35,sho:36,shopping:138,shops:165,shorttext:[31,33,37,50,60,69,72,78,79,81,84,85,87,99,102,103,104,106,109,113,114,121,123,126,127,128,131,133,134,136,137,138,140,147,148,150,151,152,154,155,167,170,171,172,173,175,176,177,178,179,180],should:[14,63,73,109],show:30,shows:45,shutdown:[18,31,39,70],sid:[33,37,76],sigcont:36,sigint:33,sign:8,signing:8,sigsegv:59,sigstop:36,sigusr:33,silent:17,simple:162,simplest:73,since:[109,139,162],sis:33,site:[87,170,171,172,173,177,180],sitecountry:[171,177],sitedomain:[171,177],sites:85,six:[139,173],size:[43,56,59,60,61,63,73,76,154],sizeof:49,sjis:[24,38,113],slash:137,sleepy:138,smaller:[69,139],snippet3:133,snippet:[18,35,36,38,39,120],so:[47,56,59,154],soccer:172,socket:164,soft:154,software:26,solaris:[18,19],solr:137,some:[73,117,139,154],sort:59,sortby:[33,82],sound:[140,148],soundkitchen:[33,35],source:[8,47,72,78,79,81,172,173,175,176],sourceforge:8,sources:[14,79],space:[63,69,136],span:[126,127,128,133],speakers:2,spec:[8,31,35,36],specfied:50,special:99,specified:[50,57,63],specifies:118,specify:[13,87,115,117,118,119],specifying:63,speed:149,spelling:179,sphinx:[11,12,13,14,37],sphr:123,spil:29,sports:172,sql:171,squeeze:[8,36],src:59,ss:[137,139],ssh:8,ssssss:139,st:[107,137],stable:71,stack:[36,164],stamp:139,standalone:119,standard:155,start:[118,138,162],started:[72,99,136,137,139],starting:63,starttime:[101,115,143,173,177],states:84,status:[18,30,31,35,36,39,70,84],still:96,stop:[35,115,162],storage:[126,127],store:[49,50],stored:[119,150],stores:49,str:[49,63],strerror:37,strict:37,string1:122,string2:122,string:[7,35,37,49,56,57,63,73],strlen:63,studio:[27,35,36],sub:[8,18,36,39,120],subject:36,submit:[102,118,147,148,150],subrecord:36,substitution:131,succeeded:[78,81,84,87,109],success:164,successfully:63,successor:137,such:[13,35,73,117,118,119,133,150],sudo:[8,10,14,20,21,22,23,24,25,26,35,154,162,168,177],sufficient:63,suffixsearchterms:[136,137],suggest:[18,31,33,39,70],suggestion:[117,118],suited:133,sum:[37,99],summary:114,sunos:37,superior:133,support:38,supported:[38,96,115],supporting:115,supports:[38,63,119],swap:154,swig:38,synonym:[99,179],synonyms:145,syntax:164,syscall:37,sysctl:[154,168],system:[25,99,133,136,137,154,155],systemctl:162,systemd:35,systems:133,tab:45,table:[7,18,31,33,34,35,36,37,39,43,47,50,53,56,57,59,60,69,70,71,78],tablename:71,tables:[85,111,117,150,154],tag:[8,99,172],tags:[69,79,99,103,104,172],tahr:[26,37],tail:[8,164],tajima:35,takahiro:31,takashi:[33,84],takayuki:33,take:111,takes:96,takuto:31,tar:[8,20,21,22,23,24,25,26],target:[14,27,37,43,47,49,50,56],taro:172,tasuku:38,tatsuya:35,tc:[53,60],tcp:113,te:107,temporary:47,term:[76,78,179],terminal:176,terms:[76,99,106,113,126,127,131,133,136,137,152,154,167,173],test:[8,10,114,170,173,175,176,177],testdb:[114,119],tests:8,tex:107,text:[35,50,72,85,87,99,107,114,131,133,136,137,143,151,154,155,159,175],than:[69,139,150,154],thanks:176,that:[35,41,43,45,49,50,57,59,63,87,96,99,115,118,133,139,154],the:[12,14,35,38,41,43,45,46,47,49,50,56,57,59,63,73,87,96,99,111,115,117,118,119,123,133,136,137,139,150],theater:179,theatre:179,their:154,them:[49,154],then:[63,115,118],there:[69,136,154,162],thesaurus:99,these:[111,133],they:[139,154],thread:[5,43,47,59,63,87,114,139],threads:[118,139],threasd:113,three:[170,173],threshold:[33,55,56,83],through:115,thus:[117,119],tid:53,time:[29,33,35,36,37,96,102,111,114,118,130,139,147,148,150,154,155,167,170,176],timeout:[41,56],times:[41,96],timeuot:41,tips:3,title:[8,36,37,87,134,170,171,172,173,175,177],titles:[136,137],tld:171,tmp:[8,36,79,81,102,104,113,118,145,159,173,177],to:[14,35,38,41,43,45,46,49,50,56,59,63,72],tobby:131,todo:[43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,64,66,68,69,72,91,94,99,117,120,129],tokenbigram:[99,103,104,106,107,108,113,126,127,131,133,134,136,137,138,148,151,152,153,154,165,167,173,175,176,179],tokenbigramignoreblank:[108,153,167],tokenbigramignoreblanksplitalpha:153,tokenbigramignoreblanksplitalphadigit:153,tokenbigramignoreblanksplitsymbol:[108,153,167],tokenbigramignoreblanksplitsymbolalpha:[108,167],tokenbigramignoreblanksplitsymbolalphadigit:[108,167],tokenbigramsplitsymbol:[31,108,153,167],tokenbigramsplitsymbolalpha:[99,107,108,153,165,167],tokenbigramsplitsymbolalphadigit:[108,131,148,153,167],tokenbigrma:107,tokendelimit:[107,108,150,153],tokendelimitnull:[32,108,153],tokenfilterstem:[21,26,37],tokenfilterstopword:[37,106],tokenize:[18,36,37,39,70,106],tokenizer:[18,35,37,39,70],tokenizers:[18,39,99,103,106,107,108],tokenkytea:35,tokenmecab:[35,108,165,167],tokens:107,tokentrigram:[107,108,153],tokenunigram:[108,153],tokyogeopoint:[33,50,124,125,155,180],tom:131,tomita:31,tomo:172,tomoatsu:31,tomotaka:33,too:[164,175],tood:63,tool:17,top:[33,50,125],total:[76,114,154],touch:154,toybox:170,tracker:15,transfer:[0,162,164],transitional:162,translate:[13,14],translation:13,travel:176,travi:36,travis:16,tried:176,tries:41,tritonn:[99,136,137],truncate:[18,33,36,37,39,43,70,87],truncated:36,truncation:[33,109],trust:8,trusty:[8,26,37],tuning:[18,36,39],turn:115,tutorial:63,tvsec:101,tweet:138,tweets:138,twiter:35,two:[115,119,139],txt:[12,13],type:[43,45,46,50,54,57,59,61,78,79,81,91,96,102,103,114,118,147,148,150,170,171,172,173,175,176,178,180],types:[91,102,147,148,150],typo:[33,37],ubuntu:[8,10,14,17,18,19],ueno:[31,32,35],ui:99,uid:8,uint:[31,35,36,37,69,72,79,81,84,99,103,104,109,121,122,134,136,137,138,140,152,154,155,167,171,172,173,175,177,178,179,180],ul:107,ull:107,ultra:172,umask:37,umemoto:33,unchanged:63,under:[115,118,119],unicode:140,unicorn:26,uninstall:35,unique:[96,118],united:84,universe:26,unix:[24,37,72],unknown:164,unlink:49,unlock:56,unlocked:63,unlocks:63,unmanaged:76,unnecessary:154,unpatched:38,unsigned:[37,42,43,49,52,56,57,59,60,61,63],unsplit:7,unsupported:164,until:[41,63,154],up:143,update:3,updated:[13,38,167],updates:[14,133],updating:41,upload:8,uptime:[30,101,115,143,173,177],uri:[115,116],url:[8,33,37,85,116,177],usa:171,use:[13,34,43,45,46,47,49,63,72,76,77,87,96,99,109,111,113,118],used:[45,46,47,73,75,87,109,118,119,139,176],useful:[43,175],user:[57,73,96,114,115,118,121,127,131,133,134,137,154,172],username:[27,172],users:[27,73,79,81,84,85,99,109,115,121,131,139,159],uses:[45,47,119,139,154],using:[38,45,150,175],usr:[10,23,24,95,113,115],usually:119,utc:137,utf:[24,31,35,36,38,48,113,118,137,143],utopic:[8,26],uubntu:10,uuuuuu:137,uzulla:33,v1:7,v2:7,valgrind:10,valid:150,value:[35,36,37,41,43,54,56,57,59,60,63,69,79,96,97,98,99],valuebuf:54,values:[43,45,56,86],variable:63,variables:63,variety:172,vars:[57,63],varying:63,vector:[35,36,69],version:[8,33,38,44,46,101,114,115,143,173,177],versions:162,very:[72,86,99,126,127,133,136,137],via:150,video:172,view:118,visual:[27,33,35,36,37],vm:35,vmstat:168,voiced:140,vojtovich:37,waits:[41,63],wanabe:36,want:118,wareohji:35,warning:[88,89,115,139],warp:37,watch:8,way:119,wc:[20,21,22,26],weakness:133,web:[8,24,30,99,102,136,148,150],webclips:128,weight:[35,43,69,99,170],welcome:[99,136,137,176],well:133,wget:[20,21,22,24,25,26],wgs:[33,50,123,124,125,155,170,171,172,176,177,180],wheezy:[8,18,19],when:[14,43,47,118],whether:[47,56,109,111],which:[63,118,119],whombx:36,wibowo:36,wiedenroth:37,wiki:115,wikipedia:155,will:[56,63,154],win:27,windows:3,wing:[35,36],without:[115,133,150],word:[35,99,136,137],words:137,work:139,worker:5,works:[63,139],write:[14,34,87,94,99,153],written:[14,109],wrong:111,x6:8,xcode:23,xml:[31,33,34,35,36,37,45],xt:107,xvzf:[20,21,22,23,24,25,26],xxx:[36,113,137],xxxxx:8,yamaguchi:33,yappo:[36,37,38],year:139,yes:[10,102,112],yito:[35,36],yoji:33,yoku:[36,37],york:[123,176],yoshioka:35,you:[13,14,43,45,46,47,49,63,73,87,96,109,111,115,117,118,119,150,154],your:[13,14,17,33,87,154],yuki:33,yum:[8,14,20,22,35],yyyy:[137,139],zenigata:172,zeromq:24,zip:[8,18,19],zlib:[21,24,26,31,33,35,36,37,43,78,164],zsh:[8,24],zunda:33,zxvf:8},titles:["1. Groonga\u306e\u7279\u5fb4","1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011/12/29","1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012/01/29","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","10.2. mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f","11. \u958b\u767a","11.1. Travis CI","12. Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","12.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","12.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","12.2.1. Introduction","12.2.2. \u56fd\u969b\u5316","12.2.3. C API","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","2.1. Windows","2.1.2\u30ea\u30ea\u30fc\u30b9 - 2013/01/29","2.2. Mac OS X","2.3. Debian GNU/Linux","2.4. Ubuntu","2.5. CentOS","2.6. Fedora","2.7. Oracle Solaris","2.8. \u305d\u306e\u4ed6","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","3.1.2\u30ea\u30ea\u30fc\u30b9 - 2014/01/29","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","4.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-01-29","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210","5. \u30b5\u30fc\u30d0\u30fc","5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8","5.2. GQTP","5.3. HTTP","5.3.1. \u6bd4\u8f03","5.3.2. groonga","5.3.3. groonga-httpd","6. \u30af\u30e9\u30a4\u30a2\u30f3\u30c8","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.1.1. <code class=\"docutils literal\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. groonga\u30b3\u30de\u30f3\u30c9","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.1.7. groonga-suggest-create-dataset","7.1.8. groonga-suggest-httpd","7.1.9. groonga-suggest-learner","7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7","7.10.1. QueryExpanderTSV","7.11. grn_expr","7.11.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587","7.11.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","7.12. \u95a2\u6570","7.12.1. between","7.12.10. now","7.12.11. query","7.12.12. rand","7.12.13. snippet_html","7.12.14. sub_filter","7.12.2. edit_distance","7.12.3. geo_distance","7.12.4. geo_in_circle","7.12.5. geo_in_rectangle","7.12.6. highlight_full","7.12.7. highlight_html","7.12.8. html_untag","7.12.9. in_values","7.13. \u64cd\u4f5c\u65b9\u6cd5","7.13.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.14. \u30b5\u30b8\u30a7\u30b9\u30c8","7.14.1. \u306f\u3058\u3081\u306b","7.14.2. \u88dc\u5b8c","7.14.3. \u88dc\u6b63","7.14.4. \u63d0\u6848","7.15. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.16. Log","7.17. Tuning","7.18. API","7.18.1. \u5168\u4f53\u8a2d\u5b9a","7.18.10. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.18.11. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.18.12. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.18.13. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.18.14. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.18.15. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.18.16. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.18.17. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.18.18. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.18.19. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.18.2. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.18.20. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.18.21. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.18.22. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.18.23. Plugin","7.18.3. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.18.4. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.18.5. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.18.6. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.18.7. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.18.8. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.18.9. grn_expr","7.2. \u51fa\u529b","7.3. \u30b3\u30de\u30f3\u30c9","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.2. \u51fa\u529b\u5f62\u5f0f","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.3. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.3.4. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","7.3.5. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.6. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.4. \u30c7\u30fc\u30bf\u578b","7.5. \u30c6\u30fc\u30d6\u30eb","7.6. \u30ab\u30e9\u30e0","7.6.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0","7.6.2. \u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0","7.6.3. \u64ec\u4f3c\u30ab\u30e9\u30e0","7.6.4. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0","7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc","7.8. Tokenizers","7.9. \u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc","8. \u4ed5\u69d8","8.1. GQTP","8.2. \u691c\u7d22","9. \u5236\u9650\u4e8b\u9805","Cast","Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","News in Senna period","\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b"],titleterms:{"()":7,"(geopoint":176,"(v":7,"-benchmark":114,"-command":71,"-create":117,"-dataset":117,"-default":24,"-document":14,"-encoding":24,"-escalation":24,"-files":8,"-gqtp":162,"-help":24,"-http":162,"-httpd":[115,118,119,161,162],"-latest":8,"-learner":119,"-localstatedir":24,"-log":24,"-lz4":24,"-match":24,"-message":24,"-munin":24,"-pack":24,"-package":24,"-path":24,"-platform":24,"-plugins":24,"-po":8,"-prefix":24,"-release":8,"-server":162,"-suggest":[117,118,119],"-threshold":24,"-version":71,"-with":24,"-zlib":24,".max":154,".maxfileperproc":154,".overcommit":154,".po":13,".po\u30d5\u30a1\u30a4\u30eb":13,"/linux":21,"=encoding":24,"=message":24,"=number":24,"=path":24,"=platform":24,"[$":99,"\u3042\u3052\u308b":167,"\u3042\u308a":[136,137],"\u3042\u308b":176,"\u3044\u304f":6,"\u3044\u308b":142,"\u3044\u308d\u3044\u308d":170,"\u3046\u307e\u304f":6,"\u304a\u304f":6,"\u304a\u3055\u3089\u3044":6,"\u304a\u6c17":176,"\u304a\u77e5\u3089":[29,30,31,32],"\u304b\u3089":[6,20,21,22,23,24,26,27],"\u304c\u3063":175,"\u3053\u3061\u3089":6,"\u3053\u3068":8,"\u3054\u3068":175,"\u3055\u307e\u3056\u307e\u306a":180,"\u3059\u308b":[6,8,10,15,69,115,118,119,147,148,150,167,168,171,175],"\u305d\u306e":24,"\u305f\u3044":8,"\u305f\u3081":[6,7,99],"\u3060\u3051":[6,69],"\u3065\u3051":71,"\u3066\u308b":176,"\u3067\u304d":155,"\u3067\u304d\u308b":[6,7],"\u3068\u3057\u3066":155,"\u3068\u308a":6,"\u306a\u3044":[6,155],"\u306a\u3057":[137,159],"\u306b\u3088\u308b":[171,175,178],"\u306b\u5bfe\u3059\u308b":175,"\u306b\u95a2\u3059\u308b":155,"\u306e\u306b":167,"\u306e\u307f":[8,10],"\u306f\u3058\u3081":149,"\u3078\u3068":6,"\u307e\u305f":175,"\u307e\u305f\u3050":175,"\u307e\u3068\u3081":8,"\u3084\u308a":6,"\u3084\u308b":8,"\u3088\u3046":[147,148,150],"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":159,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":159,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":8,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":8,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":5,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":27,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[10,14,19,145],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":7,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[28,138,172,175],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[66,173],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":103,"\u30a4\u30f3\u30dd\u30fc\u30c8":8,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":8,"\u30a8\u30b9\u30b1\u30fc\u30d7":136,"\u30a8\u30e9\u30fc":[72,168],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":144,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":137,"\u30aa\u30d7\u30b7\u30e7\u30f3":[112,113,114,117],"\u30ab\u30b9\u30b1\u30fc\u30c9":84,"\u30ab\u30d0\u30ec\u30c3\u30b8":10,"\u30ab\u30e9\u30e0":[28,65,67,123,171,173,175],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":175,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":0,"\u30ad\u30e3\u30c3\u30b7\u30e5":[99,115],"\u30ad\u30fc\u30ef\u30fc\u30c9":[167,176],"\u30af\u30a8\u30ea":[0,7,179],"\u30af\u30a8\u30ea\u30fc":[115,136,144],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":115,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":1,"\u30b0\u30eb\u30fc\u30d7":[136,137],"\u30b3\u30de\u30f3\u30c9":[70,111,113,116,173,177],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[71,159],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[118,143],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":2,"\u30b3\u30e1\u30f3\u30c8":176,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[3,11],"\u30b5\u30b8\u30a7\u30b9\u30c8":146,"\u30b5\u30f3\u30d7\u30eb":[112,114],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[136,137],"\u30b5\u30fc\u30d0":[0,177],"\u30b5\u30fc\u30d0\u30fc":[116,156,162],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":162,"\u30b7\u30b9\u30c6\u30e0":[15,176],"\u30b7\u30d5\u30c8":137,"\u30b8\u30aa\u30b5\u30fc\u30c1":172,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":68,"\u30b9\u30af\u30ea\u30d7\u30c8":[8,137],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":114,"\u30b9\u30b3\u30a2\u30fc":99,"\u30b9\u30bf\u30a4\u30eb":99,"\u30b9\u30c8\u30ec\u30fc\u30b8":0,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":0,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":177,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":137,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":14,"\u30bd\u30fc\u30b9":[20,21,22,23,24,26,27],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":8,"\u30bd\u30fc\u30c8":[171,180],"\u30bf\u30b0":172,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":103,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":159,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":8,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":169,"\u30c4\u30a4\u30fc\u30c8":6,"\u30c4\u30fc\u30eb":[24,115,177],"\u30c6\u30b9\u30c8":10,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":10,"\u30c6\u30fc\u30d6\u30eb":[28,103,119,131,151,155,170,173,175,176],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":115,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":8,"\u30c7\u30d0\u30c3\u30ac":10,"\u30c7\u30fc\u30bf":[103,147,150,155,170,173,176],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[159,173],"\u30c7\u30fc\u30e2\u30f3":177,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[114,166],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":0,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":167,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":152,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[8,11,18],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[99,171],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":140,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":69,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":176,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":177,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":15,"\u30d0\u30fc\u30b8\u30e7\u30f3":[8,30,31,32,71],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":8,"\u30d1\u30c3\u30b1\u30fc\u30b8":8,"\u30d1\u30c3\u30c1":13,"\u30d1\u30c8\u30ea\u30b7\u30a2":178,"\u30d1\u30e9\u30e1\u30fc\u30bf":[71,175],"\u30d3\u30c3\u30c8":137,"\u30d3\u30eb\u30c9":[8,20,21,22,23,24,26,27],"\u30d5\u30a1\u30a4\u30eb":[7,8,13,14,110,145,159],"\u30d5\u30a9\u30ed\u30fc":176,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[99,139,145],"\u30d5\u30ec\u30fc\u30ba":136,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":177,"\u30d6\u30ed\u30b0":8,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":159,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":8,"\u30d7\u30ed\u30c8\u30b3\u30eb":[164,177],"\u30d8\u30c3\u30c0\u30fc":164,"\u30d9\u30af\u30bf\u30fc":155,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[69,170],"\u30da\u30fc\u30b8\u30f3\u30b0":99,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":176,"\u30de\u30c3\u30c1":137,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":136,"\u30e1\u30e2\u30ea":154,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[2,15],"\u30e2\u30b8\u30e5\u30fc\u30eb":115,"\u30e6\u30fc\u30b6\u30fc":[6,176],"\u30e6\u30fc\u30b6\u30fcid":176,"\u30e9\u30a4\u30d6\u30e9\u30ea":[0,24],"\u30ea\u30af\u30a8\u30b9\u30c8id":73,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":74,"\u30ea\u30c6\u30e9\u30eb":137,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":115,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":39,"\u30ea\u30dd\u30b8\u30c8\u30ea":[9,13],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":177,"\u30ea\u30ea\u30fc\u30b9":[8,29,30,31,32,33,34,35,36,37],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":8,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":8,"\u30ec\u30b3\u30fc\u30c9":[99,173],"\u30ec\u30b3\u30fc\u30c9id":151,"\u30ed\u30b0":90,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":0,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":90,"\u30ed\u30fc\u30c9":[69,173,176],"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":10,"\u4e00\u6642":151,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":151,"\u4e00\u81f4":[136,137,147,165,178],"\u4e00\u81f4rk":147,"\u4e00\u89a7":[74,111,140,144,176],"\u4e0a\u9650":28,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":10,"\u4e0d\u7b49\u4fa1":[136,137],"\u4e26\u3079":173,"\u4e26\u5217":8,"\u4e3b\u30ad\u30fc":[155,178],"\u4e57\u7b97":137,"\u4e8b\u9805":[28,114,155],"\u4ed5\u65b9":13,"\u4ed5\u69d8":163,"\u4ed8\u304d":[137,172],"\u4ed8\u4e0e":175,"\u4ee3\u5165":137,"\u4ee3\u5165\u5f0f":136,"\u4ee5\u4e0a":[136,137],"\u4ee5\u4e0b":136,"\u4ee5\u4e0b\u6f14":137,"\u4f4d\u7f6e":[0,71,123,142,176,180],"\u4f5c\u308a\u65b9":69,"\u4f5c\u6210":[8,103,173,174,176],"\u4f5c\u696d":8,"\u4f7f\u3044":165,"\u4f7f\u3044\u65b9":[66,68,69,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,114,115,118,119,121,123,126,127,128,129,131,133,134,138,143,145,147,148,150],"\u4f7f\u3046":[115,123],"\u4f7f\u7528":154,"\u4f8b\u3048":6,"\u4f9d\u5b58":24,"\u4fdd\u5b58":[103,170],"\u4fee\u6b63":[29,30,31,32,33,35,36,37,38],"\u5165\u308a":176,"\u5165\u6f14":137,"\u5168\u4f53":41,"\u5168\u6587":[0,167,173,175,180],"\u5168\u6587\u691c":[173,174],"\u5168\u6587\u691c\u7d22":136,"\u5171\u6709":0,"\u5171\u8d77":[147,148,150],"\u518d\u8d77\u52d5":162,"\u51fa\u529b":[13,72,99,143,173],"\u5206\u3051":165,"\u5229\u7528":[115,152,180],"\u5236\u5fa1":137,"\u5236\u9650":[28,69,114,145,151,155,171],"\u524a\u9664":84,"\u524d\u63d0":8,"\u524d\u65b9":[136,137,147,178],"\u5270\u4f59":137,"\u52a0\u7b97":137,"\u52d5\u4f5c":[8,10,147,148,150],"\u52d5\u7684":138,"\u5354\u529b":6,"\u5358\u8a9e":137,"\u5373\u6642":0,"\u539f\u56e0":167,"\u53c2\u7167":[0,164,170,172],"\u53c2\u7167\u578b":69,"\u53c2\u8003":[72,73,74,75,77,79,82,84,86,88,89,90,91,92,94,96,97,98,99,102,103,106,107,108,117,126,127,131,133,134,135,140,145,151,152],"\u53d6\u5f97":[8,173],"\u53e4\u3044":29,"\u53ef\u80fd":[0,91,106,107,115,118,123,131,152],"\u540c\u3058":167,"\u540d\u524d":[67,112,113,114,116,117,122,124,125,130,132,155],"\u5411\u3051":[4,8],"\u5426\u5b9a":[136,137],"\u547c\u3073\u51fa\u3057":137,"\u547d\u4ee4":114,"\u548c\u4ee3":137,"\u548c\u6f14":137,"\u56de\u907f":168,"\u56fd\u969b\u5316":13,"\u5727\u7e2e":159,"\u57fa\u672c":[137,173],"\u5831\u544a":15,"\u5834\u5408":[8,72,175],"\u5834\u6240":[6,145],"\u5909\u66f4":[31,159,167],"\u5909\u66f4\u70b9":8,"\u5927\u306a\u308a":[136,137],"\u5b66\u7fd2":[118,147,148,149,150],"\u5b8c\u5168":165,"\u5b9f\u4f8b":7,"\u5b9f\u73fe":7,"\u5b9f\u884c":[7,8,10,110,114,115],"\u5b9f\u884c\u4f8b":[42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],"\u5b9f\u9a13":33,"\u5bc6\u9375":8,"\u5bfe\u5fdc":[6,142,159],"\u5bfe\u7b56":[167,168],"\u5c02\u7528":177,"\u5c0f\u306a\u308a":[136,137],"\u5c0f\u6570":137,"\u5c55\u958b":144,"\u5dee\u6f14":137,"\u5ea7\u6a19\u5024":137,"\u5f15\u6570":[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,96,97,98,99,100,101,102,103,104,105,106,107,109,112,113,114,118,119,121,122,123,124,125,126,127,128,129,131,132,134,154],"\u5f62\u5f0f":[72,86],"\u5f8c\u65b9":[136,137,178],"\u5fc5\u8981":[14,128],"\u5fc5\u9808":[79,81,91,96,99,106,107,109,118,123,131],"\u6027\u80fd":[115,159],"\u60c5\u5831":[0,4,6,10,142,176,180],"\u611f\u8b1d":[29,30,31,32,33,34,35,36,37],"\u6210\u529f":72,"\u6210\u679c":13,"\u623b\u308a\u5024":[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,118,121,123,126,127,128,129,131,133,134],"\u624b\u9806":8,"\u6295\u7a3f":176,"\u62bd\u51fa":[137,150],"\u62e1\u5f35":179,"\u6307\u5b9a":[8,71,123,136,155,173,175],"\u6307\u91dd":6,"\u6319\u52d5":165,"\u6392\u4ed6":137,"\u63a5\u7d9a":177,"\u63d0\u4f9b":6,"\u63d0\u6848":[118,149,150],"\u64cd\u4f5c":[141,173],"\u64ec\u4f3c":67,"\u6539\u826f":[29,30,31,32,33,34,35,36,37,38],"\u6570\u5024":170,"\u6574\u6570":137,"\u6587\u5b57\u5217":[137,170],"\u6587\u66f8":[137,148],"\u6587\u6cd5":180,"\u65b0\u3057\u3044":13,"\u65b0\u898f":8,"\u65b9\u6cd5":[3,8,10,11,13,69,71,138,141,147,148,150,167,168],"\u65e5\u6642":170,"\u660e\u793a":8,"\u660e\u793a\u7684":123,"\u6642\u9593":[137,176],"\u66f4\u65b0":[0,8,13,147],"\u66f8\u304d":165,"\u66f8\u5f0f":[112,113,114,115,116,118,119,122,124,125,130,132,173],"\u66ff\u3048":173,"\u6761\u4ef6":[8,99,128,136,180],"\u6761\u4ef6\u5f0f":136,"\u683c\u7d0d":155,"\u691c\u51fa":10,"\u691c\u7d22":[0,69,99,103,136,137,142,147,148,150,165,167,172,173,175,176,178,179,180],"\u691c\u7d22\u4f8b":7,"\u6982\u8981":[0,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,66,68,69,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,115,118,119,121,123,126,127,128,129,131,133,134,140,145,151,152,154],"\u69cb\u6587":[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,121,123,126,127,128,129,131,133,134,136,137],"\u69cb\u7bc9":[10,138],"\u69d8\u3005":10,"\u6a5f\u80fd":142,"\u6bd4\u8f03":[137,159],"\u6c38\u7d9a":151,"\u6d41\u308c":13,"\u6d6e\u52d5":137,"\u6e1b\u7b97":137,"\u6e96\u5099":[8,179],"\u6f14\u7b97\u5b50":137,"\u70b9\u6570":137,"\u7279\u5b9a":[8,10],"\u7279\u5fb4":[0,151],"\u7279\u6709":115,"\u7279\u6b8a":114,"\u72ec\u81ea":137,"\u7406\u7531":6,"\u74b0\u5883":[8,10],"\u751f\u6210":[8,13,14],"\u7528\u3044":[90,180],"\u7528\u79d8":8,"\u7570\u306a\u308b":167,"\u767b\u9332":15,"\u7701\u7565":[91,106,107,118,123,131],"\u771f\u507d\u5024":[137,170],"\u77e5\u308a":8,"\u78ba\u8a8d":[8,13],"\u7a2e\u985e":170,"\u7a4d\u4ee3":137,"\u7a4d\u6f14":137,"\u7b26\u53f7":137,"\u7b49\u4fa1":[136,137],"\u7b97\u5b50":137,"\u7b97\u8853":137,"\u7ba1\u7406":[115,177],"\u7bc4\u56f2":[103,173],"\u7c21\u5358":99,"\u7d22\u5f15":0,"\u7d22\u7528":[173,174],"\u7d42\u4e86":[115,162,177],"\u7d44\u307f\u8fbc\u307f":[113,140],"\u7d44\u8fbc\u578b":155,"\u7d4c\u5ea6":0,"\u7d4c\u7def\u5ea6":170,"\u7d50\u5408\u5f0f":136,"\u7d50\u679c":[114,167,171,173],"\u7d5e\u8fbc":180,"\u7de8\u96c6":13,"\u7def\u5ea6":0,"\u7f6e\u63db":131,"\u7f72\u540d":8,"\u7ffb\u8a33":[8,13],"\u8868\u73fe":7,"\u8868\u793a":173,"\u88dc\u5b8c":[147,149],"\u88dc\u6b63":[148,149],"\u8907\u6570":[159,171,175],"\u89e3\u6790":10,"\u8a00\u8a9e":13,"\u8a2d\u5b9a":[8,17,41,115,118,159],"\u8a8d\u8a3c":159,"\u8a98\u5c0e":6,"\u8a9e\u5f59":[173,174],"\u8a9e\u5f59\u8868":103,"\u8aac\u660e":[67,112,113,114,116,122,124,125,130,132,155],"\u8aad\u307f":147,"\u8ab2\u984c":15,"\u8ad6\u7406":[136,137],"\u8ad6\u7406\u548c":136,"\u8ad6\u7406\u7a4d":136,"\u8d77\u52d5":[162,177],"\u8ee2\u7f6e":0,"\u8fd1\u508d":137,"\u8fd4\u5024":[99,116,122,124,125,130,132],"\u8ffd\u52a0":[8,13,140],"\u8ffd\u8de1":15,"\u9001\u308a\u65b9":[13,15],"\u9001\u4fe1":177,"\u9006\u5f15\u304d":172,"\u901a\u4fe1":5,"\u9032\u3081":6,"\u904e\u53bb":6,"\u9069\u7528":69,"\u90e8\u5206":165,"\u914d\u5217":137,"\u91cd\u307f":[69,175],"\u91cd\u307f\u4ed8\u304d":69,"\u958b\u767a":[4,6,16],"\u95a2\u4fc2":[24,99,172],"\u95a2\u4fc2\u5f0f":7,"\u95a2\u6570":[10,120,137],"\u95a2\u9023":[11,99,115,119,175],"\u95be\u5024":167,"\u9664\u7b97":137,"\u96c6\u8a08":0,"\u9759\u7684":[10,138],"\u975e\u308f\u304b\u3061":165,"\u985e\u4f3c":[137,148],"\u9ad8\u5ea6":99,"\uff08personal":26,"_api":7,"_auto":115,"_base":115,"_border":121,"_cache":[42,115],"_calc":99,"_cancel":96,"_circle":124,"_clear":87,"_column":43,"_columns":[99,131,175],"_command":44,"_content":45,"_count":154,"_create":[78,103,115],"_ctx":46,"_cursor":[53,60],"_dat":151,"_data":62,"_database":115,"_db":47,"_distance":[122,123],"_encoding":48,"_equal":7,"_escalation":[55,99],"_escape":126,"_eval":97,"_expander":[99,131],"_expansion":99,"_expr":[7,49,135],"_filter":[94,134],"_filters":[103,107],"_flags":99,"_full":126,"_geo":50,"_hash":151,"_hook":51,"_html":[126,127,133],"_ii":52,"_in":[124,125],"_index":53,"_info":54,"_install":24,"_key":151,"_level":[88,115],"_limit":[75,99,115],"_list":[79,92,104,108],"_load":98,"_log":115,"_map":154,"_match":55,"_memory":154,"_name":[81,87,109,126],"_no":151,"_obj":56,"_offset":99,"_or":121,"_output":99,"_pack":24,"_pat":151,"_path":[115,118,119],"_prefix":24,"_proc":57,"_processes":115,"_put":89,"_query":115,"_rectangle":125,"_remove":[80,105],"_rename":81,"_reopen":90,"_search":58,"_select":7,"_selector":82,"_sortby":99,"_string":[131,134],"_table":[7,59,60],"_tagn":126,"_target":99,"_threshold":99,"_tokenize":106,"_tokenizer":103,"_type":[45,61,103,123,164],"_types":99,"_untag":128,"_user":62,"_value":121,"_values":129,"_version":[44,71],"cpu\u30b3\u30a2":159,"default":[71,103],"delete":84,"in":[38,129],"new":81,"null":137,"package":26,"with":14,"}]":99,adjuster:99,allocate:168,api:[12,40],approximate:123,archive:26,arg:7,assign:73,between:121,bigram:176,blogroonga:8,body:72,by:115,cache:[75,99],callback:7,cannot:168,cast:64,centos:20,changes:38,check:[76,111],ci:17,clang:10,clearlock:77,clone:13,close:126,column:[78,79,80,81,121,126,127],command:71,comments:176,configure:[8,14,24],contain:7,cutter:[8,10],data:[115,119],database:[118,119],db:7,debian:[8,21],define:82,defrag:83,desctipion:117,domain:171,drilldown:99,dump:85,edit:122,ellipsoid:123,enable:14,equal:7,exit:117,facebook:2,fedora:22,files:[117,119,154],filter:[99,134],flags:[91,103,106,107,164],freebsd:154,from:119,geo:[123,124,125],geoindex:176,geopoint:176,get:118,gnu:21,gqtp:[5,157,162,164,177],greater:7,grn:[7,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,135],grndb:111,grnslap:112,grntest:8,groonga:[0,3,4,5,7,8,13,18,38,113,114,115,116,117,118,119,160,161,162,177],gzip:159,hashtags:176,hat:8,header:72,highlight:[126,127],homebrew:[8,23],how:73,html:[13,14,128],http:[116,143,158,162,177],https:159,id:[73,96],install:24,introduction:14,javascript:180,json:[72,86],kern:154,key:103,keys:99,keywordn:126,label:99,launch:118,lcov:10,learning:119,less:7,libmemcached:10,limit:99,linux:154,load:86,loading:115,location:123,lock:87,log:[88,89,90,119,139],mac:23,macports:23,make:[8,24],match:[99,131,175],max:[75,121,154],memcached:177,memory:168,messagepack:72,min:121,mmap:168,mode:[7,106,107],mroonga:0,name:[81,103],near:7,news:38,nginx:115,nofile:154,normalize:91,normalizer:[91,92,103,107,126],normalizerauto:140,normalizernfkc:140,not:7,now:130,number:154,of:154,offset:99,open:[126,154],options:[118,119],oracle:25,os:23,output:99,path:98,per:154,period:38,plugin:63,po:8,point:123,post:[115,159],ppa:26,prefix:7,process:[139,154],protocol:164,proxy:115,pull:13,query:[99,131,139,164],queryexpandertsv:145,quit:93,rand:132,range:94,recover:111,rectangle:123,red:8,redmine:6,register:95,request:[13,73,96,118],ruby:[97,98],run:14,scope:134,scorer:[99,180],script:97,select:99,senna:38,shutdown:100,similar:7,size:164,snippet:133,solaris:25,sortby:99,sphere:123,status:[101,117,164],string:[91,106,107],sub:134,suffix:7,suggest:102,synopstis:117,table:[79,81,99,103,104,105,106,151],target:[87,109],the:154,tips:8,to:[73,118],todo:[131,133],token:[103,107],tokenfilterstem:152,tokenfilterstopword:152,tokenize:107,tokenizer:[107,108],tokenizers:153,travis:17,truncate:109,tsv:[72,145],tuning:154,twitter:[2,6,8],ubuntu:26,update:[8,14],use:126,users:176,value:103,vm:154,wheezy:21,windows:[8,27],worker:115,xml:72,zip:27}})
1
+ Search.setIndex({envversion:42,terms:{clumns:139,"\u51fa\u6765":[44,78,90],"\u7b2c\u4e8c":[],localstatedir:[154,188],"\u3082\u3089\u3063":3,four:[148,3],"\u660e\u78ba":80,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[36,97],"\u811a\u6ce8":[75,3,45,72,34,168],"\u3082\u3089\u3048":124,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"\u79d2\u60c5":27,"_column":[],"\u300calice":184,dewangga:77,"\u6b63\u5e38":[167,151],"\u30d5\u30c3\u30af":81,internally:[106,16],"\u5b9a\u5024":7,"/projects":151,"&q":131,"&s":131,"\u7b2c\u4e00":[],incremented:35,"\u3044\u304f\u3064\u304b":[90,142,26,103,188,164,108,150,151,115,60,160,46,69,23,125,177,178,181,133,187,189,38,191],"\u89e3\u9664":[22,1,174,97,79,107],second:[148,103,12],"\u4f5c\u3089\u308c":[167,80],"\u4e8b\u524d":[68,142,151,70,169,147,23],"\u30de\u30af\u30ed":[27,79,125],"\u30b7\u30f3\u30dc\u30eb":73,"\u5f15\u3044":150,increasing:139,error:[40,110,6,97,125,16,135,122,8,9,148,80,178],here:[40,12,131,186,48,9,148,139,64],onga:32,"&!":150,china:130,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":159,"&&":[70,182,108,143,150],"\u4e0e\u3048":[58,69,3,70,123,97,125,7,172,63],"\u4e2d\u8eab":[167,3,172,80],"_output":[],"\u30c8\u30fc\u30af\u30f3":[163,90,150,94,144,125,48,46,18,27,189,38,154,80,65],"\u7ffb\u8a33":[],"\u300c\"":97,"\u300c#":154,"\u300c,":157,"9e":189,"9f":4,unix:[135,188,80],txt:[87,38,119],"\u5ea6\u6d6e":45,"\u5bfe\u7167":115,"\u65e5\u672c\u4eba":176,"_check":[79,177,80],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"\u975e\u63a8":[75,125,7,27,80,65],music:[44,148],tokenize:[],"_flags":[],"[pkg":[7,27],until:[40,139,19],"\u30d6\u30ed\u30b0":[],"\u30df\u30ea":[13,27,45,74,150],"\u6709\u529b":153,"\u7f6e\u304f\u4f8b":188,"[os":80,"\u4e0b\u304c\u308a":70,karmic:177,"\u300cv":151,"(pos":[34,168],"_command":[],"\u6709\u52b9":[90,95,102,27,188,108,151,13,14,58,113,65,121,167,125,73,77,79,112,80,181,129,83,132,32,9],"\u6b63\u5f0f":80,"\u4e8c\u91cd":[125,80,181],"\u30e1\u30fc\u30eb":[0,119],"/functions":177,example:[44,108,3,130,12,131,13,97,122,74,9,139,28,176,102],"\u30af\u30a8\u30eaapi":77,"/blog":151,"\u6a2a\u5c71":[125,80],want:131,"*cache":17,"<groonga":167,"\u4e0b\u304c\u3063":38,travel:184,feature:[119,83,9,12,61],how:[],"\u884c\u982d":178,wrong:61,types:[153,18,133,176,48],"\u63fa\u308c":91,"-normalizer":[164,129,14,133,7,152,189],"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":125,"_resource":[2,79],"\u5b09\u3057\u304f":124,"\u901a\u5e38":[135,108,90,3,181,13,45,16,7,60,9,189,175,95,80],keeps:85,"\u500b\u5b9a":134,wing:[7,125],"\u3042\u305f\u308a":[27,154],vars:[40,53],"\uff11\u5bfe":134,"\u30d1\u30c8\u30ea\u30b7\u30a2":[],"\u6e1b\u7b97":[],">\n<":4,"\u8fd4\u3063":[181,80,150],"_{":125,"-code":[151,80],"_w":38,"\u8fd4\u3057":[40,90,3,91,93,95,46,47,48,69,147,109,54,108,75,150,111,153,113,116,16,17,115,59,18,19,182,25,161,118,67,68,49,120,121,123,166,125,168,73,63,74,170,117,96,77,127,79,176,80,82,83,136,169,184,32,34,100,180],fix:[59,42,95],"\u8fd4\u3055":[58,108,11,153,123,7,126,79,80],"_s":80,"_desc":113,"_o":[2,172],"_n":[17,131,125],"_i":[2,172],fin:53,easier:12,"_a":[2,172],"\uff08tokenmecab":70,"\u3046\u3063\u304b\u308a":125,"\u30d7\u30ed\u30c8\u30b3\u30eb":[],"-daemon":[131,64],"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":75,"\u516c\u8f14":125,"\u3082\u3063\u3068\u3082":177,"\u30af\u30a8\u30ea\u30da\u30a2":169,"\u8a8d\u8a3c":[],"_select":[],"(point":[34,75,168],"_deadlock":[2,172,79],timeout:[79,19],debug:[6,148,8,97,9],"\u6df7\u3056\u3063":38,"_$":[153,65],"_\"":27,"@do":80,"*keywords":84,rd:[70,144],re:[139,83],rf:[129,9],"post\u30e1\u30bd\u30c3\u30c9":125,moritapo:44,rc:[90,148,2,5,16],rl:38,rm:9,ro:90,gregex:125,"\uff01\uff09":[18,176],"\uff01\uff08":119,"\u3042\u305f\u3044":117,"\u5909\u5316":132,"\u5168\u90e8":172,".msgpack":4,"/limits":139,ringtail:[125,80],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[],"\u307e\u308d\u3086\u304d":143,"\u771f\u507d":[13,150,45,125,181],libedit:[164,1,154,7,77,27,188],"\u5f31\u70b9":132,"[cmake":77,"\u8fd4\u308a":[74,108,130],"\u8fd4\u308b":154,"\u7d99\u627f":125,"\"localhost":172,"_locks":[2,172],"\u25a1\u25a1":124,"\u300cnew":184,"\uff08age":65,":bob":184,"2\u5104":[],mingw:[27,151],"nginx\u3089\u3057\u3044":80,"\u6607\u964d":63,"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[75,117,158],"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[97,90,3,125,133],service:[139,141,18],"/home":38,"\u4f7f\u308f":[2,91,94,90,9,27,108,151,16,17,158,178,65,44,125,172,96,77,175,176,80,81,181,130,189,38],"-benchmark":[],"\u533a\u5207\u308a":[179,58,108,90,3,4,130,13,132,45,97,48,7,157,153,77,150,38,181],"\u533a\u5207\u308b":[108,154,175],master:9,"\u610f\u8b58":65,"\u8a8d\u8b58":124,"_db\u30d5\u30e9\u30b0":27,"'column":7,"{table":[115,108],"\u306e\u3059\u3079\u3066":[108,54],"\u4e0d\u5fc5\u8981":77,"(comments":182,"-common":[7,14],project:150,"_update":[181,108,2,113,121],"*namebuf":[79,121],boston:184,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[],"\u4f7f\u3048\u308b":[108,181,97,125,7,178,27,188,80,81],"\u304b\u3069\u3046":[2,182,70,115,96,188],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":[],"-port":[131,167,97],"/max":80,object:[40,79,83,93,45,7,136,113,172,56,53,118,150],"\u7d22\u7528":[],"\"black":189,microsecond:148,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":126,letter:189,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":54,"\u533a\u5207\u3063":[46,108,90,133,172],"\u4f7f\u3063":[0,90,3,91,5,45,144,47,7,2,101,9,150,188,54,143,164,108,12,151,85,13,112,14,16,115,18,158,178,65,162,44,68,69,120,70,124,125,73,126,74,172,77,117,175,80,81,129,189,181,130,169,119,184,133,32,135,152,100,137,88,89,38,102],"\u30d1\u30a4\u30d7":73,camp:184,"\u4f7f\u3048":[108,90,181,130,191,160,96,125,178,9,150,158,27,65,38,80,81],"\u4f7f\u3046":[],"\u4f7f\u3044":[],"\u66f8\u304d\u8fbc\u307f":188,"\u66f8\u304d\u8fbc\u307e":190,unmanaged:126,"\uff08@":[27,154],"\u30d0\u30a4\u30ca\u30ea\u30fc":135,layout:151,".fedoraproject":129,"2byte":172,"\u306f\u306a\u304f":178,"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":94,createrepo:151,"\u79d8\u5bc6":151,"\u30a2\u30d4\u30fc\u30eb":151,"_age":96,"\u91cd\u307f":[],tips:[],"\u30c8\u30d4\u30c3\u30af":151,"\u91cd\u3044":[132,108],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],"\u5b9f\u9a13":[],"\uff08piro":80,"\u91cd\u304f":70,patch:42,release:[],unpatched:42,"\u69cb\u9020":[44,69,132,16,135,113,94],"\u5e83\u304f":[151,178],"[linux":7,result:[75,4,113,32,103,69,172,61,78,64],"<port":[167,97],"\u5206\u304b\u3061":132,wikipedia:45,score:[3,12,48,127,108,75,150,85,153,70,59,18,44,69,121,122,125,74,77,28,176,131,184,115,78],"-stem":[152,14,80],"\u611f\u3058":124,shidara:27,"\u554f\u3044\u5408\u308f":69,"\u539f\u99c5":74,reported:[],country:[170,102,130],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":189,"\u66f8\u304d\u8fbc\u3080":167,"\u540c\u69d8":[92,69,151,13,167,74,172,63],"\u4e00\u6587\u5b57":80,"\u5931\u6557":[22,17,3,181,151,40,154,73,125,7,136,59,170,19,10,27,77,174,127,80,65],"\u30fb\u6d6e\u52d5\u5c0f":108,"\u95a2\u6570":[],diff:167,"\u5404\u7a2e":151,"\u6d88\u53bb":125,"\uff08node":81,"\u5360\u6709":79,"\u3044\u3046":108,correction:18,"\u30ab\u30f3\u30de":[58,3,150,130,157],worker:[],dave:96,"\u305f\u307e\u307e":54,"=query":131,"\"correction":169,"-message":[],spil:77,"/function":151,"_sel":42,"\u3069\u3093":105,"#set":167,"\u3069\u308c":[108,95,135,38,54,65],"_set":[17,41,93,123,16,7,25,116,19,63,77,79,112,53,80],"\"sound":18,"\u65ad\u7247":32,"\u4ee3\u8868":132,"\u79d2\u6570":[135,108,150,13,184,45,82],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":125,reports:[40,61],"_false":79,"\u3069\u306e":[92,108,90,150,130,168,18,75,188],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":27,"1\u4ef6":[70,184],"_rectangle":[],"\u3069\u3053":[27,188,80],"\u3002db":[27,69,3,172,16],"\u53b3\u5bc6":[77,176,80],"\u30df\u30ea\u79d2":45,"\u7121\u8996":[108,90,175,70,94,154,97,125,7,113,170,133,157,63,27,38,80,181],"\u5fdc\u7528":132,"\u3069\u3046":[1,145,83,130,6,124,72,108,7,70,8,155,9,190,38,107],"\u30e2\u30fc\u30c9":[90,3,69,172,36,80],"\"canceled":103,"\"blt":157,"\u5411\u4e0a":[27,141,9,54,158],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[108,90,70,144,18,63,38,80,65],"_skip":125,"_element":41,"\u30c4\u30fc\u30eb":[],"\u30e9\u30d9\u30eb":[108,125,80],"_result":[108,2,113],sleepy:114,"\u4e00\u6c17":151,previous:[141,12],"\u5317\u4eac":75,had:12,easy:12,"\u300ccharlie":184,"\u4fee\u5e73":80,hat:[],"*vars":[40,53],"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":7,"\u7c21\u7565":[100,125],"\"content":[150,163,108,181],"\u9001\u308b":[0,172,54,119],"\u9001\u308a":[172,151],"\u30d0\u30a4\u30ca\u30ea":[101,151],"_broken":2,"\u8d8a\u3048":[70,77,80],unique:[131,103],"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":92,">command":4,"_error":[40,2,172],"_ascending":63,alice:[108,181,184,115,59,9,96,127,54],"-unauthenticated":[7,152],"\u30d4\u30ea\u30aa\u30c9":[73,78],sebastian:80,right:110,old:[40,151],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[97,90,3,133],truncated:125,begin:179,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":7,"\u5358\u8a9e":[],"/ngx":9,"\uff08score":108,groogna:[112,54],"\u9001\u3063":[87,0,88,119],"for":[40,141,42,12,45,97,26,48,7,9,103,148,106,127,75,150,16,19,61,64,122,110,28,79,184,83,131,84,32,186,136,35,139,38],bottom:[27,110,34],"_reference":108,".asc":151,"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":125,ichii:27,yoku:[125,80],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":79,"\u5206\u985e":[13,130],standalone:64,"\"starttime":4,"\u89e3\u6c7a\u7b56":124,"\u306a\u3055\u3093":88,"\u65e2\u5b9a\u5024":141,"\u305b\u3044":[125,80],"_size":[40,69,121,86,16,113,62,63,77,79,84,53],".am\u30d5\u30a1\u30a4\u30eb":151,"\u89e3\u91c8":[154,69,181,157],waits:[40,19],"_range":[],support:42,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":96,joseph:143,"\u305b\u306a":[181,150],"\u5c71\u672c":80,"\u3086\u304d\u3072\u308d":143,thesaurus:108,"_org":151,pagerank:[122,28,12],"/tsv":[22,174,175,10],"\u5fa9\u65e7":[112,83,61],"\u8981\u7d20":[58,2,3,85,95,167,32,125,7,113,69,135],"\u30d0\u30f3\u30c9\u30eb":[77,125,80],"\u306e\u304b":[184,144],"\u9006\u5f15":44,"_sequence":[2,172],"\u306e\u3044":[11,6,132,45,97,58,75,113,8,172,69],"_records":[7,125],exist:[103,12],"'\"":[7,125],"'.":[79,119],"'-":[97,125],"',":[79,186,80,48],sizeof:[77,84,16],"')":[58,179,97,80],"'(":97,"\u306e\u306b":[],relax:139,"\u306e\u3067":[141,3,144,7,101,9,147,54,108,75,151,13,115,119,68,23,70,165,124,125,182,96,27,78,175,176,80,132,32,135,187,184,36,65],"*nvars":53,"\u3001_":3,"\u306e\u307f":[],"'t":[106,83,12,122,35,16,136,19,103,139,28,48,84,9],"'s":[114,108,181,12,122,58,182,148,135,150,119],"\u306b\u304f\u3044\u304b":38,"\u3089\u308c\u308b":[69,121,132,144,125,7,63,80,178],"\u88dc\u3046":132,"\u305b\u308b":[141,69,132,161,47,115,36,177,65],"'n":97,"'m":[114,184,163,78],"-latest":[],"-tar":24,"\u305b\u308c":132,"\u6bb5\u843d":[73,95,121],"_count":[],"\u5165\u529b\u30df\u30b9":18,time:[23,103,131,13,184,45,167,125,48,7,70,18,148,139,61,77,27,180,176,80,153],push:[151,119],"\u304a\u3053\u306a\u3063":3,":/":[3,4,97,101,9,103,104,188,54,164,109,151,85,13,14,17,157,119,44,24,74,102,80,81,179,129,130,131,152,36,189,89],"\u53cd\u6620":[132,69,151,139],"\u7b26\u53f7":[],":$":[143,150,181,20],"\u6d41\u308c":[],"-prefix":[],":#":80,"\u5c0f\u897f":125,":=":[108,181],":>":[108,181],"\u3002rroonga":158,"::":[2,4,12],netbsd:[154,125],millisecond:19,"\u3042\u307e\u308a":[78,124,113],"\u7aef\u672b":132,"_builtin":[27,79,83,62],"\u6700\u7d42":[108,83,85],dragonfly:154,"\u500b\u5225":151,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":7,"-root":[36,154,97],":~":[181,178],lru:117,"\u7d20\u6734":130,locked:40,".source":77,exact:69,"\u3092\u3064\u3051\u308b":150,minute:148,".body":[37,91,107],"\u30b9\u30af\u30ea\u30d7\u30c8":[],"{language":119,"\u6e08\u307f":[58,129,90,121,151,164,124,45,14,73,125,7,152,18,169,27,175,176,141],"-base":[131,64],":@":[44,108,3,181,13,184,115,102],":\\":[101,178],":^":[181,143],":[":[167,178],":public":[],"\u4e00\u6b69":3,"\u7d50\u3073\u3064\u3044":134,"\u305f\u3055\u3093":[27,1,125],"\u7d50\u3073\u3064\u304f":134,sign:151,"\u6e08\u3080":77,"\u5316\u4f5c":151,makecache:[7,129],"\u4e8c\u9805":150,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":80,".ncpu":89,"\u7d4c\u904e":[135,11,150,13,184,45,82,19,27,79],"\u30bf\u30d6":[175,4,172],takashi:[27,170],"\u540d\u7b49":79,"\u4e3b\u8981":137,"'='":97,"\u76ee\u5b89":151,"\u63a8\u9032":125,"\u30bf\u30b0":[],"gmo\u30e1\u30c7\u30a3\u30a2":80,"\u6d41\u3057":151,address:[7,27,172,131],"\u30a2\u30ab\u30a6\u30f3\u30c8":[26,80,151],"\u4e3b\u30ad\u30fc":[],"\u4e00\u62ec":[],queue:134,"\u8b66\u544a":[108,11,154,125,7,112,80],"\u3002offset":93,"\u5ea6\u6570":[13,27,74,150],ipa:164,pentium:167,prefer:131,"`/":20,logical:[],"\u6587\u5b57\u5217":[],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[69,97],bookmarks:85,"\u4e88\u3081":[45,97],"{\"_":[44,108,150,13,74,96,181],"|table":65,droonga:100,"\u30d5\u30a9\u30ed\u30fc":[],"/header":24,"\u3060\u3063":[108,11,150,70,7,113,77],"``":[1,154,84],"\u5168\u4e16\u754c":125,"\u3060\u3068":124,visual:[125,7,101,77,27,80],"_gt":63,"\u3002obj":79,"\u3060\u3044":[27,80],valuen:100,"_alloc":[40,84],values:[58,106,97,121,79],"\u3060\u3057":[27,167],"\u5024\u8a18":150,following:[40,121,12,131,97,186,148,20,139,64],pgroonga:12,locks:[40,136,32],logrotate:[7,80],allowed:64,"\u5897\u3084\u3059":[108,177,85],"\u6a19\u6e96":[1,145,3,6,97,8,9,105,107,11,58,155,157,190,159,72,73,126,172,112,80,179,82,36,37,140],chroot:151,divided:122,"\u7551\u30f6":80,"\u30d2\u30e5\u30d9\u30cb":[75,168],parameter:[110,12,131,35,97,113,103,139,127,53],applications:32,date:167,such:[12,122,35,32,186,48,7,131,10,64,119],"?id":103,data:[],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[],"/dictionary":154,ss:[148,150],"/javascript":27,st:[90,38,150],sh:[151,81],so:[83,12,122,113,139,28,79],sa:[153,18],se:[90,176],"\u30e1\u30bd\u30c3\u30c9":77,"\u540c\u3058\u6570":[97,9,54],"[yum":7,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":80,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":157,"\u30a2\u30c9\u30ec\u30b9":[167,97,113,102,27,172],"*query":[56,84],jis:63,"\u540c\u671f":[167,151],instantly:32,"\u30d7\u30e9\u30b0\u30a4\u30f3api":80,"\u4f7f\u308f\u305a":115,records:[148,110,48],"\u8d85\u3048\u308b":[7,63,165,94,13],matched:[122,131,28,110,12],config:[1,11,101],"\u7570\u5e38":[126,167],"_dat":[],"_dataset":[146,64,186,48],"\u3084\u308b":[],"\u5927\u95a2":80,"\u4e26\u3073":[144,150],"\u4e26\u3079":[],"-terminated":[40,53],gtar:24,"\uff1f\u300d":130,indexblog:78,"\u30d8\u30c3\u30c0\u30fc":[],"-offset":108,container:84,"_msgpack":106,fu:90,".status":167,"\"search":[176,18,181,48],"\"type":153,formula:151,"\u6700\u5c0f\u9650":9,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":[94,23,77],mime:[77,54],"byte":[121,35,167,32,7,113,172,79],"\u7d20\u65b9":132,".index":77,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":188,"\u30d9\u30af\u30bf\u30fc":[],"\u4e00\u610f":[73,97,60],one:[40,12,97,32,136,61,139,64],submit:[131,153,18,176,48],"*expr":84,"\u5b9a\u5b50":178,city:[184,75],"\u5bfe\u7b56":[],"\"sphr":168,"=encoding":[],"\u884c\u756a":[135,27],"\u8fd4\u4fe1\u5143":184,"\u8fd4\u4fe1\u5148":184,"\u306b\u5bfe\u8c61":27,"\u88d5\u4e5f":80,translate:[119,20],"\u540c\u6642":[108,11,132,134,167,113,74,63,77],effective:97,fumiyasu:27,groongau:38,"\u4e16\u754c":[75,13,45,34,74,168],argument:[150,12],"-scorer":160,say:150,"/span":[161,32,47],"/ubuntu":[7,141],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":125,"\u30ea\u30b9\u30c8":[58,163,175,3,181,151,44,38,97,108,189,7,104,178,92,105,150,84,119],uuuuuu:150,"\u5ea6\u5408\u3044":70,note:[40,131,103,139],take:61,"\u30cb\u30db\u30f3\u30b8\u30f3":176,"[[\"":126,"\u5fdc\u7b54":[132,125],"_lexicon":77,buffer:[126,79,16],"\u5148\u982d":[108,3,93,9,79,38,178],compress:73,"\u30b9\u30da\u30fc\u30b9":[27,108,125],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[],"\u672b\u5c3e":[63,93,79,23,178],"\u9589\u3058":[27,94],"\u4ef6\u6570":[108,3,70,144,58,113,60,77,79,80],"\u5217\u6307\u5411":[132,97],"_cursor":[],xml:[],"\u5927\u4e8b":[175,181],"\u4e00\u6642":[],"\u3068\u3057\u307e\u305b":19,"_defrag":79,"\uff08tokenbigram":70,resource:172,"\u66f8\u304d\u8fbc\u3081\u308b":80,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[],"\u76f4\u63a5":[184,157],"\u8868\u3057":[92,11,3,45,135,2,60,69,178],"\u7a7a\u767d":[90,3,181,70,132,97,48,58,133,38],"\u7528\u79d8":[],regexplexicon:178,"\u898f\u5247":7,".content":[108,150,114,182,139,78,181],"\u306b\u3068\u3063\u3066":[124,90,38],sites:157,"*column":121,"\u5927\u4e08":0,"\u4f9d\u5b58":[],jobs:167,"\u7e26\u68d2":65,"\u4e0a\u554f":141,"\u5e73\u5747":[108,80],"@tomotaka":27,many:[122,139,186,12,85],"\u8fd4\u3059":[1,145,6,97,7,8,27,54,107,150,153,16,155,190,121,167,72,125,82,74,172,96,77,80,180,154,37,84],"\u30b3\u30ed\u30f3":73,"_otoj":177,expression:[131,139,68,84,108],")offset":[63,113],"-mecab":[164,129,14,125,7,152,80,89],"_t":2,"\u5404\u7d22":3,"(xxx":125,"\u3002http":125,"\u542b\u3080\u5024":[97,3],"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":80,"\u5468\u4e0a":168,"_synonyms":175,"*added":113,"\u898b\u4ed8":125,"'ja":119,enable:[],"\u6607\u9806":[108,3,130,74,113,63,79],"\u5b9f\u884c":[],"\u8fbc\u307f":[190,175],"-bye":[46,150,163,108,181],"\u304a\u3051\u308b":[66,44,3,181,13,132,45,125,7],"\u3002\u3057\u304b\u3082":191,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":71,"\u7406\u89e3":[108,3],"?table":[103,9,54,102],ctrl:[97,172],"\u30af\u30ea\u30fc\u30f3":151,ivh:[164,129],"@lists":[151,26],".md":151,pthread:[27,125],"\u3002squeeze":177,ascii:[38,181,150],"\u633f\u5165":[3,151,93,97,32,7],binary:[132,45,4],hostname:[36,97,9],"/pipermail":80,"_filter":[],"<path":[97,64],"_setoperation":113,"[incompatible":[],"\u3002\u3057\u304b\u3057":[108,75,85,132,45,114,59,18,137,27,189,38,54],"_at":[],"error\u30bf\u30b0":7,"\u8ab2\u984c":[],cmake:[7,188,101,125],"\u5b9f\u88c5":[68,75,108,7,9,36,147,27,77,191,80,119],"_date":151,takahiro:154,customized:148,"\u5217\u8868":[45,84],wiedenroth:80,"\u6b53\u8fce":88,"_normalize":[114,108,42,3,91,70,184,181,32,189,7,115,113,139,78,150,65],"\u53d6\u308a\u51fa\u3055":13,"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":80,customizes:12,"\u53d6\u308a\u51fa\u3059":[63,13,69,120,154],"_retry":2,"\u56db\u89d2":[],"(x":80,"\u6771\u4eac\u90fd":[70,144,38],"[token":125,"\"utf":123,"(r":[167,178],rest:40,gdb:177,"(a":81,"_pack":[],"\u3046\u3061\u3044":97,"([":67,"-neologd":38,"(_":[153,176,18,150,48],"\u30d1\u30e9\u30e1\u30fc\u30bf":[],"\u3042\u3052\u308b":[],haystack:69,dcmake:101,"\u6c4e\u7528":[167,97,9],"\u639b\u3051":150,"(>":69,"(<":69,"(=":[2,150,69],res2:113,"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":151,"((":[108,85],"()":[],"(.":[78,151],"*tables":16,"(-":150,"(\"":[75,3,123,97,32,47,125,7,115,103,161],world:38,"(!":69,"(&":[77,84,16],"('":[58,60,3,73,97],meaning:97,intel:167,"_but":69,"\u95a2\u308f\u3089":[108,167],"\u4ed5\u7d44":[54,119],conditional:153,yyyy:[148,150],";b":[161,47],".load":167,"-full":151,"\u591a\u3059\u304e\u308b":108,exit:[],ddl:70,lucid:[154,125,151],"/httpd":[141,9],"\u8a18\u4e8b":[114,78,151],"\u5168\u6587\u691c\u7d22":[],";\"":7,";/":[161,47],"package":[],"\u5ec3\u6b62":11,favorite:119,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[27,54],"\u304b\u3048\u308b":182,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[189,133],"\u30ec\u30d9\u30eb":[6,7,8,97,80],"\u7b97\u51fa":[7,80],"\u306b\u3042\u308a":[133,65],"\u6df7\u305c\u308b":85,"\u7403\u9762":[75,168],"_prefix":[],"<encoding":97,"\u7530\u6cbc":80,"\u30e9\u30f3\u30ad\u30f3\u30b0":[3,80],emacs:119,recommends:139,"\u30aa\u30fc\u30d7\u30f3":[7,17,125,27],complete:[131,153,112,176,169],"/pull":151,"_empty":[2,172],"with":[],"_load":[],"_types":[],pull:[],ideographic:77,october:80,"\u697d\u3057\u3044":[70,144],reqular:131,"\u304a\u77e5\u3089":[],gone:44,ac:189,uid:151,"| y":125,"\u30ec\u30b9\u30c8\u30e9\u30f3":132,am:[32,47],al:38,an:[40,110,83,12,113,9,61,139],"| n":150,as:[40,141,90,12,122,35,32,186,16,7,131,9,103,139,64,119],ar:[70,90,144],at:[110,184,20,42,139,148],"| c":150,"| _":74,"\u3002messagepack":[135,188],shimomura:7,"\u4e00\u65b9":[108,3,181,5,115,13,132,32,47,70,182,78,38,150],"\u30c7\u30d0\u30c3\u30b0":[77,90,9,80,126],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[7,167,101],"\u9806\u4f4d":93,"\u30b9\u30c6\u30c3\u30d7":178,queryexpandertsv:[],"\u6817\u5c71":[77,80],"_such":[2,172],original:[106,143,157],"\u5897\u5206":108,"\u6587\u6cd5":[],senna:[],"\u4ed8\u968f":[145,72],"\u30c7\u30fc\u30bf\u30d9\u30fc":27,"\u5408\u8a08":[66,108,70,94,167,126,165,80],"\u6e80\u3055":125,"=yes":[177,108,112,125,151],"-talk":[77,125,26,151],"\u548c\u5e83":125,tx:38,"\u901a\u4fe1":[],to:[],tail:[172,151],tf:[122,183,12],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],homepage:167,tc:[63,120],returned:[40,110],"/other":9,"\u30ab\u30c6\u30b4\u30ea":[108,90,46],"/rurema":80,"\u3002column":[69,3,121],condition:150,"(popular":108,large:[139,61],adjust:108,"\u5909\u308f\u308b":[70,161,38,32,47],"\u5909\u308f\u308a":[126,74,144,38,117],"\u4e0d\u5b8c\u5168":27,"\u300c\u6771\u4eac\u90fd":70,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[90,133,125,80],"&gt":[161,32,47],"\u6e80\u3059":[77,125],"\u672c\u8a9e":38,"\u5927\u5225":13,pass:9,"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":[7,77,80],"\u5909\u308f\u3063":38,"\u7701\u7565":[],"\u7d22\u6642":154,"\u5897\u52a0":[108,125],"\u3067\u306b":[22,70,114,10],section:[40,86,121],"\u30ea\u30c6\u30e9\u30eb":[],"\u4eba\u5411\u3051":77,"\u5927\u5207":132,"\"\u672c":38,"\u6700\u65b0":[27,151,26,117],"\u3002timeout":79,"_modified":184,method:9,contrast:[97,9],full:[90,12,32,77,38,178],hash:[94,184],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[46,90],"\u30ce\u30a4\u30ba":[70,18],sender:[131,64],"\u975e\u516c\u958b":151,"_compare":79,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":108,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":7,"\u306b\u3059\u308b":54,via:48,followee:184,tokenizer:[],"/scorer":12,"\u7121\u540d":[113,79],"(init":16,follower:184,"\u3067\u3059":[90,3,4,5,7,2,9,10,11,12,87,14,16,17,18,19,20,22,23,24,182,27,31,32,35,36,38,92,13,45,46,47,48,49,53,54,164,188,58,59,60,61,166,64,65,66,68,69,70,71,73,74,75,77,78,79,80,81,83,84,86,152,88,117,0,91,94,95,97,99,100,101,102,103,105,106,108,109,85,114,115,113,118,119,121,122,161,124,125,126,127,129,130,131,132,133,135,136,139,141,142,144,147,150,151,153,157,158,163,165,167,168,169,170,172,96,174,175,176,177,178,179,181,183,184,189,191],select:[],executable:61,"[grntest":27,mecab:[164,1,42,151,132,14,125,7,152,154,77,27,188,38,129,80,89],"\u7406\u95a2":53,"\u4e0a\u8a18url":151,more:[40,12,122,32,172,61,139,64],"\u30c6\u30ad\u30b9\u30c8":[46,90,151,85,38,161,154,133,32,47,125,7,109,189,178,77,119,84,167,65],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":44,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[71,85],"\u518d\u5229":[94,108,60,80],"_argument":[63,113,2,172,79],"_messages":[151,119],endpoint:[131,64],"_adjust":[108,56,69],learn:[131,64],"\u6bd4\u8f03":[],scan:177,"_descending":63,accept:[35,154],states:170,gronoga:9,information:148,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":27,"\u300ccommand":36,"=dat":112,"\u52d5\u7684":[],"\u5b9f\u884c\u4f8b":[90,3,91,12,95,68,47,48,7,100,9,10,147,105,127,143,108,11,150,85,13,153,114,115,59,18,117,166,161,65,22,44,163,49,23,122,148,82,182,74,75,172,96,46,78,174,176,177,178,181,130,131,184,133,32,135,136,170,109,189,38,102],"\u5019\u88dc":[153,18,176,169],"\u306b\u3059\u3050":114,"\u30fb\u81ea\u5df1\u7d39":184,"\u8aad\u307f\u51fa\u3057":132,github:[0,73,189,151,125,7,77,104,27,119,80,81],tokenbigram:[],register:[],replied:184,"\u666e\u53ca":132,sysctl:[165,139],"\u52d5\u753b":44,"\u8f09\u305b\u308b":151,".co":[108,42],installer:151,its:[40,148,84],saucy:[125,80],".rpm":[164,129],"\u9577\u5185":80,confiugration:139,"\u63a5\u7d9a":[],"[tokenizer":[7,125],"_weight":[73,95,121,80,85],was:[],salamander:[125,80],"\u6271\u3044":[11,13,144,38,176,80],"\u6271\u3046":[2,23,150,70,132,125,26,165,142,112],"\u6271\u3048":[99,16],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":7,"\u5c0f\u306a\u308a":[],always:139,messagepack:[],"\u6271\u3063":[184,1,125],"\u30ad\u30e3\u30b9\u30c8":[181,184,154,125,7,112],"[doc":[125,7,77,27,112,80],found:[113,110],".offset":113,"\u534a\u89d2":[63,189,3],"\u540c\u7fa9":175,"\u9ad8\u901f":[44,1,69,3,181,92,94,71,97,125,168,75,178,132,191,27,150,38,54,65],operation:[136,110,172],"\u6271\u308f":[92,108,90,181,13,167,125,16,7,70,77,189,80],really:[108,181,150],"\u524d\u8005":[74,189,175],"_entries":[17,117],"\u30ab\u30d0\u30ec\u30c3\u30b8":[],"\u30de\u30eb\u30c1\u30b3\u30a2":132,"\u6e2c\u7528":1,"\u305d\u308d\u305d\u308d":3,"/locale":[119,151,20],ftb:42,"_client":150,"/etc":[141,151,165,7,152,9,139,175],"\u6975\u4ed8":[75,168],"_hit":[3,4,82,102,9,172],"\u3053\u3053\u3067":151,"\u30a6\u30a7\u30a4\u30c8":73,"_user":[],"\u3002\u3069\u308c":131,"-keyring":[7,152],number:[],"_pipe":[2,172],"\u3059\u3079\u304d":69,"\u7d42\u308f\u308b":[114,181,150],"\u30b3\u30d4\u30fc":[121,151,93,113,7,59,157,79],"/disk":178,guess:[],"|enable":90,"\u533a\u5207\u3089":27,introduction:[],"\u30c9\u30e1\u30a4\u30f3":[130,80],">\u3001":155,"_stack":2,"\u642d\u8f09":132,dpkg:151,"\u5b66\u7fd2":[],"\u56de\u547c":154,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":77,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":80,listen:[7,97,9,54],"\u60f3\u5b9a":[82,44,157,126],"\u5b9f\u969b":[66,44,23,70,125,142,78],toybox:13,"_nofile":[148,125],canceling:35,"\u52d5\u74b0":179,"*data":93,"\u66f8\u304d\u63db\u3048":[151,81],gted:119,"_filtered":142,qps:[179,167],"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[154,97],self:167,"_lock":[40,27,79,19],also:[108,181,12,131,35,32,150],internal:80,"\"theatre":91,"\u8a18\u53f7":[154,3,70,144,97,38],play:91,"\uff08todo":150,brooklyn:184,"\u306e\u3069\u3061\u3089":[108,150],"\u3060\u3055\u3044":[0,3,7,9,104,188,54,108,150,151,85,14,177,178,119,24,172,175,80,81,189,181,130,132,135,137,88,65],"\u5b57\u5217":[27,45,181,80,65],exe:[101,151],"_uint":62,cover:32,umemoto:27,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":80,arted:150,ext:90,"\u6d3b\u304b\u3059":108,"_vsize":[84,16],"\u7d42\u308f\u3063":5,"_processes":[],microsoft:101,"\u3057\u304b\u3057":[108,150,70,38,144,78,178,175,54,119],"/command":[178,9,102],xcode:89,session:131,"-memory":154,"\u6570\u3048":130,"\u77e9\u5f62":[132,74,34],"\u5143\u6c17":125,columnn:7,"\u9577\u578b":[63,95],"\u6642\u306b":27,failed:19,"\u51e6\u7406":[1,2,93,133,144,46,47,7,90,9,54,108,150,60,119,163,69,167,125,74,172,77,80,181,132,154,31,32,65,38],factor:[108,80],"\u5225\u9014":[45,79],"\u30bf\u30fc\u30b2\u30c3\u30c8":7,columns:[58,108,154,186,7,61,139],"]]]":[70,153,155,150],"\u5fc5\u305a":[108,11,71,113,172,65],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":54,"\u3082\u3057\u3054":7,"_point":[44,168,110],"\u30ed\u30b0\u30ec\u30d9\u30eb":9,bytes:[40,66,53],"\u6c7a\u3081":[23,65],"\u3082\u3057\u3042":77,"\u7528\u610f":[108,75,151,167,48,169,18,69,188,79,38,176],"\u3082\u3057\u304f":[142,45,47,7,9,164,150,151,13,113,63,23,165,161,125,172,96,77,78,80,181,32],set:[139,79,167],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[73,1,154,125,7,177,27,80],see:[40,35,139,20],sed:[7,27],sec:19,"\u547c\u3073\u5143":16,sea:[90,176],sen:42,"\u8a00\u8a9e":[],juman:164,currently:[106,9,83],mutex:[40,125],"\u65e5\u4ed8":[132,75,151],"\u3068\u3068\u3082\u306b":13,"\u3082\u3057\u308c":[175,38],available:[40,42],"<span":[161,32,47],"\u304c\u3064\u3044":[7,94,108,154,85],javascript:[],"\uff09\uff08":65,"\u3082\u304d\u3061\u3093":9,"interface":131,"\u500b\u4eba":188,"\u6790\u5668":[132,38],"_already":[2,172],"\u77e5\u308c":[68,23,133,124,147,78],last:[7,184],"\u4e00\u8cab\u6027":124,"\u77e5\u308b":130,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[132,167,158],"\u578b\u5909":27,connection:172,mmap:[],"<#{":148,"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":125,load:[],geolocation:[122,28,12],");":[69,121,16,17,77,84],"):":[141,151],"@ceekz":125,"\u9577\u5185\u6b69":80,"-adjuster":[108,85],"\u30b9\u30ec\u30c3\u30c9":[132,134,167,16,97,54],"))":[77,108,175,150],"\u30ca\u30ce":[135,154],")-":151,"),":[73,122,28,125,12],").":[141,151,12,122,32,131,183],"_exec":[2,84,16],")\"":[109,181,12,122,125,32,91],".htpasswd":[9,54],")'":[44,181,184,161,32,47,48,182,74,18,153,176,150],"[rpm":[7,27,112,125,80],tablename:11,"\u7c21\u6613":[141,75,80],"\u63a2\u3057":[132,108,38,167],"\u30d1\u30e9\u30e1\u30bf":[40,41,79,120,83,93,62,123,113,16,17,25,116,110,19,63,56,84,53,118,121],shinya:7,func:[40,53,16],"\u30ad\u30fc":[142,94,45,97,7,3,53,108,150,85,113,60,65,66,23,121,125,170,77,112,80,181,154,189,38],"\u3067\u307e\u3068\u3081":175,handling:139,")]":125,")\\":178,"-api":87,"\u3067\u306a\u3051\u308c":[181,150],"\u5236\u9650":[],"\u3002point":[34,168],"-apt":14,formats:148,"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[7,27,125],"_nromalize":189,"\u632f\u821e\u3044":[7,115,125,80,96],"\u63a1\u7528":[70,132,172],"<=":[184,150,9,125],binding:[161,42,47],"\u5316\u524d":60,"</":[161,109,4,47,32],"<-":54,"\u8a00\u3044":[182,71],"\u4e00\u7fa4":69,"_ptr":[40,84,16],swig:42,"\u56de\u52d5":167,alert:[6,97,8,9,148,80],levels:9,ifexists:58,stack:[125,172],"\u7121\u99c4":132,"1\u5ea6":5,recoverable:61,"\u8981\u6c42":[124,3,125,182],"-path":[],"_file":[2,135,9,175,54,172],mysql:[164,108,42,151,12,85,132,161,14,133,32,47,152,175,129,80],"\u5316\u51e6":[27,60],"\u30bd\u30fc\u30c8":[],"_files":[2,172],location:[],input:[58,135,106,172],emergency:[148,97,9],format:[40,42,4,131,148,106,119],"\u30cf\u30c3\u30b7\u30e5":[7,82,151,126],"\u30bd\u30fc\u30b9":[],"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":151,"\u540c\u7b49":[144,167],"continue":80,"_nabe":80,"\u4ed5\u65b9":[],"\u30d6\u30ed\u30c3\u30af":[132,9,125],"_flow":[2,172],"_bool":[154,79],"\u30af\u30ed\u30fc\u30f3":188,"\u65e2\u77e5":23,bm:[122,12],"-mruby":[151,80],bi:[70,144],"\u4e0a\u4f4d":[70,113],wget:[164,129,24,14,152,188],by:[],"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[141,80],"\"yu":157,"\u3068\u308f\u304b\u308b":151,garbage:[126,125],"\u983b\u51fa":77,into:[131,48,16],"\u3088\u308a":[45,144,7,100,27,188,108,75,150,85,13,114,63,65,69,70,167,125,77,78,168,175,176,80,178,181,130,184,154,137,38],"|key":[108,3,91,70,184,181,32,114,115,143,139,78,150,65],"\u8457\u4f5c":80,"\u30d5\u30a9\u30ed\u30ef\u30fc":151,pcre:7,span:[161,109,32,47],"\u56fd\u969b":119,custom:12,"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],"\u5074\u9762":132,"\u6574\u3063":177,opens:[139,110,83],"\"keyword":108,link:[13,102,130],line:[135,81,9,16],"\uff08ci":81,posted:184,"\u8868\u3059":[67,90,44,13,73,75,69,92,178],".php":151,up:4,".am":20,ul:90,"\u5206\u89e3":69,ui:108,"\u3054\u307f":[124,125],"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":[],"char":[40,83,62,123,16,113,79,84,53,80,121],"\u3054\u3068":[],"\u3075\u308a":153,"\u304b\u307e\u3044":3,defines:186,codes:[151,5],taro:44,">uptime":4,logyyyymmddhhmmss:131,"=null":[136,108,90,117,65],invalid:[40,131,108,172],"\u8868\u308f":79,"\u898b\u4ed8\u3051":125,"\u7acb\u3061":135,elements:85,".dump":27,"\u53f3\u8fba":[27,154],"(nginx":141,"\u6307\u5b9a":[],"\u4e00\u7dd2":[1,75,3,121,85,70,108,16,7,38,80,65],"\u3088\u304f":[108,96,38,178,85],"\u3088\u3046":[],"\u3088\u3044":[108,181,130,150,78,79,54,119],"\u3088\u3073":69,age:[95,108,96],"/wgs":74,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":125,oracle:[],"\u3088\u3063":74,"\u8a66\u884c":132,hello:[46,150,108,163,114,38],code:[135,148,127,4,119],partial:69,"\u3067\u307f":132,",\"title":3,results:[7,131,113,32],existing:[64,61,20],"/sysctl":[165,139,89],"\u843d\u3061":[154,125],"\u3067\u306f":80,"\u3067\u306e":[135,38,32,80],"-lzo":73,"/json":[27,9,54],"\u3067\u3069":153,"\u3067\u3057":[24,13,150,80],"[label":108,"\u8a2d\u5b9a\u6e08\u307f":141,"\u306a\u304a\u3053\u306e":167,":..":108,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[27,154],"\u3067\u3044":[13,184,108,150],"\u30ea\u30af\u30a8\u30b9\u30c8uri":9,"\u3067\u304f":[108,150,85,137,88,175,80,81],"\u3067\u304d":[],resources:[5,16],"{user":139,"-lz4":[],"\u7279\u306b":[69,151],provides:12,"'now":184,"\u8ca2\u732e":125,"\u983b\u5ea6":[77,153],"\u6368\u3066":27,".clean":151,"\u5f15\u304d\u7d9a\u304d":125,"try":[184,19],"\u6b8b\u308b":27,">rroonga":[161,47],"\u6b8b\u308a":[108,11,175,65],".sub":108,"\u30aa\u30d7\u30b7\u30e7\u30f3":[],"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":7,"\u4e00\u81f4\u3057":[108,144,80],video:44,".xml":4,index:[44,42,120,83,151,86,95,181,32,110,61,139,78,150,80,121],directive:9,"_operator":[113,56,84,121,110],"\u306e\u3067\u3057\u3087":108,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":101,"\u30ef\u30fc\u30ab":9,"\u5224\u65ad":[83,150],"\u5fc3\u304c":177,nargs:84,"\u516c\u958b":[151,154,125,17,27,80],"?parameter":9,let:114,ubuntu:[],ctx:[40,83,134,16,17,113,79,84,53,121],"\u73fe\u308c":90,"\u3067\u3082":[0,2,3,94,144,47,7,101,9,188,164,108,151,14,115,177,65,70,167,125,73,182,74,172,27,78,176,80,178,129,132,32,152,137,119,38,102],grnslap:[],buffered:86,"\u8d85\u904e":[165,125],firefox:119,"\u30c7\u30b6\u30a4\u30f3":7,"\u9014\u4e2d":[151,97,7,18,172,176,80],"\u3046\u3048":[7,27],"\u4ee5\u964d":[92,109,23,151,177,161,154,97,125,47,102,27,189,38,80,119],"\u3059\u304f":182,zip:[],illegal:172,"\"sea":176,"\u3044\u304f\u3064":[88,178],next:[110,53],"\u3046\u3061":[92,11,121,7,126,113,69,96,63,27,79],"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":78,"\u30af\u30a9\u30fc\u30c8":[90,133,181],"\u3059\u308b":[],"\u7d4c\u7def\u5ea6":[],"\u3059\u308c":[22,108,3,181,130,132,161,96,167,113,10,77,38,150],"/usage":12,src:113,"\u3059\u3080":23,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":[],occurred:[139,110],"-leaner":64,"\u578b\u6307":7,"_escape":[],"\uff08groonga":132,"\u4f7f\u3044\u65b9":[],"this":[40,3,91,97,7,9,103,148,106,54,108,150,13,16,61,20,121,79,181,83,131,32,186,136,139,102],"(wgs":74,"_posting":[110,120],"\u6e21\u3055":[7,75,69,53,125],"\u6e21\u3057":[69,3,181,58,102,77,80],"\u6e21\u3059":[112,77,3,150],"\u5171\u306b":[79,121],".domain":77,"\u6b8b\u3063":[154,125],edict:80,"\u3002\u3064\u307e\u308a":[108,3,181,19,38,91],"\u306f\u6708":150,process:[],lock:[],"_estimate":[27,110,77],"\u7d30\u5206":13,"\u3059\u3050":[132,54],"\u6301\u3061":[108,90,71,95,97,69,9,178],"\u6301\u3063":[108,90,181,85,132,95,124,7,18,49,166,189,133,150],"\u6301\u3064":[44,108,49,3,150,130,92,13,132,95,97,58,75,113,18,60,182,166,27,189,134],"\u6301\u3066":[163,95],"-enable":[88,154,20],"\u3059\u3067":[90,151,144,114,59,80],"\u3059\u3079":[108,90,150,157,94,172,167,80,136,184,11,9,69,77,27,127,38,176,54,107],"\u6b8b\u3057":108,defalt:154,"\u9664\u7b97":[],"-gqtp":[],"\u3044\u304f\u3089":132,"_')":[73,60],"\u4e26\u3073\u9806":74,">starttime":4,tomotaka:27,"\u8a2d\u5b9a":[],alloc:[3,4,82,102,9,172],"\u4f53\u8fd1":168,"\u578b\u540d":95,element:[150,85],"\u9078\u629e":[],allow:[7,152,108,181],":\\\"":58,op:[113,56,84,121,110],"[httpd":[7,77,125,80],"\u8abf\u3079":[93,34,79,130,168],"\u30ab\u30d0\u30fc":177,lz4:[188,80],naist:38,"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":[38,85],comma:77,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":179,yamaguchi:27,perfect:122,"\u3092\u3064\u3051":[108,23,181],"\u6539\u884c":[112,27,97,77],"_unavailable":[2,172],"\u6587\u66f8":[],"=platform":[],total:[126,167,139],hobby:148,"\u30c7\u30a3\u30b9\u30af":[77,1,78],"\u5de6\u4e0b":1,"[space":181,"\u5165\u308c\u308b":178,python:[151,20],billiard:[70,144],lzo:[73,121,7,172,27,80],"\u4e00\u6642\u7d50\u679c":7,"_per":[27,16],"_implemented":[2,172],"/master":[119,81],"\u7121\u9650":[7,154,80],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":80,"_none":106,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":81,doing:136,"-patch":119,"\u753b\u9762":[1,151,80],frequency:[12,122,153,48,183,18,176,80],"\u30b3\u30e1\u30f3\u30c8id":184,"\u751f\u6210":[],"-fd":[131,27],"\u3002\u7701\u7565\u53ef\u80fd":161,"\u4e57\u308a":23,initialize:16,"\u4ed5\u69d8":[],"\"\uff08":176,"\"\uff09":[13,1,74,176],"_friends":44,"\u30bb\u30b0\u30e1\u30f3\u30c8":[126,37,80,79],removing:83,"3ki":154,"\"timestamp":23,owned:84,"\u63db\u3048\u308b":[71,151],occurrences:122,"\uff08\u300c":[70,189],owner:9,"\u9069\u5408\u7387":38,"\u5897\u5927":75,"\u5bb9\u91cf":[77,108,126],"\u30cb\u30db\u30f3\u30b4":176,behaves:131,system:[108,181,24,45,32,139,150],"-keys":151,"\u30b9\u30da\u30eb":175,"\"weight":13,back:150,"\u304b\u3061":[108,144],"\u304b\u3064":[63,108,144,125,150],"_logger":7,"\u304b\u3069":[108,181,70,165,96,34,74,9,153,168,80],"\u756a\u76ee":[108,90,3,181,13,95,133,125,113,63,178,150],"\u8ffd\u8de1":[],"-time":32,"\u500d\u7cbe":45,"\u6253\u3061\u5207\u308a":125,"\u304b\u3051":[125,107],"\u9650\u6587":[27,65],"_results":113,"\u304b\u305a":[7,80],"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"\u304b\u305f":77,"-searchu":38,"false":[145,143,6,45,8,103,107,150,151,13,115,59,155,190,161,72,125,73,182,170,96,127,80,181,154,136,100],"_request":103,"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"2grn":80,"*s":80,"_charlen":40,"\u304b\u3082":[68,49,23,181,133,124,135,166,59,147,78,178,80,150],documents:[122,115,32],"\u304b\u3089":[],"\u3044b":[70,144],tokendelimitnull:[],"_const":[69,84],"\u3069\u3061\u3089":[0,3,133,16,169,71,78,54],"*init":53,okapi:[122,12],"\u6a5f\u80fd":[],"*/":[84,5,16],"\u3089\u308c":[17,90,3,91,132,95,154,105,125,7,69,94,124,27,78,38,170,107],"\u4e2d\u9593":[69,144],"\u3064\u3076\u3084\u304d":114,"_suffix":27,segment:126,"\u6e80\u305f":[182,74,69,178],"*\"":[146,78,108,80],latin1:7,"\u5168\u89d2":[63,27,189,3],"\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":97,"\u3067\u3059\u306d":124,"\u5408\u81f4":[74,3],"mo\u30d5\u30a1\u30a4\u30eb":119,"(arugment":150,"*res":[113,56,110],"\u30ea\u30af\u30a8\u30b9\u30c8":[145,6,8,9,103,105,54,107,108,150,155,157,190,159,72,125,82,126,172,80,179,73,35,31,36,37,140],brew:[89,20],".gz":[164,129,151,24,14,89,152,188,119],"=r":7,"_initialized":[2,172],"_literal":80,"=g":131,"'localhost":[179,97],"=`":20,"=c":101,"=i":151,"=\\":[161,109,32,47],umask:80,terminal:184,"\u8d70\u3063":59,"\u5373\u5ea7":77,"\u30ea\u30ea\u30fc\u30b9":[],"\u5316\u5bfe":119,handle:[139,16],means:[40,108,110,122,136,9,103,148,139,106],"==":150,"=$":[188,151,119],"='":109,"\"ellip":168,"=\"":[108,4,24,161,32,47],db1:54,"=/":[175,188,97,177,151],db2:54,"=)":69,"/html":[27,119,54,20],">cache":4,"\u307b\u3068\u3093\u3069":[77,16],"_search":[],nise:80,"\u64cd\u4f5c":[],travis:[],"\u7cfb\u5ea7":[34,168],"/doc":151,"\u3002debian":177,"\u306b\u3064\u3044\u3066":[90,3,12,6,7,2,10,11,13,14,18,19,22,23,24,182,27,31,34,8,37,38,145,45,48,49,54,164,58,59,61,63,65,52,67,68,69,72,73,74,75,77,79,80,81,82,85,152,88,89,0,95,97,99,103,105,188,107,108,168,111,115,117,120,122,125,126,127,129,130,132,133,136,139,140,142,144,147,151,153,155,157,159,160,162,46,165,166,170,172,174,175,176,178,181,184,180,190],"\u8ffd\u8a18":[7,151],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":124,"_connected":[2,172],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":125,"/var":[141,188,97,9,61],configuration:[139,9,125],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[],"/status":[179,102,4,54,9],webclips:109,valgrind:177,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[181,94,154,125,27,150,65],etc:[139,9,54],tld:130,":\u5206":184,ci:[],ch:90,"\u533a\u5225":[45,178,108,143],allocates:40,ce:38,cd:[119,129,151,164,24,14,152,101,188,89],"\u7d99\u7d9a":[7,97,81],"\u591a\u69d8":132,zenigata:44,"\u66ff\u3048\u308b":3,allocated:40,"\u306b\u3044\u304f\u3064\u304b":125,"\u304a\u3055\u3089\u3044\u3057":124,"_itoh":27,"\u5f97\u3089\u308c":100,"_vesion":109,"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":7,"[plugin":80,adjuster:[],"@yappo":[125,80],"\u58ca\u308c":[154,7,126,61,77,27],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":1,"\u3068\u3064\u3044":74,"\u4fdd\u6301":[17,13,99,184,16],"\u518d\u5e30":[108,69,145,9,79,175,107],"\u5968\u6271\u3044":80,"\u5de6\u4e0a":[34,1],"\u6b20\u843d":125,tokenkytea:7,ultra:44,"\u307f\u305f\u3059":184,"0x":[13,45,112,181,172],"\u58ca\u3059":7,vm:[],"\u4e00\u62ec\u3057":113,"_versions":151,"\u305d\u308c\u304b\u3089":[108,85],"\u5ea7\u6a19\u5024":[],"\u8a71\u3057":88,"\u3002\"":[130,70,184,125,18,100,102,51,80],"\u3002#":[27,154,184],"\u3002-":[63,36,188,93],"\u3002.":119,"\u3002(":[164,141,69,151,167,97,58,170,19,63,78,53],"\u3002)":[63,78,170,167,108],"\u300cbilliard":144,"\u8ab2\u7a0b":125,"\u3002:":[3,144,97,48,9,77,105,54,108,11,150,151,153,167,58,18,155,157,166,119,49,70,165,124,73,126,36,27,176,177,169,139,65],"_valule":100,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":80,"\u982d\u6587":172,"\u518d\u5ea6":[69,19,80],"\"roonga":169,v1:69,v2:69,architectures:151,".group":182,php:7,"\u3002[":[7,77,3,125,80],"_lzo":[73,2,121],off:[9,80],"\u3002c":[87,132,2],"\u3002n":[70,90,133],"\u4e00\u77ed":132,command:[],ecmascript:[7,108,158,125,150],"_recover":[83,80],"\u81ea\u7531":[132,69,60,172],gettext:[119,20],"\u9806\u5e8f":[70,105,108,3],web:[1,181,151,153,108,48,18,188],"\u6b63\u898f\u5316":[7,133,32],"-values":77,"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":7,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":97,checking:[131,83],"|http":167,increases:122,five:3,"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[27,65,125,150,94],tvsec:82,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[],"\u5947\u6570":150,string2:111,"\u672c\u8cea":167,become:42,"*target":84,"\"rect":[7,168],"/source":[119,129,151,152,87,14,24,101,20,164,188,89],"#{l":148,"\u63db\u3048":[63,79,91,178],nneded:139,"\u30dc\u30bf\u30f3":[7,125,151,119],does:61,"\u53d6\u308a\u9664\u3044":113,"_group":113,"\u53d6\u308a\u9664\u304d":[109,69],"(debian":141,"_rc":[40,41,108,79,83,5,93,86,123,113,16,17,25,116,110,19,63,56,84,53,121],iwai:[7,112],"\u5206z":45,"_queries":[3,4,82,102,9,172],"\u3053\u306a\u3044":80,software:14,coverage:177,"\u7d42\u4e86\u30bf\u30b0":161,"\u7d42\u3048":151,"(get":179,"\u300cusers":184,"\u9805\u76ee":[1,108,99,82,126,141,54,65],"-node":129,"_remove":[],"_started":135,"\u89a7\u4e0b":177,"function":[40,42,12,122,16,135,131,172,28,160],"\u300cpopular":108,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[108,11,165,167,190,188],"-dd":[148,150],sigstop:125,"-point":45,be:[40,12,48,103,10,148,28,110,16,113,20,64,121,122,127,79,83,131,35,136,139,84],count:108,compute:[122,139],"\u4e00\u756a":[108,188,54,85],official:151,"\u3002iptables":102,"[info":178,problem:139,yuki:27,"\u3067\u3082\u3059\u3079\u3066":38,"int":[40,3,4,12,44,93,86,45,48,7,53,122,108,75,150,85,13,153,113,16,17,115,59,18,19,25,67,120,121,70,62,125,63,74,110,96,78,79,176,80,181,83,130,127,184,154,84],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":80,inv:167,"\u65b0\u8a9e":38,"\u69d8\u3005":[],"*proc":93,"\uff08not":158,redcloth:151,"%post":7,compared:32,"\u7570\u306a\u308b":[],variety:44,"/message":151,"/default":[7,141],details:[40,35,148,139],"'user":115,"\u4eba\u3068":124,"/sources":152,"_query":[],"+ff":[77,189],needed:[9,16],eof:97,"_hugetlb":27,"-threshold":[],searched:110,rep:167,"*string":84,saves:131,"/sysconfig":141,"\u3070\u308c\u308b":154,lgpl:42,"const":[40,83,62,123,112,16,113,63,79,84,53,121],"/travis":81,spec:[7,154,125,151],"\u30e9\u30a4\u30bb\u30f3\u30b9":7,"\u304b\u305a\u3072\u3053\u3055\u3093":7,"\u4e0b\u66f8\u304d":92,editrc:27,"\u3002tokendelimit":48,"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":151,replication:12,"\u4f8b\u3068\u3068\u3082":75,".en":151,"\u932f\u8aa4":132,upload:151,msyql:85,"[macports":27,starttime:[3,4,82,102,9,172],"\u7c21\u5358":[],"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":154,"\u69cb\u9020\u4f53":[120,53,80,16],"\u304c\u3072\u3068\u3064":175,"/branches":177,"\u65e5\u672c\u6e2c":75,incompatible:172,"\u9006\u6587\u66f8\u51fa":80,zunda:27,"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[70,38],above:[131,103,48],"\u3002\u3056\u3063\u304f\u308a":85,"\u4e8c\u3064":[90,11,46,69,23,115,167,144,133,16,75,100,182,142],"\u578b\u3068\u3057\u3066":45,"\u30a8\u30f3\u30b3\u30fc\u30c9":[36,189,154],"\u30af\u30a8\u30ea\u30ed\u30b0":[7,27,18,176,48],obtained:40,items:108,"\u540c\u3058\u4f8b":78,"-admin":7,"\u30d0\u30c3\u30d5\u30a1":[41,121,93,125,7,126,113,78,79,84],highly:[122,28,12],"_table":[],"\u6587\u5b57\u7a2e":178,negative:[40,53],program:[131,64],kytea:[7,90,125,188],separated:106,"\u304b\u304b\u308b":[114,113,3],"\u9df2\u7530\u57fa":125,aware:40,"_register":[],"\u3064\u3065\u3044":184,"\u62bc\u3057":3,word:[7,108,181,150],work:148,"\u62bc\u3059":[3,119],"\u30a2\u30fc\u30ab\u30a4\u30d6":[101,151,119],"\u5316\u6642":27,"\u540c\u68b1":[7,154,80,119],indicates:148,"-conditional":27,"\u5bfe\u51e6":80,"\u30b9\u30ad\u30e3\u30f3":[161,47],provide:[131,12],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":151,length:40,recovers:[83,61],"\"apple":189,"if":[40,5,9,103,148,106,53,110,12,85,16,113,19,61,64,69,121,122,77,79,150,83,131,35,186,136,139],"-lines":[131,27],"\u306e\u3046\u3061":[95,181],"/security":139,"_plugins":[27,77],"\u306b\u5bfe\u3057\u7570":115,after:[131,139,110,20],"|with":[3,91,12,95,47,108,150,85,114,70,163,122,161,73,182,115,78,80,178,181,184,133,32,139],"\u76f4\u4e0b":27,lat:167,"_title":[167,78,3],".description":184,"*func":[53,16],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":154,"@naoina":[7,125],"\u30d9\u30fc\u30b7\u30c3\u30af":54,"\u306e\u3069\u3061\u3089\u304b":[108,96,181,150],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[],"\u5bfe\u8c61id":41,".conf":[165,141,9,139,77],japan:[170,102,130],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":175,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":80,"\"say":150,"/windows":[101,151],"\u4e0b\u9650":[63,120],then:[40,131,9],them:[139,84,12],"\u8f9e\u691c":[27,150,94],"_token":80,"break":61,they:[122,139,12,148],"\u5168\u3066":[108,150,45,114,113,9,158,78,119],"\u697d\u3057":[70,144],"\u56de\u6570":7,"\u3042\u304d\u3089":80,"-send":[131,64],"\u7a81\u7136":125,"\u5316\u65b9":[189,133],carlos:[59,127],serach:18,"/null":1,"_options":[125,150],logs:[142,122,23,131,148,105,178,64,65],"<endpoint":64,patsuffix:143,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":7,"+ y":45,"+c":97,"+a":181,network:172,"_directory":[2,172],".deb":151,"\u3068\u3059\u3079\u3066":[7,108],"-rsync":[],wgs:[44,75,130,13,184,45,34,74,110,102,27,168],"\u6210\u308a":[108,181,172],"\u90e8\u5206":[],"\u77ed\u3044":[184,154],"+ \"":7,"_tp":179,"\u77ed\u304f":[114,132],standard:45,"_to":[184,78,123],"_tf":[],"\u30eb\u30fc\u30eb":[154,108,90,80,54],hatake:[],"\u30eb\u30fc\u30d7":[7,154,80],created:[40,131,184],"++":[164,129,151,132,112,16,27,188,84,80],"+-":[84,9],creates:[40,139,84,186,148],"\"ni":176,"\"no":7,"\u6709\u7121":[13,161],"_failure":5,"\u30eb\u30fc\u30c8":27,"\u59a5\u5f53":94,"\u8aad\u307f\u8fbc\u3093":[68,172],"><":[84,4],">=":[125,150],">>":[125,150],"_next":[63,110,154,120,125],">.":[161,47],">\"":[108,109,161,125],"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,"\u3082\u3089\u3048\u308b":124,"\u30b5\u30dd\u30fc\u30c8":[92,1,90,4,94,45,141,7,9,77,147,51,188,54,11,150,151,13,112,14,114,115,63,178,65,68,167,124,125,27,78,175,80,81,181,130,132,154,32,187,189,38,102],"\u540c\u4e00":[],"\u898b\u306a\u3057":63,john:[170,143],"\u30b9\u30ab\u30e9\u30fc":85,"\u63a2\u7d22":132,tokenfilterstem:[],">n":4,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[113,79,83,121],"\u3069\u3061\u3089\u304b":[150,32,47,181],"\"unknown":123,keyid:151,target:[],">_":189,"\u3002value":[79,60],"\u57fa\u76e4":16,":byte":62,"\u30d6\u30fc\u30eb":[13,45],contents:40,latency:167,dbms:32,"\u5f8c\u8005":[74,189,175],",\\\"":58,"\u8ff0\u3079":3,"\u5177\u5408":108,indexbuf:121,"_distance":[],indexed:61,"_jis":[188,38],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[131,125,119],gzip:[],"\u5408\u308f\u305b":[7,121,150],gronnga:169,"\u3002host":172,"-strings":112,"\ufff0\"":38,"\u767a\u751f":[73,1,188,151,70,132,135,125,16,7,113,77,79,80,65],"\u8003\u3048":[108,3,181,130,132,124,54,150],"\u5270\u4f59":[],"(target":100,keywords:[122,84,12],"\u65e2\u5b9a":7,"_input":[135,2,150],"\u771f\u306a\u3089":150,"*section":121,rectangle:[],"-frequency":27,"\"items":157,"do":[136,167,80],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":154,"\u3082\u3057x":125,dd:[148,150,178],de:119,"\u53d6\u308a\u5f97\u308b":45,"\u8ab0\u304b":88,"[libedit":27,"\u8ab0\u304c":184,runs:64,"\u81ea\u4f53":[181,80],"\u8ab0\u3067":80,"\u5341\u4e00":[],"\u4e0b\u90e8":151,"_compress":121,depends:[122,28,42,12],"\"yyyy":150,"\u7d9a\u3051\u308b":38,"\u67d4\u8edf":[132,158,115],"\u5bfe\u8c61obj":41,"\u91cf\u6307":178,"\u3067\u3057\u304b":38,"\u53d9\u8ff0":77,"\u3002json":58,"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,terms:[122,163,3,181,12,126,70,161,108,97,32,47,46,115,139,150],wo:38,"\u3044\u305a\u308c":[45,11,60],"\uff12\u3064":74,packages:[119,129,151,164,24,14,141,152,101,188,89],"_tables":[77,125,16],"\u69cb\u3044":[176,32,47,119],ill:144,"\u3082\u3046\u307e\u304f":188,"\u4e00\u4ef6":[],"\u6319\u304c\u3063":38,receiver:[131,64],requests:[131,35,148],com:[134,130],col:79,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u7f6e\u63db":[],calros:96,"\u30d1\u30fc\u30b5\u30fc":[181,178],"\u95b2\u89a7":102,")\u300d":97,snippet3:32,")\u3001":80,enginen:176,"_accepted":103,"'needle":69,"\u3082\u3057\u3053\u306e":165,"\u65b0\u305f":[93,113,69,83,121],applied:[139,42],"-secret":151,has:[40,42,151,12,186,113,110,103,148,139],gnu:[],"\u9650\u5b9a":178,zlib:[73,154,121,14,125,7,152,172,27,188,80],"_message":[135,78,178],"_only":[2,172],"\u7e4b\u3052":80,aio:125,"\u5165\u529b":[1,145,3,6,97,48,105,107,108,150,153,58,18,155,157,190,159,167,72,125,73,126,172,27,112,176,179,82,169,135,37],"_close":[40,69,120,86,16,17,63,27,79,84,80],"[solaris":7,cond:125,conf:165,"\u56fa\u5b9a\u9577":154,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":69,"\u9069\u3057":[114,132,65],"-dataset":[],"\u4e0d\u5177\u5408":[7,77,88,125,80],"\u6771\u4eac":[70,74,75,38,144],"-packages":151,"[warning":178,hana:44,"\u76ee\u7684":[188,90,23,125],"\u72b6\u614b":[164,82,129,154,3,151,126,70,132,14,97,16,7,152,179,124,77,176,80],"\u30b0\u30ed\u30fc\u30d0\u30eb":[7,19],client:[97,9,12],the:[],"_shutdowned":[2,172],"\u30de\u30c3\u30d4\u30f3\u30b0":165,"\u826f\u4e8c":80,solaris:[],"_score":[108,121,12,184,125,7,153,74,60,77,27,150],"\u8db3\u3057":150,repoforge:[7,129],thanks:184,"\u3068\u306a\u3063":125,adding:[35,20],"=sjis":188,"\uffef\"":38,"~ \"":[150,178],"\u7027\u5185":125,"\u7528\u3044\u308b":[44,3,13,132,99,74,172,79],"\u6307\u6a19":79,jekyll:151,"\u30ed\u30c3\u30af":[1,97,125,7,136,19,27,79,107],"\u307e\u3068\u3081\u308b":9,"_expr":[],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[188,135,11,167,191],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[],"\u307e\u3068\u3081\u3066":[13,132,151,130],"-token":[152,14,80],"\u3057\u304d\u308c":7,tokenbigramsplitsymbolalphadigit:[],comments:[],"_arg":2,tasuku:42,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":151,".sourceforge":[151,26],"(select":150,"_compile":84,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":[],"\u8db3\u308a":[27,175],"\u30b5\u30fc\u30d3\u30b9":[7,132,125,80,81],substitution:115,"\u7a32\u7530":125,post:[],properties:148,obj:[41,79,83,93,126,56,84,53,118,121],"*ic":120,accepts:[131,127],"*ii":86,"\u6709\u7528":[3,94,95,54,135,9,77,80],"\"text":27,"\u5224\u5b9a":74,zxvf:151,"\u3068\u306a\u308a":[181,54,32,47,102],".h":[87,40],"**":[121,8,63,79,53,83],"float":[108,75,4,13,45,7],"\uff09\u3001":[94,144],"\u6700\u521d":[141,3,47,27,108,150,13,16,65,161,124,96,77,78,175,80,178,181,131,32,135,38],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[108,85],"*'":108,"_socket":[2,172],"\u5927\u6587":[108,178],"\u5b89\u5168":172,way:64,cdbs:27,"cpu\u30b3\u30a2":[],"_body":[70,73,91],"\u6027\u80fd":[],"\u6c7a\u307e\u308a":175,encoded:131,"true":[1,145,3,91,12,6,45,163,47,136,46,100,103,10,147,109,127,107,114,108,75,150,85,13,190,58,115,59,155,143,95,65,22,44,68,23,122,161,72,125,168,73,182,74,170,96,78,174,80,178,181,130,184,32,34,8,189],maximum:[35,12],"\u30e1\u30c3\u30bb\u30fc\u30b8":[184,11,80],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[],mte:42,"\u6587\u5b57":[],"\u7d44\u307f\u8fbc\u3080":[132,69,9],syscall:80,"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[19,125],score1:69,score2:69,distributions:151,"\u3054\u89a7\u304f":[3,177],physical:126,test:[3,151,13,184,167,102,78,177],"\u5c5e\u6027":[90,133,146,73,109,49,166,105],"\u305f\u3081\u3057":74,truncate:[],welcome:[184,108,181,150],update:[],"\u547d\u4ee4":[],"[gqtp":125,scorer:[],tajima:7,"\u7de9\u3084\u304b":77,masaharu:[7,112],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":27,"/debian":152,"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":172,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[],"<threshold":97,"\u901a\u77e5":151,"(ptr":154,"_denied":[2,172],"\u8a2d\u6a02":27,"\u5f53\u3066\u308b":13,entries:[108,181,161,47,157,139,150],"/http":[141,9],"\u72b6\u6cc1":[70,132,108,150,93],"\u3068\u3057\u3066":[],"{column":178,"\u4e0d\u6574\u5408":1,localhost:[179,4,151,131,167,97,9,103,27,54],"(database":165,"4gbyte":66,initializes:[40,5],initialized:[40,16],"\u3002cursor":63,"[munin":[7,27,125,80],"\u30c8\u30e2":44,shared:[19,121,83],supporting:9,"dat\u30ad\u30fc":125,"[deb":[7,27,125,80],"\u6e2c\u4f4d":132,"\u30b5\u30d6\u30bf\u30b9\u30af":151,"\u96c6\u5408":[71,85,7,113,158,178],appears:32,change:[7,9,54,20],"\u30ec\u30dd\u30fc\u30c8":188,liblzo:[152,14],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[70,108,158],"\u305d\u306e\u969b":151,usually:64,".spec":27,".exe":101,"\u305d\u306e\u307e\u307e":151,"\u6700\u5c0f":[164,108,14,129,152,96,141],marked:141,"-cutter":151,"'haystack":69,"\u7d71\u5408":[7,132,125],should:[40,35,127,20,16],httpd:[7,112,125,80,151],"\u6307\u6570":150,https:[],selects:110,"/copyright":80,"enter\u30ad\u30fc":125,"\u6d41\u91cf":54,"_sum":108,"_plugin":[40,27,146,80],cas:172,"\u884c\u308f":[179,44,108,167],nfkc:189,can:[40,119,106,83,12,122,35,10,32,16,148,103,19,61,20,139,127,48,9],clearlock:[],",\"http":13,"_stable":116,"_stamp":148,"-sphinx":20,"\u884c\u3063":[177,74,130,80,151],"\u5b89\u5fc3":124,"\u884c\u3046":[179,44,163,75,143,151,184,144,124,141,7,115,74,154,177,63,78,80,65],",'":[13,45],"\u884c\u3044":[179,44,69,3,151,70,184,144,97,115,113,63,78,79,167],",\"":[44,4,184,126,157,77,78,80],",.":151,mpaa:96,"_logical":77,"\u884c\u3048":[177,115,3,181,80],write:[108,142,136,20,76,112],"^commit":151,"\u8fd1\u508d":[],"??":108,"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":125,"\u5316\u6e08":[79,83],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":163,uint:[154,3,91,45,7,102,105,127,143,108,150,111,114,59,95,65,44,163,70,125,182,74,170,96,78,80,178,181,130,85,135,139,189],",_":[44,108,3,150,130,85,184,115,74,153],"\u5207\u308b":[9,80],",[":70,"\u5207\u3089":80,"\u8fd4\u3059\u304b":153,ghz:167,"\u5404\u56fd":151,"\u30b2\u30c3\u30c8":26,meerkat:27,",{":[167,4],"\u304b\u308f\u308a":[70,77,80,164],"\u5357\u534a":7,"\u82f1\u8a9e":[0,151,27,38,80,119],"=-":188,"\u5bfe\u8c61ctx":16,ieee:45,"_account":119,":ss":[148,150],"_tsv":[106,175],"\u30bd\u30d5\u30c8":175,"-libedit":154,"=(":151,"\u3002gdb":177,"\u78ba\u5b9a":153,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":80,"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":188,"\u4f5c\u7528":7,non:61,"\u542b\u3081\u308b":[108,90,23,181,151,112,133,80,27,142,175,3],rake:151,"\"version":4,"\"ruby":85,"\"vector":125,alisa:115,now:[],"\u3086\u304d":143,"_lcp":113,january:131,"[normalizer":80,"\uff4d\uff59\uff53\uff51\uff4c":[161,47],"\u8aad\u307f\u8fbc\u3081\u308b":157,el:[129,38],domain:[],en:[153,90,38,176],ea:[148,90],ec:108,kana:[153,18,176,186,48],ex:90,year:148,"\u70b9\u6570":[],es:38,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":151,opened:[139,61,148],"\u9054\u3059\u308b":63,"\u518d\u69cb":27,increase:139,"\u3065\u3051":[],"/files":[151,20],shows:106,"\u5230\u9054":66,args:97,"\u5d8b\u7530":7,"-rroonga":17,care:122,"/pub":129,"\u7d50\u5408\u5f0f":[],arnaud:27,"[windows":[7,27,125,80,77],british:91,period:[],"\u3078\u306e":[13,188],"_block":[2,172],omitted:[136,4],variables:40,"\u305f\u3069\u308b":44,"_process":[2,172],message:[40,23,122,8,148,78,178],xt:[90,38],size:[],unlink:84,checked:151,silent:81,"\uff08=":108,bookmark:85,"_obj":[],"\uff08,":3,"\uff08-":[108,3],".git":[104,151,119],"\u30bd\u30b1\u30c3\u30c8":[73,145,6,72,7,126,8,155,157,159,190,105,37,82,140,107],"\u3044\u308c":[7,13,79,38,77],"\u3044\u308b":[],that:[40,108,110,121,12,136,122,32,7,131,113,9,103,148,139,106,84,53,19],kenichi:[27,154],localnames:157,"\u6a29\u8868":80,"=path":[],libevent:[188,152,14],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":117,"\u304by":125,x6:151,than:[12,85,122,48,148,139,28,178],"\u30d5\u30a9\u30fc\u30e0":[108,158,125,181],"*next":53,"\"\u4e8c":[],"[index":80,"/gat":[74,3,130],accesses:[139,121],"_basic":[9,54],"\u5404\u547d":167,browser:119,"\u3044\u304f":[],"(scope":182,"\u3044\u304d":[124,3,151],remained:[148,178],"\u3059\u308b\u304b":130,"\u3044\u3044":[124,26],"-zlib":[],"\u30b3\u30f3\u30d1\u30a4\u30eb":[112,125],"\u30b3\u30f3\u30d1\u30a4\u30e9":[27,80],"_circle":[],engin:[153,176],"\u591a\u5f69":132,"=none":[108,90,133,46],"\u3044\u3064":176,"\u3044\u3063":178,"*buffer":79,"\u3044\u307e":68,"\u9806\u6b21":[179,97,3,172],"|suggest":153,price:13,"\u5c0e\u5165":[77,11,177,80],"_section":[121,184,95,73,78,80],"\u79fb\u52d5":[151,87,7,101,190,27],"\u672a\u4f7f\u7528":172,"\u3068\u308a\u3068\u3093":[181,150],"-yyy":119,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[],"\u305f\u3069\u3063":184,"\u3057\u3044":[70,144],"\u3057\u304f":125,"\u975e\u4e92":[7,77,125,80],"\u65b0\u5bbf\u99c5":74,"\u3057\u304b":[108,181,13,54,9,178,150,78,119,38,80,65],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],oldvalue:121,"\u3057\u3066":[44,108,154,3,151,130,70,14,124,125,7,113,9,177,119],"\u6700\u5927":[1,142,94,97,7,54,108,150,17,62,66,67,23,165,167,125,117,96,27,80,154,32,172],"\u30bf\u30a4\u30c8\u30eb":[44,108,150,13,78,181],title:[44,3,130,12,136,13,125,122,102,182,151,78,28,80],only:[40,103,12,122,9,61,28,106],"\u3057\u307e":124,"-server":[],"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":9,cannot:[],"\u5f8c\u8ff0":[63,182,69,151,178],"1\u6708":[13,184,45,108,150],"\u8a73\u7d30":[141,90,3,45,7,9,10,56,164,108,188,150,85,14,17,115,177,25,95,65,22,46,70,167,125,74,77,174,80,178,129,181,130,135,152,187,36,119],"\u7528\u5909":80,".label":108,bugfix:[],"/gqtp":[141,125],"\u62c5\u5f53\u8005":151,"\u8b70\u8ad6":0,"\u623b\u308a\u5024":[],"\u840e\u7e2e":124,"\u300cbob":184,"({":131,"\u4e21\u65b9":[108,184,181,85,132,114,94,150,38,176,143],"(scan":177,"\u8a18\u6cd5":[78,150],"\u70b9\u4ee5\u4e0b":13,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":125,"_mode":80,"\u5dee\u96c6\u5408":150,between:[],"[dd":178,"import":151,"\u5426\u304b":[142,23,96],"\u5e38\u306b":77,notice:[6,122,8,97,9],"{label":108,unlocks:40,"\u3057\u308c":[49,181,135,59,166,178,80,150],"\u3057\u308a":124,tokenbigrma:90,"\u3057\u3088":[41,69,13,114,125,16,58,75,19,27],"\u672a\u8a2d":7,article:78,"\u6a5f\u68b0":80,"\u3079\u30fc\u30b9":80,"\u8d77\u3053\u3063":59,"\u975e\u4f9d":129,"-groonga":[104,184,167,151],"\u5c55\u958b\u5f8c":108,learning:[],"\u8868\u8a18":[75,91,151,85,13,45,125,7,74,27,150,119],"\u8d70\u3089":59,"\u578b\u60c5":7,cares:122,"\u3002callback":69,"\u8868\u8a08":175,"'>":109,"';":97,"_multiple":12,ruby:[],"\u5438\u53ce":3,developing:163,these:[32,12,61],"\u4f55\u3089\u304b":45,"\u975eascii":38,"\u30b7\u30b0\u30ca\u30eb":[27,80],geodetic:45,"\u5f8c\u65b9\u4e00\u81f4":[],"\u4f7f\u7528\u4f8b":75,"/packages":151,shorttext:[3,91,12,94,45,97,46,47,48,100,102,105,110,127,143,122,108,75,150,85,13,153,114,115,59,18,157,63,95,65,44,163,70,161,167,73,182,74,170,96,27,78,109,176,80,178,181,130,184,154,32,135,136,139,189],"\u3002\u3002":92,"\u3002\u300c":[44,108,90,181,133,46,150,78,178,38,80,65],"\u3002\u300d":70,"\u5fc5\u8981":[],canceled:103,", {":[9,54],"\u5c65\u6b74":151,"\u8f9e\u66f8":[164,1,70,154,125,7,38,80],develop:[163,11],"-dir":167,"\u6fc1\u70b9":189,document:[150,12,122,161,154,97,32,47,151,36],"\u3002\u3044":69,favorited:184,"\u5b89\u5b9a":[132,11,112,126],"_space":[2,172],initialization:131,".po\u30d5\u30a1\u30a4\u30eb":[],", \"":[78,161,85],favorites:184,"\u3042\u306a\u305f":[77,151,26,178],eito:125,"\u3002\u3059":[114,167],theater:91,"\u8d77\u3053\u308a":91,"\u5171\u901a\u63a5":94,"\u3059\u3079\u3066":[90,3,95,46,7,9,188,108,11,150,85,59,113,163,167,96,27,80,178,130,154,38],"[output":112,"\u3002ecmascript":108,"\u6bd4\u3079":[114,80],appveyor:80,touch:139,"\u30ab\u30e9\u30e0":[],speed:169,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":82,"\u3002api":[161,32,47,158],"\u4f4e\u304f":[70,38],"_filename":2,"_extract":42,"\u4f4e\u3044":[70,108],sharding:[77,142,23],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":163,real:[139,32],"\u542b\u3081":[108,175,181,151,96],"\u542b\u3080":[179,73,108,69,23,181,85,184,134,144,125,7,153,3,78,80,150],"\u8a00\u3046":[176,85],"\u4e38\u62ec":3,"\u9234\u6728":7,read:[32,172],"\u8a00\u3048":[70,181],"\u5c55\u958b\u7528":27,amd:151,"\u542b\u3093":[108,69,181,13,184,32,135,169,18,38,80,150],"_hook":[],using:[106,78,42,48],"\u6df7\u5728":36,"=site":102,output:[],"\u5c5e\u3059\u308b":[63,105,45,79,121],unsplit:69,"\u30c4\u30ea\u30fc":80,"\u30b7\u30b9\u30c6\u30e0":[],"\u5de6\u53f3":3,"id\u9806":63,"\u30ec\u30b9\u30dd\u30f3\u30b9":[17,2,125,7,54,27,80,172],moero:44,unlocked:40,"\u30de\u30b7\u30f3":97,forks:97,"\u542b\u307f":[63,135],"\u542b\u307e":[3,95,144,48,7,100,10,147,105,54,108,150,151,58,115,65,22,68,69,23,96,174,175,80,129,181,184,32,135,38],"\u5206\u3051":[],tomoatsu:154,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":9,".posted":184,"-static":27,rdbms:132,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":167,central:184,backup:[83,157],processor:[152,129,14,164],"/admin":[27,97],"\u30ea\u30af\u30a8\u30b9\u30c8id":[],"\u30aa\u30d5\u30bb\u30c3\u30c8":[7,153,108],"\u53f3\u4e0b":[34,1],"\u53f3\u4e0a":1,"=title":102,operator:110,your:[20,136,139,27,81,119],"_example":176,log:[],prepare:9,aren:139,assumed:53,rpmforge:129,rlimit:[148,125],"\u77e5\u8b58":167,cflags:24,"\u306b\u3064\u3076\u3084\u3051":124,"d\u30ad\u30fc":3,"/query":[22,174,10],",\"links":13,"~${":178,"default":[],"\u30b3\u30b9\u30c8":[114,113],"[benchmark":80,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":125,"\u30d5\u30a1\u30a4\u30eb":[],describe:40,"&request":103,"\u5bfe\u5fdc":[],"\u95a2\u4fc2":[],"\u56db\u89d2\u5f62":92,storage:[161,47],"\u691c\u67fb":79,"_code":[40,135,148],valid:48,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[102,54],you:[40,12,97,48,9,103,106,28,16,61,20,64,119,121,122,127,83,131,35,186,136,139,84],"\u4f4f\u3093":184,string1:111,massachusetts:184,suited:32,"[fedora":[7,80],"<ip":[167,97],"\u4e94\u5165":27,building:106,bulk:84,"\u5b9a\u7fa9":[145,3,12,93,45,97,47,7,100,105,53,108,75,150,114,115,113,60,155,69,23,121,122,62,161,72,73,182,170,172,96,77,78,175,80,178,181,32,109],"\u8a66\u3057":124,"\u8a66\u3059":[38,191],"\u3002\u00d7":124,cores:131,"\u524d\u8ff0":[70,189,9,65],"\u5343\u4e07":[],month:[44,148],"\u308f\u304b\u3061":144,"\u3002name":[113,121,16],"4byte":172,"-_":[122,108,12],"\u57fa\u6570":150,longitudexlatitude:125,"-e":97,"-d":[131,172,97,9,51,64,102],"-g":101,"\u4e16\u4ee3":11,"-a":[7,97,181],"_rk":63,"-c":[164,129,97,172],"-m":179,"-l":[131,148,97,64],"-n":[131,27,3,97],"-i":[167,97],"-h":[97,9,54],"-j":188,"-t":[131,97],"_bulk":[84,16],"-p":[179,131,97,167,102,172],"-s":[131,97,64,172],"-r":[131,64],"-x":[125,151],"-z":131,"\u73fe\u983b":80,"\u524a\u6e1b":77,very:[135,108,181,12,161,32,47,58,150],"\u4ed5\u7d44\u307f":[7,9],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[27,54],"\u76f4\u5f8c":16,":\"":[84,3,178],"_github":119,"\u6b8a\u547d":167,normalizers:49,"\u9df2\u7530":125,"-\"":46,"--":[40,41,1,90,91,12,93,97,46,47,48,7,100,101,9,120,56,53,122,108,109,150,151,85,113,16,17,115,116,19,63,161,118,44,163,23,121,70,62,123,167,125,25,74,110,27,79,175,80,178,83,130,184,154,32,146,36,84],"-(":[150,151],"-+":9,atsushi:[],"\u3057\u307e\u3057\u3087":[38,23,91,85],"->":[77,154],"/work":151,"/alice":38,"\u518d\u73fe":[70,124,38,125,158],"-search":[38,80],"\u975e\u5206":108,"\u53ef\u8aad":80,"[admin":[7,27,125],"@s":154,naoina:[7,125],"-jinja":151,"\u6e2c\u5730":[75,13,45,34,74,168],learned:64,"@~":178,"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":178,"\u9ad8\u3044":[108,3,132,126,9,153,38],"/ja":[17,151,119],"\u304b\u304b\u3063":[135,108],"\u306b\u95a2\u3059\u308b":[],"\u30aa\u30b9\u30b9\u30e1":[164,129,14,152,101,137,38,178],"@'":3,"_dist":7,"\u30ec\u30b3\u30fc\u30c9r":69,daemonize:131,"\u308f\u304b\u308b":80,"\u308f\u304b\u308a":[108,154,38,130,80],"\u308f\u304b\u308c":108,"\u3068\u305d\u306e":11,"\u8ad6\u7406":[],hoge:111,"\u30de\u30c3\u30c1":[],"9\u3064":3,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":7,normallexicon:189,chunks:165,"=groo":131,takes:103,contains:[122,12],rect:75,"\u6c7a\u307e\u308b":3,"_xxx":108,"\u5c0f\u3055":77,"@yito":[7,125],fulltext:[161,90,32,47],".comment":[184,78],"-tokenizer":[164,129,14,125,7,152],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":[],"\u30af\u30ea\u30c3\u30af":108,"\u5fa9\u53f7":151,site:[44,3,130,13,136,74,102],"\u3002eclipse":119,"[load":[7,80],"/homebrew":151,"-databases":[3,131,95,59,102,105,172],nine:3,pushes:16,"\u9664\u53bb":[46,154,163,109,125],exclude:[142,125,7,96,23,80],string:[],"_batch":80,"-address":[7,27,97,77],snippet:[],"\u3042\u3089\u304b\u3058\u3081":[164,45,151],"[table":125,"_likes":[135,139,108,181,150],tried:184,"[dat":[7,112],derived:64,"\u7686\u5ddd":80,"\u901f\u304f":[44,188,65],fa:90,tries:19,"\u3002'":79,fd:131,"\u6642\u9593":[],"\u4e0b\u3055\u3044":[164,129,90,151,95,14,125,7,152,113,187,101,137],"_avg":108,"\u56fd\u3054":130,documentation:[139,81,20],"\u30b9\u30c8\u30ea\u30fc\u30e0":80,"\u4e00\u5bfe":13,narwhal:27,uninstall:7,"\u5909\u63db":[2,150,94,45,9,184,63,27,189],help:[27,177,119],"\u592b\u5fc5":143,"-wno":27,"\u5dee\u3057":151,"/lzo":[27,154,125],systemd:7,"\u306f\u3044\u304f\u3064\u304b":[66,135,19,54,181],"_rename":[],"\u30ab\u30fc\u30bd\u30eb":[63,27,154,120],shimada:154,systems:32,"\u30ad\u30fc\u30dc\u30fc\u30c9":108,"\u57fa\u672c":[],"\u76f8\u5bfe\u30d1\u30b9":80,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[97,84,125,181],"\u4e09\u8c37\u3055\u3093":80,"-test":[177,151],"\u5e03\u6559":88,"\u30ad\u30fc\u30ef\u30fc\u30c9":[],"\u597d\u304d":119,resizes:40,yito:[7,125],"/plain":77,"\u518d\u3073":80,"\u9032\u3093":132,"\u30b5\u30a4\u30ba":[41,94,7,101,77,164,13,14,113,63,65,66,121,165,125,126,172,27,79,80,129,132,32,152,137],"_vprintf":80,"=grooon":131,"\"sequence":[153,18,176,48],"\u9032\u3081":[],todo:[],event:[153,186,64,18,48,176],"_position":[3,91,12,95,47,108,150,115,114,70,163,121,122,161,73,182,78,178,181,184,32,139],"\u52a0\u3048\u308b":[73,27],gemfile:7,trusty:[14,151,80],since:[148,127,141,10],"\u300cgrand":184,issue:0,"/mailarchive":151,"\u9045\u304f":[178,168,181,130,150],"\u9ad8\u304f":[70,77,85],"\u7acb\u3064\u304b":38,"\u9045\u3044":[94,75],"\u3002mysql":[152,129,14,164],pub:151,"\u3042\u308f\u305b\u308b":7,base:[40,9,151],put:[122,181],loads:[9,64],bash:[77,188],"\u5931\u52b9":[9,117],"\u30b5\u30a4\u30c8":[13,44,108,151,158],"\u5024\u3068":[13,108,181],encoding:[40,123,97,4],"/data":81,"\u30b9\u30b3\u30fc\u30d7":178,"\u8ad6\u7406\u548c":[],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[141,187],"\u65e5\u3054\u3068":23,"\u52a0\u308f\u308b":124,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":84,"\u3002_":[60,3],"\u5024\u304b":75,":value":[108,181],"\u53d7\u3051\u308b":[141,80],zeromq:188,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,schema:186,"\u3002make":167,"\u3002null":[113,83,16],recursively:136,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":27,translation:119,"\u5024\u3054":130,jquery:[154,80],grep:[152,129,14,164],roonga:[181,150],"\u3002xml":135,utopic:[14,151],store:[110,84,16],str:[40,84],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":151,"\u5206\u3051\u308b":[13,151],"\u547c\u51fa":[41,113,79,121],"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[80,54],"null":[],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,lib:[22,154,174,125,10],"_incr":79,"\u79d2\u5358":[13,45],"\u5024\u3068\u3057\u3066":[165,75,97,184],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":9,quote:150,"\u4e00\u81f4\u7528":143,tokenbigramsplitsymbol:[],".repoforge":129,"'hay":69,"/dev":151,clear:[136,79,80],"\uff08and":158,"\u6697\u53f7":151,"\u4ecb\u3057":[132,102],clean:177,"-pip":20,"\u4fbf\u5229":[108,90,23,121,85,13,132,133,135,187,178,158,188,176,181],"\u4e8c\u70b9\u9593":[],"\u62e1\u5f35\u578b":13,"\u59cb\u3081":119,parameters:[131,136,12,139],"\u5225\u3005":[108,130],"<level":64,"\u6cbf\u3046":80,"\u4eca\u5f8c":[147,27,90,190,178],httprewritemodule:9,".nginx":9,"*index":[110,120],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[97,125,80],boost:176,"\u52a0\u7b97":[],"\u68ee\u7530":44,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"\u82b1\u5b50":44,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":37,"(argument":150,locale:119,"_enough":[2,172],":groonga":[108,14,181,151],"_would":[2,172],"\u5f93\u6765":80,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":69,"_probability":[27,153],"\u7d39\u4ecb":[184,88,108,80,151],"\u4e00\u5ea6":[22,114,130,7,19,10,27,78,189,175,80,9],"\u5909\u6570":[40,108,150,151,24,112,125,146,7,177,27,77,175,53,80],"-level":[97,64,80],"-working":7,"|persistent":[105,59,95],"\u306f\u3061\u3087\u3046":150,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[162,158,81],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":17,delimit:125,oneiric:[27,125],geopoint:[],"\u5f71\u97ff":[7,77,125,80,151],experimental:61,"\u767a\u63ee":132,jeff:143,"\u306f\u307b\u3068\u3093\u3069":108,"\u4e00\u5f0f":79,header:[],linux:[],"\u4e0d\u80fd":167,tokenbigramignoreblanksplitsymbol:[],"\u518d\u767a":80,"\"web":[18,48],"\u6b62\u3081":80,"\u306e\u3069\u308c":[131,176],"\u4e8b\u67c4":124,stamp:148,describes:[135,20],empty:77,"\u3053\u306a\u308c":23,"else":77,"/db":[141,61,153,9,157,64,178],"/dd":150,"\u56de\u7279":167,"\u7a3c\u52d5":82,"\u6a29\u9650":[188,102,125],"\u30a8\u30b9\u30b1\u30fc\u30d7":[],"\u6307\u793a":[93,3,102,176],"while":136,"\u505c\u6b62":[11,97,125,59,77,140],"_zlib":[73,2,121],malloc:80,"!(n":150,reads:64,ready:20,"\u898b\u3064\u3051":[1,124,108,7,38,176],fedora:[],dest:[179,113,97],"_keys":[108,113],"geopoint\u9593":27,"-jp":[38,125],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[188,151],composition:189,used:[83,12,131,35,97,16,136,117,184,148,5,106,127,64],temporary:83,uses:[83,12,122,148,139,28,106,64],user:[44,150,182,131,35,167,32,47,115,9,103,96,139,53],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[163,90,181,130,133,46,108,97,32,125,7,189,139,77,155,188,176,80,65],database:[],"-filter":[108,143,85,184,14,32,47,7,152,115,182,27,178,160,80,150],"\u30ef\u30a4\u30c9":27,"\u51fa\u529b":[],clears:121,"\u9806\u756a":[120,181,70,97,63,3],"\u30b0\u30e9\u30d5":132,"_path":[],"\u30d0\u30a4\u30b0\u30e9\u30e0":[70,38],"\u4e8c\u756a\u76ee":150,"\u8fd1\u4f3c":[7,27,75,168],"\u56de\u6307\u5b9a":181,"\"tritonn":108,"\u307e\u3057":[7,9,27,108,75,150,151,65,18,119,44,70,124,125,77,80,178,181,130,184,189,38],"\"uptime":4,"-gram":[90,3,150,70,132,144],"\u3064\u3051\u308b":[108,124,143,80,85],"...":[41,4,5,93,86,7,9,103,105,56,53,114,108,110,150,153,113,16,17,116,19,157,25,178,161,118,120,121,62,123,167,125,63,27,79,80,181,83,126,131,184,57,182,36,84],"\u9759\u7684":[],nginx:[],"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":172,"'..":125,"\uff09\u307e\u305f":[90,133,181,150],popular:108,"\u518d\u751f":9,"\u4f5c\u696d":[],"\u5f37\u529b":178,"\u30c7\u30d5\u30a9\u30eb\u30c8":[1,90,3,4,45,144,97,7,9,27,188,54,114,108,11,150,85,13,153,16,58,115,116,155,19,25,65,46,69,70,123,167,125,190,75,172,77,168,112,80,179,181,130,154],"\u5927\u304d\u306a":[54,65],some:[148,35,186,5,139],"\u96a3\u63a5":[132,181],"~number":150,"\u5927\u304d\u304f":[13,154,11,157,168],"\u5927\u304d\u3044":[108,69,181,94,27,38,80],"\u3061\u3083\u3093":44,slash:150,"\u30af\u30a8\u30ea\u30fc":[],"\u5927\u304d\u3055":94,".sh":[7,119,177,151,81],run:[],"\u4ed8\u304d":[],processing:148,"\u81ea\u5df1":184,"\u4ed8\u3044":189,"\u5f37\u5236":[7,77,1,79,80],"\u898f\u683c":63,"\u4ed8\u3051":[3,13,161,47,7,170,172,96,78,54],"\u30ab\u30a6\u30f3\u30c8":[184,23,125],"\"mori":157,"\u4f3c\u305f":189,"_read":2,ids:[110,85],"\u5916\u90e8":134,"\u5185\u5bb9":[41,141,3,93,95,48,7,102,105,108,150,151,13,63,119,167,124,78,176,80,181,179,83,184,32,135,139],idf:80,"\"serach":18,"-separated":77,block:13,libzmq:[152,14],"\u3067\u3069\u3053":2,"\u30ad\u30e3\u30c3\u30b7\u30e5":[],".column":[125,80],".(":151,".)":[150,12,125,103,139,148],".,":100,".-":119,"..":[40,3,12,95,97,7,100,9,103,54,108,150,85,153,58,115,157,119,122,125,126,178,181,35,36,65],"./":[188,119],"\u5316\u6f0f\u308c":7,"\u3067\u3082\u3063\u3068\u3082":31,".\"":[44,108,3,91,12,13,161,32,47,114,115,102,38,150],".$":108,"\u5909\u66f4":[],".'":[7,73,125],".:":[131,64],"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":184,patprefix:143,"\u652f\u63f4":169,"\u30da\u30fc\u30b9\u30c8":7,"[groonga":[7,27,151,80,77],pangolin:[7,14],registered:[40,32,10],tokenbigramignoreblanksplitalpha:38,properly:[],".]":[150,85,153,126,103,105],newer:[],"._":[108,181,130,13,125,79,80,150],"\u3002\u30bf\u30b0":[44,108,47,85],info:[6,97,122,8,9,178],".i":129,utf:[42,4,131,123,154,97,125,7,188,38,150],".n":[139,108,150,83,181],".o":44,munin:[164,1,14,129,7,152,27,188],"\u306b\u5bfe\u3057":[1,3,91,93,144,7,10,127,108,150,151,85,153,113,22,44,69,125,73,182,74,78,79,80,179,82,181,130,132,36,38],".c":[108,42],".d":[165,139,152],"_max":[67,108,2,120,17,116,172],".x":129,windows:[],".}":[126,150,85],"\u66ff\u3048":[],".t":38,"\u6b63\u898f":[],"\u5099\u8003":125,doesn:[122,139,103,9,12],"\u3002gnr":158,"\u5727\u7e2e":[],"\u306b\u3068\u3063":[77,124],"_columns":[],"\u958b\u3044":[189,154,125,27,37,107],"_float":[77,62],"\u958b\u304f":[7,17,189,27],"\u958b\u304d":[17,83],"\u958b\u3053":83,application:[9,54],"\u958b\u3051":7,"'\u3002":97,"\u56db\u3064":144,sigcont:125,"\u6642\u4ee5\u5916":154,"\u843d\u3061\u308b":[27,154,125],"\u767a\u884c":172,draw:44,": n":179,"_len":[7,84,121],"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[],"(title":[125,12,111],"\u306a\u304c\u308b":7,"\u4e00\u5de5":143,required:[131,9,54],"\"suggest":169,"\u5f37\u5316":[27,154,80],requires:[61,12],kawaji:7,"_pat":[],gt:[161,47],"\u30d6\u30e9\u30b8\u30eb":75,"\u4e00\u5207":77,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":108,gb:[165,4],ga:[90,167,189],go:114,"\u30dc\u30c7\u30a3":[22,65,172,174,10],gi:90,"\u500b\u6240":80,".ssssss":148,nippon:176,"_unknown":2,"\u300cgroonga":[108,80,158],"po\u30d5\u30a1\u30a4\u30eb":119,"\u9632\u3050":150,"\u4e0d\u8db3":[164,129,14,152,101,137,80],"\u9632\u304e":125,"\u304a\u3053":[13,132],"-aki":80,exits:61,"_calc":[],mercurial:151,".mo\u30d5\u30a1\u30a4\u30eb":119,"/bin":188,"\u5341\u5206":[70,41,165],"/sbin":89,"\u8ca0\u6570":[7,19],download:[129,151],onigmo:[77,80,178],"-known":32,"/introduction":[3,102,172],opaque:172,".tsv":[175,4],"\u542b\u307e\u308c":[22,108,132,144,32,125,135,96,10,174,65],"\u983b\u7e41":[113,188],"\u4fdd\u5b58":[],"\u7b49\u5024":154,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[90,80],"\u578b\u7528":84,"-libstemmer":80,"\u62e1\u5f35\u5b50":[22,4,154,167,10,174],"- \"":80,"\u3002max":63,accessor:[113,79],".weight":125,"(table":80,blogroonga:[],"\u300d\uff08":[108,144,157],"_child":[2,172],"\u306e\u3042\u3068":7,"\u5177\u4f53":[70,78,130],"\u8fd1\u304f":[132,150,92],"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[162,132,150,86],"\u540c\u3058\u578b":85,"\u898b\u3064\u304b\u3089":113,"\u898b\u3064\u304b\u308a":[108,38],"\u898b\u3064\u304b\u308b":7,"\u898b\u3064\u304b\u308c":124,"\u8d85\u3048":[70,125],win:101,"\u5171\u901a":[142,150,94,45,124,23,27,78],"boolean":42,"\u7d5e\u308a\u8fbc\u3080":[169,108,80],"\u3092\u304a\u3053":184,"\u624b\u9806":[],"\u3002\u30d0\u30b0":0,"\u7d5e\u308a\u8fbc\u3093":[132,125],"_no":[],"\u81ea\u5206":[23,124,167,9,137,119],milliseconds:131,soundkitchen:[7,27],cosmo:[125,80],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[165,108,85],started:[135,148,108,181,150],"\u5f15\u304d\u8d77\u3053\u3059":[7,125],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":177,"\u5371\u967a":[59,151,54],"\u53d7\u3051\u4ed8\u3051":[7,154,150],mitsuhiro:154,"\u7de8\u96c6":[],links:[13,102,130],sudo:[164,129,151,24,165,14,141,7,152,102,20,139,188,177,89],">max":4,objname:[37,107],"\u30b7\u30e3\u30fc\u30d7":65,tokendelimit:[],"\u6df1\u523b":[7,70,80],"_repair":112,"\u512a\u5148":[132,167,176],"*valuebuf":41,tokenregexp:[],"\"sphere":168,"\u9577\u4ee5\u4e0a":[113,79],spelling:91,".entries":139,"\u7d5e\u308a\u8fbc\u307f":[132,3],"\u66f8\u5f0f":[],rakutan:78,"\u81ea\u52d5":[22,44,3,121,151,94,181,167,150,7,113,60,9,10,143,27,174,80,119],"\u898b\u3064\u304b\u3063":[169,108,38],"_characters":84,"\u4e00\u500b":69,"+ff0":77,"\u30c7\u30d5\u30e9\u30b0":27,"!\"":[44,108,90,3,181,12,13,184,114,7,9,135,78,150,38,54,102],"-mysql":[164,129,14,133,152,189],"\u88dc\u8db3":9,geoppoint:110,send:103,"_match":[],auto:153,"\u629c\u304d\u51fa\u3059":132,"_seek":[2,172],takayuki:27,"\u306b\u304f\u308b":70,"\u5f15\u8a9e":3,"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":124,"'query":7,"\u65e2\u5b58":[141,3,83,151,13,132,167,7,113,187,172,61,190,80],chunk:[126,139],inverted:32,special:108,"\u3050\u308b\u3093":[44,181,150],"-match":[],"\u306b\u304f\u3044":132,may:[121,12,122,61,136,103,139,28,83],"_default":[12,123,7,116,25,54],"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[27,125],"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":119,"_script":147,"_proxy":9,"\"\u5f37":38,"\u307f\u3066":74,deprecated:[108,11],times:[19,103],"-localstatedir":[],"\u307f\u304c":69,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[15,20],"_proc":[],"\u8aa4\u5dee":[27,75,168],largetext:94,"<max":97,unsupported:172,improving:139,"\u305e\u308c":[108,69,120,150,151,48],"\u5185\u8fd1\u304f":150,"`grn":[],management:[83,32,81],"\u305d\u3053":[13,70,151],mkdir:157,"\u6700\u4e2d":132,"\u52d5\u5c0f":45,"\u304a\u304b\u3057\u304f":154,"_bad":2,"-doc":112,"\u306f\u3058\u3081":[],configure:[],"_utf":[63,123],travi:125,lists:80,".roonga":[181,150],"_vector":[44,108,121,85,13,184,95,125,16,73,182,170,79,84,80],"*min":63,updating:19,neologism:38,"_recv":80,"-log":[],arc:90,"_expander":[],"\u306a\u304a\u3059":80,"\u8a72\u5f53":[121,161,32,47,17,113,100,96,63,78,79,80],"\u306a\u304a\u3057":80,unchanged:40,msec:19,"\u56fd\u969b\u5316":[],"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":151,variable:40,"\u4fee\u6b63\u4e2d":18,"\u30de\u30a4\u30af\u30ed":[13,184,45,150],need:[12,122,131,103,20,139,28,106,84,127],"\u3068\u307f":[36,108,125,181],"\u3002sql":108,nsis:151,"\u6f14\u7b97":[150,154,125,7,113,158,188,80],able:[122,28,12],"-db":112,"\u3092\u308a":9,"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":188,"\u3002post":54,"\u7570\u306a\u3063":[63,77],"_lt":63,url:[151,102,157,36,27,80],uri:[36,9],"\u6982\u5ff5":11,"_strerror":80,"\u57fa\u6e96":[13,132,3,151],"\u672b\u6c38":77,"_temporarily":[2,172],"\u5fc5\u9808":[],"\u3084\u3089":151,"\u3084\u3081":[27,125,80,77],"\u3002\u2193":97,ssssss:148,"\u53cb\u4eba":44,"\u6e2c\u5b9a":167,"\u624b\u9593":124,based:[141,110,12,122,161,32,47,183,103],launchpad:[14,151,80],"\u3068\u3066":[108,150,132,94,176,54,181],"\u65e5\u6642":[],"\u4e0d\u6b63\u78ba":[7,82],"\\groonga":101,"\u5358\u306b":[68,125],"\u4e0d\u8981":[132,125,7,77,38,80],sha:151,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":187,"\u79d2\u3088\u308a":146,processed:148,"\u7121\u3057":178,"\u3050\u308b":[158,181,150],"_parse":[123,84],"_setpshared":125,kawada:80,"\u7a7a\u6587":[45,181,80],computed:40,"\\[(":178,computes:12,latin:[7,188,97],"\u63a5\u7d9a\u5148":179,"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":184,".list":152,"2\u3064\u3081":[78,181,54],"|ga":108,"\u975e\u5e38":[7,54,178],"_word":[163,46,80],"\u7ba1\u7406":[],wibowo:125,written:[127,20],ken:44,"\u3084\u304c":11,importance:122,"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":7,"\u3053\u308c\u3089":[3,4,94,48,7,9,10,188,54,164,108,75,150,85,14,70,60,158,22,44,24,125,169,174,178,129,181,130,184,133,152,36,88,189],key:[],"\u3084\u3057":108,limits:[139,12],admin:[154,80],"\u3084\u307e":80,"\u682a\u5f0f":80,"\u96e3\u3057\u3044":132,jersey:184,"\u304a\u3089":151,"\u4eca\u56de":[7,3,32,150],"\u4f5c\u6210":[],"_add":[93,113,84],"\u30af\u30ea\u30a2":[7,27,79],bigram:[],quit:[],"\u91cd\u8907":[113,80],"\u30b9\u30ab\u30e9":121,quiz:44,"\u547d\u540d":7,compatibility:[127,189],"\u306b\u3088\u3063":[145,3,6,144,97,8,105,107,108,11,85,13,113,16,59,155,157,158,190,159,44,69,23,134,72,125,82,126,172,79,179,73,132,36,37,140],"\u6b21\u671f":151,username:[44,101],"\u65e5\u672c":[181,151,45,34,74,168,38,176,80,150],corresponding:79,both:122,"\u4ef6\u542b":184,tweets:114,"\u7a2e\u985e":[],"_binary":7,"\u4ee3\u308a":[7,75,181],glossary:81,"\u3076\u3093":124,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[108,90,182,13,112,115,101,9,27,175,80,65],demo:44,"\u3060\u304b\u3089":108,"/_":151,"\u76f4\u524d":93,"\u9818\u57df":[188,113,7,74,79,80],"/o":65,"_system":[27,2,172],"\u91cd\u8981":[114,108,90,151,85,177,132,31,16,17,124,9,188,99,38,54,65],"\u614e\u91cd":177,"/f":151,"/d":[80,9,54,178],"/c":[87,132],"\u91cd\u8996":[70,114],"-essential":[152,14],"/x":54,"-learner":[],"\u8aa4\u5b57":[7,27,154,175,125],crch:90,"(mroonga":175,http:[],"\u306b\u3088\u308a":[3,143,45,7,9,51,54,108,75,151,13,66,70,125,126,172,77,78,80,132,38,102],"_ito":27,frequently:12,"\u305f\u3070\u304b\u308a":114,"/.":27,"\u540d\u4e00":[],"/(":151,"/'":80,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":7,"/$":119,well:32,"/\"":[44,3,130,85,13,74,102,157,38],"/?":131,"/;":9,"\u3042\u304d":143,accurate:32,"\u3042\u304f":17,sources:[95,20],"\u3042\u3063":[164,58,108,11,23,121,151,44,153,167,125,7,113,60,178,150,79,54,119],"-ruby":[7,151],"/kytea":90,"\u3042\u3068":[151,119],"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":172,"\u30fb\u5186":132,"\u6790\u7cfb":150,"\u756a\u53f7":[179,141,121,167,97,125,54,60,102,178,80,172],"_mask":79,"\uff08or":158,".jp":[108,42,151,26,157],pikonyan:44,immediately:103,".score":127,"\u78ba\u4fdd":[41,165,84,16],"\u6587\u5b57\u6570":[32,150],"(\u300c":151,"/key":79,"\u4e0b\u8a18":[11,82,126,59,69,63],"-plugins":[],library:106,"\u3002optarg":83,home:[188,38,151],"'config":97,"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":7,"\u5411\u3051":[],"_permission":2,"2\u6708":23,"\u304f\u308c\u308b":[87,132,119],nihon:176,"\u5411\u3044":[135,94,108,80],"\u3093\u304c":[181,150],"_number":[135,51,102,172],"\u3057\u3064\u3064":177,"\u3042\u308c":[114,150,151,70,167,17,100,96,65],"\u3042\u308a":[],"\u3042\u308b":[],offset:[],"\u304b\u3051\u308b":[124,9],"\u9055\u3063":176,".hash":184,"-source":151,"\u6f0f\u308c":[7,132,91,151,158],"\u306a\u3084\u308a\u304b\u305f":91,compatible:9,"\u9055\u3044":[108,75,3,181,13,74,78,178,38,54,65],"\u9055\u3046":154,"\u500b\u6570":[7,121],"<log":97,"_nhooks":93,additional:125,"_nsubrecs":[108,130,60,121,80],museum:184,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[],"\u30ed\u30b4":7,"\u30ed\u30b0":[],"\u5c55\u958b":[],"\u7279\u6b8a":[],"\u3059\u3053\u308c\u3089":108,hw:89,"\ufffetext":90,hh:[148,150],"\u540c\u3058\u5024":[3,9],ho:38,ear:90,"/reference":12,"*var":40,truncation:[27,127],"\u3068\u3053\u306e":[108,176,178],"=submit":131,limit:[],"\u5b9f\u4f8b":[],"-uploader":151,"\u3068\u3053\u308d":[68,150,87,112,73,147,38,119],"{\"":[163,23,181,85,122,153,161,167,68,47,48,114,115,18,147,78,178,176,126,150],"\u79d2\u5f62":45,"\u7389\u91ce":80,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[7,172],eric:96,functions:[40,42,80],"\u3002video":44,halfwidth:189,"\u6163\u7fd2":7,"_many":[2,172,80],"_auto":[],"\u65b0\u3057\u3044":[],"\u65b0\u3057\u304f":[108,11,3,124,114,158,80,65],friends:44,sphinx:[87,15,119,80,20],katagiri:125,persistent:[95,113,83],"{\\":58,"\u305a\u308c":[73,11,6,132,45,97,75,58,13,113,8,172,69],"\u300csenna":108,"=redhat":188,dynamic:[],"\u5927\u62b5":9,"\u3002scan":177,"\u30ab\u30e9\u30e0n":182,"_filters":[],calculate:131,segments:126,"/raw":81,"\u5bfe\u3057":[181,150],"\u592a\u90ce":44,swap:139,"\u30d9\u30fc\u30b9":[141,90,181,191,132,154,7,113,63,27,150,38,80,119],updated:[70,42,119],"void":[40,83,5,123,113,25,116,19,63,79,112],updates:[32,20],"\u3066\u307f\u307e\u3057\u3087":74,"\u53c2\u7167\u5143":13,"\u30df\u30b9":176,"\u53c2\u7167\u5148":125,"=pat":112,vector:[7,125,85],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":7,"\u898b\u7a4d\u308b":165,japanese:[38,26],"\u9006\u9806":3,"\u3002grn":[69,158],implemented:[122,42],even:122,"\u50be\u5411":78,"\u6210\u529f":[],"new":[],net:130,maverick:27,metadata:[7,122,28,12],"\u306f\u3044\u3051":[79,150,170,16],"\u5fdc\u3058":[132,178,167,41],"<directory":64,"\u4e2d\u4e95":125,"\u305a\u306b":85,"\u305a\u3064":[167,78,97],":port":[36,97,9],suitable:[122,12],serch:[153,18],"\u3080\u308b":[181,150],xvzf:[164,129,24,14,152,188,89],itagaki:154,"\u826f\u3044\u4f8b":124,"\u9023\u7d9a":[90,70,144,125,18,79,38],".yml":81,typo:[27,80],"\u3082\u3057\u4e00\u3064":[],calc:108,type:[53,41,3,143,12,95,48,103,106,28,110,13,153,59,16,113,18,65,44,121,122,62,167,73,74,78,176,130,131,184,133],"-properties":14,posting:110,warp:80,language:119,"\u4ee5\u4e0b":[],"\u4ee5\u4e0a":[],"_comment":182,"_left":[27,110,2,172,34],"-ipadic":[164,38],akio:[7,154],root:[9,125,102],"\u306b\u95a2\u3057":[77,69,167,125,16],"\u304c\u3063":[],"\u304c\u3061":38,"\u80a5\u5927":80,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[1,37],"\u63a8\u5968":[135,108,11,7,102,137,77,80],normalizernfkc:[],"_xml":106,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":80,"\u4f55\u500b":108,"\u6301\u3064\u3059\u3079":108,"_memo":115,"\u304c\u3059":113,"\uff08document":80,"\u9023\u7d61":119,sitedomain:[102,130],"\u30b9\u30fc\u30d7":144,"/result":112,"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":78,"\u3002tsv":[135,175],"_indexer":112,"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":38,"_win":40,"\u9069\u5408":[70,38,3],"\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u9023\u7d50":[7,78,79,125],"\u5206\u5c90":177,"\u643a\u5e2f":132,"_ja":125,"\u5358\u4e00":73,"\u3002google":181,"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":154,"_jp":188,"_small":[2,172],"\u6d6e\u52d5":[],before:81,scoring:[122,28,12],"-add":83,"=allow":108,"\u6574\u6570":[],"\"pp":80,"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":38,weakness:32,"\u300coutput":36,"\u30b9\u30c6\u30fc\u30bf\u30b9":[2,125,172],"\u691c\u8a0e":[70,141],nested:125,"-pack":[],"\u691c\u8a3c":[179,80],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[],"'or":7,"\u975e\u4e92\u63db":[27,80,77],"'article":78,"\u30d1\u30b9":[22,179,174,3,83,151,167,95,10,97,146,80,154,9,36,27,77,188,64,54,172],"_stop":[163,46,80],extract:[148,48],"\u30ed\u30b0\u30d1\u30b9":154,realtime:[153,48],"/bc":151,content:[114,163,109,181,12,182,135,108,32,125,7,115,9,139,27,78,80,54,150],"\u6570\u3048\u308b":[108,130],grease:13,"/\uff09":154,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":77,"\u8996\u899a":132,"\u30d1\u30ea":75,"\u63a5\u8fd1":69,messages:125,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":154,iso:150,isn:16,hook:93,"1\u884c":167,"\u7531\u6765":158,"\u30e1\u30e2\u30ea\u30fc":65,outputting:106,"_keywords":84,"\u5358\u4f4d":[62,75,3,150,132,45,144,31,32,135,154,172,184,27,168,38],"_clear":[],tokens:90,"_chunked":77,mkostemp:80,"[http":[7,77,125,80],"\u5358\u4f53":[132,167],"\u5f79\u5272":[115,3],nsubrecs:[44,108,121,130,184],"\u63a8\u5b9a":77,distance:75,keyword:[108,181,12,122,161,32,47,125,7,84],".json":[4,9],older:[],enabled:148,"\u524d\u4ed8\u304d":79,gnupg:151,enables:9,"7\u3064":23,modern:184,"\u30a8\u30e9\u30fc":[],"\u7e4b\u3052\u308b":124,"\u958b\u3051\u308b":7,"\u81ea\u52d5\u5207\u308a":80,estimated:110,"_cas":2,"\u3002\u3044\u304f\u3064\u304b":178,"\u308f\u3051":[108,90,150,13,46,176],specfied:110,"\u30b1\u30fc\u30b9":[108,83,130,70,181,74,17,59,9,150,178,38,80,65],"\u3002\u30df\u30ea":13,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":81,regular:[131,9,178],"\u3002munin":[152,129,14,164],"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":77,don:[12,122,48,136,9,28,106,84],radious:168,doc:[87,119,91,151,20],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":151,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[18,176,146,48],"\u56fa\u5b9a":[3,95,172,63,79,80,65],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":172,keybuf:113,sigsegv:113,"\u6210\u308a\u7acb\u3063":69,syntax:172,"\u65e5\u672c\u8a9e":[0,181,70,132,7,150,38,176,119],"\u8ffd\u52a0":[],"\u7bc4\u56f2\u5916":80,"\"\u308d\u3086\u304d":143,yoji:27,"_address":[2,102,172],"_http":[167,9],"\u5f0f\u8868":84,"\u72ec\u81ea":[],"\\\"a":182,stop:[141,12,122,97,7,9,77,28],"_limit":[],"/grntest":151,"\\\"}":58,gbyte:66,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[],"(grn":[77,84,16],bad:[125,80,172],"\u5024\u3060\u3051":150,"\u623b\u308a":[7,79],"*name":[40,121,62,123,16,113,79,84,53],"\u524d\u56de":151,",\"location":[44,74],"\u591a\u304f":[108,3,181,191,13,32,70,9,178,27,150,38,141,65],reference:[108,125,85],"\u591a\u3044":[70,181,150],"\u623b\u3063":9,".kentaro":125,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"\u30aa\u30fc\u30ca\u30fc":125,"\u4e88\u7d04":73,subject:125,brazil:130,"\u672a\u958b\u653e":154,"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":85,inappropriate:172,sigint:27,filename:172,simplest:35,"\u7bc4\u56f2":[],"+fffe":90,threasd:97,"_geo":[],"\u3092\u901a\u3057":[97,3],"_get":[40,17,121,41,93,112,123,113,16,7,25,116,19,77,63,27,79,84,53,80],"]\u3002":80,"\u534a\u5f84":168,"_operation":[2,172],"_level":[],"\u73fe\u308c\u308b":70,against:[83,121],"0c":38,"\u3044\u3044\u306d":[108,181,150],"0e":167,"\u8a9e\u5f59":[],appeared:12,"_reinit":79,"\u62bd\u51fa":[],"\u3068\u3044\u3063":[164,108,75,23,181,85,94,142,125,7,74,80,158,77,54,150],"_too":[2,172,80],loaded:68,"\u6848\u5185":[124,151],"\u3068\u3044\u3051":[108,23,165,172,176,65],three:[13,122,3],"\u3068\u3044\u3046":[90,3,4,94,45,144,47,7,9,10,147,77,188,54,108,11,150,151,85,13,153,189,115,18,177,158,65,22,44,163,70,167,134,124,125,126,74,75,172,27,78,174,175,176,80,178,184,181,130,182,132,133,32,38,35,36,119,84,102],"\u3068\u3044\u3044":178,"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":130,"\u7528\u3044":[],digits:148,"-help":[],"\u7591\u4f3c":[58,67,125,7,60,80],multithread:113,sae:[153,18],"_log":[],"\u554f\u984c":[17,1,3,181,151,165,154,73,125,146,16,7,126,9,77,167,27,150,38,80,119],logaling:81,"\u6700\u3082":[126,108,16],seven:3,ip:[131,167,102,172],is:[40,141,90,3,4,12,97,46,47,48,7,100,102,103,148,106,53,54,91,108,109,150,85,13,16,115,113,19,61,20,178,183,64,119,163,121,122,161,110,172,28,80,181,83,136,127,35,32,186,131,78,139,84,9],"\u6069\u6075":141,it:[40,141,5,103,148,106,58,108,110,12,16,114,113,61,20,150,64,44,121,122,127,83,181,131,135,136,139,84],voiced:189,il:[70,144],io:[77,42],"in":[],ia:[70,144],ic:[120,38],id:[],"/commits":80,".nested":108,"\u305d\u3093\u306a":[188,65],make:[],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":108,"\u306b\u3088\u3063\u3066":[11,3,13,132,125,16,70,60,177],"\u5f15\u7528":[97,125],unicorn:14,kib:139,"8byte":172,"\u3055\u307e\u3056\u307e\u306a":[],"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[73,60,65],left:110,protocol:[],just:[83,12,131,184,186,114,103,148,79],"@groonga":[151,26],"||":[69,150,12,125,7,78],assigned:103,"=add":90,"|b":178,yes:[179,77,177,153],yet:[122,12],"\u5f8c\u65b9":[],"-with":[],"\u89e3\u50cf":154,candidate:[131,153],defrag:[],character:[40,148],"\u306f\u3059\u3079\u3066":[68,90,3,150,46,108,58,136,9,158,147,139,117,189,38,65],"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":112,save:[131,151],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[],"\"http":85,"|>":148,"|<":148,"|:":148,"\u5cf6\u7530":7,daemon:[97,64],"\u6539\u540d":[7,27],mruby:[147,68,125,80],unnecessary:139,"\u52b9\u7387":78,"*oldvalue":121,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[],centos:[],"_db":[],"\u7570\u306a\u308a":[108,181,80],"\u3067\u3044\u3046":[189,130],"\u4f7f\u7528":[],raltime:48,"\u964d\u9806":[63,153,108,3,113],"\u5bc6\u9375":[],"\u5c11\u3057":188,notification:148,tracker:0,"\u5c11\u304f":165,"\u7a0b\u5ea6":[27,3,125],"\u53c2\u8003":[],debhelper:27,"\u5b8c\u5168":[],"\u304c\u308f\u304b\u308a":[184,109,38],"\u304c\u308f\u304b\u308b":75,"\u898b\u8fbc\u3081":80,"\u304c\u308f\u304b\u308c":108,postgresql:[132,32],"/munin":188,"\u30c1\u30a7\u30c3\u30af":[179,96,154,167,125,7,126,61,77,27,80],"=true":103,"*optarg":[56,83],commit:119,automatically:61,"_ratio":80,sphr:75,"\u305d\u3061\u3089":188,editor:119,"\u6291\u3048":70,fork:119,tokenbigramignoreblanksplitsymbolalphadigit:[],form:[3,181,131,172,51,189],"\u3059\u304e\u308b":85,"[dump":[7,125,80],".ne":42,"_animal":13,"\u5165\u308c":[70,44,38,184],"\u5165\u308b":105,"\u5165\u308a":[],grroonga:169,"\u5426\u5b9a":[],lenny:27,"delete":[],"_location":[135,184],"\u6c7a\u3081\u308b":[108,69],kwic:32,"\u3002\u307e\u3060":80,"\u5165\u3063":[44,3,135,125,7,172,77,78,176,177],"sort\u30ad\u30fc":1,floating:45,"\u73fe\u5728\u5730":184,"\u30a8\u30c7\u30a3\u30bf":119,tokenbigramignoreblank:[],excel:175,"\u3002\u307e\u305a":70,"\u914d\u5217":[],"\u3002\u307e\u305f":[179,108,11,3,150,13,132,45,97,74,18,172,69,36,175,167],"\u304f\u308c":124,"\u30cf\u30a4\u30e9\u30a4\u30c8":[161,47],"\u300d:":189,".service":7,fsf:7,macports:[],assume:103,"\u6539\u5584":[1,125,7,77,27,80],"_offset":[],vmstat:165,"\u9069\u5207":[108,90,23,132,154,167,3,178,38,80,65],managed:[35,103],"\u81ea\u52d5\u7684":167,segv:[1,125],"\u7279\u6027":94,manager:[9,54],manages:61,"\u7fa9\u8a9e":175,technique:[122,12],"\u3068\u3059\u3050":114,"\u524a\u9664":[],kinjirou:44,"\u30bb\u30c3\u30b7\u30e7\u30f3":[159,97,172],"0mq":125,"-efficient":85,"\u8a2d\u8a08":[108,141],"\u4e0a\u91ce":154,"[php":[7,80],"\u30b5\u30f3\u30d7\u30eb":[],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":18,"\"mysql":[169,85],"-escalation":[],item:[153,18,176,186,48],"\u672a\u6e80":[63,181],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":126,"_entry":93,"-deb":151,"\u4ed8\u4e0e":[],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[7,125,178],"\u629c\u3051":[27,125,80],strerror:80,"\u5076\u6570":150,"\u63db\u6642":27,"\uff08normalization":189,"-dev":[151,14,125,26,7,152,177,77,27,80],"\"xxx":125,shinoda:[],">alloc":4,".so":[22,174,10],"\u4f8b\u3068\u3057\u3066":13,"\u30a8\u30f3\u30c8\u30ea\u30fc":108,"-mode":119,shift:[188,38],"\u3068\u3059\u308c":132,"_version":[],"[suggest":[7,112,125],bom:154,suggestion:[131,186],raccoon:44,bob:[108,181,184,115,59,9,96,127,54],useful:[78,121,12],"\u30dd\u30a4\u30f3\u30bf":[16,113,63,79,53,118],"\u5fd8\u308c":[27,85],"\u3002table":[113,170,118],"-leak":154,"\u521d\u671f":[83,132,154,7,27,79,80],"\u4e21\u8005":74,"-check":[131,27,154],"ci\u4e00\u822c":81,"-libevent":112,"\u5e74\u9f62":[132,65],"_min":[77,108,120,116],ooo:94,"-each":27,"\"color":189,"\u305d\u3053\u306b":105,"/nfs":188,mbytes:167,"\u8fd1\u3055":150,"\u30b8\u30aa\u30b5\u30fc\u30c1":[],"\u30dd\u30a4\u30f3\u30c8":[175,85],"\u8fd1\u3044":[63,179],ull:90,"*tc":[63,120],"-directory":7,"\u30fb\u30b5\u30fc\u30d0":3,sample:[131,167,64],normalize:[],"\u3002\u30ed\u30b0":[9,65],"\u30d0\u30a4\u30c8":[108,2,121,94,45,154,32,16,7,125,77,63,27,80],"/cpuinfo":[152,129,14,164],"\u8a9e\u53e5":[44,125],"_current":17,map:[148,27,139],groo:108,"\u518d\u8aad":[190,175],max:[],"\u524d\u3082\u3063":77,mac:[],man:[1,96],".garbage":125,fluent:104,"\u540d\u524d":[],"_values":[],"\u5e02\u5185":92,pointed:40,"_init":[40,5,16,7,148,27,79,84,80],pointer:40,"/fedora":[7,164,154,151],group:[113,130],"\u304b\u306a\u308a":80,"\u8a08\u6e2c":[27,1,177],"\u7d44\u307f\u5408\u308f":[132,108,69,96,65],mail:167,main:152,"\u30b9\u30c6\u30df\u30f3\u30b0":[163,80],"\u91cd\u306a\u3063":125,"\u5b9f\u4f53":16,repositories:151,"_timeout":[2,19,172],ggdb:[],unlock:79,nroonga:[115,78,81],libgcc:80,"\u624b\u6bb5":[69,84],morning:114,"\u6240\u5c5e":59,"\u7a7a\u304d":[165,126],"_mecab":77,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],".flags":113,correct:[131,153,18],"\u624b\u7d9a\u304d":[93,53],"|allow":[108,181],"\u30ab\u30e9\u30e0id":113,earlier:127,"_content":[],"\u3002min":63,debootstrap:151,"_string":[],org:[102,130],"\u62ec\u5f27":58,"\"hello":[163,46],"\u4e8b\u9805":[],rewrited:42,"\u6b21\u90ce":44,"\u304c\u3042\u308a":[0,163,75,151,108,175],"] [":167,first:[40,108,181,12,184,103,150],"\u5468\u8fba":[7,32],"\u30dd\u30fc\u30c8":[179,141,4,167,97,125,102,54,172],"\u7db2\u7f85":9,"\u9078\u3079":108,"long":[25,77,103,61,86],"\u81ea\u5df1\u7d39":184,crit:[6,8],"\u9078\u3073":169,"\u9078\u3076":[132,108,9],enviromnent:[],"1g":[152,14],"1f":77,"\u30bd\u30fc\u30c8\u30ad\u30fc":[153,1,113,108],"\u30d8\u30eb\u30d7":177,"1o":178,"_preparer":[153,18,176,48],"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":132,memo:[122,115,28,80,12],"\u62e1\u5f35":[],"\\ahost":178,"\u5c0f\u3055\u304f":[75,94,114,54,77,168,80,178],"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":11,"11":[108,90,150,85,70,115,139],"10":[167,3],"_index":[],yoshioka:7,libgroonga:162,"\u5229\u7528\u4f8b":132,zsh:[188,151],dash:188,"\"application":27,katakana:[189,176],".uuuuuu":150,"-receive":[131,64],speakers:26,"_open":[40,17,2,120,83,86,154,16,7,110,172,63,27],"\u914d\u5e03":[164,129,14,7,152,101,137,80],"_network":2,"\u8d70\u67fb":80,"\u5217\u4e2d":150,"\u6700\u7d42\u66f4":83,timeuot:19,">#{":148,"_enc":[63,123],performance:[131,139,32],"\u5f79\u7acb\u3061":125,theatre:91,normal:12,"(message":122,beta:42,pair:[153,18,176,186,48],synonym:[108,91],"_sort":113,fills:131,"\u4f1a\u793e":80,"\u8003\u3048\u65b9":80,"|ng":108,"\u539f\u56e0":[],precise:[7,14,151],lexicon:[182,167,114,115,77,105,78,189,65],show:1,"-po":[],"\u6700\u5927\u5024":[7,142,108,23,80],"\u30dc\u30c3\u30af\u30b9":108,threshold:[25,27,37,79],"\u77ed\u6642\u9593":132,"-plugin":104,"\u306a\u3093":11,"\u306a\u308c":11,black:189,"\u306a\u3089":[142,97,7,9,109,164,108,11,150,85,14,113,18,177,159,178,65,163,69,23,121,165,167,125,82,170,77,78,79,176,80,81,129,83,181,152,189,38],"\u306a\u308a":[2,3,4,45,97,7,9,10,71,77,107,58,108,11,150,151,85,13,153,16,17,113,18,60,117,143,178,65,22,44,163,23,121,70,167,124,125,168,114,73,74,75,172,27,78,79,175,176,80,81,189,83,130,132,181,32,174,135,38,184,36,37,84,102],"\u306a\u308b":[1,3,45,97,48,7,100,101,9,188,107,164,108,168,150,151,152,13,14,16,114,115,157,65,119,69,70,167,124,125,73,170,96,77,79,80,181,129,83,130,132,154,32,146,34,137,37],"_module":9,"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":77,wheezy:[],get:[],"\u96c6\u3081":130,"\u51fa\u305b\u308b":132,geo:[],gem:151,"\u3002utf":[189,125],tokyogeopoint:[110,45,34,74,27,168],restarted:139,"\u5bfe\u8c61table1":113,summary:[167,142],"\u305f\u304b":[27,108,18],"\u300c\u30e9\u30d9\u30eb":108,wiki:9,kernel:139,caller:53,"\u8907\u96d1":[108,69,150,125,7,178],sear:176,masahiro:154,ency:167,"\u884c\u306a\u308f":7,"\u53ca\u3073":167,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":54,checks:[133,80,61,83],parent:108,"\u6700\u5c0f\u5024":[142,108,23,150,80],"-blog":184,"\u306a\u306e":176,"\u3088\u3063\u3066":[92,90,71,45,99,74],"\u306a\u3069":[99,92,90,3,94,45,144,47,48,7,147,102,77,104,188,54,108,11,150,151,13,114,18,158,190,178,119,162,68,69,70,161,167,126,27,79,175,176,80,181,83,132,32,184,38],"\u306a\u306b":[],je:143,"\u306a\u3067":176,ja:[151,119],"\u306a\u3063":[141,90,3,7,102,54,108,11,150,151,85,13,177,23,70,124,125,126,27,78,112,176,80,181,132,154,135,184],"\u306a\u305c":[163,181,108,18,178,150,189,38,176,65],"\u5206\u5272":[3,150,94,144,132,77,27,38],"\u306a\u305f":77,"\u306a\u3059":34,"\u306a\u3055":[36,67],"\u306a\u3057":[],nogpgcheck:7,"_allowed":[2,172],"\u306a\u304e":182,"\u306a\u304f":[92,1,3,91,94,95,141,7,9,10,77,188,54,108,150,151,13,16,158,65,22,23,167,124,125,182,96,27,78,79,80,81,181,130,132,154,32,88,38],"\u4f8b\u5916":[147,164,68,80],"\u306a\u304a":[144,151],"\u306a\u304b":124,"\u306a\u3044":[],"*bsd":[27,154],"_invalid":[63,113,2,79],"[mdev":77,"}:":178,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":144,"\u4e0d\u9069\u5207":[7,80],cancel:[35,103],"\u5f15\u304d\u51fa\u3059":132,"}/":[22,119,188,174,10],"}.":[115,108],"})":131,".select":[167,150],tuning:[],"\u524d\u5f8c":[97,3],"\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb":97,mark:[77,189],"&filter":103,"*max":63,shopping:114,"\u62e1\u5927":124,"\u5b57\u5c0f":[108,178],"}|":148,senboku:125,"}e":150,"_avoided":[2,172,79],"\u6240\u5b9a":[70,163,144,65],sound:[18,189],"_information":95,"\u30bb\u30df\u30b3\u30ed\u30f3":167,"\u30af\u30a8\u30ea\u30fcapi":[2,31],"}]":[],"}\\":150,hdd:167,"_corrupt":[2,172],"\"mroonga":[182,108,150,85],"\u6587\u66f8\u5185":163,characteristics:32,"\u8af8\u6761":66,"\u578bn":108,"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":125,"|')":73,"\uff01\u3057":26,affected:[],"-document":[],"\u3002\u5024":96,different:131,pat:[63,94],"\u91cf\u8a08":1,same:[12,85,122,35,125,19,103],arguments:40,"=squeeze":151,"\u3002\u3044\u307e":112,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[],"< y":125,"\u8a00\u53ca":[184,182],"\uff01\u300d":[108,181,150],"\u7b49\u4fa1":[],"< n":150,running:[35,103],"\u672c\u5f53":[91,176],montywi:112,"\u305d\u3057\u3066":[108,90,130,13,132,32,184,78,176],markus:7,markup:87,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":80,"\u8aad\u307f\u98db\u3070":3,solve:[122,12],"\u6b21\u56de":[11,151],"(cmp":80,"[number":58,"(precise":[],money:44,"\u5927\u898f\u6a21":132,"\u3002\u3059\u3079\u3066":[59,177,119],"\u518d\u8d77":[139,141,175],".dll":40,"\u8fd4\u5024":[],"\u30c0\u30a4\u30a2\u30ed\u30b0":125,"_rate":[3,4,82,102,9,172],"/false":[13,1],"\u4e2d\u592e\u5024":80,"\u5ea7\u6a19":[92,75,150,184,34,27,168],"\u56f0\u96e3":[7,132],"_syntax":[2,84],"\u9069\u5b9c":[151,80],"'ve":184,"\u9650\u308a":[69,70,144,58,60,79],"\u9650\u3089":124,quantal:7,specifies:[131,97],"\u9650\u3063":79,"\u7be0\u7530":[77,80],testdb:[167,64],specified:[40,110,53],generates:186,"\u99c4\u76ee":124,ellip:75,"/database":[9,54],"_realloc":40,"\u65b0\u5bbf":74,critical:[40,148,97],"\u6d0b\u5fd7":80,"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[],valuebuf:41,uubntu:177,"\u30cb\u30c3\u30dd\u30f3":176,"\u306f\u3044":13,broken:[136,172,83,61,121],"_between":80,"\u306f\u305a":[7,167,38],"\u307e\u3064\u308f":125,"\u306f\u3069":[108,176,65],"\u306f\u3068":94,ptr:40,develops:163,"\u306f\u307f":88,"@soundkitchen":[7,27],"\u3082\u3061\u308d\u3093":[167,130],"\"\u30df\u30ea":150,".patch":119,"_reopen":[],"\u9ed2\u3044\u70b9":92,"\u8abf\u6574":[70,165,108,38,158],"\u3002\u3059\u3050":9,"_cache":[],"\u4f55\u5ea6":125,"\u7279\u6709":[],"-login":139,"/ '":79,"\u306a\u304c\u3089":[108,90,3,151,132,7,38],"\u3002command":11,"\u63d0\u6848":[],"\u3082\u3046":[114,111,13,16,7,9,78],"\u8a18\u8f09":[7,151],"\u3002cpu\u30b3\u30a2":54,"\u3082\u3057":[135,108,2,181,115,175,167,125,17,75,100,182,9,178,96,188,150,81,80,54,65],"\u7834\u58ca":113,"\u516c\u958b\u9375":151,"\u3082\u3059":[22,10],"\u3082\u3064":[77,170,130],"\u30c7\u30d7\u30ed\u30a4":9,"\u3082\u306e":[3,97,7,100,101,9,142,108,11,151,13,17,113,18,63,119,67,69,23,167,125,75,172,78,168,80,178,179,189],"|on":108,"|oo":108,"$prefix":27,"\u5883\u754c":[7,142,75,23],file:[1,131,154,9,20,139,172],"*obj":[41,79,83,93,56,84,53,118,121],again:[9,19],"\u53d6\u308c\u308b":58,"\uff08true":13,"\u5b50\u5348\u7dda":75,"\u4e0e\u3048\u308b":[58,179,74,11,97],"}}":85,"\u3002pcre":9,"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":85,"\u8a18\u8ff0":[69,3,167,97,184,78],"\u4e00\u6642\u7684":[165,79],"\u4e0a\u9650":[],important:[122,28,12],"6gib":139,"_all":[77,16],starting:40,sergey:80,"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[7,27,80],expressions:9,gr:[108,90],libmsgpack:[152,14],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":[80,5],"_difference":113,"/lib":[22,141,9,61,10,174],"-alloc":82,"\u8aad\u3081":7,"\u8aad\u3080":68,"\u5dee\u5206":167,"\u8aad\u3093":[88,81],"\u4f4e\u4e0b":125,")mroonga":175,hottolink:42,"\u52e7\u3081":80,"\u306f\u3053\u306e":[165,108,38,182],sigusr:27,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":85,"\u771f\u507d\u5024":[],"\u304c\u3053\u306e":181,titles:[181,150],plugins:[139,10],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":177,abi:77,"\u3002amazon":108,"@orangain":125,tokenbigramignoreblanksplitalphadigit:38,"_append":[86,69,84,79],"\u30e1\u30bf\u30c7\u30fc\u30bf":[147,68,95],"\u8aad\u307f":[],"\u5909\u66f4\u5f8c":[123,113,16,116,25,79],"\u307e\u3057\u3087":[44,108,75,3],".value":108,"\u30c6\u30b9\u30c8":[],threads:[131,148],tokenbigramsplitxxx:38,"\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8":97,"\u6e96\u5099":[],"\u6d3b\u7528":141,"\u5931\u308f":7,search:[108,90,181,12,122,153,161,32,47,48,7,169,113,18,63,27,28,175,176,150],published:151,"\u300c\u5024":65,aptitude:177,"\u672a\u77e5":112,memos:[163,100,12],".synonym":108,"\u78ba\u7387":153,distinct:131,"\u5ca9\u4e95":[7,125],"\u5317\u534a\u7403":7,"\u5c0f\u5024":[142,23],"_gqtp":167,"\u3053\u3068":[],"\u3053\u306e":[2,3,4,12,7,90,9,75,13,14,17,18,19,23,24,182,27,30,31,32,38,40,47,48,50,54,164,58,59,61,63,65,44,68,69,70,73,74,77,78,80,81,84,152,88,89,91,94,95,97,26,99,101,103,188,108,168,85,112,114,115,113,117,119,122,161,125,127,129,130,132,133,135,136,137,139,142,144,147,150,151,160,162,46,167,172,96,174,175,176,178,181,184,185,191],jsonp:[131,27,77],"[element":[150,85],"\u4e00\u756a\u5de6":150,"[example":80,none:[108,90,133,97,46,186,136,9,78,188,172],hour:[148,19],"\u3053\u3053":[108,3,181,151,13,184,135,70,74,153,189,175,150],dev:[152,14],deb:[7,152,14,151],"\u3053\u3046":124,"\u4e2d\u5fc3":168,share:188,"\u96c5\u5e83":80,minimum:40,numbers:35,"/..":[9,151],strlen:40,needs:139,maps:139,"\u3053\u308c":[90,142,91,5,94,144,47,48,7,9,10,77,188,54,114,108,75,150,151,85,87,17,18,178,65,22,69,23,70,165,125,73,169,74,172,96,27,78,174,175,176,80,181,189,83,130,182,132,32,13,184,119,38,117],"\u3053\u3080":68,"*value":[63,41,113,79,86],"\u591a\u3059\u304e":154,"/afr":[74,3,130],"\u666e\u901a":[124,150],mariadb:[125,80],response:[131,103],kuriyama:80,"\u3066\u304d":2,"\u3066\u304f":177,"\u30c4\u30a4\u30fc\u30c8":[],"\u547c\u3073":[108,69,5,85,13,167,97,32],"\u547c\u3070":[108,3,150,45,113,16,59,125,77,53],"\u3002ftp":167,"`hostname":97,"\u5217\u578b":[13,130,181,80],"\u3002\u4f8b":79,finalizes:40,through:9,"\u975e\u308f":144,existence:83,"\u308c\u308b":[92,3,93,94,45,144,97,48,7,100,77,147,188,53,114,108,11,151,85,153,190,16,17,59,18,60,177,63,65,68,69,23,70,134,167,125,126,74,75,172,96,27,176,80,178,189,182,132,133,32,119,38,117],"-launchpad":151,"\u6955\u5186":[75,168],good:[163,150,108,46,114,181],timestamp:23,"\u3079\u3066":[108,9,130],"\u9664\u304f":7,"\u5316\u95a2":154,"\u3079\u304d":[189,150,151,95,172,79],"\u3079\u304f":3,"\u9577\u91ce":80,"\u9664\u3044":[142,100,23,32,167],"-encoding":[],micro:184,token:[],learing:48,"\u52b9\u679c":184,"\u9664\u3051":113,"\u767b\u9332":[],hard:139,flower:13,"\u30d5\u30e9\u30f3\u30b9":75,"\"gr":65,"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":177,"\u8ddd\u96e2":[92,1,75,150,111,132,7,74,168],"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":101,"\uff08\u79d2":79,"\u3068\u3082\u3063\u3068":188,"\u89b3\u70b9":[165,100,150,80],"_blank":133,tahr:[14,80],"\u4e09\u8c37":80,tritonn:[108,181,150],"\u308c\u305a":11,"\u306b\u3082":[108,144],"\u306b\u3088":7,done:19,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[184,75],".blog":70,"_data":[],koi:[7,188,97],"\u306b\u5bfe\u5fdc\u4ed8\u3051":176,least:139,"\u516c\u5e73":125,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":54,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[36,97,9],"/archive":151,"*results":113,selector:155,"\u308c\u307e\u305b":[11,161,97,126,113,78,188,175],"\u6574\u7406":[7,125],"},":[90,3,91,127,143,108,75,150,85,114,115,59,166,44,46,49,167,109,78,178,181,184,38],"\u4e71\u6570":[67,74],"_tag":[161,100],"\u8a18\u9332":[7,22,60,132,10],"\"requires":7,"\u30d3\u30e5\u30fc":7,"\u4e0a\u8a18":[3,48,7,188,108,109,115,18,119,66,23,70,167,182,74,172,96,77,175,81,130,65,38],ages:[105,96,65],"/lc":[151,119],"_scorer":77,".key":113,built:79,"/lists":151,"-limit":[1,97,108,125],extracted:84,"\u307e\u3068\u3081":[],build:[151,14,125,82,152,101,20,81],"_available":[2,172],"\u53d6\u308a\u51fa\u3057":[63,120,3],eggs:78,"[experimental":[],most:110,"~*":84,"\u306b\u3057":[108,150,125,77,80,181],myisam:132,"\u5e73\u884c":151,"-protocol":[51,97,102,167],"\u306b\u3059":70,kb:165,ka:189,"\u306b\u3066":[7,75,125,151],"_put":[],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":126,"\u306b\u3069":69,ko:42,km:184,"\"theater":91,"\u7528\u8a9e\u96c6":126,"\u4e0a\u66f8\u304d":[74,151],mlock:154,think:[122,28,12],"_by":[40,184,112,146,113,63,27,79,84,80],"(drilldown":60,"\u30d1\u30c3\u30c1":[],"\u5927\u8cb4":7,relation:79,nterms:126,"[mecab":77,find:20,"_int":[77,79,84,62],"\u7d50\u57ce":80,"\u30a2\u30ca\u30a6\u30f3\u30b9":151,permission:172,express:[7,101,125],"\u601d\u3044":119,"\u601d\u3046":[78,130],"\u62c5\u5f53":151,resolve:[122,28,12],"\u9593\u9055\u3063":[125,7,169,18,27,80],"\"popular":108,transitional:141,"_and":[69,56,12],"\uff08byte":[79,121],common:[63,27,113,150],"\u601d\u3063":87,"+fff":38,"/log":[131,141,188,97,9],"_sjlj":80,lion:7,tokenizers:[166,90],"\u76f8\u624b":124,"[backslash":181,please:[141,83,12,122,28,119],"\u30e2\u30b8\u30e5\u30fc\u30eb":[],"(news":151,"\u5024\u57df":71,".log":[141,11,12,167,97,9,188],"\u30cb\u30db\u30f3":176,readme:[125,151],"\u8a9e\u4ee5":[38,150],"\u8868\u73fe":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":7,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc":77,"\u66f8\u3051\u308b":[7,125,80],reverse:[9,151],"\u6570\u70b9":[45,108],"-file":[131,27,135,97,77],"\u5b9f\u51e6":[69,53],"-org":151,point:[],simple:141,"\u3059\u304e\u307e\u305b":44,"\u306f\u3058\u307e\u308a":11,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":178,simply:122,shutdown:[],"\u6253\u3064\u524d":151,"\"gronga":169,"_connection":2,create:[40,97],"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[17,182,16],"\u53ce\u96c6":[135,132],"_when":135,"\u30a2\u30ed\u30b1\u30fc\u30c8":82,bill:[70,144],replaced:[64,186],ful:90,"\u307b\u3057\u304f":108,engi:[153,176],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[94,3,9],cents:38,"\u5f15\u6570":[],"^ \"":150,itself:85,"\u56db\u5247":80,rubygems:7,"\u95be\u5024":[],"-key":[112,151],"\u7d42\u7aef":[7,84,83,16],emphasize:109,")groonga":175,"\u56fd\u540d":130,development:184,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":80,"-chroot":151,"\uff08perl":9,keys:[],"-existence":125,aggregate:32,"\u5834\u6240":[],"\u53cc\u65b9":124,"\"\u3001":[176,130],"\"\u3002":80,"\u5409\u7530":125,"\u7d44\u307f\u5408\u308f\u305b":[69,3,151,70,132,73,38,80],flags:[],sortby:[],entry:[73,145,93,72,58,136,170,155,37,107],"\u305f\u3059\u3079\u3066":108,"\u3064\u307e\u308a":[77,108,90,23,151],sunos:80,"\u3002dump":157,"\u547c\u3073\u51fa\u3059":[67,168,111,34,158,180],"\u3001\u00d7":124,"\u5024\u306a\u3089":125,"\"value":108,"\u547c\u3073\u51fa\u3055":[93,108],"\u547c\u3073\u51fa\u3057":[],"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":167,"\u306f\u3069\u3061\u3089":54,source:[44,3,83,151,184,95,73,59,135,77,78],realloc:154,"5\u3064":96,bin:[101,20],manage:20,"?arg":178,kashihara:80,"\u968e\u5c64":69,bit:[164,129,24,45,14,167,125,152,101,137,77,81],"\u5f53\u3066":[94,90,105,16],"\u30d7\u30e9\u30b0\u30a4\u30f3":[1,142,68,7,10,147,77,188,164,14,115,119,22,163,23,125,27,174,175,80,129,132,154,146,152,189],"\u5927\u4e08\u592b":[188,124],"\u8aa4\u308a":[7,77,125,80],"\u5354\u529b":[],"\u3057\u307e\u3063":80,"\u4e0a\u8ff0":175,"*keys":113,"-command":[],"_over":[2,172],"\u4ee5\u5916":[92,5,94,45,108,151,85,16,17,113,178,65,69,120,121,62,167,125,82,27,79,80,181,83,132,154,84],google:[122,169,28,108,12],"\u5168suffix":113,"\u8aa4\u3063":[7,77,125,80,151],examples:154,"\u3001[":3,server:[44,141,131,97,54,7,100,9,103,80],"\u3002set":167,"\u66f8\u304b":[7,184],"\u3001c":3,"\u66f8\u304f":[78,181,80],"\u8a73\u3057\u304f":[13,132,3],"\u66f8\u304d":[],"\u66f8\u3044":[150,184,181,77,80,178],newark:184,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":80,"\u3002travis":81,"\u30d3\u30eb\u30c9":[],"\u5024\u306a\u3057":112,"/cutter":151,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":7,"_checks":133,cxxflags:24,"\u3001#":184,"\u3001\"":[109,3,91,182,100,184,45,125,48,7,169,18,27,176],"\u3001$":151,"\u3001'":[150,13,45,97,115,123,80],"\u3001(":[63,45,167,113,96],nginxhttpstubstatusmodule:80,"\u3001-":[36,45,154,167],"\u3001/":[3,102],"\u3001.":[177,119],"\u5730\u5f62":[75,168],"\u3001:":167,"(fedora":141,"\u3084\u3059\u3044\u304b":175,"\u3001>":72,"\u5730\u70b9":[74,75],"\u7a4d\u307f\u91cd\u306a\u3063":125,"/yum":151,"\u9010\u6b21":[132,38,80,178],suffixsearchterms:[181,150],"\u6295\u5165":[70,1,23],"[label2":108,"[label1":[108,80],"_fin":[7,40,84,5,16],errno:80,"\u51fa\u3059":184,"\u51fa\u3055":125,"\u51fa\u3057":184,"_full":[],"-type":[48,18,9,27,176,54],"\u7b97\u8853":[],"-binary":[9,54],"/epel":129,"\u56de\u907f":[],"\u52d5\u304d":[108,54],"\u52d5\u304f":[7,27,188,191],"\u52d5\u304b":[125,80,178],"*keybuf":113,"\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc":178,curl:[188,4,131,97,7,9,103,89,54,81],sourceforge:151,"\u90fd\u6c11":[70,144],"\u6570\u73e0":182,functionality:131,"_enabled":77,"\u5207\u308a\u6368\u3066":13,libwinpthread:80,"\u30c7\u30fc\u30bf":[],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":167,"\u53d6\u5f97":[],confirm:119,"_nil":[63,113,154,84,16],failures:151,"\u7d50\u5408":[69,181,158],rinse:151,getaddrinfo:7,jason:143,wanabe:125,"/cache":9,"\u57cb\u3081\u8fbc\u3080":167,query:[],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":7,"_debug":177,"/\u65e5":184,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[150,78,108,181],"-release":[],"\u3042\u3089\u308f\u3057":91,"\u4f59\u308a":150,"\u5f97\u308b":[38,9],putting:139,"/request":103,"_database":[],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":7,"-build":177,"\u306b\u3064\u3051":150,"\u512a\u308c":[132,38],".output":36,"\u76f4\u611f":143,"\u9665\u3063":7,"_header":95,"\u3001 \"":100,"\u9023\u643a":132,"_thread":167,"= n":150,access:139,"\u5f35\u308c\u308b":125,"\u4e2d\u56fd":75,"\u3002\u30ad\u30fc":108,"= y":125,"\u826f\u304f":78,"\u826f\u3044":[78,124],nonexistent:108,"\u30ef\u30fc\u30ab\u30fc":9,"\u632f\u821e":75,"0xc":172,masatoshi:77,"\u306b\u5bfe\u5fdc":[41,108,79,23,121,93,62,97,16,7,113,36,190,27,58,112,53,80],"= \"":[108,23,150,80],"/tmp":[175,54],"_printf":80,"\u57cb\u3081\u8fbc\u307e":151,"\u57cb\u3081\u8fbc\u307f":[32,47],"/senna":157,"\u3002adjuster":80,"\u30b9\u30b1\u30fc\u30d7":178,"/to":[9,54],"\u30ed\u30f3\u30c9\u30f3":75,"ci\u4e0a":81,"(ctx":[17,69,84,121,16],"\u53d7\u4ed8":[91,125],"\u5b8c\u4e86":[108,151,119],"'mroonga":[115,78],"\u30d5\u30ec\u30fc\u30ba":[],".pid":97,"\u5f35\u3063":[108,125],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[],"\u4e2d\u7a0b\u5ea6":[164,129,14,152,101,137],normalizer:[],"_previous":17,"[header":[22,135,68,49,23,166,133,73,136,59,90,117,10,147,142,127,174,170,65],normalized:133,"\u305d\u308c\u3089":[179,108,121,73,19,175,54,178],escaped:84,"\u96c6\u307e\u3063":130,"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":125,"_malloc":40,"\u8d77\u52d5":[],twiter:7,iptables:54,"\u96c6\u307e\u308a":108,"\u30af\u30e9\u30c3\u30b7\u30e5":[154,125,7,59,77,27,80],"{prefix":[22,188,174,10],"/linux":[],"-za":131,"\u6295\u7a3f\u5834\u6240":184,msvc:77,gcc:[164,129,24,125,7,27,188],df:122,"\u3055\u3089\u306b":[44,11,3,85,132,169,94,77,80],"\u30b3\u30de\u30f3\u30c9":[],"\u5186\u6ed1":151,"(score":77,"\u5f35\u3089":[7,13,121,125,77],"\u5f35\u308b":[181,150],"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":80,".textile":151,"\u30b5\u30fc\u30d0\u30fcid":27,bind:27,lines:[131,177],"/repositories":151,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":154,"\u7d9a\u304d":58,"\u306e\u3088\u3046":[108,23,181,95,125,17,59,158,178,38,80,150],"(cutter":177,"\u7d9a\u3044":[70,108],hiroshi:[27,154],jiro:44,"\u3002int":125,"\u7d9a\u3051":167,lf:179,"\u6d88\u8cbb":114,ld:38,lc:119,lo:38,ll:[70,90,38,144],euc:[97,188,38,125],li:[70,144,38],lt:[161,90,32,47],ls:151,"_gqpt":167,tsv:[],lz:188,"\u9589\u3058\u308b":[27,1,94],"\u306f\u3069\u3061\u3089\u304b":[181,150],"\u4f75\u305b":3,"\u3067\u3057\u3087":[162,150,130,132,114,59,188,80],dat:94,"\uff08world":45,"\u30c7\u30a3\u30b9\u30afi":65,day:[114,148],"\u30e6\u30fc\u30b6":[73,108,69,3,151,45,167,48,7,169,18,176],"\u4e00\u3064":[145,6,45,144,8,105,107,11,111,13,16,17,113,155,157,190,159,67,121,72,73,126,75,168,82,180,182,132,34,109,37,140],"\u70b9\u9593":[92,75],"_persistent":[113,121],"\u5217\u5f0f":84,"& y":125,"& x":80,normalizerauto:[],"\u74b0\u5883":[],"\u5217\u5f15":69,"& b":150,"\u3042\u308c\u3053\u308c":124,"\u5f85\u3061\u53d7\u3051\u308b":[102,172],"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[109,12,182,122,115,100],"\u5fc3\u914d":137,res:[113,56,167,110],"& _":74,"\u30ab\u30ec\u30fc":144,red:[],"/\u6708":184,frank:96,"\u73fe\u72b6":11,"\u4ed8\u5c5e":[36,9],"/aba":[74,3,130],"& (":150,"\u76ee\u8996":135,"\u30d6\u30e9\u30b8\u30ea\u30a2":75,"*top":110,"_long":[2,172],"\u91ce\u9996":80,"-appearing":12,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":132,hex:44,reaches:139,"\u30d9\u30af\u30bf":[7,154,1,79,125],"\u7d44\u307f\u8fbc\u307f":[],monkey:13,"\u305d\u306e\u3088\u3046":170,"\u6c38\u7d9a":[],"\u8aad\u307f\u8fbc\u3080":[1,68],natty:27,acquire:19,documentations:160,"\u3068\u3088\u3044":188,"_unregister":[],"\u305b\u3044\u305c\u3044":65,"_illegal":2,"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":9,"\u5229\u70b9":132,"\u30da\u30fc\u30b8":[55,108,3,151,97,125,26,7,36,119],"\u81f3\u308b":13,have:[114,139,106,83],"=users":[9,54],"\"co":169,min:[],"_control":[2,172],"\u914d\u4e0b":[36,151],"_func":[40,53,80,16],"\u8aad\u307f\u8fbc\u307f":[22,68,3,125,10,27,175,80],"\uff08gnu":188,"/commands":[105,59,95,80],"_character":84,eight:3,"_offline":112,"\u306a\u3082\u306e":[121,151,178],"\uff09\u3002":70,"\u6e2c\u5730\u7cfb":45,"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[7,18,65],request:[],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[135,1,11,154,125,7,27,112,80],"\uff08least":117,"\u7d44\u307f\u8fbc\u3093":[132,80],"\u304b\u304b\u308a":[114,38,181,150],normally:[139,106,16],text:[90,4,12,94,45,7,54,108,110,150,115,157,23,122,167,77,78,178,181,32,135,136,139],"\u8d8a\u3048\u308b":[70,77,23,80],supported:[42,9,103],"\u5ea6\u3068":27,conifugration:81,"\u610f\u5473":[108,69,3,175,130,85,38,95,97,125,74,153,150,188,84,176,167,181],"\u5b66\u3093":184,"*table":[63,113,79,121],bernard:77,"get\u30e1\u30bd\u30c3\u30c9":36,"[mruby":[77,80],"\u65b9\u6cd5":[],")\u3059\u3079\u3066":96,"\u5c11\u306a\u304f":[150,132,124,32,114,181],"\u5c11\u306a\u3044":[108,181,114,158,175,80,150],"[column":80,"\u7e70\u308a\u8fd4\u3059":154,"_prepend":79,"\u306e\u307f\u3057\u304b":169,"_eval":[],"\u7e70\u308a\u8fd4\u3057":[167,150,119],"\u5272\u308a":[90,150,13,94,16,105],calling:[40,5],fixed:7,"_busy":[2,172],"\u5236\u5fa1":[],exists:61,"\u3002blogs":70,"\u4ee3\u5165":[],enhanced:42,wc:[152,129,14,164],xxxxx:151,"\u985e\u4f3c":[],pattern:[181,150],"{name":150,"(string":111,"\u30c7\u30e1\u30ea\u30c3\u30c8":94,progress:148,"\u6751\u4e0a":[77,125,80],"_incompatible":2,"\u5b66\u3073":[108,75,130],"\u7dad\u6301":[132,54],"\u9577\u3059\u304e\u308b":125,"\u5168\u4ef6":[63,181,150],"\"ddl":80,"\u518d\u8d77\u52d5":[],plugin:[],"-suggest":[],"_expression":[108,178],".org":[3,101,9,188,164,109,151,85,13,14,17,157,119,44,24,167,74,102,80,129,130,152,89],"\u88dc\u6b63":[],"\u628a\u63e1":124,otherwise:[40,79,103],comment:[184,78,182],"\"fulltext":90,"\u304a\u304d\u307e\u3057\u3087":13,"-history":27,"\u4e00\u6587":[],"\u4ee5\u524d":[70,184,125,7,13,27,189,80],"\u30ab\u30b9\u30bf\u30e0":9,"\u91cd\u307f\u4ed8\u3051":[70,108],"\u30e1\u30e2\u30ea":[],"\u5c0f\u6570\u70b9":13,"\u52c9\u5f37":38,json:[],"\u91cd\u307f\u4ed8\u304d":[],copied:40,"\u901f\u3044":[94,80],"_end":2,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":27,"\u306a\u306b\u5bfe\u3057":[181,150],finished:[148,103],bye:46,"_domain":2,"=..":151,"\u5168\u4f53":[],value:[],"=arg":178,"\u540c\u3058":[],almost:139,"\u6307\u91dd":[],"(cve":80,"\u30bf\u30a4\u30df\u30f3\u30b0":[7,3],regression:[],".db":[97,172,3,102,125],pkgs:129,"-endpoint":[131,64],optarg:[56,83],"\u67af\u308c":[141,187],"\u4e09\u7a2e":[],":!":181,"[apt":7,"\u672c\u4f53":88,"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":151,center:168,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":125,builder:86,sets:16,position:[40,46,90,38,110],"*result":113,"1byte":172,"\"ellipsoid":168,"\u8868\u793a":[],"-platform":[],stores:84,"_byte":[2,172],"x\u30df\u30ea":[45,150],"|..":80,"\u5229\u7528":[],stored:[64,48],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":94,":<":[108,181],"\u958b\u59cb":[108,75,161,167,125,82,59,177,27,79,80],"\u300c\u5f0f":84,"_true":79,"\u3055\u3093":[130,154,32,146,125,7,169,54,77,27,178,112,80,119],add:[108,90,160,14,7,20,38,80,119],"\u3002gqtp":[179,2,172],"\u3055\u3089":78,match:[],tests:151,"|none":108,"\u5730\u57df":132,elapsed:[131,135,4,148],qwik:157,like:[9,121],success:172,"_leak":177,"_decr":79,"\u6709\u76ca":132,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":54,works:[40,148],soft:139,"\u63d0\u6848\u7528":131,"\u4e0d\u6b63":[1,154,125,177,27,80,65],"((x":45,"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":125,"\u8ca0\u8377":[154,9],"\u7121\u52b9":[108,181,123,125,7,113,9,63,77,188,112,176],"\u610f\u56f3":[181,182,125,7,115,78,80],tmp:[3,151,131,153,95,97,125,59,102,105,178,175,54,172],"_optarg":[77,56,83],sjis:[188,42,97],"\u30b5\u30de\u30ea":125,"\u5f62\u5f0f":[],",\"domain":130,"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":150,"\u30d0\u30b0":[27,124,125],"\u3046\u307e\u304f":[],dcb:80,host:[178,167,102,172],"\u6319\u52d5":[],"\u30c0\u30e1\u30fc\u30b8":70,about:[40,135,12,122,35,148,17,20,139,28,160,81],actual:[9,12],socket:172,"\u3055\u305b":124,"\u4ee5\u5185":[184,74,18,150,176],"\u3055\u304d":13,"_time":[135,148],tomo:44,"\u3055\u3044":[141,2,3,143,128,94,45,46,26,136,7,90,101,102,103,10,147,109,188,54,164,108,75,150,85,13,153,14,70,59,19,25,95,65,22,119,68,49,177,24,165,166,167,125,73,182,74,170,117,77,127,174,80,178,129,181,130,132,133,115,152,184,36,89,38,9],introduced:9,"\u524d\u65b9\u4e00\u81f4":[],"!!":[58,44,38,9,184],"\u6307\u3059\u5024":63,"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":151,"!)":9,dataset:[131,64,186],"_object":2,guard:122,"\u30ec\u30fc\u30bf":7,rch:90,">default":4,"\u901f\u5ea6":[44,94,167,125,77,27],"\u7591\u554f":78,glib:125,"_inappropriate":2,"[power8":80,but:[12,122,131,103,139,127,64],"\u3068\u3068":[87,119],"\u3068\u3069":50,"\u3068\u306e":150,"\u3068\u3063":9,"\u30fb\u5168":155,buf:[113,79,121],bug:[7,42],"\u5730\u56f3":132,"-w":151,dangerous:[136,83,121],"\u3068\u3057":[45,97,48,9,108,75,150,13,16,114,18,44,68,69,167,125,169,78,175,176,80,179,38],"\u3068\u3048":[108,11,132,123,144,32,47,38,74,188,84,80,178],binlib:151,"\u3068\u304d":[1,90,3,45,144,97,48,7,9,10,77,188,53,54,164,108,75,150,151,85,13,153,14,16,115,113,18,158,63,65,22,44,69,120,134,124,125,73,169,172,27,174,175,176,80,178,129,189,181,130,132,154,32,135,152,184,89,38,102],"-disable":[131,27,154,80],"!\\":150,epel:[7,129],colum:139,pid:[1,188,97],"\u8a08\u7b97":[92,1,75,150,111,132,45,108,48,7,74,18,125,147,168,176,80],"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[154,188,151],"-config":[1,154,97,7,27,188],saer:[153,18],"\u4f7f\u3044\u5206\u3051":[70,144],pip:20,"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":151,"\u305f\u3060\u3057":[1,181,144,97,125,73,60,36,63,27,178,80,150],"\u305f\u3060\u3051":7,"\u6291\u5236":[7,125,80],detail:167,"\u3068\u308b":79,"\u4fc2\u6570":[108,69],"\ufffecrch":90,"\u3068\u3082":[108,150,165,167,32,182,74,181],"_vars":40,"\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc":108,"\u306e\u3044\u305a\u308c":[95,91],"\u307b\u3069":[141,3,13,153,38,65],cpu:[131,132,167,9,188,54],"\u5909\u3048\u308b":[70,108,38],"\u307b\u3046":80,"\u307b\u304b":[13,132],"\u2026\uff09":18,"4e":165,"|ro":108,"\u3002groonga":[3,4,5,94,7,101,9,71,188,164,108,11,150,14,167,125,73,78,176,80,178,82,129,181,132,152,88,102],"\u6e1b\u3089":[7,94,18,91],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":63,tweet:114,"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":178,"\"ab":169,under:[131,9,64],"-ci\u4e0a":125,"\u3067\u3064\u306a\u3052\u308b":108,"\u904e\u7a0b":60,"/acccess":141,"/plugins":[22,174,154,125,10,188],"\u5b9f\u6570":45,"\u6761\u4ef6\u5f0f":[],"\u6700\u9577":[27,167,150],"_snip":[7,80],"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[153,176],"-repository":[7,14,151],estimates:110,"/mm":150,"\u7b87\u6240":[135,32,151,125],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[27,125,80],"\u4e00\u8a9e":70,"\u5b9f\u65bd":151,"\u81f4\u547d":7,"-rpm":151,"-idf":[122,12],"\u7d44\u8fbc":[67,145,111,6,45,72,168,180,73,34,8,155,140,157,159,190,105,37,82,126,107],"=largetable":103,"\u683c\u7d0d":[],"\u53cd\u8ee2":150,"\u30e2\u30cb\u30bf\u30fc":[152,129,14,164],"\u9069\u7528":[],"\u3002output":[157,80],studio:[7,77,101,125],path:[],"\u95a2\u4fc2\u5f0f":[],".ddl":167,"_scorers":12,"_target":[],"_key":[],"\u79cb\u8449":74,changed:[42,9,103],"\u5f62\u614b":[132,188,38,150],"\u58ca\u308c\u308b":[1,154,125,7,27,80],"\u63a8\u79fb":11,"\u3082\u3063\u3068":108,"-ci":[125,80],"\u30d3\u30eb\u30c8\u30a4\u30f3":125,"\u8fd4\u5374":[105,108,3],ts:38,"\u8aad\u307f\u3084\u3059\u3044":112,"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[77,95,80],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":125,noarch:[164,129],m6:24,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":120,namebuf:[79,121],autogen:[7,151,119],"\u30a2\u30e1\u30ea\u30ab":75,"\u5909\u308a":80,"-bind":[7,27,97,77],must:[40,110,83,131,48,136,103,61,139,84,64,121],me:[76,38],te:[90,38],"\u7f6e\u304d\u63db\u3048":[97,181,80,119],mb:7,mm:[148,150],ml:124,"\"blank":189,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":167,mv:190,install:[],my:[108,181,150],"/xml":54,"_idf":[],"\"s":[90,153,18,38,176],end:[179,161,4,172],eng:[153,176],"\u3002html":161,"\u3002functions":177,"\u30d7\u30ed\u30bb\u30b9":[22,82,11,3,132,97,125,7,126,59,9,10,167,159,54,179],env:175,rroonga:[12,182,125,17,115,100,158,78,80,81],"\u30b4\u30df":[27,154,126],"\u7d42\u4e86":[],description:[184,144],"-devel":[164,129],"\u305d\u306e\u5f8c":[108,150,16],".tar":119,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[],"-files":[],"\u5c0f\u3055\u3044":[108,69,181,94,146,63,168,38,65],".tag":108,"]isk":178,"\u5272\u308a\u5f53\u3066":[17,154],"/tab":77,"\u4e88\u5b9a":[68,11,85,87,32,75,147,27,54,178],executed:102,"\u7acb\u3061\u4e0a\u3052":167,"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":80,"\u305f\u304f":[130,125,32,169,27,178,54,119],"\u5bfe\u8c61table2":113,synonyms:175,"\u300c\u697d\u3057\u3044":144,"@packages":151,gqtp:[],"\u305f\u3073":[74,11,167,151],"\u305f\u3060":[164,85],"\u8fd4\u308a\u5024":[125,80],"\u300chello":108,"\u4e00\u884c":[167,154,97],"\u3072\u308d":143,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":125,"\u3072\u3089":[176,38,181,150],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":117,notified:103,"\u3054\u3089\u3093\u304f":104,"2\u3064":[0,141,3,95,48,54,164,108,111,14,115,65,125,73,182,77,78,80,178,129,181,130,184,152,38,191],each:[131,35,48,18,9,103,153,148,84,176],searc:176,signing:151,"\u3002\uff08":[92,108,154,181,119,94,45,144,32,47,16,126,18,150,158,63,27,48,38,176,81],"\u3002\uff09":[92,1,144,181,119,94,108,32,47,48,18,150,63,27,81,38,154,65],"(byte":[113,121],"\u6e96\u62e0":[9,125],goo:[181,150],msgpack:[4,172],"\u30da\u30a2":[108,91,13,48,169,18,175,176],newly:[127,32],"\u3002centos":77,"\u4f59\u8a08":124,"\u4e8c\u756a":[],free:[148,126,154,80,16],"\u305f\u308a":[108,93,132,45,158,124,141,94,88,178,80,65],"\u305f\u3089":[108,150,5,182,154,124,141,115,54,96,151,77,188,38,176,80,119],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":59,freq:48,"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,"\u305f\u3081":[],"\u53e4\u304f":80,"\u53e4\u3044":[],"_locked":79,filter:[],onto:139,rand:[],already:[40,139,19,64],"\u53ef\u5909":[27,95,37,172],"\u897f\u66a6":150,top:[27,110,34],"\u30d6\u30e9\u30a6\u30b6":[188,102,151,119],".groonga":[119,129,151,164,24,14,167,152,101,188,89],too:[77,78,172],tom:115,tood:40,"_pragma":108,tool:81,serve:151,wareohji:7,".com":[189,3,151,130,13,74,102,104,119,81],"\u6d0b\u723e":27,"\"good":[108,150],"_untag":[],expr:[79,84,53,118],"*cursor":110,obata:154,"_isspace":40,"\u8d64\u9053":75,ram:167,"\u6709\u3057":95,"\u5834\u5408":[],"\u5f93\u3063":[108,113,63,36,56,54],"\u4e00\u89a7":[],"_source":151,hanako:170,"\u591a\u9762":132,"> y":125,"/stop":[163,46],"\u5f93\u3046":154,"/share":[27,97],"\u3044\u307e\u305b":[92,108,90,175,191,94,181,125,54,135,9,153,150,178,38,129,80,65],bsd:[188,80],"\u3072\u3068\u3064":[7,181,111],"\u30b5\u30b8\u30a7\u30b9\u30c8":[],"\u30ed\u30fc\u30de":176,",..":[58,105,108],"\u5225\u9014deb":151,"\u30ed\u30fc\u30c9":[],"\u30ec\u30b3\u30fc\u30c9":[],marverick:154,"\u307f\u306a\u3055":69,pkg:[24,154,188],"\u5ea6\u8868":154,"\u5c0f\u6570":[],"\u6c42\u307e\u308a":132,"\u3002hook":93,"\u306b\u3064\u3076\u3084\u3051\u308b":124,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":69,"\u59cb\u307e\u3063":[135,169],"\u3092\u3054":177,"_valid":9,fontaine:27,"*fin":53,"\u3064\u3064":[70,115],"/example":12,watch:151,"\u306f\u307e\u3068\u3081\u3066":151,report:61,"\u3064\u304d":[66,68,109,85,108,73,117,147,175,80],"\u3064\u304b":146,"\u3064\u3044":184,"\u7d50\u679c":[],hendro:125,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[],"-per":[131,27],"_with":[143,144,113,121,150,65,181],"\u3064\u3051":[108,75],nul:[40,27,38,83],"-commnad":11,ciritical:9,"\u5bfe\u8c61cursor":[63,120],"_for":[77,69],"\u4e8c\u3064\u76ee":[],"\u30d7\u30ed\u30b0\u30e9\u30e0":[150,95,154,7,9,88],"\u56db\u6368":27,"\u30d7\u30ed\u30bb\u30b9id":172,"\u30b5\u30fc\u30d0\u30fc":[],"\u59cb\u307e\u308a":151,"\u59cb\u307e\u308b":[108,181,175,167,73,169,113,60,54,38,176,80,150],news:[],"\u82e6\u624b":132,"\u3068\u3057\u307e\u3057\u3087":[78,91],extracts:84,"\u30e9\u30f3\u30c0\u30e0":74,"4gib":[94,172],"\u65b9\u5411":63,"\u591a\u91cd":179,"\u5f8c\u304b\u3089":157,"\u7d4c\u7def":[13,45,74],"/or":136,trust:151,"\uff13\u3064":45,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":167,"\u7b49\u3057\u3044":[108,69,181,79,150],"\u7b49\u3057\u304f":[69,181,150],"&lt":[161,32,47],been:151,"\u30a8\u30e9\u30fc\u30ed\u30b0":141,"_blog":78,"\u8d77\u6e90":13,"/shutdown":[97,9,54],tokenmecab:[],"\u5217\u60c5":90,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[],"-threads":[131,97],xxx:[97,125,150],"_not":[108,2,136,59,170,172,103,127,56],"\u6700\u9069":9,"\u7528\u9014":[164,108,85,132,14,125,135,152,101,141,137,94,129,80,178],"\u6728\u4e0a":63,"*ctx":[40,41,79,120,83,93,86,16,17,25,113,110,62,63,56,84,53,118,121],"\"d":38,"\"e":[153,90,38,176],"\u3070\u3059\u3079\u3066":38,"\"a":[182,108,90,80],"\"b":[182,108],"\"c":[182,108],"\"n":[135,108,3,181,172,82,9,150,102],"\"o":38,"\"h":90,"\"i":[135,163,181,184,108,114,78,150],"\"k":44,"\"t":[90,38],"\u5c1a\u4e5f":125,"\u4e0a\u304c\u3063":38,"\u81ea\u8eab":[7,27,90,97,175],"\"}":[143,48,100,9,54,58,108,150,13,153,114,115,18,44,163,23,122,182,74,170,78,176,178,181,130,189],"\"x":[125,80,150],"\"@":184,"\u691c\u7d22\u4f8b":[],suggest:[],"\u30bf\u30fc\u30df\u30ca\u30eb":9,niku:80,"\"\\":178,"\"]":[44,108,3,150,85,70,184,95,97,32,157,176],"\"_":[3,91,12,95,46,48,100,9,109,127,54,143,122,114,108,75,150,85,13,153,58,115,59,18,157,44,163,70,125,182,74,170,96,78,176,178,181,130,184,135,189,102],"\"[":[7,178],"\"%":178,"\"'":[108,23,181,85,70,144,125,7,178,80,150],"\"\"":[182,45,112,150,178],"\"#":27,"\",":[90,3,91,12,95,97,46,47,48,100,9,103,105,127,143,122,114,108,75,150,85,13,153,58,115,59,18,157,44,163,70,161,167,125,126,74,170,172,96,78,176,178,181,130,182,184,32,135,109,189,102],"\"-":[27,75],"\".":[122,130,103,12,150],"\"/":[95,97,74,59,105,38],"\"(":[91,125],"\")":[44,75,150,111,123,115,125,7,34,74,100,103,96,80],"\"*":7,"\"<":[161,125,47],"\">":[161,4,47,32],"\"?":[108,4],"\":":[90,3,4,12,68,47,48,46,100,9,103,147,109,127,54,91,114,108,75,150,85,13,153,58,115,59,18,143,44,163,49,23,122,161,166,167,82,126,74,170,172,96,78,176,178,181,130,182,184,133,189,38,102],"\";":[167,9,54],"\u78ef\u90e8":125,charlie:184,"\u9054\u6210":23,"/run":[97,151],"\u3084\u3059\u304f":[154,80],"\u3084\u3059\u3044":[1,108,32,47,158],"(term":[122,12],"\u5bfe\u8c61table":[63,113,79,121],"_tags":[44,184],"_ctx":[],"\u4ecb\u6587":184,"_buffer":[86,2,172,16],".scr":167,"*bottom":110,"\u30ce\u30fc\u30c9":[7,63],"_selector":[],"5f":167,"5c":82,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[],ceekz:125,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[181,150],advanced:42,"\u542b\u3080\u5168\u3066":59,"\u5c0f\u6587\u5b57":[63,90,3,189,65],poedit:119,"\u6b63\u3057\u304f":[181,125,7,77,176,80],"\"engine":[18,176,48],"\u6b63\u3057\u3044":[169,18,175,181],"\u7d20\u89e3":[132,188,38,150],"\u307e\u308f\u308a":88,"\u672a\u5b9a\u7fa9":80,successfully:40,"_str":[184,84],jennifer:143,escape:84,"\u73fe\u4ee3":132,tutorial:40,".zip":119,"_right":[27,110,34],".github":119,allocate:[],ahost:178,core:167,deleted:79,"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":7,night:[114,91],"\u3001\u300c":[44,1,130,70,144,97,108,74,38,176],"\u6d88\u3048":94,limitation:139,"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[7,3,80],ppa:[],"\u3002ascii":[181,150],"\u3092\u3054\u89a7\u304f":132,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":105,two:[148,9,64],"[@":[7,27,125,80],git:[104,151,119],"[{":[9,54],"[a":131,gib:[66,139],"[test":7,"\u3084\u307e\u306d":[125,80],"[n":[125,80],head:[179,172,80],"_interrupted":[2,103],")senna":175,"\u6253\u3061":23,removed:10,"\u6253\u3064":151,"\u57f7\u7b46":[92,78,99],"\u9032\u6570":[126,150],versions:141,"[:":102,"[#":[7,27,112,80],"[\"":[44,108,150,85,13,184,95,32,70,153,176,126],autoconf:27,"\u5185\u8a33":70,"[,":168,"\u6dfb\u4ed8":7,"\u8abf\u3079\u308b":[34,168,125,165],decrypt:151,"(match":115,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[],check:[],ongaeshi:[7,77,154,125],"\u305f\u304b\u3063":[18,91],no:[1,42,94,108,125,110,172,153,139,178],"/mxcl":151,when:[131,97,83,121,20],ne:90,ng:90,ny:184,setting:139,"\u5217\u6319":3,"\u6ce8\u8a18":125,tid:120,saerch:[153,18],nt:38,"\u4e09\u756a\u76ee":150,"\u5024\u3054\u3068":130,"=number":[],"_touch":[154,83],"_unlock":[40,79],sql:[23,130,12],longer:42,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":126,"\u672c\u756a":151,"_memory":[],"\u4e00\u8cab":[],backward:127,varying:40,llt:90,"\u30d0\u30c3\u30d5\u30a1id":126,"\u30d2\u30c3\u30c8":[108,69,143,70,184,144,125,114,176],row:32,"_same":125,"\u4e00\u822c":[108,3,181,132,17,158,79],environment:81,"}attr":125,"*tid":120,advantage:32,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[181,150],"=get":46,enqueue:134,"6elz":80,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":37,level:[40,6,97,8,9,148,64,172],"\u51fa\u6765\u308b":184,brother:181,"/db2":54,"/db1":54,slower:[122,12],"\u6d88\u305b":9,obsolete:141,"\u6f14\u7b97\u5b50":[],"\u79d2\u8868":[13,70,74,150],port:[131,167,172,51,89,102],"\u66f8\u304d\u5f8c":144,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":151,"_truncate":[27,113,121,80],"\u30d5\u30a1\u30bb\u30c3\u30c8":108,"/load":[68,9,54],"\u56f0\u3063":124,".builtin":83,reply:78,"/test":38,"3\u3064":[108,23,130,13,161,32,125,135,59,158,3,78,177],"\u751f\u3058":[145,6,72,8,155,190,107],baseball:[44,78],"\u9ad8\u6a5f":[132,69],"=groonga":[131,9],"\u6c17\u8efd":[124,80],"\u6b63\u78ba":[13,82,3],"\u63d0\u4f9b":[],"_success":[40,108,2,83,5,16,17,19,148,84,121],"-pgp":151,"\uff08ruby":81,"\u64ec\u4f3c":[],"\u9006\u306b":[44,184],"\u30ea\u30f3\u30af":[108,181,151,13,125,7,104,80,150],"_delete":[63,27,113,79,93],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":77,"\u307f\u307e\u3057\u3087":[44,108,23,91,130,13,184,74,3,78,150],"\uff08messagepack":188,handled:9,"-src":152,sports:44,"\"name":115,"\u76f8\u5fdc":113,memory:[],msg:134,outputs:[148,64],"_concurrency":179,cases:[122,12],"\u30bb\u30c3\u30c8":[46,69,144,113,63,79,107],"\u3044\u308f\u3086\u308b":44,"*dest":113,"_asc":113,".txt":[38,151],"\u30b9\u30b3\u30a2\u30e9\u30fc":[],"\u672a\u4f7f":80,"[tag":108,memry:139,"\uff11\u3064":[95,134],"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[179,141,125,100,9,80],"/setup":81,"_sis":[143,144,181,113,65,150],"-docutils":151,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[],":clear":151,shibuya:154,"\u76f8\u5f53":[135,74,3,130],"\u5f15\u304d\u8d77\u3059":[7,125],clone:[],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":81,crashed:136,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":38,"\u7f72\u540d":[],quetzal:7,succeeded:[73,136,59,170,127],ueno:[7,154,146],"\u8efd\u3044":59,"\u30b0\u30eb\u30fc\u30d7":[],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[108,9],"\u3002tag":44,"_res":167,"/srpm":151,"_descriptor":[2,172],"\u542b\u307e\u308c\u308b":[108,69,3,151,13,132,161,97,47,70],"\u56f2\u307e":[32,47],"\u56f2\u307f":[161,97,32,47],"[[":[143,12,97,68,47,46,103,147,105,127,108,75,150,85,13,114,115,59,44,163,23,70,161,170,78,176,181,131,184,32],"\u30d9\u30fc\u30b9\u30d1\u30b9":9,"_pass":9,"\u56de\u7e70\u308a":167,cutter:[],"\u89e6\u308c":3,"\u6ce8\u76ee":[108,130],"\u3059\u306a\u308f\u3061":13,term:[91,12,126,122,73,183],name:[],"\u500b\u3005":[70,142,11,23,69],"\u65e5\u3005":124,"\u30b7\u30a7\u30a2":26,"\u534a\u7121":[27,65],"\u5bfe\u8c61column":121,removep:79,"\u53d6\u308b":[150,172],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":125,"\u30cd\u30b9\u30c8":[7,78,125,80],"\u30d1\u30fc\u30b9":[27,123,84,158],exclamation:77,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":72,"\u6642\u4ee3":132,"\u3042\u3044\u307e\u3044":65,cancels:103,"\u60aa\u610f":150,libstemmer:80,"\u7d14\u7c8b":38,"-default":[],"=unique":103,"\u4e00\u4ef6\u9032\u3081":63,"\u56f2\u3093":150,"\u914d\u7f6e":[3,151],"\u56f2\u3080":[3,32,125],"\u3002key":[113,144,3],"\u30b3\u30fc\u30c9":[77,90,125,80,119],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":181,"\u4e92\u63db":[164,129,11,150,151,14,133,152,54,36,77,80],turn:9,"\"element":85,"\u30db\u30b9\u30c8":[179,151,97,167,7,172,27],yum:[7,164,129,151,20],"\u5b8c\u7d50":124,sentense:77,sho:125,"\u304a\u9858\u3044":[167,124],origin:119,fetched:48,redhat:[27,188],"-version":[],"\u3002geopoint":184,"\u30b7\u30f3\u30d7\u30eb":[191,130,158],"_function":[40,2,12,172,103,77],array:126,"\u7d5e\u8fbc":[],"\u30cf\u30a4\u30d5\u30f3":[3,65],returns:[40,110,121,131,113,103,127],"=fedora":151,"\u3084\u307e\u3060":80,releases:5,kbytes:167,released:[42,151],"\u30a8\u30f3\u30c8\u30ea":[108,150,181,17,182,121],specify:[12,131,186,136,9,64,119],"-httpd":[],"(tab":175,require:12,"(tag":100,"< t1":69,"\u3080\u308b\u3093":[181,150],posix:[77,150],"\u300cnippon":176,pre:42,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":66,"_local":[167,157],ann:151,"_groonga":135,enourmous:48,any:12,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[],takuto:154,"_permitted":[2,172],"\u30d5\u30e9\u30b0":[1,90,3,143,6,95,99,7,8,145,107,108,150,85,13,190,16,155,63,65,72,73,126,172,27,112,80,178,181,133,189],animation:44,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[25,108,188,97],multiple:[131,103],"_suggest":146,"_down":[2,172],cleared:136,"\u81a8\u5927":132,"\uff09:":[164,68,144,24,14,129,152,147,89],"\u4e2d\u65ad":[7,27,93,80],geoindex:[],"\u5c06\u6765":[68,75,23,85,133,125,166,49,172,147,54],"\u4e00\u81f4":[],"\u7551\u30b1":[77,80],"\u547c\u3076":[7,177,5,158],"\u5ea6y":45,sitecountry:[102,130],"\u540c\u3058\u91cd\u307f":115,"\u88dc\u5b8c":[],"\u30d1\u30c3\u30b1\u30fc\u30b8":[],"\u5024\u3088\u308a":[108,69],"\u7530\u8fba":125,"_json":106,"\u985e\u7fa9":108,explicitly:20,"[2":97,"\u5f53\u8a72":[11,79],define:[],ssh:151,"\"null":7,"_port":167,":')":73,tokenfilterstopword:[],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":144,mapped:139,ignored:[7,83,103],"\u30b9\u30b3\u30a2\u30fc":[],"\\\\\\":178,replies:78,"#'":97,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[184,1,65],"\\\\z":178,"<gqtp":167,managing:83,"\u77ed\u7e2e":77,"\"#\"":167,"(..":125,"_tokenize":[],"\\\\a":38,"#{":148,cities:75,come:184,"[(":178,"\u4e0d\u5909":60,quiet:172,"\u30ec\u30b3\u30fc\u30c9id":[],"\"#{":150,"\u4e00\u822c\u7684":[132,38],color:189,whombx:125,"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":7,"\u91cd\u307f\u3064\u304d":80,"\u6a19\u8a18":80,"\u76f8\u5bfe":[27,108,151],"_clone":151,raring:[125,80],"#proxy":9,"\u5f8c\u4e8c":[],"*db":[79,83,16],"\u6709\u9650":108,"(age":96,"\u4ee3\u308f\u308a":[189,172,181,161,97,32,47,101,9,178,188,38,65],engine:[90,12,122,153,161,32,47,48,169,18,176],"/vdw":[74,3,130],"_tokenizer":[],"_value":[],"_tokenized":[90,133],"case":[40,12,122,10,139,64],"\u25cb\u25cb":124,"\u30ed\u30ae\u30f3\u30b0":16,shops:144,"\u975e\u63a8\u5968":7,"\u53d7\u3051":[75,3,91,172,125,54,7,9,96,134,80,150],"\u305f\u3068\u3048":70,saerc:[153,18],"\u559c\u3073":[87,119],archive:[],html:[],"\u5831\u4ee5":90,"\u516c\u5f0f":[27,129,164,115],events:54,"\uff08romaji":176,status:[],downloads:101,"[\u8a9e":126,"\u7d4c\u7531":[73,145,151,6,167,154,72,7,126,8,155,140,157,159,190,105,37,82,80,107],"\u8907\u6570":[],"-jemalloc":80,without:[48,9,32],"[geo":[27,125],"\u30d1\u30bf\u30fc\u30f3":[135,178,181,150],"/unit":177,"\u4f5c\u6210\u6e08":97,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],unicode:189,"\u3088\u304b\u3063":70,"\u5408\u7406":38,"\u53ef\u5426":3,"\u5c11\u3057\u9055\u3044":108,except:139,blog:[70,182,78,3],"\\'":[97,181],"\\%":101,"\\\"":[109,161,144,32,47,58,182,84,178],"\u9577\u65b9\u5f62":27,hino:125,"\u63a2\u3059":[78,38],"\\(":181,"/base":151,"\\\\":[38,161,84,182,178],")..":151,"\u4f1d\u7d71":132,accepted:103,"\u3068\u304a\u308a":[13,66,74,167,130],"\\u":38,"\\z":[38,178],"\\a":[38,178],"\\n":178,"*mutex":40,"_send":[17,106,16],"-mm":[148,150],"_host":167,"\u985e\u7d39":70,"\"groonga":[108,150,85,32,169,182,65],frees:40,automake:154,"[snippet":[32,80],"@uzulla":27,"_unlink":[79,16],mooz:27,"\u4e09\u3064":[75,144],o0:[],"/eval":147,"\u5f0f\u96c6\u5408":178,"\uff08personal":[],"\u30b9\u30da\u30a4\u30f3":75,tokenbigramsplitsymbolalpha:[],oo:[94,90],on:[40,42,83,12,122,161,32,47,131,113,90,9,110,79,28,106,183,54,119],om:38,ok:170,of:[],"_escalation":[],"\u30e6\u30fc\u30b6\u30fc":[],"\u8a2d\u5b9a\u5024":[165,1],os:[],or:[40,91,12,97,100,103,148,106,108,110,115,113,61,121,122,74,172,127,175,80,181,83,131,136,139,38],tokentrigram:[],"_leading":108,"\u5c11\u306a\u3051\u308c":65,"\u5f0f\u5168":[181,150],"\u884c\u76ee":[135,167,151],"\u8a66\u3059\u4f8b":38,"\u30c1\u30e3\u30f3\u30af":[77,126],libmecab:[152,14,151],"{path":188,"\u8a55\u4fa1":[69,150,181,125,182,147,178],there:[139,141,181,85],"\u53d7\u3051\u53d6\u308a":[69,3,9],strict:80,"\u300ccomments":184,"/modules":[154,9],"\u901a\u308a":[92,90,12,95,47,48,100,105,188,122,108,75,150,151,153,14,115,61,106,178,65,23,70,161,182,170,96,78,168,81,181,133,32,109,38],"*escaped":84,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":189,"(location":[44,74,75,184],datasets:186,":set":80,"\u69cb\u7bc9":[],"\u8a9e\u7528":38,"\u4f5c\u3063":[130,70,113,9,63,27,189,176],"\"\u8a9e":38,"/hostname":[167,97],"\u30de\u30fc\u30b8":[7,119],"\u65b9\u5f62":[75,168],mike:170,"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":125,"\u4f5c\u308a":[78,18,176,80,65],"\u4f5c\u308b":[44,108,91,85,184,134,18,178,158,150,119,80,65],"\u30de\u30fc\u30af":38,"\u4f5c\u3089":23,"\u5149\u7537":125,"\u3066\u3057\u307e\u3044":124,"\uff08proc":93,"_type":[],ftp:167,includes:122,included:122,"\u53d7\u3051\u53d6\u3063":132,"\u3002ctrl\u30ad\u30fc":3,"\u30ea\u30bd\u30fc\u30b9":[17,114,80,5],"\u65b9\u5f0f":[132,78,3],":mm":[148,150],"/usr":[188,97],"\u6c17\u306b":[95,79,23,119],"/select":[9,103,102],directory:[40,131,64,172],"4\u3064":[94,32],"+or":178,"\u30c7\u30fc\u30e2\u30f3":[],migrated:[108,181,150],all:[108,110,91,151,35,181,150,48,7,136,148,139,16,121],dist:151,"\u7d1b\u3089\u308f\u3057\u3044":178,executing:[131,16],"\u6761\u4ef6":[],disk:178,"\u306f\u305d\u306e":16,"\u8fd1\u3044\u9806":92,jessie:[125,80],"\u30d3\u30c3\u30c8":[],"\u5b58\u5426":79,"/rab":[74,3,130],init:[7,188,53,80],"\u304a\u5f85\u3061":26,"\u5b9f\u7528":80,".name":[126,182,184],"[logical":77,"[travis":125,"\u95a2\u9023":[],"=message":[],"-word":108,systemctl:141,"***":8,",\"tags":44,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[27,151],"\u8a9e\u7248":151,and:[40,42,12,97,46,48,9,103,148,106,28,108,110,150,115,113,19,61,20,64,163,121,122,125,74,78,79,80,83,131,32,186,136,139,84],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":80,longtext:[45,110],list:[151,64,186,20],"_html":[],"\u304a\u3088\u3073":[3,151,13,132,97,7,188,53],"\u4f4e\u6e1b":[141,154],"\u6d69\u4e8c":7,"<protocol":97,"\u89aa\u5207":154,"{key":108,"\"message":[122,178],yappo:[42,125,80],"\u884c\u3048\u308b":[7,44],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[],"/news":151,tex:90,"/centos":[129,141,151],"_scalar":[91,12,95,46,47,100,109,127,108,75,150,115,114,70,59,157,44,163,23,121,122,161,73,182,170,96,78,178,181,130,184,32,136,139],will:[40,122,79,139],"(packages":151,sub:[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[],sum:[108,80,12],version:[42,3,4,151,172,167,16,82,116,102,27,9],memcached:[],tags:[44,108,85,95,100,105,65],"\u88dc\u5b8c\u8a9e":176,"#worker":9,serihiro:7,"\u6163\u308c":130,allows:32,matsuu:154,"\u65b0\u65e7":77,options:[],gtihub:27,tokenunigram:[],ocelot:[27,125],"\u5358\u7d14":[69,143,168],"\u300c\u697d\u3057":144,"/atv":[74,3,130],"\u69cb\u6587":[],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[82,140],"\u7a4d\u7b97":[108,69],"\u3002ruby":178,"_expire":79,thus:[64,186],"\u305f\u3051\u3069":108,known:12,"\u547c\u3093":[108,130,144,80,5],"\u3002git":151,"\u30d7\u30ed\u30f3\u30d7\u30c8":4,"\u524d\u63d0":[],"_supported":[2,172],"\u89e3\u6790":[],"\u79fb\u884c":[27,11],"_encoding":[],"\u306e\u306b\u5bfe\u3057":16,"=table":65,"\u671f\u5316":[7,16],"\u30ea\u30cd\u30fc\u30e0":27,grndb:[],"\u958b\u767a":[],"\u7406\u7531":[],">\u529b":8,recursive:[104,151],rather:[122,28,12],"&..":102,overcommit:139,disable:[131,27,9],"_text":[133,84,177,80],"\u30ea\u30dd\u30b8\u30c8\u30ea":[],"-max":[131,27,97],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":177,"-munin":[],"-http":[],specifying:[40,12],"\"book":150,":\u79d2":184,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":151,"\u9ad8\u307e\u3063":132,disables:[9,20],developed:163,disabled:148,elfring:7,"\"is":13,"\u30bf\u30a4\u30d7":[108,93,167,77,27,54],"_link":[2,172],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":118,soccer:44,"\u30d6\u30fc\u30ea\u30a2\u30f3":45,"_large":[2,172],"return":[135,148,5,16],"\u52d5\u4f5c":[],"\u6d45\u898b":125,"|info":178,"\u5897\u3048":[147,78,90,178,85],"\u8a71\u984c":26,"-encodiong":150,innodb:132,"_enable":77,"\u8208\u5473":[132,178],"-create":[],"\u5897\u3084":85,weight:[108,121,12,85,13,7],generation:20,"_release":151,"/en":[9,151,20],errror:178,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":14,"\u6c42\u3081":[132,111],"_new":[7,27,134],"/managers":[9,54],"_chunk":77,"\u3072\u3053\u3055\u3093":[7,80],generate:[40,20],thread:[40,83,134,167,136,113,148,121],"\u9855\u8457":38,"\u306b\u3088\u308b":[],"_hash":[],"\u30ab\u30b9\u30b1\u30fc\u30c9":[],"\u5927\u304d":[85,94,7,126,9,65],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":80,"\u5f62\u72b6":92,"${":[108,150,115,139,119,178],"\u306a\u306a\u3069":[181,150],gpl:42,passes:[151,103],"\u5b58\u5728":[1,3,144,141,7,9,108,168,16,113,60,157,63,165,167,125,74,172,96,77,78,79,80,130,132,154,135,34,38],script:[],gpg:151,"\u3050\u3088\u3046":75,"\u60c5\u5831\u540d":105,passed:[83,103,151],recovered:83,gps:132,"\u8a9e\u691c":108,option:[131,148,97,64,20],"$(":[164,152,129,14,89],"/synonyms":175,"[bernard":77,"\u6574\u5408":[1,79],"\u6271\u3048\u308b":[165,125,80],"/*":[141,5,87,165,16,9,119],"\u898b\u308b":[108,2],"double":[77,150],"\u306e\u304b\u308f\u308a":80,"/groonga":[141,3,95,97,7,101,9,10,104,105,188,164,151,87,14,59,61,119,22,24,125,102,172,27,174,175,81,129,131,154,152,139,189,89],"\u307e\u308a":[77,108],"-get":[7,152,14,151,20],",[\"":70,"7e":167,"\u898b\u3066":[135,108,9],"\u307e\u307e":[11,150,130,13,124,125,151,77],"\u898b\u3064":[7,153,154],"/#":17,"\u540dn":[105,108],"\u307e\u3060":[68,11,23,150,153,108,32,125,82,172,147,27,80],"\u307e\u3067":[3,143,94,97,114,108,151,58,19,119,66,69,23,17,167,125,96,78,80,178,130,184],"\u307e\u3059":[0,2,3,4,5,6,7,8,9,10,11,12,87,14,15,16,17,18,19,20,22,23,24,25,27,30,31,32,34,36,37,38,40,41,145,67,45,46,47,48,49,50,51,52,53,54,164,188,58,59,60,61,62,63,64,65,66,44,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,152,88,89,90,91,92,93,94,95,97,26,99,100,101,102,103,104,105,56,107,108,109,111,113,116,114,115,13,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,135,136,137,139,140,141,142,143,144,147,150,151,153,155,157,158,159,160,161,162,163,165,166,167,168,169,170,172,96,174,175,176,177,178,179,180,181,182,184,185,187,189,190,191],"\u307e\u305a":[3,91,130,70,184,144,167,101,9,151,150,78,188,119],"\u307e\u305b":[40,41,141,2,3,91,5,92,94,45,144,97,68,47,136,7,147,90,102,77,120,105,188,54,58,108,75,150,151,85,13,153,190,167,113,16,17,115,59,18,60,19,63,159,95,65,163,49,23,121,70,165,71,166,124,125,114,73,169,170,172,96,27,78,79,175,176,80,178,82,189,181,130,182,132,133,32,135,38,117,119,84,140,9],"_list":[],"\u307e\u305f":[],"\u3058\u304d":32,"\u6c42\u3081\u308b":[132,75,130,168],centos6:7,"\u7279\u5b9a":[],superior:32,"[pat":7,"\u9069\u6642":93,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":78,"\u5024\u6bce":130,"\u306a\u3051\u308c":[41,2,71,95,97,7,100,9,188,58,108,109,150,85,13,113,16,17,59,178,65,23,121,167,73,182,96,79,175,81,181,84],added:[113,42,110],"\u3093\u3057\u304d":158,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,"\u30d5\u30a3\u30eb\u30bf":7,exec:172,customize:9,"\u907f\u3051\u308b":108,"\u30e1\u30fc\u30c8\u30eb":[75,168],"\u89e3\u653e":[82,120,5,16,17,136,63,79,80],nothing:[106,61],"\u9577\u3044":77,"\u73fe\u5b9f":130,"\u307e\u307e\u3067":70,"\u3002id":16,"-oriented":32,"\u9577\u3055":[121,13,62,167,7,113,63,79],orangain:125,"\u624b\u52d5":9,"&query":102,".rb":[68,154,80],"\u304a\u3051":108,"_users":184,"\u304a\u304d":[132,151],"\u304a\u304b":188,"\u304a\u3044":[3,121,151,13,132,125,113,60,27,79,177,119],"\u59cb\u70b9":3,"_call":[2,103,69,172],"_format":[2,172],firewood:[7,125],"\u304a\u3070":[27,1,125],concatinated:131,"-ftp":167,"\u300cnihon":176,"\u4f4e\u6a5f":69,"\u904b\u7528":132,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[],rose:13,"\u629c\u3051\u308b":3,"\u671b\u307e\u3057\u3044":[132,124,151],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":9,longest:113,"\u304a\u3070\u305f":[27,125],"\u305d\u308c":[3,91,45,144,48,101,164,108,109,150,151,13,63,95,119,69,120,70,62,82,78,79,181,130,154,65,38],"\u306b\u304a\u3044":[13,11,151],"\u4fdd\u8a3c":[126,11],armhf:80,"\u6570\u5024":[],"(content":[109,32,12],"\u30b3\u30df\u30c3\u30c8":151,"\u3002the":[],"\u76ee\u4ee5\u964d":108,art:184,tobby:115,dump:[],"]]":[108,131,153,97,58,170,155,167],"][":[181,125,7,77,27,112,80,178],"\u305d\u3046":[100,124,150,96,81],are:[40,108,110,12,85,122,148,32,186,48,136,131,19,61,125,139,28,84,64,119],jemalloc:80,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[167,151,119],"_mutex":40,"]}":[13,126,182],"\u30b9\u30b3\u30a2":[108,69,12,85,70,153,7,131,74,60,77],"]x":184,"\u5897\u3048\u308b":[166,49],libraries:12,"\u547c\u3076\u524d":5,"/non":125,"\u305d\u306e":[],"\u3067\u3088\u308a":80,korea:130,recently:117,creating:139,"\u5927\u91cf":[44,69,3,94,80,65],"\u304a\u3088":19,"\u898b\u3064\u3051\u308b":[108,59,9,189,38,176],"\u304a\u308a":[74,80],solr:150,"\u672a\u521d":7,"\u30c6\u30fc\u30d6\u30eb":[],license:[42,151],"\u8a02\u6b63":175,"]:":178,"]%":178,"]'":[9,54],became:141,context:[84,79,32,9,16],"]\"":[7,184,125,178],"],":[90,3,91,12,95,97,46,47,48,100,102,103,105,127,143,122,114,108,75,150,85,13,153,58,115,59,18,157,166,44,163,49,70,161,167,82,126,74,170,172,96,78,176,178,181,130,182,131,184,133,32,135,109,189,38],"]/":102,"].":[108,80],"])":[67,161,168,19],finds:113,minagawa:125,"\u691c\u7d22id":113,reasons:61,logged:148,improper:172,"\u30b3\u30de\u30f3\u30c9url":54,"_cancel":[],"'alice":181,"\u7d76\u5bfe":[22,174,10],":#{":148,"\u8003\u616e":[70,91],due:32,"\u89e6\u308c\u308b":38,pg:96,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed":9,po:[],kiske:7,"\u3057\u3084\u3059\u304f":7,"\u6574\u5217":[132,3],"(html":109,"\u8a00\u8a9e\u540d":119,"\u7b46\u610f":38,"\u30d8\u30c3\u30c0":[125,80],"\u79d2\u9593":27,"\u5730\u7cfb":75,evaluated:147,"(body":[161,47],"\"sug":169,concurrently:148,"\u5404\u8a9e":126,"\u6027\u5225":132,"_expansion":[],rid:[86,120],"\u30ed\u30fc\u30ab\u30eb":[150,151],"_most":[],"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":[],"\u6210\u679c":[],"*type":121,"/ppa":14,"\u5065\u4f5c":44,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[],"/hoge":97,"_info":[],abcde:133,edge:134,nanoseconds:148,"\\bin":101,"\"alice":181,"\u6b8b\u5ff5":13,"\u9006\u5f15\u304d":[],"\u3067\u304d\u308b":[],tables:[61,186,48,157,139,16],"\u4e92\u63db\u6027":151,"\u3002keys":113,"\u64a4\u5ec3":[154,107,97,80,10],teruya:77,"\u5024\u7528":27,"\u304f\u3060":[141,2,3,143,128,94,45,46,26,136,7,90,101,102,103,10,147,109,188,54,164,108,75,150,85,13,153,14,70,59,19,25,95,65,22,119,68,49,24,165,166,167,125,73,182,74,170,117,77,127,174,80,178,129,181,130,132,133,115,152,184,36,89,38,9],integer:97,"_finalizer":[53,16],"@wareohji":7,tomita:154,ignore:77,"\u6642\u523b":[135,83,184,167,82,18,180],".title":[13,136],"\u7f6e\u304b":[36,188,175,9],"\u7f6e\u304d":[91,151,154,63,79,178],"\u7f6e\u304f":188,"\u7f6e\u3044":[151,80],"\u5404\u8981":85,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[1,189,150,123,16,188,84,80],"/rroonga":80,retry:172,"\u69cb\u6210":[164,129,69,3,151,14,141,152,80],proc:[40,164,108,93,14,129,152,113,53,118],"-drilldown":[108,130,80],"\u5ea6\u5206":45,"_improper":2,"+ffef":38,"{type":131,"\u9577\u751f\u304d":65,"\u5b9f\u73fe":[],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[19,125],"\"service":18,range:[],"lzo\u3044":73,"\u672c\u6587":[78,109],")grn":77,"\u5831\u544a":[],"\u524d\u65b9":[],shimoda:154,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[97,9,80],question:77,"\u7a2e\u5225":133,fast:[135,108,90,181,12,122,161,32,47,58,100,109,78,150],"/hosts":151,"_links":[2,172],"html\u30bf\u30b0":109,files:[],"-query":[141,3,181,184,161,97,32,47,125,7,115,9,148,27,175,80,143],"-host":167,"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":65,aramaki:[27,154],partitioning:23,"_op":[56,84,69],"_or":[],characteristic:122,"\u306b\u3064":7,"_of":[2,172],highlight:[],"_on":[2,172],called:40,"\u63a5\u982d":[27,150,94],associated:40,horikoshi:27,"\u679c\u305f":3,warning:[6,97,122,8,9,148,178],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":85,"\u306b\u5bfe\u3059\u308b":[],oniguruma:77,"\"\\\\":178,tatsuya:7,grn:[],gro:32,newvalue:121,nice:114,users:[],"\u5c5e\u3057":[45,71,130],"\u305f\u3076\u3093":188,generated:[40,186,20],drilldown:[],"\u982d\u8f9e":94,"\u306e\u305e\u3044":38,"\u300d\u3001":[44,80,184],"'grn":123,"\u300d\u3002":158,"\u570f\u5185":184,"\u8868\u3059\u578b":45,"-deafult":27,"\u8aad\u307f\u53d6\u308a":[58,59,97],"-package":[],"\u30b3\u30a2":[188,9,54],"-count":82,"\u958b\u304f\u969b":7,"\u5272\u308a\u5f53\u3066\u308b":[13,94,3,35],issues:80,"\u30b9\u30ad\u30c3\u30d7":[77,125,80],"_pvector":[84,16],"\u8a9e\u6271":144,"\u30ad\u30fc\u30b5\u30a4\u30ba":94,"\u30cb\u30e5\u30fc\u30b9":114,stable:11,include:[142,12,87,122,96,23,80],"\u7e70\u308a\u8fd4\u3057\u6570":167,"=gr":131,"\u30de\u30c9\u30ea\u30fc\u30c9":75,"\"saerch":18,"\u30d7\u30e9\u30b0\u30de":108,"\u306a\u3068\u304d":132,"*user":[40,53],"\u3002run":177,"\u3067\u5024":[97,3],ranguba:[17,80,85],"\"complete":169,"-in":[79,151],"-id":[7,97,103],"_dir":[40,27,151,77],"|correct":153,"_use":[2,172,80,16],".po":[],smaller:[148,85],memset:77,".pc":[27,146],"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":38,"-line":81,"\u3053\u3046\u3059\u308c":124,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[77,78,95,80,125],"\u3002buf":121,etime:179,"\u30a8\u30f3\u30b8\u30f3":[44,108,13,132,97,178],"{time":148,"-exact":82,"\u521d\u56de":119,"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":92,"\u5341\u5206\u6c17":108,larger:[139,64,48],"\u4e0a\u3052\u308b":70,"/coremodule":9,"_name":[],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":97,"\u30c8\u30e9\u30a4":[27,65,181,150,94],">version":4,"\u5206\u6790":132,apple:189,apt:[151,14,7,152,20,81],"*str":[40,84],expect:80,hardy:154,api:[],"_commit":86,"\u5148\u60c5":184,"\u9001\u4fe1":[],use:[],from:[],"\u3057\u307e\u3057":125,usa:130,"\u3057\u307e\u305b":[108,70,124,9,188,176],"\u3057\u307e\u3059":[108,181,184,144,129,169,150],"\u3057\u307e\u3046":[151,132,154,124,125,7,77,27,38,80],usr:[22,174,97,9,10,188,177,89],"\u3057\u307e\u3044":[13,70,18,167,143],"\u4efb\u610f":[3,151,132,45,167,97],start:[114,131,141,23],sort:[77,113],"(keyword":84,"_names":83,tokenbigramignoreblanksplitsymbolalpha:[],"?msg":151,"[args":97,"/index":[97,151,119],"-html":[7,154],"\u30b7\u30fc\u30b1\u30f3\u30b9":[18,176,48],tar:[164,129,151,24,14,152,188,89],"_install":[],tag:[44,108,151,12,122,100,28],tab:106,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":[],"/rpmforge":129,sis:27,united:170,satoh:27,"\u30c0\u30d6\u30eb":[181,94,7,27,150,65],six:[148,3],"\u30d5\u30a3\u30fc\u30eb\u30c9":95,sid:[27,151,80,126],instead:[108,107,97,141,10],"_create":[],"\"rectangle":[7,75,168],"\u30a2\u30af\u30bb\u30b5":79,"\u601d\u3044\u51fa\u3057":108,"_configure":125,"\u30a2\u30af\u30bb\u30b9":[179,108,154,151,13,113,97,19,125,7,59,102,36,27,119,80,9],"\u3042\u308b\u3044":[164,11,121,132,172,181,168,34,113,100,9,69,150,56,80,65],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":125,"$home":151,interrupted:172,"-msgpack":54,"[github":80,freebsd:[],"\u4eac\u90fd":[70,144,38],"#groonga":[184,175],"\u300cbill":144,"/stem":163,"\u5bfe\u8a71":[3,172],"%'":80,"\u7279\u5225":[90,181,2,19,188,84,176,178],"\u30c0\u30f3\u30d7":[7,154,125],"%\"":178,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":151,"/apt":[152,151],"/api":54,restart:141,multithreading:103,"\u3057\u3046\u308b":80,crash:[],"\u30b9\u30ad\u30fc\u30de":[12,47,100,108,75,150,114,115,157,23,122,161,182,109,96,78,178,181,32,170,139,84],"\u30bb\u30af\u30b7\u30e7\u30f3":[90,142,12,133,95,46,48,101,9,103,147,188,50,164,108,75,85,14,58,122,59,18,117,61,178,160,65,162,68,23,121,136,24,185,172,77,127,175,176,80,81,129,181,130,31,135,152,137,139,88,119,89],"\u53c2\u52a0":[88,26],successor:150,articles:78,"_free":40,edit:[],".net":[44,3,151,130,13,26,74,102],"%\\":101,nfs:188,"\u6df7\u305c":[13,153],".overcommit":[],"_zone":9,",\"link":13,"\u5c3a\u5ea6":132,related:139,"\u89e3\u6c7a":[165,124,7,126,27,38],remove:[79,133],out:167,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":184,supports:[40,42,64],dictionary:[189,38],"\u30ec\u30a4\u30e4":69,york:[184,75],"8r":[7,188,97],lts:[14,81],"\u4e00\u90e8":[3,151,72,7,169,38],"\u8ca0\u62c5":124,lte:90,auth:[9,54],"\u304a\u3059\u3059\u3081\u3057":[141,181,151,150],"\u8aac\u660e":[],"\u30ea\u30d3\u30eb\u30c9":77,"1\u305a":[11,60],"\"tags":85,"\u53d6\u308a\u8fbc\u307e":151,"\u53d6\u308a\u8fbc\u307f":27,"_symbolic":[2,172],"\u8d77\u70b9":108,utc:150,"\u78ba\u8a8d":[],"\u6b20\u70b9":132,"_qlog":7,unknown:172,"\u304a\u304b\u3057":154,makefile:151,"\u5207\u308a":[159,27,125,80,151],priority:108,their:[139,12],"1\u3064":[66,90,71,94,95,47,100,9,103,10,147,127,54,108,150,85,153,115,65,22,44,68,167,124,125,169,172,27,78,80,178,181,182,84,32,136,184,38,117],"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":97,developer:184,"\u3082\u3057\u304b\u3057":38,"\u7279\u5316":[150,119],"_custom":12,"\u30d5\u30a9\u30eb\u30c0\u30fc":101,"-jumandic":164,"\u64a4\u53bb":27,"\u9ad8\u3044\u9806":3,"\u89e3\u6d88":[1,79,85,125,77,37],"_unsupported":2,"\u51fa\u73fe":[121,132,95,99,153,77],".grn":[9,157],"\u9001\u308a\u65b9":[],"\u884c\u6307\u5411":132,"\u30ab\u30bf\u30ab\u30ca":[63,153,189,38,176],"_ql":80,"\u76ee\u304f\u3089\u3044":65,"_expanders":[22,174,175,10],"=complete":131,"\u6f22\u5b57":38,which:[40,131,97,64],"\u4eee\u60f3":[74,125,130],"#inspect":77,"\u901f\u3084\u304b":11,who:[],".travis":81,"\u7d44\u8fbc\u578b":[],"class":[161,109,32,47],"_build":177,"\u73fe\u5728":[99,92,180,3,83,151,132,167,16,17,179,59,117,184,190,120,79,53,65],"_delimited":42,"/docs":9,"_is":[2,135,172,103,77,27,79],gronga:[169,175],"_ip":[102,172],"_io":80,"_in":[],"_ii":[],"-output":[108,109,161,167,32,47,125,7],"_id":[40,41,108,3,121,151,86,112,113,16,120,74,60,103,35,63,27,79,84,80,150],"_delimiter":[90,133],"\u6307\u3057":13,"\u5bfe\u8c61object":[41,83,93,79,53,118,121],"\u5c02\u7528":[172,187,102,151,119],",\n#":[44,108,90,3,181,12,85,13,184,46,115,74,102,38,150],"<limit":97,"\u5bfe\u8c61":[90,3,144,47,100,145,103,71,56,54,107,108,11,151,153,16,58,115,113,155,177,157,63,134,65,44,69,120,121,70,161,72,73,170,27,78,79,112,80,181,179,83,119,132,32,184,188,37,84],"\u3044\u308d\u3044\u308d":[],cache:[],"\u30b7\u30a7\u30eb":[77,188,167,181,178],daiki:[7,154,146],"*newvalue":121,he:38,local:[97,157],"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":188,"\u4ed8\u3051\u308b":[163,3,91,134,189,150],"!condition":150,"!xxx":80,"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":80,nvars:53,",\n{":[163,189,23,181,12,85,122,153,176,108,48,18,100,182,9,178,150,78,130,115,143],subrecord:125,words:[150,12],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":1,"\u3070\u3044\u3051":[41,108,188,71,121,85,175,95,181,113,81,16,7,182,59,9,178,150,79,84,65],"(column":[12,161,32,47,96,80],",\n[":[32,157],",\n]":[70,182,74,143],candidate2:153,candidate1:153,queries:[167,32],view:131,"&arg":178,"\u304b\u304e\u308a":167,fullwidth:77,module:12,"\uff08\u578b":62,"\u884c\u6570":27,acquires:19,still:103,"\"table":97,dll:[7,27,80],"\u6b66\u8005":77,"\u30ea\u30c8\u30e9\u30a4":19,".askmonty":80,"\u4e43\u6bc5":154,job:167,homebrew:[],"\u3084\u305d\u306e":170,commands:35,april:151,"/local":[188,9,151],"\"double":150,"\u672a\u5bfe":7,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[7,36,154,97],"-text":38,"_var":[40,62,84,53,80],"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[188,101],table:[],"\u671f\u5f85":[13,132,38,178],rpm:[164,129,151,154,125,7,27,80],"\u304a\u3059\u3059\u3081":[100,54],"\u30b5\u30d6\u30bb\u30c3\u30c8":[45,113],"=gro":131,"\u9bae\u5ea6":114,"_refused":[2,172],"\u78ba\u5b9f":18,porting:42,"\u521d\u671f\u5024":179,"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":7,"\u5927\u6587\u5b57":[3,80,65],"\u96a3\u308a\u5408\u3063":38,sufficient:40,spammer:[122,12],"-cache":[97,125],hmm:184,"\u77e5\u3089":38,"\u5024\u578b":13,"\u672a\u5b9a":13,"\u4f4f\u6240":7,cursor:[63,110,120],"\u793a\u3059":[2,143,12,47,100,105,54,108,75,150,13,58,115,122,161,182,109,96,168,181,32,135,34,170],"\u793a\u3055":105,"\u793a\u3057":[92,2,23,130,12,70,30,133,82,75,100,102,51,3,78,38,151,172],"\u3072\u308d\u3086\u304d":143,"-debug":[154,151],"*src":113,avg:[179,108,80],"\u8fd4\u4fe1":[184,78,124],uptime:[1,3,4,172,82,102,9],"\u5185\u90e8":[82,151,13,86,32,16,17,113,77,79,112,80],"\u578b\u304b":45,"\uff08longest":[27,150],"\u6ce8\u610f":[108,109,3,181,130,85,13,167,125,70,113,9,151,143,27,150,54,65],gets:40,"\u691c\u7d22key":113,"\u6587\u8108":182,"\u5168\u6587\u691c":[],"\u6642\u70b9":[17,11,151,123,16,7,19],"\u3075\u306a\u3068":80,english:[108,26,20],uzulla:27,"\uff01:":188,"@kiske":7,"\u521d\u671f\u5316":[7,77,53,5,16],tcp:97,")=":165,"_device":[2,172],"(windows":167,"\u5236\u7d04":66,"\u898b\u76f4\u3057":80,"(name":40,unsigned:[40,121,86,17,113,62,63,79,84,53,80],"\u627f\u8a8d":80,other:[40,83,136,19,64,121],"\u9ad8\u7cbe":132,moritars:78,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[27,188,177,137,119],execute:[131,64,48],"\u300c\uff76":189,"'pid":97,"-inverse":[122,12],know:61,helpful:12,"\u307e\u305f\u3044":[7,75],earch:90,";rroonga":[161,47],james:143,"_threshold":[],"\u307e\u305f\u3050":[],"\u306a\u304b\u3063":[108,11,3,150,115,6,97,155,72,7,70,8,145,182,96,167,77,190,80,107],"_push":69,because:[4,12,122,48,131,9,139],sequence:[35,186,48,18,153,148,176],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[163,108,80,99],platforms:40,"export":20,vojtovich:80,yyyymmdd:[142,23],"\u30b3\u30e1\u30f3\u30c8":[],"_sortby":[],"_exists":[2,172],"\u306e\u307b\u304b":[13,45],"\u96e2\u308c":74,"\u2192id":94,"\u7d44\u5408":115,"enum":83,"\u884c\u672b":178,"\u7acb\u3061\u4e0a\u304c\u3063":167,"*path":[113,83,121],"\u518d\u691c":158,"\u306e\u3044\u305a\u308c\u304b":[34,113,56,168,62],"\u305d\u308c\u305e\u308c":[90,3,4,94,144,97,188,108,150,151,13,115,113,177,65,69,23,70,74,172,78,79,80,130,135,36],"\u5358\u72ec":[167,121],column:[],universe:14,"\u30fbor":74,".html":[97,9,151,119],"$groonga":151,"\u6570\u5b57":[108,150,70,167,18,178,38,80,65],"_length":[40,172],"\u5b9f\u7a3c":179,transfer:[132,141,172],"\u3002mroonga":[132,79],"*key":113,"var":[40,69,95,97,9,61,188],"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":81,"\u30d5\u30a3\u30eb\u30bf\u30fc":182,palalles:[],"-pid":[27,97,77],"\u30b9\u30cb\u30da\u30c3\u30c8":[32,125],"_term":42,"\u6700\u5f8c":[90,150,151,13,154,167,16,7,70,9,77,38,178],"\u7834\u68c4":[53,16],squeeze:[125,151],palallel:151,"\u30e1\u30f3\u30d0":113,"\u56fa\u6709":[93,85],whether:[127,79,83,61],record:[75,3,12,85,13,122,113,110,102,28],"\u30ed\u30b0\u30a4\u30f3":151,"\u4e00\u9577":132,"\u6c7a\u5b9a":108,blogs:70,"\u305d\u308c\u3086\u3048":[13,181],"\u7a4d\u7528":108,"8bit":45,"\u7acb\u5834":88,"\"se":176,executes:[131,97],"@github":151,"\u52a0\u3048":[13,69,143,81],"(null":80,book:150,bool:[163,181,13,45,125,46,34,168,143],"-analyzer":[7,27],er:178,"\u306f\u307e\u305a":151,".gpg":151,"-sortby":125,".location":184,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":154,debian:[],space:[40,178,181,85],emerg:[6,8],"\u5909\u66f4\u70b9":[],"\u306f\u307e\u3060":[59,54]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C \u306e\u95a2\u6570"],"2":["c","type","C \u306e\u30c7\u30fc\u30bf\u578b"],"3":["c","macro","C \u306e\u30de\u30af\u30ed"],"4":["c","member","C \u306e\u30e1\u30f3\u30d0\u5909\u6570"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/api/overview","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","news/1.2.x","reference/scoring_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/tokenizers","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/normalizer_list","reference/suggest","server/memcached","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/api/grn_type","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/column","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","news/4.x","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/api/grn_expr","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/scorers/scorer_tf_idf","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","reference/tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/table_remove","news/1.1.x","reference/commands/ruby_eval","reference/log","reference/columns/scalar","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/commands/plugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","tutorial/micro_blog","reference/operations","reference/executables/groonga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","7.2. \u51fa\u529b","7.20.1. \u6982\u8981","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","2.1.2\u30ea\u30ea\u30fc\u30b9 - 2013/01/29","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","2.4. Ubuntu","12.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. \u88dc\u6b63","7.20.2. \u5168\u4f53\u8a2d\u5b9a","12.2.1. Introduction","8. \u4ed5\u69d8","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011/12/29","&lt;no title&gt;","7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7","7.20. API","7.3. \u30b3\u30de\u30f3\u30c9","7.14.13. snippet_html","5. \u30b5\u30fc\u30d0\u30fc","7.14.5. geo_in_rectangle","7.3.3. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","7.4. \u30c7\u30fc\u30bf\u578b","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. \u63d0\u6848","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","7.16. \u30b5\u30b8\u30a7\u30b9\u30c8","5.4. Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. \u6bd4\u8f03","Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. \u64ec\u4f3c\u30ab\u30e9\u30e0","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. \u5236\u9650\u4e8b\u9805","7.14.12. rand","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.6. \u30ab\u30e9\u30e0","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6","7.14.3. geo_distance","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","\u304a\u77e5\u3089\u305b","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","4.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-01-29","11.1. Travis CI","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.20.11. grn_expr","7.6.2. \u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0","7.20.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","2.2. Mac OS X","7.3.41. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.15.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.20.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. \u30c6\u30fc\u30d6\u30eb","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","7.14.1. between","7.1.3. groonga\u30b3\u30de\u30f3\u30c9","5.2.3. groonga-httpd","4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210","7.14.9. in_values","2.1. Windows","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.20.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012/01/29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.14.11. query","7.20.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. \u56fd\u969b\u5316","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","3.1.2\u30ea\u30ea\u30fc\u30b9 - 2014/01/29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","7.1.8. groonga-suggest-httpd","1. Groonga\u306e\u7279\u5fb4","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. \u51fa\u529b\u5f62\u5f0f","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","7.6.4. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0","7.19. Tuning","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","8.2. \u691c\u7d22","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.18. Log","7.6.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0","7.12.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.12. grn_expr","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. \u95a2\u6570","7.14.6. highlight_full","11. \u958b\u767a","7.9. \u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc","2.6. Fedora","10.2. mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.1. \u306f\u3058\u3081\u306b","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.1. GQTP","5.2.2. groonga","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. \u88dc\u5b8c","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. \u6b63\u898f\u8868\u73fe","7.1.2. grnslap","7.14.10. now","7.12.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587","7.14.14. sub_filter","7.11.3.1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","7.15. \u64cd\u4f5c\u65b9\u6cd5","7.1.7. groonga-suggest-create-dataset","6. \u30af\u30e9\u30a4\u30a2\u30f3\u30c8","2.8. \u305d\u306e\u4ed6","7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[97,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[79,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[83,1,1,"c.grn_db_create"],grn_plugin_charlen:[40,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[93,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[79,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[63,1,1,"c.grn_table_cursor_close"],"-P":[179,0,1,"cmdoption-P"],grn_table_cursor_set_value:[63,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[84,1,1,"c.grn_expr_syntax_escape"],"-e":[97,0,1,"cmdoption-e"],"-d":[64,0,1,"cmdoption-d"],"-a":[97,0,1,"cmdoption-a"],"-c":[97,0,1,"cmdoption-c"],grn_obj_set_info:[41,1,1,"c.grn_obj_set_info"],"-m":[179,0,1,"cmdoption-m"],"-l":[64,0,1,"cmdoption-l"],"--disable-max-fd-check":[131,0,1,"cmdoption--disable-max-fd-check"],"-i":[167,0,1,"cmdoption-i"],"-h":[97,0,1,"cmdoption-h"],grn_db:[83,2,1,"c.grn_db"],"-t":[131,0,1,"cmdoption-t"],grn_command_version:[116,2,1,"c.grn_command_version"],grn_obj_set_element_info:[41,1,1,"c.grn_obj_set_element_info"],"-p":[131,0,1,"cmdoption-p"],"-s":[64,0,1,"cmdoption-s"],"-r":[64,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[40,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[97,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[116,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[97,0,1,"cmdoption--config-path"],grn_table_size:[113,1,1,"c.grn_table_size"],"--query-log-path":[97,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[79,1,1,"c.grn_obj_defrag"],db:[167,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[63,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[123,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[79,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[86,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[79,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[110,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[113,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[121,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[79,1,1,"c.grn_obj_unlink"],grn_obj_id:[79,1,1,"c.grn_obj_id"],grn_obj_set_value:[79,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[40,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[123,2,1,"c.grn_encoding"],grn_proc_create:[53,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[40,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[121,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[64,0,1,"cmdoption--log-base-path"],"--dir":[167,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[79,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[113,2,1,"c.grn_table_group_result"],grn_expr_close:[84,1,1,"c.grn_expr_close"],grn_obj_path:[79,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[83,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[110,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[79,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[113,1,1,"c.grn_table_lcp_search"],grn_table_create:[113,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],"--address":[97,0,1,"cmdoption--address"],"--daemon":[64,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[79,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[113,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[97,0,1,"cmdoption--pid-path"],"--encoding":[97,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[113,1,1,"c.grn_table_delete_by_id"],grn_content_type:[106,2,1,"c.grn_content_type"],grn_plugin_mutex:[40,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[84,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[86,2,1,"c.grn_ii_buffer"],"--host":[167,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[53,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[118,1,1,"c.grn_obj_user_data"],grn_obj_lock:[79,1,1,"c.grn_obj_lock"],grn_obj_name:[79,1,1,"c.grn_obj_name"],"--log-path":[64,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[121,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"--log-output-dir":[167,0,1,"cmdoption--log-output-dir"],GRN_OBJ_COMPARE:[79,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[84,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[40,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[79,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[63,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[84,1,1,"c.grn_expr_alloc"],grn_expr_compile:[84,1,1,"c.grn_expr_compile"],grn_user_data:[118,2,1,"c.grn_user_data"],grn_obj_get_range:[79,1,1,"c.grn_obj_get_range"],grn_table_get:[113,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[110,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[97,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[86,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[79,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[113,2,1,"c.grn_table_sort_key"],grn_obj_rename:[79,1,1,"c.grn_obj_rename"],grn_table_group_flags:[113,2,1,"c.grn_table_group_flags"],grn_obj_check:[79,1,1,"c.grn_obj_check"],grn_table_at:[113,1,1,"c.grn_table_at"],grn_column_name:[121,1,1,"c.grn_column_name"],grn_table_difference:[113,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[131,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[40,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[79,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[121,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[113,1,1,"c.grn_table_truncate"],grn_obj_get_value:[79,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[97,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[93,1,1,"c.grn_obj_delete_hook"],"-n":[97,0,1,"cmdoption-n"],"--port":[131,0,1,"cmdoption--port"],grn_ii:[86,2,1,"c.grn_ii"],"--ftp":[167,0,1,"cmdoption--ftp"],grn_obj_is_locked:[79,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[84,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[40,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[64,0,1,"cmdoption--log-level"],grn_table_rename:[113,1,1,"c.grn_table_rename"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[40,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[116,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[40,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[41,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[56,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[84,1,1,"c.grn_expr_append_const_str"],script:[167,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[40,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[116,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[84,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[40,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[93,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[40,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[120,1,1,"c.grn_index_cursor_open"],grn_proc_func:[53,2,1,"c.grn_proc_func"],grn_db_create_optarg:[83,2,1,"c.grn_db_create_optarg"],grn_column_table:[121,1,1,"c.grn_column_table"],grn_table_add:[113,1,1,"c.grn_table_add"],grn_obj_unlock:[79,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[53,2,1,"c.grn_proc_type"],grn_proc_get_info:[53,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[79,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],grn_ctx:[16,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[121,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[63,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[79,1,1,"c.grn_obj_get_values"],grn_column_rename:[121,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[79,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[41,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[167,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[40,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[63,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[63,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[83,1,1,"c.grn_db_open"],grn_column_index:[121,1,1,"c.grn_column_index"],"--n-threads":[131,0,1,"cmdoption--n-threads"],"--help":[97,0,1,"cmdoption--help"],"--groonga":[167,0,1,"cmdoption--groonga"],grn_table_setoperation:[113,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[121,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[79,3,1,"c.GRN_OBJ_SET"],"--document-root":[97,0,1,"cmdoption--document-root"],grn_info_type:[41,2,1,"c.grn_info_type"],grn_column_truncate:[121,1,1,"c.grn_column_truncate"],grn_obj:[79,2,1,"c.grn_obj"],grn_obj_remove:[79,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[40,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[79,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[84,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[84,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[86,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[110,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[86,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[56,1,1,"c.grn_obj_search"],"--send-endpoint":[64,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[113,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[93,2,1,"c.grn_hook_entry"],grn_expr_append_op:[84,1,1,"c.grn_expr_append_op"],grn_geo_point:[110,2,1,"c.grn_geo_point"],grn_table_cursor_table:[63,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[120,1,1,"c.grn_index_cursor_next"],grn_table_delete:[113,1,1,"c.grn_table_delete"],dest:[97,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[40,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[121,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[79,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[97,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[63,1,1,"c.grn_table_cursor_delete"],grn_type_create:[62,1,1,"c.grn_type_create"],grn_obj_path_by_id:[79,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[40,1,1,"c.grn_plugin_command_create"],grn_db_recover:[83,1,1,"c.grn_db_recover"],grn_builtin_type:[62,2,1,"c.grn_builtin_type"],grn_table_get_key:[113,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[79,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[84,1,1,"c.grn_expr_create"],grn_get_default_command_version:[116,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[84,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[123,1,1,"c.grn_encoding_parse"],grn_column_create:[121,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[113,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[93,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[123,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[116,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[40,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[123,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[64,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[113,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[40,1,1,"c.GRN_PLUGIN_FIN"],command:[97,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[40,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[40,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[83,1,1,"c.grn_db_touch"],grn_table_update:[113,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[83,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[83,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"_pat":94,"\u53c2\u7167\u578b":85,senna:42,"\u6539\u826f":[1,42,154,125,146,7,77,27,112,80],"\u7b26\u53f7":150,"\u6d41\u308c":119,"-prefix":188,prefix:69,per:139,"\u6761\u4ef6":[74,109,108,151,181],query:[115,108,172,148],"=number":188,keywordn:161,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":102,"_filters":[90,65],"\u30d3\u30c3\u30c8":150,"\u7279\u5fb4":[132,94],ruby:[147,68],"-release":151,"\u901a\u4fe1":134,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[131,97,4],to:[131,35],"_column":121,snippet:32,"\u524a\u9664":170,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":177,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[167,39],"-lz4":188,string:[46,90,133],groonga:[55,141,42,151,186,131,132,134,97,98,69,171,9,173,36,88,64,167,119],"\u95a2\u9023":[78,108,9,15,64],"=message":188,"\u304a\u6c17":184,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[179,167],"_database":9,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[175,177,137,20],"\u52d5\u4f5c":[177,18,176,151,48],"\u30b9\u30af\u30ea\u30d7\u30c8":[150,151],"_or":96,"\u3068\u3057\u3066":45,"\u3065\u3051":11,gnu:152,"-escalation":188,"\u6761\u4ef6\u5f0f":181,"\u7c21\u5358":108,"\u30aa\u30d7\u30b7\u30e7\u30f3":[179,167,186],".po":119,"\u8ad6\u7406\u548c":181,"\u4ed8\u4e0e":78,"\u771f\u507d\u5024":[13,150],"-benchmark":167,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":163,"\u6f14\u7b97\u5b50":150,"_cursor":[63,120],"_remove":[145,72],"\u7701\u7565":[46,75,142,131,133,115,90,23],sub:182,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":151,"\u53c2\u8003":[2,6,94,95,68,47,46,90,103,10,147,107,108,153,190,58,115,155,158,166,65,22,163,49,122,161,182,170,117,76,174,175,35,133,32,186,135,8,189],"\u30ea\u30c6\u30e9\u30eb":150,"\u6210\u529f":135,"new":59,tips:151,"\u683c\u7d0d":45,memcached:51,body:135,xml:135,"\u6587\u6cd5":74,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":181,"\u30c6\u30b9\u30c8":177,"\u30bf\u30b0":44,"\u9069\u7528":85,"\u3042\u308a":[181,150],ubuntu:14,"\u6e96\u5099":[91,151],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":54,"\u306b\u95a2\u3059\u308b":45,"\u95a2\u4fc2\u5f0f":69,"\u4e26\u5217":151,"_key":[94,142,23],"\u63d0\u4f9b":124,"\u4e3b\u30ad\u30fc":[45,143],blogroonga:151,"_version":[116,11],"_name":[136,59,161,127],"_output":108,"\u5165\u6f14":150,"_info":41,changes:42,options:[131,97,64],"\u7ffb\u8a33":[151,119],"\u30af\u30a8\u30ea":[132,69,91],"\u30de\u30c3\u30c1":150,tokenunigram:38,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":9,logical:[142,23],"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[88,15],"\u6587\u5b57\u5217":[13,150],api:[87,30],"_table":[63,142,113,69,23],select:108,"\u6982\u8981":[2,12,6,90,9,10,11,5,190,16,17,19,86,106,22,23,25,32,8,35,37,38,40,41,145,163,47,53,110,58,59,61,63,64,65,68,49,72,73,75,76,79,82,83,93,94,95,97,100,103,105,56,107,108,109,85,116,115,113,118,120,121,122,161,126,127,131,132,133,135,136,139,140,142,147,149,153,155,157,159,123,46,62,166,170,117,96,174,175,178,182,183,138,189],"\u9001\u4fe1":102,use:161,"\u69cb\u6587":[90,142,6,95,97,46,47,100,145,103,10,147,105,107,108,75,150,153,190,58,115,59,155,61,166,159,65,22,68,49,23,157,161,72,73,126,170,117,96,76,127,174,178,82,181,182,133,32,136,8,109,37,140],"\u624b\u9806":151,zip:101,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,"\u30d5\u30ec\u30fc\u30ba":181,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":132,"\u305f\u3081":[108,69,124],https:54,tokenize:90,scope:182,"_flags":108,"\u3066\u308b":184,"\u60c5\u5831":[92,132,124,74,171,184,177],"\u30d6\u30ed\u30b0":151,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":29,"\u3059\u308b":[0,151,130,85,70,165,176,124,48,131,18,9,78,64,177],normalizer:[90,161,49,133,65],"\u7d4c\u7def\u5ea6":13,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":150,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":151,"\u5f15\u6570":[90,142,6,95,97,46,47,136,8,145,109,103,147,105,107,108,75,111,153,58,115,59,155,157,190,159,64,65,67,68,23,167,161,72,73,126,170,117,96,127,168,179,82,182,131,133,34,100,139,37,140],"_register":22,"\u3053\u3068":151,"_base":9,"_command":116,homebrew:[151,89],"_escape":161,"\u4ee5\u4e0b":181,"\u4ee5\u4e0a":[181,150],"\u30b8\u30aa\u30b5\u30fc\u30c1":44,"\u8d77\u52d5":[141,102,172],"\u3060\u3051":[124,85],"\u524d\u63d0":151,install:188,clearlock:107,"\u89e3\u6790":177,"\u7de8\u96c6":119,"\u6bd4\u8f03":[150,54],"_encoding":123,"\u304c\u3063":78,process:[139,148],lock:136,"_idf":122,"in":[100,42],shard:[142,23],"_install":188,"/linux":152,"\u660e\u793a":151,"\u3053\u3061\u3089":124,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":150,grndb:61,"\u958b\u767a":[162,171,124],"\u548c\u4ee3":150,normalize:133,"\u7406\u7531":124,sphere:75,tokendelimit:38,"\u540d\u524d":[179,67,180,111,45,167,186,34,60,36,168],"\u691c\u51fa":177,normalizernfkc:189,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":101,how:35,"\u548c\u6f14":150,"\u52d5\u7684":114,"\u8fd1\u508d":150,"\u30b3\u30de\u30f3\u30c9":[3,97,31,102,61,36],"_create":[73,9,65],"-gqtp":141,"\u7d42\u4e86":[141,9,172],tokenregexp:38,"_proc":53,max:[142,96,23,117,139],clone:119,"\u4e57\u7b97":150,mac:89,callback:69,offset:[108,142],"\u6642\u9593":[184,150],"\u7f72\u540d":151,data:[9,64],"\u30da\u30fc\u30b8\u30f3\u30b0":108,"\u8a2d\u5b9a":[151,131,19,9,54,81],status:[82,172,186],"-munin":188,"\u66f8\u5f0f":[179,67,180,3,111,131,167,34,9,36,168,64],tokenbigram:38,"-http":141,register:10,"-files":151,"\u7d22\u5f15":132,"\u9078\u629e":178,"_values":100,"\u30a4\u30f3\u30dd\u30fc\u30c8":151,"\u8ee2\u7f6e":132,order:142,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":156,"\u30c4\u30a4\u30fc\u30c8":124,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[55,15,151],rand:67,grntest:151,"\u30d1\u30c8\u30ea\u30b7\u30a2":143,"\u623b\u308a\u5024":[90,142,6,95,46,47,100,145,103,10,147,105,107,75,153,190,58,115,59,155,157,166,159,65,22,68,49,23,161,72,73,126,170,117,96,76,127,174,82,182,131,133,32,136,8,109,37,140],"\u305f\u3044":151,gqtp:[141,134,172,128],"\u6d6e\u52d5":150,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":149,"_api":69,"_match":25,"_rename":59,"\u6587\u66f8":[18,150],"=platform":188,html:[109,119,20],"\u63a5\u7d9a":172,tsv:[135,175],"\u4ee5\u4e0b\u6f14":150,cutter:[177,151],"\u57fa\u672c":[3,150],greater:69,"\u30d7\u30ed\u30c8\u30b3\u30eb":172,http:[36,141,191,4,102],"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":190,"\u9664\u7b97":150,not:69,"\u8a8d\u8a3c":54,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":102,now:180,"\u5c0f\u306a\u308a":[181,150],"\u90e8\u5206\u4e00\u81f4":[],"_select":69,"-pack":188,name:[59,65],edit:111,"-encoding":188,"\u66f4\u65b0":[132,176,151,119],kern:139,token:[90,65],mode:[46,90,69],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[138,3],".overcommit":139,"\u767b\u9332":0,"-create":186,"\u4e26\u3079":3,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":94,normalizerauto:189,"\u751f\u6210":[119,151,20],"\u74b0\u5883":[177,151],"\u5b9f\u4f8b":69,"\u9032\u3081":124,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":43,"\u30d8\u30c3\u30c0\u30fc":172,todo:[115,32],"\u9001\u308a\u65b9":[0,119],"-match":188,"\u30ab\u30d0\u30ec\u30c3\u30b8":177,"\u7def\u5ea6":132,"-default":188,"\u90e8\u5206":144,red:151,rk:[],"_content":106,"\u6307\u5b9a":[75,3,181,151,45,11,78],nofile:139,"\u30e6\u30fc\u30b6\u30fcid":184,proxy:9,"_string":[115,182],"_tf":[122,183],"\u7d50\u5408\u5f0f":181,"\u4ed5\u69d8":21,"\u4e8b\u9805":[66,45,167],launch:131,"\u53e4\u3044":77,filter:[142,108,23,182],"\u53ef\u80fd":[163,90,23,131,132,133,46,115,75,9,142],period:42,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":132,"_hash":94,"_user":118,assign:35,"\u30d9\u30af\u30bf\u30fc":45,"\u3078\u3068":124,"\u6e1b\u7b97":150,suffix:69,"\u8aac\u660e":[179,67,180,111,45,167,34,60,36,168],"-version":11,number:139,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":184,"\u7d44\u307f\u8fbc\u307f":[97,189,38,12],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":151,open:[139,161],size:172,"\u78ba\u8a8d":[151,119],"\u7d5e\u8fbc":74,dump:157,script:147,introduction:20,"\u30ab\u30b9\u30b1\u30fc\u30c9":170,"\u4fee\u6b63":[1,42,154,125,146,7,77,27,80],"\u5bfe\u7b56":[70,165],"\u6c38\u7d9a":94,"_obj":79,"\u30ea\u30dd\u30b8\u30c8\u30ea":[104,119],"=encoding":188,"\u306f\u3058\u3081":169,tokenizer:[166,90],configure:[188,151,20],"_clear":136,desctipion:186,"\u8ffd\u8de1":0,"=path":188,"\u4e00\u81f4rk":176,"_unregister":174,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":65,target:[136,127,100],"_index":120,"_untag":109,"-log":188,"\u30b9\u30bf\u30a4\u30eb":108,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[13,85],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":9,"\u30c6\u30fc\u30d6\u30eb":[66,3,13,94,45,115,184,78,64,65],"_expander":[115,108],"\u3044\u304f":124,hashtags:184,"\u30a8\u30e9\u30fc":[135,165],"-zlib":188,"\u56fd\u969b\u5316":119,"\u5834\u5408":[135,78,151],recover:61,"_circle":168,"\u3044\u308b":92,"\u7279\u6b8a":167,"\u4e00\u89a7":[184,2,61,29,189],"_list":[166,105,95,49],min:[142,23,96],"\u304b\u3089":[164,129,14,124,152,101,188,89],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":0,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":65,"-with":188,archive:14,"\u7279\u5b9a":[177,151],"\u307e\u3068\u3081":151,"_distance":[75,111],"\u30b0\u30eb\u30fc\u30d7":[178,181,150],mroonga:132,libmemcached:177,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":85,"\u7d22\u7528":[3,99],tokenbigramsplitsymbol:38,"\u30c4\u30fc\u30eb":[188,9,102],"\u7d44\u8fbc\u578b":45,"_pack":188,"\u30b5\u30b8\u30a7\u30b9\u30c8":50,synopstis:186,"_put":8,windows:[101,151],geoindex:184,request:[131,35,103,119],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[108,130],"_in":[34,168],"_ii":86,"\u91cf\u6307\u5b9a\u5b50":178,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":151,"\u30b5\u30fc\u30d0":[132,102,172],"\u30ed\u30fc\u30c9":[184,3,85],"_processes":9,tokenfilterstem:163,"\u3084\u308a":124,"\u5fc5\u9808":[108,75,23,131,95,133,46,115,59,90,103,142,127],"\u30ec\u30b3\u30fc\u30c9":[108,3],"-po":151,"\u5270\u4f59":150,"_calc":108,"\u30d1\u30c3\u30c1":119,"\u304a\u304f":124,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":151,"\u8ffd\u52a0":[189,151,119],solaris:24,"\u88dc\u5b8c":[169,176],"\u3044\u308d\u3044\u308d":13,"\u5c0f\u6570":150,"\u30d1\u30c3\u30b1\u30fc\u30b8":151,ellipsoid:75,"\u4e0d\u7b49\u4fa1":[181,150],grnslap:179,cache:[108,117],"\u9ad8\u5ea6":108,"\u65e5\u6642":13,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":151,"_equal":69,"\u65b9\u6cd5":[11,151,85,70,165,185,48,114,18,88,15,176,177,119],"\u30ea\u30ea\u30fc\u30b9":[1,151,154,125,146,7,77,27,112,80],rectangle:75,"\u4e00\u6642":94,"\u6295\u7a3f":184,"-server":141,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":54,wheezy:152,get:131,db:69,"\u5b66\u7fd2":[131,169,18,176,48],clang:177,"_html":[161,32,47],"_limit":[108,9,117],cannot:165,"\u7b97\u5b50":150,"_eval":147,"\u91cd\u307f":[78,85],geo:[34,75,168],"\u8aad\u307f":176,"-httpd":[131,141,9,98,64],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[11,54],"\u5171\u8d77":[18,176,48],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[70,38],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":2,"_search":56,"\u7d50\u679c":[70,167,3,130],tokenfilterstopword:163,"\u52a0\u7b97":150,"\u6570\u5024":13,contain:69,release:[],"\u64cd\u4f5c":[185,3],"\u3084\u308b":151,"\u69cb\u7bc9":[114,177],"\u5236\u5fa1":150,"\u30b9\u30b3\u30a2\u30fc":108,"\u4ee3\u5165":150,travis:81,arg:69,close:161,news:42,"\u8a00\u8a9e":119,"\u65b0\u898f":151,"\u7528\u79d8":151,"\u30ab\u30e9\u30e0":[66,75,3,130,60,71,78],"\u985e\u4f3c":[18,150],"\u7ba1\u7406":[9,102],"\u30e2\u30b8\u30e5\u30fc\u30eb":9,label:108,"_tokenize":46,between:96,"\u305d\u306e":[188,178],"\u7bc4\u56f2":[3,65],"\u4f4d\u7f6e":[92,11,132,74,75,184],"\u8868\u73fe":[69,181,178,150],"_geo":110,javascript:74,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":132,"\u904e\u53bb":124,key:65,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":167,"\u5373\u6642":132,"\u30b7\u30d5\u30c8":150,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[181,150],"_level":[6,9],"\u6392\u4ed6":150,"\u304a\u77e5\u3089":[77,1,154,146],"\u518d\u8d77\u52d5":141,"\u77e5\u308a":151,"-suggest":[131,64,186],"\u306a\u3057":[150,54],equal:69,"-document":20,"\u30b5\u30fc\u30d0\u30fc":[36,141,33],"\u88dc\u6b63":[169,18],"\u30d1\u30e9\u30e1\u30fc\u30bf":[78,11],"\u306a\u3044":[45,124],"\u975e\u308f\u304b\u3061":144,load:58,"\u8a9e\u5f59":[3,99],ci:81,"\u4f5c\u6210":[184,99,3,151,65],point:75,"\u306a\u306b":38,"\u4fdd\u5b58":[13,65],"\u62bd\u51fa":[150,48],header:135,"\u7f6e\u63db":115,"\u95a2\u6570":[160,150,177],"\u6574\u6570":150,"_cancel":103,path:68,table:[108,145,94,95,46,59,105,65],tokenbigramignoreblanksplitsymbol:38,quit:159,"\u53c2\u7167":[13,132,172,44],tuning:139,"\u6a5f\u80fd":92,"_no":94,"\u30e1\u30e2\u30ea":139,json:[58,135],"\u91cd\u307f\u4ed8\u304d":85,po:151,"\u7528\u3044":[190,74],define:155,"(geopoint":184,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[148,108,175],"-help":188,"_tokenizer":65,"_value":[100,96],"\u5b9f\u884c":[52,69,151,167,9,177],"\u7a2e\u985e":13,"_log":9,"-message":188,"\u5dee\u6f14":150,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[0,26],"}]":108,"\u5168\u4f53":19,"\u30a2\u30f3\u30ab\u30fc":178,plugin:[22,40,174],"\u30a8\u30b9\u30b1\u30fc\u30d7":[181,178],value:[100,65],"\u5236\u9650":[66,130,85,94,45,167,175],cast:57,near:69,"\u306e\u306b":70,"\u691c\u7d22":[44,108,144,3,91,92,70,132,85,48,181,74,18,184,143,150,78,176,65],"\u5f8c\u65b9\u4e00\u81f4":[],"\u30e9\u30a4\u30d6\u30e9\u30ea":[132,188],"\u540c\u3058":70,"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":26,geopoint:184,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":189,"\u6307\u91dd":124,"\u5fc5\u8981":[109,20],vm:139,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":151,"_expansion":108,"\u53d6\u5f97":[3,151],"\u30ec\u30b3\u30fc\u30c9id":94,"\u95be\u5024":70,id:[35,103],".maxfileperproc":139,"\u8a9e\u5f59\u8868":65,"\u5ea7\u6a19\u5024":150,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":151,fedora:164,"\u4f7f\u3044\u65b9":[90,142,4,12,6,95,97,46,47,48,100,145,9,103,10,147,105,107,114,108,75,85,153,190,58,115,59,18,155,61,166,159,64,65,22,68,49,23,157,122,167,161,72,149,73,126,170,117,96,76,127,174,175,176,178,82,182,131,138,133,32,136,8,109,37,140],"_rectangle":34,suggest:153,make:[188,151],"\u4f8b\u3048":124,"\u6210\u679c":119,"-dataset":186,"\u7a4d\u6f14":150,"_filter":[76,182,142],"\u66ff\u3048":3,"-learner":64,messagepack:135,"\u30ad\u30fc\u30ef\u30fc\u30c9":[70,184],".max":139,"_at":183,"\u8a98\u5c0e":124,keys:108,".po\u30d5\u30a1\u30a4\u30eb":119,"null":150,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":9,"\u306b\u3088\u308b":[78,143,130],"\u8ab2\u984c":0,"_columns":[115,78,142,108],"_data":118,"\u64ec\u4f3c":60,"\u5834\u6240":[124,175],"\u5168\u6587\u691c":[3,99],"\u95a2\u4fc2":[44,108,188],database:[131,64],"\u307e\u305f":78,"\u3055\u307e\u3056\u307e\u306a":74,"()":69,flags:[46,90,133,172,65],sortby:108,"\u51fa\u529b":[135,108,3,4,119],gzip:54,the:139,lcov:177,"-localstatedir":188,"_path":[131,9,64],"\u8868\u793a":3,"-platform":188,protocol:172,"-path":188,less:69,"(v":69,"_tagn":161,"\u5229\u7528":[74,163,9],"_ctx":16,"\u5171\u6709":132,"\u9006\u5f15\u304d":44,"\u8fd4\u5024":[67,108,180,111,34,36,168],"\u547c\u3073\u51fa\u3057":150,"\u5f8c\u65b9":[150,181,143],"\u3067\u304d\u308b":[69,124],tokendelimitnull:38,loading:9,"\u8ad6\u7406":[181,150],mmap:165,"\u30bd\u30fc\u30c8":[74,130],defrag:37,"_selector":155,"\u660e\u793a\u7684":75,"\u62e1\u5f35":91,"\u4e00\u81f4":[150,176,144,181,143],match:[115,78,108],hat:151,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":54,"\u7d4c\u5ea6":132,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":132,"\u8ad6\u7406\u7a4d":181,enable:20,"\u9759\u7684":[114,177],"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":20,nginx:9,"_hook":93,"\u30af\u30e9\u30b9":178,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":177,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":187,"\u30bd\u30fc\u30b9":[164,129,14,152,101,188,89],"\u7a4d\u4ee3":150,linux:139,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":51,"\u5354\u529b":124,"\u691c\u7d22\u4f8b":69,"-command":11,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[3,54],"_expr":[69,84,158],adjuster:108,"_threshold":108,"\u4f5c\u696d":151,"\u307e\u305f\u3050":78,"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":102,"\u4ed5\u65b9":119,learning:64,centos:129,twitter:[124,151,26],"-plugins":188,"\u30b7\u30b9\u30c6\u30e0":[0,184],"\u5358\u8a9e":150,"_dat":94,"\u4f7f\u7528":139,"\u5727\u7e2e":54,"\u30b3\u30e1\u30f3\u30c8":184,"_sortby":108,"\u5411\u3051":[171,151],"\u5bc6\u9375":151,"\u66f8\u304d":144,freebsd:139,"\u5f62\u5f0f":[58,135],comments:184,exit:186,allocate:165,"\u30af\u30a8\u30ea\u30fc":[9,29,181],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":141,"\u30d3\u30eb\u30c9":[164,129,151,14,152,101,188,89],"\u5206\u3051":144,run:20,"\u5168\u6587\u691c\u7d22":181,"\u4ed8\u304d":[44,150],"\u3046\u307e\u304f":124,"\u4e0a\u9650":66,"_most":183,"\u4f9d\u5b58":188,"\u5b8c\u5168":144,"\u3042\u308b":184,"\uff08personal":14,"\u5927\u306a\u308a":[181,150],tokenbigramsplitsymbolalpha:38,output:[108,142],"\u96c6\u8a08":132,from:64,post:[9,54],"_auto":9,"\u6319\u52d5":144,by:9,"\u5b9f\u73fe":69,"_border":[142,23,96],"package":14,column:[161,72,47,73,59,96,95],of:139,"_escalation":[25,108],"\u30e6\u30fc\u30b6\u30fc":[184,124],location:75,range:76,"\u30b9\u30c8\u30ec\u30fc\u30b8":132,os:89,"\u524d\u65b9\u4e00\u81f4":[],tokentrigram:38,ppa:14,scorer:[122,183,74,108,12],"_reopen":190,"\u30ea\u30af\u30a8\u30b9\u30c8id":35,"\u5b9f\u9a13":27,domain:130,"\u30ad\u30e3\u30c3\u30b7\u30e5":[108,9],"\u30d5\u30a1\u30a4\u30eb":[52,69,151,20,175,54,119],"_cache":[17,9],"\u5831\u544a":0,"\u524d\u65b9":[150,176,181,143],"\u7279\u6709":9,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":177,log:[6,148,8,190,64],"\u8907\u6570":[78,130,54],"_range":142,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":167,"_prefix":188,"\u5909\u66f4":[70,154,54],"\u30d0\u30fc\u30b8\u30e7\u30f3":[154,1,11,146,151],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":78,redmine:124,"\u30ed\u30b0":190,"\u5c55\u958b":29,"\u7b49\u4fa1":[181,150],"\u63d0\u6848":[131,169,48],"cpu\u30b3\u30a2":54,"_db":83,"\u30d5\u30a9\u30ed\u30fc":184,files:[139,64,186],shutdown:140,tokenbigramignoreblanksplitsymbolalphadigit:38,"_full":161,"\u6027\u80fd":[9,54],memory:165,"\u72ec\u81ea":150,"\u7b97\u8853":150,"with":20,"_load":68,"_types":108,pull:119,"\u5165\u308a":184,"default":[11,65],"\u5426\u5b9a":[181,150],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":151,limit:108,"[$":108,"\u304a\u3055\u3089\u3044":124,highlight:[161,47],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[40,41,5,93,86,106,53,56,116,16,17,113,19,25,118,120,121,62,123,63,110,79,83,84],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":38,similar:69,tokenmecab:38,"delete":170,"\u6587\u5b57":178,"\u611f\u8b1d":[1,154,125,146,7,77,27,112,80],bigram:184,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":151,approximate:75,command:11,"\u69d8\u3005":177,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":184,"\u3067\u304d":45,"\u56de\u907f":165,"\u3054\u3068":78,"\u70b9\u6570":150,check:[126,61],"\u306b\u5bfe\u3059\u308b":78,"\u5bfe\u5fdc":[92,124,54],tokenbigramignoreblank:38,"\u7570\u306a\u308b":70,"_target":108,"\u4ee3\u5165\u5f0f":181,"\u3068\u308a":124,"\u914d\u5217":150,"\u3042\u3052\u308b":70,"\u306e\u307f":[177,151],grn:[41,93,86,106,53,56,116,16,17,113,158,25,118,69,120,121,62,123,63,110,79,83,84],"\u5168\u6587":[70,132,74,3,78],tokenbigramsplitsymbolalphadigit:38,"_type":[75,62,106,172,65],users:184,truncate:127,"\u30c7\u30fc\u30bf":[3,13,184,45,48,176,65],worker:9,"-package":188,"\u30c7\u30d0\u30c3\u30ac":177,update:[151,20],"_query":9,"\u547d\u4ee4":167,"\u65b0\u3057\u3044":119,"_map":139,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":54,"\u4f7f\u3046":[75,9],"\u30b9\u30b3\u30a2\u30e9\u30fc":12,drilldown:108,"-latest":151,"\u3088\u3046":[18,176,48],debian:[152,151],"\u4f5c\u308a\u65b9":85,"_count":[139,23],"\u4f7f\u3044":144,"\u6b63\u898f":[178,181,150],macports:89,"-threshold":188,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[66,44,78,178,114],"_offset":108,queryexpandertsv:175,"_memory":139,"\u5909\u66f4\u70b9":151,oracle:24,"\u539f\u56e0":70,"\u30c7\u30fc\u30e2\u30f3":172,tokenbigramignoreblanksplitsymbolalpha:38}})
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5. サーバー &mdash; Groonga v5.0.0ドキュメント</title>
10
+ <title>5. サーバー &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.0.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,11 +26,11 @@
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.0ドキュメント" href="index.html" />
29
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="index.html" />
30
30
  <link rel="next" title="5.1. サーバーパッケージ" href="server/package.html" />
31
31
  <link rel="prev" title="4.11. クエリ拡張" href="tutorial/query_expansion.html" />
32
32
  </head>
33
- <body role="document">
33
+ <body>
34
34
  <div class="header">
35
35
  <h1 class="title">
36
36
  <a id="top-link" href="index.html">
@@ -48,7 +48,7 @@
48
48
  </div>
49
49
 
50
50
 
51
- <div class="related" role="navigation" aria-label="related navigation">
51
+ <div class="related">
52
52
  <h3>ナビゲーション</h3>
53
53
  <ul>
54
54
  <li class="right" style="margin-right: 10px">
@@ -60,14 +60,14 @@
60
60
  <li class="right" >
61
61
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
62
62
  accesskey="P">前へ</a> |</li>
63
- <li><a href="index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
63
+ <li><a href="index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
64
  </ul>
65
65
  </div>
66
66
 
67
67
  <div class="document">
68
68
  <div class="documentwrapper">
69
69
  <div class="bodywrapper">
70
- <div class="body" role="main">
70
+ <div class="body">
71
71
 
72
72
  <div class="section" id="server">
73
73
  <h1>5. サーバー<a class="headerlink" href="#server" title="このヘッドラインへのパーマリンク">¶</a></h1>
@@ -79,13 +79,14 @@
79
79
  <li class="toctree-l2"><a class="reference internal" href="server/package.html#groonga-server-http">5.1.3. groonga-server-http</a></li>
80
80
  </ul>
81
81
  </li>
82
- <li class="toctree-l1"><a class="reference internal" href="server/gqtp.html">5.2. GQTP</a></li>
83
- <li class="toctree-l1"><a class="reference internal" href="server/http.html">5.3. HTTP</a><ul>
84
- <li class="toctree-l2"><a class="reference internal" href="server/http/comparison.html">5.3.1. 比較</a></li>
85
- <li class="toctree-l2"><a class="reference internal" href="server/http/groonga.html">5.3.2. groonga</a></li>
86
- <li class="toctree-l2"><a class="reference internal" href="server/http/groonga-httpd.html">5.3.3. groonga-httpd</a></li>
82
+ <li class="toctree-l1"><a class="reference internal" href="server/http.html">5.2. HTTP</a><ul>
83
+ <li class="toctree-l2"><a class="reference internal" href="server/http/comparison.html">5.2.1. 比較</a></li>
84
+ <li class="toctree-l2"><a class="reference internal" href="server/http/groonga.html">5.2.2. groonga</a></li>
85
+ <li class="toctree-l2"><a class="reference internal" href="server/http/groonga-httpd.html">5.2.3. groonga-httpd</a></li>
87
86
  </ul>
88
87
  </li>
88
+ <li class="toctree-l1"><a class="reference internal" href="server/gqtp.html">5.3. GQTP</a></li>
89
+ <li class="toctree-l1"><a class="reference internal" href="server/memcached.html">5.4. Memcachedバイナリプロトコル</a></li>
89
90
  </ul>
90
91
  </div>
91
92
  </div>
@@ -94,7 +95,7 @@
94
95
  </div>
95
96
  </div>
96
97
  </div>
97
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
98
+ <div class="sphinxsidebar">
98
99
  <div class="sphinxsidebarwrapper">
99
100
  <h4>前のトピックへ</h4>
100
101
  <p class="topless"><a href="tutorial/query_expansion.html"
@@ -102,14 +103,12 @@
102
103
  <h4>次のトピックへ</h4>
103
104
  <p class="topless"><a href="server/package.html"
104
105
  title="次の章へ">5.1. サーバーパッケージ</a></p>
105
- <div role="note" aria-label="source link">
106
- <h3>このページ</h3>
107
- <ul class="this-page-menu">
108
- <li><a href="_sources/server.txt"
109
- rel="nofollow">ソースコードを表示</a></li>
110
- </ul>
111
- </div>
112
- <div id="searchbox" style="display: none" role="search">
106
+ <h3>このページ</h3>
107
+ <ul class="this-page-menu">
108
+ <li><a href="_sources/server.txt"
109
+ rel="nofollow">ソースコードを表示</a></li>
110
+ </ul>
111
+ <div id="searchbox" style="display: none">
113
112
  <h3>クイック検索</h3>
114
113
  <form class="search" action="search.html" method="get">
115
114
  <input type="text" name="q" />
@@ -126,7 +125,7 @@
126
125
  </div>
127
126
  <div class="clearer"></div>
128
127
  </div>
129
- <div class="related" role="navigation" aria-label="related navigation">
128
+ <div class="related">
130
129
  <h3>ナビゲーション</h3>
131
130
  <ul>
132
131
  <li class="right" style="margin-right: 10px">
@@ -138,10 +137,10 @@
138
137
  <li class="right" >
139
138
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
140
139
  >前へ</a> |</li>
141
- <li><a href="index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
140
+ <li><a href="index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
142
141
  </ul>
143
142
  </div>
144
- <div class="footer" role="contentinfo">
143
+ <div class="footer">
145
144
  &copy; Copyright 2009-2015, Brazil, Inc.
146
145
  </div>
147
146
  </body>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2. GQTP &mdash; Groonga v5.0.0ドキュメント</title>
10
+ <title>5.3. GQTP &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,12 +26,12 @@
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.0ドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
- <link rel="next" title="5.3. HTTP" href="http.html" />
32
- <link rel="prev" title="5.1. サーバーパッケージ" href="package.html" />
31
+ <link rel="next" title="5.4. Memcachedバイナリプロトコル" href="memcached.html" />
32
+ <link rel="prev" title="5.2.3. groonga-httpd" href="http/groonga-httpd.html" />
33
33
  </head>
34
- <body role="document">
34
+ <body>
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../index.html">
@@ -49,19 +49,19 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related" role="navigation" aria-label="related navigation">
52
+ <div class="related">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
56
56
  <a href="../genindex.html" title="総合索引"
57
57
  accesskey="I">索引</a></li>
58
58
  <li class="right" >
59
- <a href="http.html" title="5.3. HTTP"
59
+ <a href="memcached.html" title="5.4. Memcachedバイナリプロトコル"
60
60
  accesskey="N">次へ</a> |</li>
61
61
  <li class="right" >
62
- <a href="package.html" title="5.1. サーバーパッケージ"
62
+ <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
64
+ <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -69,10 +69,10 @@
69
69
  <div class="document">
70
70
  <div class="documentwrapper">
71
71
  <div class="bodywrapper">
72
- <div class="body" role="main">
72
+ <div class="body">
73
73
 
74
74
  <div class="section" id="gqtp">
75
- <h1>5.2. GQTP<a class="headerlink" href="#gqtp" title="このヘッドラインへのパーマリンク">¶</a></h1>
75
+ <h1>5.3. GQTP<a class="headerlink" href="#gqtp" title="このヘッドラインへのパーマリンク">¶</a></h1>
76
76
  <p>TODO</p>
77
77
  <p><a class="reference internal" href="../reference/executables/groonga.html"><em>groongaコマンド</em></a> を参照してください。</p>
78
78
  </div>
@@ -81,22 +81,20 @@
81
81
  </div>
82
82
  </div>
83
83
  </div>
84
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
84
+ <div class="sphinxsidebar">
85
85
  <div class="sphinxsidebarwrapper">
86
86
  <h4>前のトピックへ</h4>
87
- <p class="topless"><a href="package.html"
88
- title="前の章へ">5.1. サーバーパッケージ</a></p>
87
+ <p class="topless"><a href="http/groonga-httpd.html"
88
+ title="前の章へ">5.2.3. groonga-httpd</a></p>
89
89
  <h4>次のトピックへ</h4>
90
- <p class="topless"><a href="http.html"
91
- title="次の章へ">5.3. HTTP</a></p>
92
- <div role="note" aria-label="source link">
93
- <h3>このページ</h3>
94
- <ul class="this-page-menu">
95
- <li><a href="../_sources/server/gqtp.txt"
96
- rel="nofollow">ソースコードを表示</a></li>
97
- </ul>
98
- </div>
99
- <div id="searchbox" style="display: none" role="search">
90
+ <p class="topless"><a href="memcached.html"
91
+ title="次の章へ">5.4. Memcachedバイナリプロトコル</a></p>
92
+ <h3>このページ</h3>
93
+ <ul class="this-page-menu">
94
+ <li><a href="../_sources/server/gqtp.txt"
95
+ rel="nofollow">ソースコードを表示</a></li>
96
+ </ul>
97
+ <div id="searchbox" style="display: none">
100
98
  <h3>クイック検索</h3>
101
99
  <form class="search" action="../search.html" method="get">
102
100
  <input type="text" name="q" />
@@ -113,23 +111,23 @@
113
111
  </div>
114
112
  <div class="clearer"></div>
115
113
  </div>
116
- <div class="related" role="navigation" aria-label="related navigation">
114
+ <div class="related">
117
115
  <h3>ナビゲーション</h3>
118
116
  <ul>
119
117
  <li class="right" style="margin-right: 10px">
120
118
  <a href="../genindex.html" title="総合索引"
121
119
  >索引</a></li>
122
120
  <li class="right" >
123
- <a href="http.html" title="5.3. HTTP"
121
+ <a href="memcached.html" title="5.4. Memcachedバイナリプロトコル"
124
122
  >次へ</a> |</li>
125
123
  <li class="right" >
126
- <a href="package.html" title="5.1. サーバーパッケージ"
124
+ <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
127
125
  >前へ</a> |</li>
128
- <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
126
+ <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
129
127
  <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
130
128
  </ul>
131
129
  </div>
132
- <div class="footer" role="contentinfo">
130
+ <div class="footer">
133
131
  &copy; Copyright 2009-2015, Brazil, Inc.
134
132
  </div>
135
133
  </body>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.3. HTTP &mdash; Groonga v5.0.0ドキュメント</title>
10
+ <title>5.2. HTTP &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,12 +26,12 @@
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.0ドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
- <link rel="next" title="5.3.1. 比較" href="http/comparison.html" />
32
- <link rel="prev" title="5.2. GQTP" href="gqtp.html" />
31
+ <link rel="next" title="5.2.1. 比較" href="http/comparison.html" />
32
+ <link rel="prev" title="5.1. サーバーパッケージ" href="package.html" />
33
33
  </head>
34
- <body role="document">
34
+ <body>
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../index.html">
@@ -49,19 +49,19 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related" role="navigation" aria-label="related navigation">
52
+ <div class="related">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
56
56
  <a href="../genindex.html" title="総合索引"
57
57
  accesskey="I">索引</a></li>
58
58
  <li class="right" >
59
- <a href="http/comparison.html" title="5.3.1. 比較"
59
+ <a href="http/comparison.html" title="5.2.1. 比較"
60
60
  accesskey="N">次へ</a> |</li>
61
61
  <li class="right" >
62
- <a href="gqtp.html" title="5.2. GQTP"
62
+ <a href="package.html" title="5.1. サーバーパッケージ"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
64
+ <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -69,10 +69,10 @@
69
69
  <div class="document">
70
70
  <div class="documentwrapper">
71
71
  <div class="bodywrapper">
72
- <div class="body" role="main">
72
+ <div class="body">
73
73
 
74
74
  <div class="section" id="http">
75
- <h1>5.3. HTTP<a class="headerlink" href="#http" title="このヘッドラインへのパーマリンク">¶</a></h1>
75
+ <h1>5.2. HTTP<a class="headerlink" href="#http" title="このヘッドラインへのパーマリンク">¶</a></h1>
76
76
  <p>Groongaは2つのHTTPサーバー実装を提供しています。</p>
77
77
  <ul class="simple">
78
78
  <li><a class="reference internal" href="http/groonga.html"><em>groonga</em></a></li>
@@ -82,23 +82,23 @@
82
82
  <p><a class="reference internal" href="http/groonga-httpd.html"><em>groonga-httpd</em></a> は <a class="reference external" href="http://nginx.org/">nginx</a> をベースにした実装です。この実装も高速に動作します。しかも多くのHTTPの機能を使えます。</p>
83
83
  <div class="toctree-wrapper compound">
84
84
  <ul>
85
- <li class="toctree-l1"><a class="reference internal" href="http/comparison.html">5.3.1. 比較</a><ul>
86
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#performance">5.3.1.1. 性能</a></li>
87
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#using-multi-cpu-cores">5.3.1.2. 複数CPUコア対応</a></li>
88
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#configuration-file">5.3.1.3. 設定ファイル</a></li>
89
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#custom-prefix-path">5.3.1.4. プレフィックスパスの変更</a></li>
90
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#custom-command-version">5.3.1.5. コマンドバージョンの変更</a></li>
91
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#multi-databases">5.3.1.6. 複数データベース</a></li>
92
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#authentication">5.3.1.7. 認証</a></li>
93
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#gzip-compression">5.3.1.8. gzip圧縮</a></li>
94
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#post">5.3.1.9. POST</a></li>
95
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#https">5.3.1.10. HTTPS</a></li>
96
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#access-log">5.3.1.11. アクセスログ</a></li>
97
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#upgrading-without-downtime">5.3.1.12. ダウンタイムなしでのアップグレード</a></li>
85
+ <li class="toctree-l1"><a class="reference internal" href="http/comparison.html">5.2.1. 比較</a><ul>
86
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#performance">5.2.1.1. 性能</a></li>
87
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#using-multi-cpu-cores">5.2.1.2. 複数CPUコア対応</a></li>
88
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#configuration-file">5.2.1.3. 設定ファイル</a></li>
89
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#custom-prefix-path">5.2.1.4. プレフィックスパスの変更</a></li>
90
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#custom-command-version">5.2.1.5. コマンドバージョンの変更</a></li>
91
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#multi-databases">5.2.1.6. 複数データベース</a></li>
92
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#authentication">5.2.1.7. 認証</a></li>
93
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#gzip-compression">5.2.1.8. gzip圧縮</a></li>
94
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#post">5.2.1.9. POST</a></li>
95
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#https">5.2.1.10. HTTPS</a></li>
96
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#access-log">5.2.1.11. アクセスログ</a></li>
97
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#upgrading-without-downtime">5.2.1.12. ダウンタイムなしでのアップグレード</a></li>
98
98
  </ul>
99
99
  </li>
100
- <li class="toctree-l1"><a class="reference internal" href="http/groonga.html">5.3.2. groonga</a></li>
101
- <li class="toctree-l1"><a class="reference internal" href="http/groonga-httpd.html">5.3.3. groonga-httpd</a></li>
100
+ <li class="toctree-l1"><a class="reference internal" href="http/groonga.html">5.2.2. groonga</a></li>
101
+ <li class="toctree-l1"><a class="reference internal" href="http/groonga-httpd.html">5.2.3. groonga-httpd</a></li>
102
102
  </ul>
103
103
  </div>
104
104
  </div>
@@ -107,22 +107,20 @@
107
107
  </div>
108
108
  </div>
109
109
  </div>
110
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
110
+ <div class="sphinxsidebar">
111
111
  <div class="sphinxsidebarwrapper">
112
112
  <h4>前のトピックへ</h4>
113
- <p class="topless"><a href="gqtp.html"
114
- title="前の章へ">5.2. GQTP</a></p>
113
+ <p class="topless"><a href="package.html"
114
+ title="前の章へ">5.1. サーバーパッケージ</a></p>
115
115
  <h4>次のトピックへ</h4>
116
116
  <p class="topless"><a href="http/comparison.html"
117
- title="次の章へ">5.3.1. 比較</a></p>
118
- <div role="note" aria-label="source link">
119
- <h3>このページ</h3>
120
- <ul class="this-page-menu">
121
- <li><a href="../_sources/server/http.txt"
122
- rel="nofollow">ソースコードを表示</a></li>
123
- </ul>
124
- </div>
125
- <div id="searchbox" style="display: none" role="search">
117
+ title="次の章へ">5.2.1. 比較</a></p>
118
+ <h3>このページ</h3>
119
+ <ul class="this-page-menu">
120
+ <li><a href="../_sources/server/http.txt"
121
+ rel="nofollow">ソースコードを表示</a></li>
122
+ </ul>
123
+ <div id="searchbox" style="display: none">
126
124
  <h3>クイック検索</h3>
127
125
  <form class="search" action="../search.html" method="get">
128
126
  <input type="text" name="q" />
@@ -139,23 +137,23 @@
139
137
  </div>
140
138
  <div class="clearer"></div>
141
139
  </div>
142
- <div class="related" role="navigation" aria-label="related navigation">
140
+ <div class="related">
143
141
  <h3>ナビゲーション</h3>
144
142
  <ul>
145
143
  <li class="right" style="margin-right: 10px">
146
144
  <a href="../genindex.html" title="総合索引"
147
145
  >索引</a></li>
148
146
  <li class="right" >
149
- <a href="http/comparison.html" title="5.3.1. 比較"
147
+ <a href="http/comparison.html" title="5.2.1. 比較"
150
148
  >次へ</a> |</li>
151
149
  <li class="right" >
152
- <a href="gqtp.html" title="5.2. GQTP"
150
+ <a href="package.html" title="5.1. サーバーパッケージ"
153
151
  >前へ</a> |</li>
154
- <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
152
+ <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
155
153
  <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
156
154
  </ul>
157
155
  </div>
158
- <div class="footer" role="contentinfo">
156
+ <div class="footer">
159
157
  &copy; Copyright 2009-2015, Brazil, Inc.
160
158
  </div>
161
159
  </body>