rroonga 4.0.8-x64-mingw32 → 5.0.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (573) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +2 -2
  3. data/doc/text/news.textile +19 -0
  4. data/ext/groonga/rb-grn-exception.c +35 -1
  5. data/ext/groonga/rb-grn-normalizer.c +37 -7
  6. data/ext/groonga/rb-grn-table.c +106 -35
  7. data/ext/groonga/rb-grn.h +3 -2
  8. data/lib/1.9/groonga.so +0 -0
  9. data/lib/2.0/groonga.so +0 -0
  10. data/lib/2.1/groonga.so +0 -0
  11. data/lib/groonga/record.rb +45 -1
  12. data/rroonga-build.rb +6 -5
  13. data/test/groonga-test-utils.rb +9 -0
  14. data/test/test-array.rb +11 -0
  15. data/test/test-exception.rb +3 -1
  16. data/test/test-normalizer.rb +28 -0
  17. data/test/test-record.rb +34 -0
  18. data/test/test-table-group.rb +366 -0
  19. data/test/test-table.rb +0 -182
  20. data/vendor/local/bin/grndb.exe +0 -0
  21. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  22. data/vendor/local/bin/groonga.exe +0 -0
  23. data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
  24. data/vendor/local/bin/libgroonga-0.dll +0 -0
  25. data/vendor/local/bin/libmecab-1.dll +0 -0
  26. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  27. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  28. data/vendor/local/bin/libonig-5.dll +0 -0
  29. data/vendor/local/bin/libstdc++-6.dll +0 -0
  30. data/vendor/local/bin/lz4.exe +0 -0
  31. data/vendor/local/bin/lz4c.exe +0 -0
  32. data/vendor/local/bin/lz4cat +0 -0
  33. data/vendor/local/bin/mecab-config +2 -2
  34. data/vendor/local/bin/mecab.exe +0 -0
  35. data/vendor/local/bin/onig-config +1 -1
  36. data/vendor/local/bin/zlib1.dll +0 -0
  37. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  38. data/vendor/local/include/groonga/groonga.h +2 -1
  39. data/vendor/local/include/groonga/groonga/command.h +79 -0
  40. data/vendor/local/include/groonga/groonga/groonga.h +32 -74
  41. data/vendor/local/include/groonga/groonga/output.h +108 -0
  42. data/vendor/local/include/groonga/groonga/plugin.h +18 -3
  43. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  44. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  45. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  46. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +3 -3
  47. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  48. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  49. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  50. data/vendor/local/lib/groonga/plugins/ruby/eval.la +3 -3
  51. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  52. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  53. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  54. data/vendor/local/lib/groonga/plugins/ruby/load.la +3 -3
  55. data/vendor/local/lib/groonga/plugins/sharding.rb +3 -0
  56. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +157 -0
  57. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +170 -0
  58. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +50 -0
  59. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  60. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  61. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  62. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +3 -3
  63. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  64. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  65. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  66. data/vendor/local/lib/groonga/plugins/table/table.la +3 -3
  67. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  68. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  69. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  70. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +3 -3
  71. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  72. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  73. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  74. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +3 -3
  75. data/vendor/local/lib/groonga/scripts/ruby/command.rb +35 -0
  76. data/vendor/local/lib/groonga/scripts/ruby/{command → command_line}/grndb.rb +1 -1
  77. data/vendor/local/lib/groonga/scripts/ruby/context.rb +29 -8
  78. data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +166 -76
  79. data/vendor/local/lib/groonga/scripts/ruby/database.rb +16 -4
  80. data/vendor/local/lib/groonga/scripts/ruby/error.rb +16 -0
  81. data/vendor/local/lib/groonga/scripts/ruby/index_cursor.rb +18 -0
  82. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +10 -0
  83. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +5 -1
  84. data/vendor/local/lib/groonga/scripts/ruby/plugin_loader.rb +14 -0
  85. data/vendor/local/lib/groonga/scripts/ruby/require.rb +1 -1
  86. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +3 -3
  87. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +4 -2
  88. data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +15 -0
  89. data/vendor/local/lib/groonga/scripts/ruby/writer.rb +21 -0
  90. data/vendor/local/lib/libgroonga.a +0 -0
  91. data/vendor/local/lib/libgroonga.dll.a +0 -0
  92. data/vendor/local/lib/libgroonga.la +3 -3
  93. data/vendor/local/lib/liblz4.a +0 -0
  94. data/vendor/local/lib/liblz4.dll +0 -0
  95. data/vendor/local/lib/liblz4.dll.1 +0 -0
  96. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  97. data/vendor/local/lib/libmecab.a +0 -0
  98. data/vendor/local/lib/libmecab.dll.a +0 -0
  99. data/vendor/local/lib/libmecab.la +2 -2
  100. data/vendor/local/lib/libmsgpack.a +0 -0
  101. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  102. data/vendor/local/lib/libmsgpack.la +2 -2
  103. data/vendor/local/lib/libmsgpackc.a +0 -0
  104. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  105. data/vendor/local/lib/libmsgpackc.la +2 -2
  106. data/vendor/local/lib/libonig.a +0 -0
  107. data/vendor/local/lib/libonig.dll.a +0 -0
  108. data/vendor/local/lib/libonig.la +2 -2
  109. data/vendor/local/lib/libz.a +0 -0
  110. data/vendor/local/lib/libz.dll.a +0 -0
  111. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  112. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  113. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  114. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  115. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  116. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  117. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  118. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  119. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  120. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  121. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  122. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  123. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  124. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  125. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +4 -4
  126. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
  127. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +5 -5
  128. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  129. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  130. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +4 -4
  131. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  132. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +16 -570
  133. data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +5 -4
  134. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +1 -1
  135. data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +686 -0
  136. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +0 -1
  137. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +3 -1
  138. data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +12 -4
  139. data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/index.txt +19 -0
  140. data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/pseudo.txt +2 -2
  141. data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/scalar.txt +19 -0
  142. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +734 -29
  143. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +2 -1
  144. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +8 -7
  145. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +50 -0
  146. data/vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/completion.txt +25 -23
  147. data/vendor/local/share/doc/groonga/en/html/_sources/server/http.txt +1 -1
  148. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +68 -6
  149. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +26 -1
  150. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  151. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  152. data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
  153. data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +10308 -0
  154. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -2
  155. data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
  156. data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
  157. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
  158. data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +999 -0
  159. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  160. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  161. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
  162. data/vendor/local/share/doc/groonga/en/html/characteristic.html +20 -18
  163. data/vendor/local/share/doc/groonga/en/html/client.html +20 -18
  164. data/vendor/local/share/doc/groonga/en/html/community.html +20 -18
  165. data/vendor/local/share/doc/groonga/en/html/contribution.html +21 -19
  166. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +20 -18
  167. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +20 -18
  168. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +20 -18
  169. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +20 -18
  170. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +20 -18
  171. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +20 -18
  172. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +20 -18
  173. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +20 -18
  174. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +20 -18
  175. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +20 -18
  176. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +27 -25
  177. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +20 -18
  178. data/vendor/local/share/doc/groonga/en/html/development.html +20 -18
  179. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +27 -25
  180. data/vendor/local/share/doc/groonga/en/html/genindex.html +13 -13
  181. data/vendor/local/share/doc/groonga/en/html/index.html +86 -78
  182. data/vendor/local/share/doc/groonga/en/html/install.html +36 -34
  183. data/vendor/local/share/doc/groonga/en/html/install/centos.html +31 -29
  184. data/vendor/local/share/doc/groonga/en/html/install/debian.html +27 -25
  185. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -26
  186. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +33 -30
  187. data/vendor/local/share/doc/groonga/en/html/install/others.html +90 -88
  188. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +25 -23
  189. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +28 -26
  190. data/vendor/local/share/doc/groonga/en/html/install/windows.html +33 -31
  191. data/vendor/local/share/doc/groonga/en/html/limitations.html +20 -18
  192. data/vendor/local/share/doc/groonga/en/html/news.html +99 -641
  193. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +20 -18
  194. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +21 -19
  195. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +20 -18
  196. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +35 -33
  197. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +30 -28
  198. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +103 -100
  199. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +72 -70
  200. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +873 -0
  201. data/vendor/local/share/doc/groonga/en/html/news/senna.html +20 -18
  202. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  203. data/vendor/local/share/doc/groonga/en/html/reference.html +83 -75
  204. data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -38
  205. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +34 -32
  206. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +46 -44
  207. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +68 -66
  208. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +30 -28
  209. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +27 -25
  210. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +66 -62
  211. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +36 -34
  212. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +31 -29
  213. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +67 -65
  214. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +29 -27
  215. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +32 -30
  216. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +30 -28
  217. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +29 -27
  218. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +29 -27
  219. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +28 -26
  220. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +77 -75
  221. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +32 -30
  222. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +27 -25
  223. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +63 -61
  224. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +52 -50
  225. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +28 -26
  226. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +25 -23
  227. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +43 -41
  228. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +20 -18
  229. data/vendor/local/share/doc/groonga/en/html/reference/column.html +35 -33
  230. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +152 -0
  231. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +56 -29
  232. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +152 -0
  233. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +121 -94
  234. data/vendor/local/share/doc/groonga/en/html/reference/command.html +55 -53
  235. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +20 -18
  236. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +56 -54
  237. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +25 -23
  238. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +97 -95
  239. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +41 -39
  240. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +46 -44
  241. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +26 -24
  242. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +42 -40
  243. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +74 -72
  244. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +27 -25
  245. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -42
  246. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +40 -38
  247. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +27 -25
  248. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +36 -34
  249. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +25 -23
  250. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -41
  251. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +34 -32
  252. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +26 -24
  253. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +27 -25
  254. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +25 -23
  255. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +62 -60
  256. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +32 -30
  257. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +24 -22
  258. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +24 -22
  259. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +37 -35
  260. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +54 -52
  261. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +38 -36
  262. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +38 -36
  263. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3069 -567
  264. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +24 -22
  265. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +27 -25
  266. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +66 -64
  267. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +123 -121
  268. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +36 -34
  269. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +26 -24
  270. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +46 -44
  271. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +82 -80
  272. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +32 -30
  273. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +39 -37
  274. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +22 -20
  275. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +38 -36
  276. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +24 -22
  277. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +29 -27
  278. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +76 -74
  279. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +20 -18
  280. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +20 -18
  281. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +45 -43
  282. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +37 -35
  283. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +58 -56
  284. data/vendor/local/share/doc/groonga/en/html/reference/function.html +21 -19
  285. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +43 -41
  286. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +22 -20
  287. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +82 -80
  288. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +33 -31
  289. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +23 -21
  290. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +54 -52
  291. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +42 -40
  292. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +32 -29
  293. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +20 -18
  294. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +20 -18
  295. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +49 -47
  296. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +21 -19
  297. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +45 -43
  298. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +42 -40
  299. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +27 -25
  300. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +219 -216
  301. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +430 -381
  302. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +22 -20
  303. data/vendor/local/share/doc/groonga/en/html/reference/log.html +23 -21
  304. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +52 -50
  305. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +20 -18
  306. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +20 -18
  307. data/vendor/local/share/doc/groonga/en/html/reference/output.html +35 -33
  308. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +20 -18
  309. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +58 -56
  310. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +21 -19
  311. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +46 -41
  312. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +20 -18
  313. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +20 -18
  314. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +20 -18
  315. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +55 -53
  316. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +39 -37
  317. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +20 -18
  318. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +30 -28
  319. data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -36
  320. data/vendor/local/share/doc/groonga/en/html/search.html +12 -12
  321. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  322. data/vendor/local/share/doc/groonga/en/html/server.html +20 -18
  323. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +20 -18
  324. data/vendor/local/share/doc/groonga/en/html/server/http.html +21 -19
  325. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +34 -32
  326. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +20 -18
  327. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +20 -18
  328. data/vendor/local/share/doc/groonga/en/html/server/package.html +34 -32
  329. data/vendor/local/share/doc/groonga/en/html/spec.html +20 -18
  330. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +128 -126
  331. data/vendor/local/share/doc/groonga/en/html/spec/search.html +20 -18
  332. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +20 -18
  333. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +20 -18
  334. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +21 -19
  335. data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -19
  336. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +20 -18
  337. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +34 -32
  338. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +23 -21
  339. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +20 -18
  340. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +20 -18
  341. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +24 -22
  342. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +53 -51
  343. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -18
  344. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +21 -19
  345. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +23 -21
  346. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +37 -35
  347. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  348. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  349. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +4 -4
  350. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
  351. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +5 -5
  352. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  353. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  354. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +4 -4
  355. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  356. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +16 -570
  357. data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +5 -4
  358. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +1 -1
  359. data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +686 -0
  360. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +0 -1
  361. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +3 -1
  362. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +12 -4
  363. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/index.txt +19 -0
  364. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/pseudo.txt +2 -2
  365. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/scalar.txt +19 -0
  366. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +734 -29
  367. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +2 -1
  368. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +8 -7
  369. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +50 -0
  370. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt +25 -23
  371. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt +1 -1
  372. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +68 -6
  373. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +26 -1
  374. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  375. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  376. data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
  377. data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +10308 -0
  378. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -2
  379. data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
  380. data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
  381. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  382. data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +999 -0
  383. data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
  384. data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
  385. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
  386. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +20 -18
  387. data/vendor/local/share/doc/groonga/ja/html/client.html +20 -18
  388. data/vendor/local/share/doc/groonga/ja/html/community.html +20 -18
  389. data/vendor/local/share/doc/groonga/ja/html/contribution.html +21 -19
  390. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +20 -18
  391. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +20 -18
  392. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +20 -18
  393. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +20 -18
  394. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +23 -21
  395. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +20 -18
  396. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +20 -18
  397. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +20 -18
  398. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +20 -18
  399. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +21 -19
  400. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +27 -25
  401. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +20 -18
  402. data/vendor/local/share/doc/groonga/ja/html/development.html +20 -18
  403. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +23 -21
  404. data/vendor/local/share/doc/groonga/ja/html/genindex.html +17 -17
  405. data/vendor/local/share/doc/groonga/ja/html/index.html +88 -80
  406. data/vendor/local/share/doc/groonga/ja/html/install.html +36 -34
  407. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +40 -38
  408. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +30 -29
  409. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +31 -29
  410. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +31 -29
  411. data/vendor/local/share/doc/groonga/ja/html/install/others.html +81 -79
  412. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +24 -22
  413. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +31 -30
  414. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +32 -30
  415. data/vendor/local/share/doc/groonga/ja/html/limitations.html +20 -18
  416. data/vendor/local/share/doc/groonga/ja/html/news.html +85 -677
  417. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +20 -18
  418. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +21 -19
  419. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +20 -18
  420. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +36 -34
  421. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +30 -28
  422. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +94 -92
  423. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +62 -60
  424. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +911 -0
  425. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +20 -18
  426. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  427. data/vendor/local/share/doc/groonga/ja/html/reference.html +85 -77
  428. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -38
  429. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +34 -32
  430. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +42 -40
  431. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +70 -68
  432. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +30 -28
  433. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +27 -25
  434. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +62 -60
  435. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +42 -40
  436. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +31 -29
  437. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +62 -60
  438. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +29 -27
  439. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +32 -30
  440. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +30 -28
  441. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +29 -27
  442. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +29 -27
  443. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +28 -26
  444. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +78 -76
  445. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +32 -30
  446. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +27 -25
  447. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +63 -61
  448. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +52 -50
  449. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +28 -26
  450. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +25 -23
  451. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +43 -41
  452. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +20 -18
  453. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +35 -33
  454. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +153 -0
  455. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +56 -29
  456. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +153 -0
  457. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +111 -84
  458. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
  459. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +20 -18
  460. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +50 -48
  461. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +27 -25
  462. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +100 -98
  463. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +38 -36
  464. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +46 -44
  465. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +26 -24
  466. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +42 -40
  467. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +66 -64
  468. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +27 -25
  469. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +41 -39
  470. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +40 -38
  471. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +27 -25
  472. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +35 -33
  473. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +25 -23
  474. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +36 -34
  475. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +38 -37
  476. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +26 -24
  477. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +27 -25
  478. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +25 -23
  479. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +57 -55
  480. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +32 -30
  481. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +24 -22
  482. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +24 -22
  483. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +34 -32
  484. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +59 -57
  485. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +38 -36
  486. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +38 -36
  487. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +2832 -427
  488. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +24 -22
  489. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +25 -23
  490. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +64 -62
  491. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +99 -97
  492. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +36 -34
  493. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +26 -24
  494. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +41 -39
  495. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +67 -65
  496. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +32 -30
  497. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +40 -39
  498. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +22 -20
  499. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +50 -45
  500. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +24 -22
  501. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +29 -27
  502. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +64 -62
  503. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +20 -18
  504. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +20 -18
  505. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +45 -43
  506. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +37 -35
  507. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +58 -56
  508. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +21 -19
  509. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +43 -41
  510. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +22 -20
  511. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +70 -68
  512. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +33 -31
  513. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +23 -21
  514. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +44 -42
  515. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +33 -31
  516. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +31 -29
  517. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +20 -18
  518. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +20 -18
  519. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +42 -40
  520. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +21 -19
  521. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +31 -29
  522. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +34 -32
  523. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +24 -22
  524. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +119 -117
  525. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +341 -301
  526. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -19
  527. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +23 -21
  528. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +46 -44
  529. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +20 -18
  530. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +20 -18
  531. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +31 -29
  532. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +20 -18
  533. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +37 -35
  534. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +21 -19
  535. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +35 -43
  536. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +20 -18
  537. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +20 -18
  538. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +20 -18
  539. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +45 -43
  540. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +36 -34
  541. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +20 -18
  542. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +30 -28
  543. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -36
  544. data/vendor/local/share/doc/groonga/ja/html/search.html +12 -12
  545. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  546. data/vendor/local/share/doc/groonga/ja/html/server.html +20 -18
  547. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +20 -18
  548. data/vendor/local/share/doc/groonga/ja/html/server/http.html +22 -20
  549. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +28 -26
  550. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +20 -18
  551. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +20 -18
  552. data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -33
  553. data/vendor/local/share/doc/groonga/ja/html/spec.html +20 -18
  554. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +127 -125
  555. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +20 -18
  556. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +20 -18
  557. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +20 -18
  558. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +21 -19
  559. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -19
  560. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +25 -23
  561. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +33 -31
  562. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +20 -18
  563. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +21 -19
  564. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +20 -18
  565. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +27 -25
  566. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +50 -48
  567. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -19
  568. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +21 -19
  569. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +23 -21
  570. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
  571. data/vendor/local/share/man/ja/man1/groonga.1 +6711 -3135
  572. data/vendor/local/share/man/man1/groonga.1 +7192 -3297
  573. metadata +33 -4
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>7.4. データ型 &mdash; Groonga v4.0.8-168-gae696d7ドキュメント</title>
10
+ <title>7.4. データ型 &mdash; Groonga v5.0.0ドキュメント</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: '4.0.8-168-gae696d7',
18
+ VERSION: '5.0.0',
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 v4.0.8-168-gae696d7ドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.0ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="7. リファレンスマニュアル" href="../reference.html" />
31
31
  <link rel="next" title="7.5. テーブル" href="tables.html" />
32
32
  <link rel="prev" title="7.3.39. truncate" href="commands/truncate.html" />
33
33
  </head>
34
- <body>
34
+ <body role="document">
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../index.html">
@@ -49,7 +49,7 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related">
52
+ <div class="related" role="navigation" aria-label="related navigation">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="commands/truncate.html" title="7.3.39. truncate"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v4.0.8-168-gae696d7ドキュメント</a> &raquo;</li>
64
+ <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../reference.html" accesskey="U">7. リファレンスマニュアル</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -69,7 +69,7 @@
69
69
  <div class="document">
70
70
  <div class="documentwrapper">
71
71
  <div class="bodywrapper">
72
- <div class="body">
72
+ <div class="body" role="main">
73
73
 
74
74
  <div class="section" id="id1">
75
75
  <h1>7.4. データ型<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h1>
@@ -88,65 +88,65 @@
88
88
  <div class="section" id="id4">
89
89
  <h2>7.4.3. 組込型<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h2>
90
90
  <p>以下の型が組込型としてあらかじめ定義されています。</p>
91
- <p><tt class="docutils literal"><span class="pre">Object</span></tt></p>
91
+ <p><code class="docutils literal"><span class="pre">Object</span></code></p>
92
92
  <blockquote>
93
93
  <div>任意のテーブルに属する全てのレコードです。 <a class="footnote-reference" href="#id9" id="id5">[1]</a></div></blockquote>
94
- <p><tt class="docutils literal"><span class="pre">Bool</span></tt></p>
94
+ <p><code class="docutils literal"><span class="pre">Bool</span></code></p>
95
95
  <blockquote>
96
96
  <div><p>ブーリアン型やブール型などと呼ばれる型であり、真偽値を表します。取り得る値はtrueとfalseです。(デフォルト値: false)</p>
97
97
  <p><a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドで値を格納するときは、false、0、空文字列のいずれかを指定するとfalseになり、それ以外を指定するとtrueになります。</p>
98
98
  </div></blockquote>
99
- <p><tt class="docutils literal"><span class="pre">Int8</span></tt></p>
99
+ <p><code class="docutils literal"><span class="pre">Int8</span></code></p>
100
100
  <blockquote>
101
101
  <div>8bit符号付き整数であり、-128以上127以下の整数を表します。(デフォルト値: 0)</div></blockquote>
102
- <p><tt class="docutils literal"><span class="pre">UInt8</span></tt></p>
102
+ <p><code class="docutils literal"><span class="pre">UInt8</span></code></p>
103
103
  <blockquote>
104
104
  <div>8bit符号なし整数であり、0以上255以下の整数を表します。(デフォルト値: 0)</div></blockquote>
105
- <p><tt class="docutils literal"><span class="pre">Int16</span></tt></p>
105
+ <p><code class="docutils literal"><span class="pre">Int16</span></code></p>
106
106
  <blockquote>
107
107
  <div>16bit符号付き整数であり、-32,768以上32,767以下の整数を表します。(デフォルト値: 0)</div></blockquote>
108
- <p><tt class="docutils literal"><span class="pre">UInt16</span></tt></p>
108
+ <p><code class="docutils literal"><span class="pre">UInt16</span></code></p>
109
109
  <blockquote>
110
110
  <div>16bit符号なし整数であり、0以上65,535以下の整数を表します。(デフォルト値: 0)</div></blockquote>
111
- <p><tt class="docutils literal"><span class="pre">Int32</span></tt></p>
111
+ <p><code class="docutils literal"><span class="pre">Int32</span></code></p>
112
112
  <blockquote>
113
113
  <div>32bit符号付き整数であり、-2,147,483,648以上2,147,483,647以下の整数を表します。(デフォルト値: 0)</div></blockquote>
114
- <p><tt class="docutils literal"><span class="pre">UInt32</span></tt></p>
114
+ <p><code class="docutils literal"><span class="pre">UInt32</span></code></p>
115
115
  <blockquote>
116
116
  <div>32bit符号なし整数であり、0以上4,294,967,295以下の整数を表します。(デフォルト値: 0)</div></blockquote>
117
- <p><tt class="docutils literal"><span class="pre">Int64</span></tt></p>
117
+ <p><code class="docutils literal"><span class="pre">Int64</span></code></p>
118
118
  <blockquote>
119
119
  <div>64bit符号付き整数であり、-9,223,372,036,854,775,808以上9,223,372,036,854,775,807以下の整数を表します。(デフォルト値: 0)</div></blockquote>
120
- <p><tt class="docutils literal"><span class="pre">UInt64</span></tt></p>
120
+ <p><code class="docutils literal"><span class="pre">UInt64</span></code></p>
121
121
  <blockquote>
122
122
  <div>64bit符号なし整数であり、0以上18,446,744,073,709,551,615以下の整数を表します。(デフォルト値: 0)</div></blockquote>
123
- <p>浮動小数点数</p>
123
+ <p><code class="docutils literal"><span class="pre">Float</span></code></p>
124
124
  <blockquote>
125
125
  <div><p>IEEE 754形式の倍精度浮動小数点数であり、実数を表します。(デフォルト値: 0.0)</p>
126
126
  <p>IEEE 754形式の詳細については、 <a class="reference external" href="http://ja.wikipedia.org/wiki/IEEE_754">IEEE 754 - Wikipedia</a> や <a class="reference external" href="http://grouper.ieee.org/groups/754/">IEEE 754: Standard for Binary Floating-Point</a> を参照してください。</p>
127
127
  </div></blockquote>
128
- <p>時間</p>
128
+ <p><code class="docutils literal"><span class="pre">Time</span></code></p>
129
129
  <blockquote>
130
130
  <div><p>日時を表す型であり、1970年1月1日0時0分0秒からの経過時間を、マイクロ秒単位で64bit符号付き整数により表現します。(デフォルト値: 0)</p>
131
131
  <p><a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドで値を格納するときは、1970年1月1日0時0分0秒からの経過秒数を指定します。秒単位より詳細な日時を指定するには、小数を使います。</p>
132
132
  </div></blockquote>
133
- <p><tt class="docutils literal"><span class="pre">ShortText</span></tt></p>
133
+ <p><code class="docutils literal"><span class="pre">ShortText</span></code></p>
134
134
  <blockquote>
135
135
  <div>4,095バイト以下の文字列を表します。(デフォルト値: &quot;&quot;)</div></blockquote>
136
- <p><tt class="docutils literal"><span class="pre">Text</span></tt></p>
136
+ <p><code class="docutils literal"><span class="pre">Text</span></code></p>
137
137
  <blockquote>
138
138
  <div>65,535バイト以下の文字列を表します。(デフォルト値: &quot;&quot;)</div></blockquote>
139
- <p><tt class="docutils literal"><span class="pre">LongText</span></tt></p>
139
+ <p><code class="docutils literal"><span class="pre">LongText</span></code></p>
140
140
  <blockquote>
141
141
  <div>2,147,483,647バイト以下の文字列を表します。(デフォルト値: &quot;&quot;)</div></blockquote>
142
- <p><tt class="docutils literal"><span class="pre">TokyoGeoPoint</span></tt></p>
142
+ <p><code class="docutils literal"><span class="pre">TokyoGeoPoint</span></code></p>
143
143
  <blockquote>
144
144
  <div><p>旧日本測地系による経緯度であり、経度と緯度をミリ秒単位で表現した整数の組により表現します。(デフォルト値: 0x0)</p>
145
145
  <p>度分秒形式でx度y分z秒となる経度・緯度は、(((x * 60) + y) * 60 + z) * 1000という計算式でミリ秒単位へと変換されます。
146
146
  <a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドで値を格納するときは、&quot;ミリ秒単位の経度xミリ秒単位の緯度&quot; もしくは &quot;経度の小数表記x緯度の小数表記&quot; という文字列表現を使って指定します。経度と緯度の区切りとしては、'x' のほかに ',' を使うことができます。</p>
147
147
  <p>測地系の詳細については、 <a class="reference external" href="http://ja.wikipedia.org/wiki/%E6%B8%AC%E5%9C%B0%E7%B3%BB">測地系 - Wikipedia</a> を参照してください。</p>
148
148
  </div></blockquote>
149
- <p><tt class="docutils literal"><span class="pre">WGS84GeoPoint</span></tt></p>
149
+ <p><code class="docutils literal"><span class="pre">WGS84GeoPoint</span></code></p>
150
150
  <blockquote>
151
151
  <div><p>世界測地系(World Geodetic System, WGS 84)による経緯度であり、経度と緯度をミリ秒単位で表現した整数の組により表現します。(デフォルト値: 0x0)</p>
152
152
  <p>度分秒形式からミリ秒形式への変換方法や <a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドにおける指定方法はTokyoGeoPointと同じです。</p>
@@ -177,7 +177,7 @@
177
177
  </div>
178
178
  </div>
179
179
  </div>
180
- <div class="sphinxsidebar">
180
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
181
181
  <div class="sphinxsidebarwrapper">
182
182
  <h3><a href="../index.html">目次</a></h3>
183
183
  <ul>
@@ -196,16 +196,18 @@
196
196
 
197
197
  <h4>前のトピックへ</h4>
198
198
  <p class="topless"><a href="commands/truncate.html"
199
- title="前の章へ">7.3.39. <tt class="docutils literal"><span class="pre">truncate</span></tt></a></p>
199
+ title="前の章へ">7.3.39. <code class="docutils literal"><span class="pre">truncate</span></code></a></p>
200
200
  <h4>次のトピックへ</h4>
201
201
  <p class="topless"><a href="tables.html"
202
202
  title="次の章へ">7.5. テーブル</a></p>
203
- <h3>このページ</h3>
204
- <ul class="this-page-menu">
205
- <li><a href="../_sources/reference/types.txt"
206
- rel="nofollow">ソースコードを表示</a></li>
207
- </ul>
208
- <div id="searchbox" style="display: none">
203
+ <div role="note" aria-label="source link">
204
+ <h3>このページ</h3>
205
+ <ul class="this-page-menu">
206
+ <li><a href="../_sources/reference/types.txt"
207
+ rel="nofollow">ソースコードを表示</a></li>
208
+ </ul>
209
+ </div>
210
+ <div id="searchbox" style="display: none" role="search">
209
211
  <h3>クイック検索</h3>
210
212
  <form class="search" action="../search.html" method="get">
211
213
  <input type="text" name="q" />
@@ -222,7 +224,7 @@
222
224
  </div>
223
225
  <div class="clearer"></div>
224
226
  </div>
225
- <div class="related">
227
+ <div class="related" role="navigation" aria-label="related navigation">
226
228
  <h3>ナビゲーション</h3>
227
229
  <ul>
228
230
  <li class="right" style="margin-right: 10px">
@@ -234,12 +236,12 @@
234
236
  <li class="right" >
235
237
  <a href="commands/truncate.html" title="7.3.39. truncate"
236
238
  >前へ</a> |</li>
237
- <li><a href="../index.html">Groonga v4.0.8-168-gae696d7ドキュメント</a> &raquo;</li>
239
+ <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
238
240
  <li><a href="../reference.html" >7. リファレンスマニュアル</a> &raquo;</li>
239
241
  </ul>
240
242
  </div>
241
- <div class="footer">
242
- &copy; Copyright 2009-2014, Brazil, Inc.
243
+ <div class="footer" role="contentinfo">
244
+ &copy; Copyright 2009-2015, Brazil, Inc.
243
245
  </div>
244
246
  </body>
245
247
  </html>
@@ -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 v4.0.8-168-gae696d7ドキュメント</title>
10
+ <title>検索 &mdash; Groonga v5.0.0ドキュメント</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: '4.0.8-168-gae696d7',
18
+ VERSION: '5.0.0',
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 v4.0.8-168-gae696d7ドキュメント" href="index.html" />
30
+ <link rel="top" title="Groonga v5.0.0ドキュメント" 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>
39
+ <body role="document">
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">
57
+ <div class="related" role="navigation" aria-label="related navigation">
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 v4.0.8-168-gae696d7ドキュメント</a> &raquo;</li>
63
+ <li><a href="index.html">Groonga v5.0.0ドキュメント</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">
70
+ <div class="body" role="main">
71
71
 
72
72
  <h1 id="search-documentation">検索</h1>
73
73
  <div id="fallback" class="admonition warning">
@@ -92,23 +92,23 @@
92
92
  </div>
93
93
  </div>
94
94
  </div>
95
- <div class="sphinxsidebar">
95
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
96
96
  <div class="sphinxsidebarwrapper">
97
97
  </div>
98
98
  </div>
99
99
  <div class="clearer"></div>
100
100
  </div>
101
- <div class="related">
101
+ <div class="related" role="navigation" aria-label="related navigation">
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 v4.0.8-168-gae696d7ドキュメント</a> &raquo;</li>
107
+ <li><a href="index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
108
108
  </ul>
109
109
  </div>
110
- <div class="footer">
111
- &copy; Copyright 2009-2014, Brazil, Inc.
110
+ <div class="footer" role="contentinfo">
111
+ &copy; Copyright 2009-2015, Brazil, Inc.
112
112
  </div>
113
113
  </body>
114
114
  </html>
@@ -1 +1 @@
1
- Search.setIndex({envversion:42,terms:{clumns:129,"\u51fa\u6765":[39,71,82],"\u300calice":170,localstatedir:[143,174],"\u3082\u3089\u3063":3,four:[138,3],"\u660e\u78ba":70,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[31,89],"\u811a\u6ce8":[68,3,40,65,29,162],"\u3082\u3089\u3048":115,"\u65e5\u672c\u4eba":164,"\u79d2\u60c5":23,"_column":[],"\u7b2c\u4e8c":[],"\u6b63\u5e38":[156,140],"\u30d5\u30c3\u30af":73,internally:[98,14],"\u5b9a\u5024":6,"/projects":140,"&q":122,"&s":122,"\u7b2c\u4e00":[],incremented:123,"\u3044\u304f\u3064\u304b":[153,100,82,140,124,116,22,173,41,107,63,54,174,149,165,177],"\u89e3\u9664":[1,72,89,99],second:[138,95],"\u4f5c\u3089\u308c":[70,156],"\u4e8b\u524d":[64,137,62,140,157],"\u30de\u30af\u30ed":[23,72,116],"\u30b7\u30f3\u30dc\u30eb":66,"\u5f15\u3044":139,increasing:129,error:[35,102,5,116,126,7,8,138,70],here:[35,75,122,123,164,172,43,127,95,8,55,138,129,118,58],onga:27,"&!":139,china:121,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":148,"&&":[64,169,100,133,139],"\u4e0e\u3048":[52,63,3,64,114,89,116,6,94,57],reports:[35,55],"_output":[],"\u30c8\u30fc\u30af\u30f3":[152,82,139,86,134,116,43,41,16,70,23,175,143,59],"\u7ffb\u8a33":[],"\u300c\"":89,"\u300c#":143,"\u300c,":146,"9e":175,"9f":4,unix:[126,174],txt:[79,111],"\u5ea6\u6d6e":40,"\u5bfe\u7167":107,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"_check":[70,72,165],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"\u975e\u63a8":[68,116,6,70,23,59],music:[39,138],tokenize:[],"_flags":[],"[pkg":[6,23],until:[35,129,17],"\u30d6\u30ed\u30b0":[],"\u30df\u30ea":[11,23,40,67,139],"\u6709\u529b":142,"\u7f6e\u304f\u4f8b":174,"[os":70,"\u4e0b\u304c\u308a":64,karmic:165,"\u300cv":140,"(pos":[29,162],"_command":[],"\u6709\u52b9":[82,87,89,94,23,174,100,140,11,12,52,105,59,113,156,116,70,72,104,168,120,75,30,27,8],"\u6b63\u5f0f":70,"\u4e8c\u91cd":[70,116,168],"\u30e1\u30fc\u30eb":[0,111],daemoned:[],"/functions":165,example:[39,100,3,95,121,127,11,123,122,67,8,55,129,118,164,94],"/blog":140,"\u6a2a\u5c71":[70,116],want:[122,141,12],"*cache":15,"<groonga":156,travel:170,feature:[55,75,8,95,164,111],how:[],wrong:55,types:[142,16,124,164,43],"\u63fa\u308c":83,"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":116,"_resource":[2,72],"\u5b09\u3057\u304f":115,"\u901a\u5e38":[126,100,82,3,168,11,40,14,6,54,8,70,175,163,87],keeps:77,"\u500b\u5b9a":125,wing:[6,116],"\u3042\u305f\u308a":[23,143],vars:[35,47],"\uff11\u5bfe":125,"\u30d1\u30c8\u30ea\u30b7\u30a2":[],"/new":[],"\u6e1b\u7b97":[],"_ptr":[35,76],"\u8fd4\u3063":[168,139],"_{":116,"-code":[70,140],"\u8fd4\u3057":[35,82,3,83,85,87,41,42,43,63,137,101,48,100,68,139,103,142,105,108,14,15,107,53,16,17,169,21,150,110,61,62,44,112,113,114,155,116,162,66,57,67,158,109,88,70,118,72,164,74,75,127,157,170,27,29,167],fix:[53,37,87],"\u8fd4\u3055":[52,100,10,142,114,6,117,70,72],"_s":70,"_desc":105,"_o":[2,160],"_n":[15,122,116],"_i":[2,160],fin:47,"_a":[2,160],"\uff08tokenmecab":64,"\u3046\u3063\u304b\u308a":116,"\u30d7\u30ed\u30c8\u30b3\u30eb":[],"-daemon":[122,58],"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":68,"\u516c\u8f14":116,"\u3082\u3063\u3068\u3082":165,"\u30af\u30a8\u30ea\u30da\u30a2":157,"\u8a8d\u8a3c":[],"_select":[],"(point":[29,68,162],"_deadlock":[2,160,72],timeout:[72,17],debug:[5,138,7,8],"_$":[142,59],"_\"":23,"@do":70,"*keywords":76,rd:[64,134],re:[129,75],rf:[120,8],"post\u30e1\u30bd\u30c3\u30c9":116,moritapo:39,rc:[82,138,2],rm:8,ro:82,gregex:116,rk:[],"\uff01\uff09":[16,164],"\uff01\uff08":111,"\u3042\u305f\u3044":109,"\u5909\u5316":30,"\u5168\u90e8":160,".msgpack":4,"/limits":129,ringtail:[70,116],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[87,77],"\u307e\u308d\u3086\u304d":133,"\u771f\u507d":[11,139,40,116,168],libedit:[153,1,143,6,23,174],"\u5f31\u70b9":30,"\u8fd4\u308a":[67,100,121],"\u8fd4\u308b":143,"\u7d99\u627f":116,"\"localhost":94,"_locks":[2,160],"\u25a1\u25a1":115,"\u300cnew":170,"\uff08age":59,":bob":170,"2\u5104":[],mingw:[23,140],"nginx\u3089\u3057\u3044":70,"\u6607\u964d":[57,100],"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[89,82,3,116,124],service:[129,131,16],"\u4f7f\u308f":[2,83,86,82,8,23,100,140,15,147,59,39,116,160,88,70,163,164,73,168,121,175,76],"\u533a\u5207\u3089":23,"\u533a\u5207\u308a":[166,52,100,82,3,4,121,11,30,40,89,43,6,146,142,139,168],"\u533a\u5207\u308b":[143,163],master:8,"\u610f\u8b58":59,"\u8a8d\u8b58":115,"_db\u30d5\u30e9\u30b0":23,"'column":6,"{table":[107,100],"\u306e\u3059\u3079\u3066":48,"(comments":169,"-common":[6,12],project:139,"_update":[168,100,2,105,113],"*namebuf":[72,113],boston:170,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[],"\u4f7f\u3048\u308b":[168,89,116,6,70,23,174,73],"\u304b\u3069\u3046":[2,169,64,107,88,174],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":[],"-port":[122,156,89],"\u300csubmit":[],"/max":70,object:[35,72,75,85,40,6,127,105,160,50,47,110,139],"\u7d22\u7528":[],"\"black":175,microsecond:138,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":117,letter:175,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":48,"\u533a\u5207\u3063":[41,100,82,124,160],"\u4f7f\u3063":[0,82,3,83,40,134,42,6,2,93,8,174,48,133,153,100,139,140,77,11,104,12,14,107,16,147,59,151,39,62,63,112,64,115,116,66,117,67,160,70,109,163,73,120,175,168,121,157,111,170,124,27,126,141,128,80,81,94],released:[37,140],camp:170,"\u4f7f\u3048":[100,82,88,168,121,177,147,116,66,8,139,70,23,73,149,59],"\u4f7f\u3046":[],"\u4f7f\u3044":[],"\u66f8\u304d\u8fbc\u307f":174,"\u66f8\u304d\u8fbc\u307e":176,unmanaged:117,"\u304by":116,"\u30d0\u30a4\u30ca\u30ea\u30fc":126,layout:140,".fedoraproject":120,cpu:[122,30,156,8,174,48],"2byte":160,"-enable":[80,143,18],createrepo:140,"\u79d8\u5bc6":140,"\u30a2\u30d4\u30fc\u30eb":140,"_age":88,"\u91cd\u307f":[],tips:[],"\u30c8\u30d4\u30c3\u30af":140,"\u91cd\u3044":[30,100],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],"\u958b\u3053":75,"\u5b9f\u9a13":[],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":70,"\u91cd\u304f":64,patch:37,"(tab":163,release:[],unpatched:37,"\u69cb\u9020":[39,63,30,14,126,105,86],"\u5e83\u304f":140,"[linux":6,clarified:[],result:[68,4,105,27,164,95,63,160,55,71,58],"<port":[156,89],"[patch":[],"\u5206\u304b\u3061":30,wikipedia:40,score:[39,100,63,3,113,77,64,142,164,67,43,68,53,16,116,170,139,71,118,107,122],"-stem":[70,12,141],"\u611f\u3058":115,shidara:23,"\u554f\u3044\u5408\u308f":63,"\u539f\u99c5":67,reported:[],country:[158,94,121],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":175,"\u66f8\u304d\u8fbc\u3080":156,"\u540c\u69d8":[84,100,63,140,11,156,67,94,57],"\u4e00\u6587\u5b57":70,"\u5931\u6557":[35,15,3,168,140,143,66,116,6,127,53,158,17,9,23,70,118,59],"\u3044\u304f":[],"\u95a2\u6570":[],diff:156,"\u5404\u7a2e":140,"\u6d88\u53bb":116,"\uff08node":73,"\u5360\u6709":72,"\u3044\u3046":100,correction:16,"\u30ab\u30f3\u30de":[100,3,139,121,52,146],worker:[],dave:88,"\u305f\u307e\u307e":48,input:[52,126,98,160,164],"-message":[],".memos":[],"/function":140,"_sel":37,"\u3069\u3093":97,"#set":156,"\u3069\u308c":[126,87,100,48,59],"_set":[15,36,85,114,14,6,21,108,17,57,70,72,104,47],"\"sound":16,"\u65ad\u7247":27,"\u4ee3\u8868":30,"\u79d2\u6570":[126,100,139,11,170,40,74],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":116,"\u4e2d\u8eab":[70,3,160,156],"_false":72,"\u3069\u306e":[84,100,82,121,162,16,68,174],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":23,"1\u4ef6":[64,170],"_rectangle":[],"\u3069\u3053":[23,174,70],"\u3002db":[23,63,3,94,14],"\u30df\u30ea\u79d2":40,"\u7121\u8996":[100,82,168,64,86,143,89,116,6,105,158,124,146,70,57,23,163],"\u5fdc\u7528":30,"\u3069\u3046":[1,135,75,121,5,115,65,100,6,64,7,144,8,176,99],"\u30e2\u30fc\u30c9":[82,3,63,94,70,31],"\"canceled":95,"\"blt":146,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[82,64,134,16,57,70,59],"_skip":116,"_element":36,"\u30c4\u30fc\u30eb":[],"_result":[105,2],sleepy:106,normalzer:[],"\u4e00\u6c17":140,previous:131,"\u5317\u4eac":68,"\u300ccharlie":170,has:[35,37,140,172,105,102,95,138,129],hat:[],"*vars":[35,47],"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":6,"\u7c21\u7565":116,"\"content":[139,152,100,168],"\u9001\u308b":[0,160,48,111],"\u9001\u308a":[160,140],"\u30d0\u30a4\u30ca\u30ea":[93,140],"_broken":2,"\u8d8a\u3048":64,unique:[122,95],"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":84,">command":4,"_error":[35,2,160],"_ascending":57,alice:[100,168,170,107,53,8,88,118,48],"-unauthenticated":[6,141],"\u30d4\u30ea\u30aa\u30c9":[66,71],"\u30cf\u30a4\u30d5\u30f3":[3,59],sebastian:70,right:102,old:[],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[89,82,3,124],truncated:[113,116],begin:166,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":6,"\u5358\u8a9e":[],"/ngx":8,"\uff08score":100,groogna:[104,48],"\u9001\u3063":[79,0,80,111],"for":[35,131,37,40,22,43,6,8,95,138,98,68,139,17,55,58,102,118,72,164,75,122,123,27,172,127,170,129,76],bottom:[23,102,29],quetzal:6,".asc":140,"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":116,ichii:23,yoku:[70,116],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":72,"\u5206\u985e":[11,121],standalone:58,"\"starttime":4,"\u89e3\u6c7a\u7b56":115,"\u306a\u3055\u3093":80,"\u65e2\u5b9a\u5024":131,"\u305b\u3044":116,"_size":[35,63,113,78,14,105,56,57,72,76,47],".am\u30d5\u30a1\u30a4\u30eb":140,"\u89e3\u91c8":[143,63,168,146],waits:[35,17],"_range":[2,72],support:37,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":88,joseph:133,"\u305b\u306a":[168,139],"\u5c71\u672c":70,"\u3086\u304d\u3072\u308d":133,thesaurus:100,"/tsv":[163,9],"\u5fa9\u65e7":104,"\u8981\u7d20":[52,2,3,77,87,156,27,116,6,105,63,126],"\u30d0\u30f3\u30c9\u30eb":[70,116],"\u3002sortby":100,"\u306e\u304b":[170,134],"\u9006\u5f15":39,"_sequence":[2,160],"\u306e\u3044":[10,5,30,40,89,52,68,105,7,160,63],"_records":[6,116],"''":168,exist:95,"'\"":[6,116],"'.":[72,111],"'-":[89,116],"',":[70,72,172,43],sizeof:76,"')":[166,100,168,89,52,70],"'(":[89,168],"\u306e\u306b":[],"\u306e\u3061":100,relax:129,"\u306e\u3067":[131,3,134,6,93,8,70,137,48,100,68,140,11,107,111,62,64,154,115,116,169,88,23,71,163,30,27,126,173,170,31,59],"*nvars":47,"\u3001_":3,"\u306e\u307f":[],"'t":[98,75,123,43,127,17,95,129,14,76,164,8],"'s":[106,100,168,52,169,138,126,139,111],moero:39,"\u3089\u308c\u308b":[63,113,30,134,116,6,57,70],"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":156,"'a":169,"\u305b\u308b":[131,63,30,150,42,107,31,165,59],"'n":89,"'m":[106,170,152,71],"-latest":[],"-tar":20,"\u305b\u308c":30,"\u6bb5\u843d":[66,87,113],"_count":[],"'\\":168,"\u5165\u529b\u30df\u30b9":16,time:[170,95,122,11,142,138,156,116,43,6,64,16,129,55,70,23,167,164],push:[140,111],"\u304a\u3053\u306a\u3063":3,":/":[3,4,89,93,8,95,96,174,48,153,101,140,77,11,12,15,146,111,39,20,67,94,70,73,166,120,121,122,141,31,175,81],"\u53cd\u6620":[30,63,140,129],"\u7b26\u53f7":[],":$":[133,139,168,18],"\u6d41\u308c":[],"-prefix":[],":#":70,"\u5c0f\u897f":116,":=":[100,168],":>":[100,168],"\u3002rroonga":147,"::":[127,2,4],"-search":70,millisecond:17,"\u3042\u307e\u308a":[71,115,105],"\u7aef\u672b":30,"_builtin":[23,72,75,56],"\u6700\u7d42":[100,75,77],dragonfly:143,"\u500b\u5225":140,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":6,"-root":[31,143,89],":c":[76,75,113,14],lru:109,"\u7d20\u6734":121,locked:35,exact:63,"\u3002travis":73,minute:138,".body":[32,83,99],"\u30b9\u30af\u30ea\u30d7\u30c8":[],"{language":111,"\u6e08\u307f":[52,120,82,113,140,153,115,40,12,66,116,6,141,16,157,23,163,164,131],"-base":[122,58],":@":[39,100,3,168,11,170,107,94],":\\":93,":^":[168,133],":[":156,":public":140,"\u4e00\u6b69":3,"\u7d50\u3073\u3064\u3044":125,"\u305f\u3055\u3093":[23,1,116],"\u7d50\u3073\u3064\u304f":125,sign:140,"\u5316\u4f5c":140,makecache:[6,120],"\u4e8c\u9805":139,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":70,".ncpu":81,"\u7d4c\u904e":[126,10,139,11,170,40,74,17,23,72],"\u30bf\u30d6":[163,4,160],takashi:[23,158],"\u540d\u7b49":72,"\u4e3b\u8981":128,current:[],"'='":89,"\u76ee\u5b89":140,"\u63a8\u9032":116,"\u30bf\u30b0":[],"gmo\u30e1\u30c7\u30a3\u30a2":70,"\u6d41\u3057":140,address:[6,23,160,122],"\u30a2\u30ab\u30a6\u30f3\u30c8":[70,140,22],"\u4e3b\u30ad\u30fc":[],"\u4e00\u62ec":[],queue:125,"\u8b66\u544a":[100,10,143,116,6,70,104],"\u3002offset":85,"\u5ea6\u6570":[11,23,67,139],ipa:153,pentium:156,prefer:122,"`/":18,"\u6587\u5b57\u5217":[],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[63,89],bookmarks:77,"\u4e88\u3081":[40,89],"{\"_":[39,100,139,11,67,88,168],"|table":59,"\u30d5\u30a9\u30ed\u30fc":[],"/header":20,"\u3060\u3063":[6,64,100,10,105],"``":[1,113,143,14,15,76],"\u5168\u4e16\u754c":116,"\u3060\u3068":115,visual:[6,23,93,116,70],"\u30ec\u30d3\u30e5\u30fc":[],"_gt":57,"\u3002obj":72,"-aki":70,"_alloc":[35,76],values:[52,118,98,113,72],"\u3060\u3057":[23,156],"\u5024\u8a18":139,following:[35,113,122,172,138,18,129,58],locks:[35,127,27],logrotate:[6,70],allowed:58,"\u5897\u3084\u3059":[100,165,77],"\u6a19\u6e96":[1,135,3,5,89,7,8,97,99,10,52,144,146,176,148,65,66,117,70,104,166,74,31,32,130,94],chroot:140,"\u7551\u30f6":70,"\u30d2\u30e5\u30d9\u30cb":[68,162],parameter:[102,122,123,127,105,95,129,118,47],applications:27,date:156,such:[122,123,164,27,172,43,6,58,111],"?id":95,data:[],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[],"/dictionary":143,ss:[138,139],"/javascript":23,st:[82,139],sh:[140,73],so:[129,105,72,75,164],sa:[142,16],se:[82,164],"\u540c\u3058\u6570":[89,8,48],"[yum":6,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":70,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":146,"\u30a2\u30c9\u30ec\u30b9":[23,105,89,94,156],"*query":[50,76],jis:57,"\u540c\u671f":[156,140],instantly:27,"\u30d7\u30e9\u30b0\u30a4\u30f3api":70,matches:[],"\u4f7f\u308f\u305a":107,records:[138,118,102,43],"\u8d85\u3048\u308b":[6,57,154,86,11],matched:[122,102],config:[1,10,93],"\u7570\u5e38":[117,156],"_dat":[],"_dataset":[136,58,172,43],"\u3084\u308b":[],suffixsearchterms:[168,139],"\u4e26\u3073":[134,139],"\u4e26\u3079":[],"-terminated":[35,47],gtar:20,"\uff1f\u300d":121,indexblog:71,"\u30d8\u30c3\u30c0\u30fc":[],"-offset":100,container:76,"_msgpack":98,"\u8a73\u7d30":[131,82,3,40,6,8,9,50,153,100,174,77,12,107,21,87,111,41,64,156,116,67,70,165,120,121,126,141,173,31,59],"\"search":[164,16,168,43],"\"type":142,formula:140,"\u6700\u5c0f\u9650":8,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":86,mime:48,"byte":[113,123,156,27,6,105,160,72],"\u7d20\u65b9":30,"\u30d9\u30af\u30bf\u30fc":[],"\u4e00\u610f":[66,89,54],one:[35,55,27,127,95,129,58],submit:[122,142,16,164,43],"*expr":76,city:[170,68],"\u5bfe\u7b56":[],"\"sphr":162,"=encoding":[],"\u884c\u756a":[126,23],"\u8fd4\u4fe1\u5143":170,"\u8fd4\u4fe1\u5148":170,"\u306b\u5bfe\u8c61":23,"\u88d5\u4e5f":70,translate:[111,18],"\u540c\u6642":[100,10,30,125,156,67,14,105,57],fumiyasu:23,"\u4e16\u754c":[68,11,40,29,67,162],argument:139,sae:[142,16],say:139,"/span":[150,27,42],"/ubuntu":[6,131],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":116,"\u30ea\u30b9\u30c8":[52,152,163,3,168,140,39,33,89,100,175,6,96,84,97,139,76,111],uuuuuu:139,"\u5ea6\u5408\u3044":64,note:[35,122,95,129],take:55,"\u30cb\u30db\u30f3\u30b8\u30f3":164,"[[\"":117,"\u5fdc\u7b54":[30,116],buffer:[117,72],"\u5148\u982d":[85,100,72,3,8],compress:66,"\u5ea6\u5206":40,"\u30b9\u30da\u30fc\u30b9":[23,100,116],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[],"\u672b\u5c3e":[57,85,72],"\u9589\u3058":[23,86],"\u4ef6\u6570":[100,3,64,134,52,105,54,70,72],"\u5217\u6307\u5411":[30,89],"_cursor":[],xml:[],normalizermysqlunicodeciexceptkanacikanawithvoicedsoundmark:[],"\u5927\u4e8b":[163,168],"-directory":6,"\u3068\u3057\u307e\u305b":17,"_defrag":72,"\uff08tokenbigram":64,resource:160,"\u66f8\u304d\u8fbc\u3081\u308b":70,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[],"\u76f4\u63a5":[170,146],up:4,"\u7a7a\u767d":[82,3,168,64,30,89,43,52,124],"\u7528\u79d8":[],"\u898f\u5247":6,".content":[100,139,106,169,129,71,168],"\u306b\u3068\u3063\u3066":[82,115],sites:146,"*column":113,"\u5927\u4e08":0,"\u4f9d\u5b58":[],jobs:156,"\u7e26\u68d2":59,"\u4e0a\u554f":131,"\u5e73\u5747":70,"@tomotaka":23,many:[129,172,77],"\u8fd4\u3059":[1,135,5,89,6,7,23,48,99,139,142,14,144,176,113,156,65,116,74,67,160,88,70,167,143,32,76],"\u30b3\u30ed\u30f3":66,"_otoj":165,expression:[122,129,62,76,100],")offset":[57,105],"-mecab":[153,120,12,116,6,141,70,81],"_t":2,"\u5404\u7d22":3,"(xxx":116,"\u3002http":116,"\u542b\u3080\u5024":[89,3],"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":70,"\u5468\u4e0a":162,"_synonyms":163,"*added":105,"\u898b\u4ed8":116,"'ja":111,enable:[],readings:164,"\u6607\u9806":[100,3,121,67,105,57,72],"\u5b9f\u884c":[],"\u8fbc\u307f":[176,163],"-bye":[41,139,152,100,168],"\u304a\u3051\u308b":[60,39,3,168,11,30,40,116,6],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":132,"\u7406\u89e3":[100,3],"?table":[95,8,48,94],ctrl:94,"\u30af\u30ea\u30fc\u30f3":140,ivh:[153,120],"@lists":[140,22],".md":140,pthread:[23,116],"\u3002squeeze":165,ascii:[168,139],"\u633f\u5165":[3,140,85,89,27,6],binary:[30,40,4],hostname:[31,89,8],"/pipermail":70,"_filter":[],"<path":[89,58],"_setoperation":105,"\u3002\u3057\u304b\u3057":[100,68,77,30,40,106,53,16,128,23,175,48],"_at":[64,104,143,14,6,105,72,76],"error\u30bf\u30b0":6,"\u8ab2\u984c":[],cmake:[6,174,93,116],"\u5b9f\u88c5":[62,68,100,6,8,31,137,23,70,177,111],"_date":140,takahiro:143,customized:138,"\u5217\u8868":40,wiedenroth:70,"\u6b53\u8fce":80,"_normalize":[106,100,37,3,83,64,170,168,27,175,6,107,105,129,71,139,59],"\u53d6\u308a\u51fa\u3055":11,"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":70,"\u53d6\u308a\u51fa\u3059":[57,11,63,112,143],"_retry":2,"\u56db\u89d2":[],"(x":70,"\u6771\u4eac\u90fd":[64,134],"[token":116,"\"utf":114,"(r":156,rest:35,gdb:165,"(a":73,"_pack":[],"\u3046\u3061\u3044":89,"([":61,"(_":[142,164,16,139,43],"\u30d1\u30e9\u30e1\u30fc\u30bf":[],"\u3042\u3052\u308b":[],haystack:63,dcmake:93,"\u6c4e\u7528":[156,89,8],"\u639b\u3051":139,"(>":63,"(<":63,"(=":[2,139,63],res2:105,"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":140,"((":[100,77],"()":[],"(.":[71,140],"(-":139,"(\"":[68,3,114,89,27,42,116,6,107,95,150],world:[],"(!":63,"(&":76,"('":[66,100,3,168,89,52,54],intel:156,"_but":63,"\u95a2\u308f\u3089":156,"\u4ed5\u7d44":[48,111],conditional:142,yyyy:[138,139],";b":[150,42],".load":156,ddl:64,lucid:[143,116,140],"/httpd":[131,8],"\u8a18\u4e8b":[106,71,140],"\u5168\u6587\u691c\u7d22":[],"_printf":70,";/":[150,42],"package":[],"\u5ec3\u6b62":10,favorite:111,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[23,48],"\u304b\u3048\u308b":169,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[175,124],"\u30ec\u30d9\u30eb":[5,6,7,89,70],"\u7b97\u51fa":[6,100],"\u306b\u3042\u308a":[124,59],"\u6df7\u305c\u308b":77,"\u7403\u9762":[68,162],"_prefix":[],"<encoding":89,"\u30e9\u30f3\u30ad\u30f3\u30b0":[70,3],emacs:111,recommends:129,"\u30aa\u30fc\u30d7\u30f3":[6,15,116,23],complete:[122,142,104,164,157],"/pull":140,clones:[],"\u6b63\u898f":[41,82,3,139,104,150,124,42,6,105,70,175,163,59],"with":[],"_load":[],"_types":[124,48],pull:[],october:70,"\u697d\u3057\u3044":[64,134],reqular:122,"\u304a\u77e5\u3089":[],gone:39,ac:175,uid:140,"| y":116,"\u30ec\u30b9\u30c8\u30e9\u30f3":30,am:[27,42],an:[35,102,55,123,127,105,8,95,129,75],"| n":139,as:[35,131,82,122,123,12,27,172,164,6,141,8,95,129,58,111],ar:[64,82,134],at:[37,170,18,102,55,129,138],"| c":139,"| _":67,"\u3002messagepack":[126,174],shimomura:6,"\u4e00\u65b9":[3,168,107,11,30,27,42,64,169,71,139],"\u30c7\u30d0\u30c3\u30b0":[70,82,8,117],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[6,156,93],"\u9806\u4f4d":85,queryexpandertsv:[],"_such":[2,160],original:[98,133,146],"\u5897\u5206":100,"\u6587\u6cd5":[],senna:[],"\u4ed8\u968f":[135,65],"\u30c7\u30fc\u30bf\u30d9\u30fc":23,"\u5408\u8a08":[60,100,64,86,156,117,154],"\u6e80\u3055":116,"-talk":[116,22,140],"\u548c\u5e83":116,"\u901a\u4fe1":[],to:[],tail:[160,140],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],homepage:156,tc:[57,112],returned:[35,102],"/other":8,"\u30ab\u30c6\u30b4\u30ea":[100,82,41],"/rurema":70,"\u3002column":[63,3,113],condition:139,"(popular":100,large:[129,55],adjust:100,"\u5909\u308f\u308b":[64,150,27,42],"\u5909\u308f\u308a":[117,67,134,109],"\u4e0d\u5b8c\u5168":23,"\u300c\u6771\u4eac\u90fd":64,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[70,82,124,116],"&gt":[150,27,42],"\u5927\u5225":11,pass:8,"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":6,"\u7701\u7565":[],"\u7d22\u6642":143,"\u5897\u52a0":[100,116],"\u3067\u306b":[64,106,9],section:[35,78,95,55,113],"\u30ea\u30c6\u30e9\u30eb":[],"\u5927\u5207":30,"\u6700\u65b0":[23,140,22,109],"\u3002timeout":72,"_modified":170,method:8,contrast:8,full:[82,27,140],hash:[86,170],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[41,82],"\u30ce\u30a4\u30ba":[64,16],sender:[122,58],"\u975e\u516c\u958b":140,"_compare":72,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":100,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":6,"\u306b\u3059\u308b":48,via:43,followee:170,tokenizer:[],"\u30ce\u30fc\u30c9":[6,57],"\u7121\u540d":[105,72],"(init":14,follower:170,"\u3067\u3059":[2,3,4,6,82,8,9,10,79,12,14,15,16,17,18,20,169,23,26,27,31,33,84,11,40,41,42,43,44,47,48,153,174,52,53,54,155,58,59,60,62,63,64,66,67,68,70,71,72,73,76,78,141,80,109,0,83,86,87,89,91,93,94,97,98,100,101,77,106,107,105,110,111,113,150,115,116,117,118,120,121,122,30,124,126,127,129,131,132,134,137,139,140,142,146,147,152,154,156,157,158,160,88,162,163,164,165,166,168,170,175,177],select:[],executable:55,"[grntest":23,mecab:[153,1,37,140,30,12,116,6,141,143,23,174,120,81],"\u7406\u95a2":47,"\u4e0a\u8a18url":140,more:[35,27,160,55,129,58],"\u30c6\u30ad\u30b9\u30c8":[41,82,140,77,156,150,143,124,27,42,116,6,101,175,111,76,59],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":39,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[132,77],yokoyama:[],"\u518d\u5229":[86,100,54,70],"_argument":[57,105,2,160,72],"_messages":[140,111],endpoint:[122,58],"_adjust":[100,50,63],learn:[122,58],"\u6bd4\u8f03":[],scan:165,"_descending":57,accept:[123,143],states:158,gronoga:8,information:138,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":23,"\u3002lzo":66,"\u300ccommand":31,"=dat":104,"\u52d5\u7684":[],"\u5b9f\u884c\u4f8b":[],intended:[],"\u5019\u88dc":[142,16,164,157],"\u306b\u3059\u3050":106,"\u30fb\u81ea\u5df1\u7d39":170,"\u8aad\u307f\u51fa\u3057":30,github:[0,66,175,140,116,6,70,96,23,111,73],tokenbigram:[82,3,83,86,134,89,41,42,97,100,139,106,107,16,155,59,152,64,150,169,71,168,170,27,129,33],register:[],replied:170,"\u666e\u53ca":30,sysctl:[154,129],"\u52d5\u753b":39,"\u8f09\u305b\u308b":140,replies:71,installer:140,its:[35,138,76,164],saucy:[70,116],".rpm":[153,120],"\u9577\u5185":70,confiugration:129,"\u63a5\u7d9a":[],"[tokenizer":[6,116],"_weight":[66,70,87,113,77],salamander:[70,116],"_ci":[],"\u6271\u3044":[11,70,10,134,164],"\u6271\u3046":[2,139,64,154,116,22,30,104],"\u6271\u3048":[91,14],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":6,"\u5c0f\u306a\u308a":[],always:129,events:48,"\u6271\u3063":[170,1,116],"\u30ad\u30e3\u30b9\u30c8":[168,170,143,116,6,104],"[doc":[6,23,104,116,70],found:[105,102],".offset":105,"\u534a\u89d2":[57,175,3],"\u540c\u7fa9":163,"\u9ad8\u901f":[39,1,63,3,168,84,86,132,89,116,68,139,30,23,162,177,48,59],operation:[127,102,160],"\u6271\u308f":[84,100,82,168,11,156,116,14,6,64,70,175],really:[100,168,139],"\u524d\u8005":[67,175,163],"_entries":[15,109],"\u30ab\u30d0\u30ec\u30c3\u30b8":[],"\u30de\u30eb\u30c1\u30b3\u30a2":30,"\u6e2c\u7528":1,"\u305d\u308d\u305d\u308d":3,"/rab":[67,3,121],ftb:37,occurs:[],"/etc":[131,140,154,6,141,8,129,163],"\u6975\u4ed8":[68,162],"_hit":[94,74,3,4,8],"\u3053\u3053\u3067":140,"\u30a6\u30a7\u30a4\u30c8":66,pairs:164,"_user":[],"\u3002\u3069\u308c":122,"-keyring":[6,141],number:[],"_pipe":[2,160],"\u3059\u3079\u304d":63,"\u7d42\u308f\u308b":[106,168,139],"\u30b3\u30d4\u30fc":[113,140,85,105,6,53,146,72],"|enable":82,needed:[8,14],introduction:[],"\u30c9\u30e1\u30a4\u30f3":[70,121],"\u3057\u304b\u3082":177,">\u3001":144,"_stack":2,"\u642d\u8f09":30,dpkg:140,"\u5b66\u7fd2":[],"\u56de\u547c":143,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":70,video:39,listen:[6,89,8,48],"\u60f3\u5b9a":[74,39,146,117],"\u5b9f\u969b":[60,39,100,64,116,71],toybox:11,"_nofile":[138,116],canceling:123,"\u52d5\u74b0":166,"*data":85,"\u66f8\u304d\u63db\u3048":[140,73],gted:111,qps:[166,156],"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[143,89],self:156,"_lock":[35,23,72,17],also:[100,139,122,123,27,164,168],internal:70,"\"theatre":83,"\u8a18\u53f7":[64,89,134,3,143],play:83,"\uff08todo":139,brooklyn:170,"\u306e\u3069\u3061\u3089":[100,139],"\u3060\u3055\u3044":[0,3,6,8,96,174,48,100,139,140,77,12,111,20,160,70,163,165,73,175,168,121,30,126,128,80,59,94],"\u5b57\u5217":[23,40,70,168,59],exe:[93,140],"_uint":56,cover:27,umemoto:23,arted:139,ext:82,"\u6d3b\u304b\u3059":100,"_vsize":76,"<limit":89,"_processes":[],microsoft:93,"\u3057\u304b\u3057":[100,139,64,134,71,163,48,111],"/command":[8,94],xcode:81,session:122,"-memory":143,"\u6570\u3048":121,"\u77e9\u5f62":[29,67,30],"\u5143\u6c17":116,columnn:6,"\u9577\u578b":[57,87],"\u6642\u306b":23,failed:17,"\u51e6\u7406":[1,2,85,124,134,41,42,6,82,8,48,100,139,54,111,152,63,156,116,67,160,70,168,30,143,26,27,59],factor:[70,100],"\u5225\u9014":[40,72],"\u30bf\u30fc\u30b2\u30c3\u30c8":6,columns:[52,100,132,143,172,6,127,55,129],"]]]":[64,142,144,139],"\u5fc5\u305a":[100,10,132,105,160,59],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":48,"\u3082\u3057\u3054":6,"_point":[39,162,102],"\u30ed\u30b0\u30ec\u30d9\u30eb":[89,8],"-github":140,bytes:[35,60,47],"\u6c7a\u3081":59,"\u7528\u610f":[100,68,140,72,156,43,157,16,63,174,164],"\u3082\u3057\u304f":[153,168,140,11,154,40,27,42,116,6,105,94,88,57,139,71,150,8],set:[129,72,156,164],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[66,1,143,116,6,70,23,165],see:[35,123,129,95,18],sed:[6,23],sec:17,"\u547c\u3073\u5143":14,sea:[82,164],sen:37,"\u8a00\u8a9e":[],juman:153,currently:[98,8,75],mutex:[35,116],"\u65e5\u4ed8":[30,68,140],"\u3068\u3068\u3082\u306b":11,"\u3082\u3057\u308c":163,available:[35,37,55],"<span":[150,27,42],"\u304c\u3064\u3044":[6,86,100,143,77],javascript:[],"\uff09\uff08":59,"\u3082\u304d\u3061\u3093":8,"interface":122,"\u500b\u4eba":174,"\u6790\u5668":30,"_already":[2,160],"\u77e5\u308c":[137,124,62,115,71],last:[6,170],"\u4e00\u8cab\u6027":115,"\u77e5\u308b":121,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[30,156,147],"\u578b\u5909":23,connection:160,"_filename":2,"<#{":138,"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":116,load:[],");":[15,63,76,113],"):":[131,140],"@ceekz":116,"\u9577\u5185\u6b69":70,"-adjuster":[100,77],"\u3002\u3056\u3063\u304f\u308a":77,"))":[100,163,139],"\u30ca\u30ce":[126,143],")-":140,"),":[66,116],").":[122,131,27,140],"_exec":[2,76,14],")\"":[101,168,27,116,83],".htpasswd":[8,48],")'":[39,168,142,150,27,42,43,169,67,16,170,164,139],"[rpm":[6,23,104,116,70],tablename:10,"\u7c21\u6613":[70,131,68],"\u63a2\u3057":[30,156],"\u30d1\u30e9\u30e1\u30bf":[35,36,72,112,75,85,56,114,105,14,15,21,108,102,17,57,50,76,47,110,113],shinya:6,funa:[],func:[35,47,14],"\u30ad\u30fc":[60,100,175,3,113,77,86,40,168,89,116,143,6,105,158,54,70,139,104,47,59],"\u3067\u307e\u3068\u3081":163,handling:129,")]":116,"-api":79,"\u3067\u306a\u3051\u308c":139,"\u5236\u9650":[],"\\(":168,"-apt":12,formats:138,"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[6,23,116],"_nromalize":175,"\u632f\u821e\u3044":[6,70,88,116,107],"\u63a1\u7528":[64,30,94],"<=":[139,170,8,116],binding:[150,37,42],"\u5316\u524d":54,"</":[150,101,4,42,27],"<-":48,"\u8a00\u3044":[169,132],"\u4e00\u7fa4":63,">\n<":4,swig:37,"\u56de\u52d5":156,alert:[5,70,7,8,138],levels:8,ifexists:52,stack:[116,160],"\u7121\u99c4":30,"<[":[],recoverable:[75,55],"\u8981\u6c42":[115,3,116,169],"-path":[],"_file":[2,126,8,163,48,160],"/senna":146,mysql:[153,100,37,140,77,30,150,12,124,27,42,141,70,163,120],"\u5316\u51e6":[23,54],"\u30bd\u30fc\u30c8":[],"_files":[2,160],location:[],"=query":122,emergency:[138,8],format:[35,37,4,122,138,98,111],"\u30cf\u30c3\u30b7\u30e5":[6,74,140,117],"\u30bd\u30fc\u30b9":[],"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":140,"\u540c\u7b49":[134,156],"continue":70,"_nabe":70,"\u4ed5\u65b9":[],"\u30d6\u30ed\u30c3\u30af":[30,8,116],"_flow":[2,160],"_bool":[143,72],"\u30af\u30ed\u30fc\u30f3":174,"\u65e2\u77e5":[],"-mruby":70,bi:[64,134],"\u4e0a\u4f4d":[64,105],wget:[153,120,20,12,141,174],by:[],"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[70,131],"\"yu":146,"\u3068\u308f\u304b\u308b":140,garbage:[117,116],into:[122,43],"\u3088\u308a":[40,134,6,23,174,100,68,139,77,11,106,57,59,63,64,156,116,70,71,162,163,164,168,121,170,143,128],"|key":[100,3,83,64,170,168,27,106,107,133,129,71,139,59],"\u8457\u4f5c":70,"\u30d5\u30a9\u30ed\u30ef\u30fc":140,pcre:6,span:[150,101,27,42],"\u56fd\u969b":111,"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],"\u5074\u9762":30,"\u6574\u3063":165,opens:[129,102,75],"\"keyword":100,link:[11,94,121],line:[126,73,8,14],"\uff08ci":73,posted:170,"\u8868\u3059":[61,82,39,11,66,68,63,84],".php":140,"\u8868\u3057":[84,10,3,40,126,2,54,63],".am":18,ul:82,"\u5206\u89e3":63,"\u3054\u307f":[115,116],"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":[],"char":[35,75,56,114,14,105,70,72,76,47,113],"\u3054\u3068":[],"\u3075\u308a":142,"\u304b\u307e\u3044":3,defines:172,codes:140,taro:39,">uptime":4,logyyyymmddhhmmss:122,"=null":[127,100,82,109,59],invalid:[35,122,100,160],"\u8868\u308f":72,"\u898b\u4ed8\u3051":116,"\u7acb\u3061":126,elements:77,".dump":23,"\u53f3\u8fba":[23,143],"(nginx":131,"\u6307\u5b9a":[],"\u4e00\u7dd2":[1,68,3,77,64,100,6,70,59],"\u3088\u304f":[100,88,77],"\u3088\u3046":[],"\u3088\u3044":[100,168,121,71,72,48,111],"\u3088\u3073":63,age:[87,100,88],"/wgs":67,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":116,oracle:[],"\u3088\u3063":67,"\u8a66\u884c":30,hello:[106,152,139,41],code:[126,138,118,4,111],partial:63,"\u3067\u307f":30,",\"title":3,results:[6,122,105,27],existing:[58,55,18],"/sysctl":[154,129,81],"\u843d\u3061":[143,116],"\u3067\u306f":[70,14],"\u3067\u306e":[126,70,27],"-lzo":[],"/json":[23,8,48],"\u3067\u3069":142,"\u3067\u3057":[20,11,139,70],"\u8a2d\u5b9a\u6e08\u307f":131,"\u306a\u304a\u3053\u306e":156,":..":100,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[23,143],"\u3067\u3044":[11,170,100,139],"\u30ea\u30af\u30a8\u30b9\u30c8uri":8,"\u3067\u304f":[100,77,128,70,80,163,73],"\u3067\u304d":[],"{user":129,"-lz4":[],"\u7279\u306b":[63,140],"[snippet":[70,27],"'now":170,"\u8ca2\u732e":116,"\u983b\u5ea6":142,"\u6368\u3066":23,".clean":140,"\u5f15\u304d\u7d9a\u304d":116,"try":[170,17],"\u6b8b\u308b":23,">rroonga":[150,42],"(wgs":67,"\u30aa\u30d7\u30b7\u30e7\u30f3":[],"_posting":[102,112],"\u4e00\u81f4\u3057":[100,134],"\u62bd\u8c61":15,licenses:[],".xml":4,index:[39,37,112,75,140,78,87,168,27,102,55,129,70,71,139,113],directive:8,"_operator":[105,50,76,113,102],"\u306e\u3067\u3057\u3087":100,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":93,"\u30ef\u30fc\u30ab":8,"\u5224\u65ad":[75,139],"\u5fc3\u304c":165,nargs:76,"\u516c\u958b":[23,143,116,140,70],"?parameter":8,let:106,ubuntu:[],ctx:[35,75,125,14,15,105,72,76,47,113],"\u73fe\u308c":82,"\u3067\u3082":[0,2,3,86,134,42,6,93,8,23,174,153,100,140,12,107,59,64,156,116,66,169,67,160,70,71,164,165,120,30,27,141,128,111,94],grnslap:[],buffered:78,"\u8d85\u904e":[154,116],firefox:111,"\u767a\u4fe1":[],"\u30c7\u30b6\u30a4\u30f3":6,"\u9014\u4e2d":[140,89,6,16,160,164],"\u3046\u3048":[6,23],tools:[],"\u4ee5\u964d":[84,101,140,150,143,89,116,42,94,70,23,175,165,111],"\u3059\u304f":169,zip:[],illegal:160,"\"sea":164,"\u3044\u304f\u3064":80,next:[102,47],"\u3046\u3061":[84,10,113,6,117,105,63,88,57,23,72],"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":71,"\u30af\u30a9\u30fc\u30c8":[82,124,168],"\u3059\u308b":[],"\u7d4c\u7def\u5ea6":[],"\u3059\u308c":[3,168,121,30,150,88,156,105,9,139],"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":[],occurred:[129,102],"-leaner":58,"\u578b\u6307":6,"_escape":[],"\uff08groonga":30,"\u4f7f\u3044\u65b9":[],"this":[35,3,83,6,8,95,138,98,48,100,139,11,14,55,18,113,72,164,168,75,122,27,172,127,129,94],"\u6b8b\u308a":[100,10,163,59],"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":6,"\u6e21\u3055":[6,68,63,47,116],"\u6e21\u3057":[63,3,168,52,94,70],"\u6e21\u3059":[104,3],"\u5171\u306b":[72,113],"\u6b8b\u3063":[143,116],edict:70,"\u3002\u3064\u307e\u308a":[100,168,3,17,83],"\u306f\u6708":139,process:[],lock:[],"_estimate":[23,102],"\u7d30\u5206":11,"\u3059\u3050":[30,48],"\u6301\u3061":[100,82,132,87,89,63,8],"\u6301\u3063":[100,82,168,77,30,87,115,6,16,44,155,175,124,139],"\u6301\u3064":[39,100,44,3,139,121,84,11,30,87,89,52,68,105,16,54,169,155,23,175,125],"\u6301\u3066":[152,87],"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":86,"\u3059\u3067":[106,53,82,134,140],"\u3059\u3079":[100,82,146,86,160,156,10,8,63,70,23,170,164,48,99],"\u6b8b\u3057":100,defalt:143,"\u9664\u7b97":[],"-gqtp":[],"\u3044\u304f\u3089":30,"_')":[66,54],"\u4e26\u3073\u9806":67,">starttime":4,tomotaka:23,"\u8a2d\u5b9a":[],alloc:[94,74,3,4,8],"\u4f53\u8fd1":162,"\u578b\u540d":87,element:[139,77],"\u9078\u629e":[100,68,140,30,70,76],allow:[6,141,100,168],":\\\"":52,op:[105,50,76,113,102],"[httpd":[6,70,116],"\u8abf\u3079":[85,29,72,121,162],"\u30ab\u30d0\u30fc":165,lz4:[70,174],"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":77,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":166,yamaguchi:23,"\u3092\u3064\u3051":[100,168],"\u6539\u884c":[104,23,89],"_unavailable":[2,160],"\u6587\u66f8":[],"=platform":[],total:[117,156,129],hobby:138,"\u5de6\u4e0a":[29,1],"\u5de6\u4e0b":1,"[space":168,murakami:[],python:[140,18],billiard:[64,134],lzo:[6,23,160,113,70],"\u4e00\u6642\u7d50\u679c":6,"_per":[23,14],"_implemented":[2,160],"/master":[111,73],"\u7121\u9650":[6,70,143],"\uff08piro":70,"_none":98,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":73,doing:127,"-patch":111,"\u753b\u9762":[70,1,140],frequency:[70,142,16,164,43],"static":[],"\u30b3\u30e1\u30f3\u30c8id":170,"-fd":[122,23],"\u3002\u7701\u7565\u53ef\u80fd":150,"\u4ed5\u69d8":[],"\"\uff08":164,"\"\uff09":[11,1,67,164],"_friends":39,"\u30bb\u30b0\u30e1\u30f3\u30c8":[70,32,72,117],removing:75,"3ki":143,owned:76,"\u63db\u3048\u308b":[132,140],"\uff08\u300c":[64,175],owner:8,"\u5897\u5927":68,"\u5bb9\u91cf":[117,100],"\u30cb\u30db\u30f3\u30b4":164,behaves:122,system:[100,168,20,40,27,129,139],"-keys":140,"\u30b9\u30da\u30eb":163,"\"weight":11,"\u304b\u3061":[100,134],"\u304b\u3064":[57,100,134,116,139],"_logger":6,"\u304b\u3069":[100,168,64,154,88,29,67,8,142,70,162],"\u756a\u76ee":[100,82,3,168,11,87,124,116,105,57,139],"\u8ffd\u8de1":[],itagaki:143,"\u500d\u7cbe":40,"\u6253\u3061\u5207\u308a":116,"\u304b\u3051":[116,99],"\u9650\u6587":[23,59],"_results":105,"\u304b\u305a":[6,70],"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":134,"false":[135,133,5,40,7,95,99,139,140,11,107,53,144,176,150,65,116,66,169,158,88,70,118,168,143,127],"_request":95,"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"2grn":70,"*s":70,"_charlen":35,"\u304b\u3082":[62,44,115,124,126,155,53,137,71],documents:[107,27],"\u304b\u3089":[],"\u3044b":[64,134],tokendelimitnull:[155,33,136],"_const":[63,76],"\u3069\u3061\u3089":[0,3,124,14,157,132,71,48],"*init":47,"\u6a5f\u80fd":[],"*/":76,"\u3089\u308c":[15,100,82,3,83,86,87,143,115,116,14,6,30,63,97,23,71,158,99],"\u4e2d\u9593":[63,134],"\u3064\u3076\u3084\u304d":106,"_suffix":23,segment:117,"\u6e80\u305f":[169,67,63],"*\"":[70,71,100,136],latin1:6,"\u5168\u89d2":[57,23,175,3],"\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":89,"\u3067\u3059\u306d":115,"\u5408\u81f4":[67,3],"mo\u30d5\u30a1\u30a4\u30eb":111,"(arugment":139,"*res":[105,50,102],"\u30ea\u30af\u30a8\u30b9\u30c8":[135,5,7,8,97,48,99,100,144,146,176,148,65,116,74,117,160,70,166,66,26,31,32,130],brew:[81,18],".gz":[153,120,140,20,12,81,141,174,111],"=r":6,"_initialized":[2,160],"_literal":70,"=g":122,"'localhost":[166,89],"=`":18,"=c":93,"=i":140,"=\\":[150,101,27,42],should:[35,123,118,18],terminal:170,"\u8d70\u3063":53,"\u30ea\u30ea\u30fc\u30b9":[],"\u5316\u5bfe":111,handle:129,means:[35,100,102,127,8,95,138,129,98,164],"==":139,"=$":[174,140,111],"='":101,"\"ellip":162,"=\"":[100,4,140,20,150,27,42],db1:48,"=/":[163,174,89,165,140],db2:48,"=)":63,"/html":[23,111,48,18],">cache":4,"\u307b\u3068\u3093\u3069":14,"_search":[],nise:70,"\u64cd\u4f5c":[],travis:[],"\u7cfb\u5ea7":[29,162],"/doc":140,"\u3002debian":165,"\u306b\u3064\u3044\u3066":[82,3,5,6,2,9,10,11,12,16,17,20,169,23,26,29,7,32,135,40,43,44,48,153,52,53,57,59,46,61,62,63,65,66,67,68,70,72,73,74,77,141,80,160,0,87,89,91,95,97,174,99,100,103,81,107,112,116,117,118,120,121,30,124,127,129,130,134,137,140,142,144,146,148,149,151,41,154,155,158,109,162,163,164,168,170,167,176],"\u8ffd\u8a18":[6,140],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":115,"_connected":[2,160],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":116,"/var":[131,174,89,8,55],configuration:[129,8,116],"/status":[166,94,4,48,8],webclips:101,valgrind:165,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[168,86,143,116,23,139,59],etc:[129,8,48],tld:121,":\u5206":170,ci:[],ch:82,"\u533a\u5225":[40,100,133],allocates:35,cd:[111,120,140,153,20,12,141,93,174,81],"\u7d99\u7d9a":[6,89,73],"\u591a\u69d8":30,zenigata:39,"\u66ff\u3048\u308b":3,allocated:35,"\u306b\u3044\u304f\u3064\u304b":116,"\u304a\u3055\u3089\u3044\u3057":115,"_itoh":23,"_vesion":101,"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":6,"[plugin":70,adjuster:[],"@yappo":[70,116],"\u58ca\u308c":[6,23,143,117],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":1,"\u3068\u3064\u3044":67,"\u4fdd\u6301":[15,11,91,170,14],"\u518d\u5e30":[100,63,135,8,72,163,99],"\u5968\u6271\u3044":70,"\u30c7\u30a3\u30b9\u30af":[1,71],"\u6b20\u843d":116,tokenkytea:6,ultra:39,"\u307f\u305f\u3059":170,"0x":[11,40,104,168,160],"\u58ca\u3059":6,site:[39,3,121,11,127,67,94],"\u4e00\u62ec\u3057":105,"_versions":140,"\u305d\u308c\u304b\u3089":[100,77],"\u5ea7\u6a19\u5024":[],"\u4f75\u305b":3,"\u3002\"":[121,64,170,116,16,94,70],"\u3002#":[23,143,170],"\u3002-":[57,31,174,85],"\u3002.":111,"\u3002(":[153,131,63,140,156,89,52,158,17,57,71,47],"\u3002)":[57,71,158,156],"\u300cbilliard":134,"\u3002:":[3,134,89,43,8,97,48,100,10,140,142,156,52,16,144,146,155,111,44,64,154,115,66,117,31,23,164,165,157,129,59,76],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":70,"\u982d\u6587":160,"\u518d\u5ea6":[70,63,17],"\"roonga":157,v1:63,v2:63,architectures:140,".group":169,php:6,"\u3002[":[6,70,3,116],"_lzo":[66,2,113],off:[70,8],"\u3002c":[79,30,2],"\u3002n":[64,82,124],"\u4e00\u77ed":30,command:[],ecmascript:[6,100,147,116,139],"_recover":[70,75],akira:[],"\u81ea\u7531":[30,63,54,160],gettext:[111,18],"\u9806\u5e8f":[64,97,100,3],web:[1,168,140,142,100,43,16,174],jinja:[],"\u6b63\u898f\u5316":[6,124,27],valid:43,"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":6,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":89,dest:[166,105,89],"|http":156,five:3,"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[23,59,116,139,86],tvsec:74,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[],"\u5947\u6570":139,string2:103,"\u672c\u8cea":156,become:37,"*target":76,"\"rect":[6,162],"\u904b\u55b6":[],"/source":[111,120,140,141,79,12,20,93,18,153,174,81],"\u5727\u7e2e":[],"\u63db\u3048":[57,72,83],nneded:129,"\u30dc\u30bf\u30f3":[6,116,140,111],does:55,"\u53d6\u308a\u9664\u3044":105,"_group":105,"\u53d6\u308a\u9664\u304d":[101,63],"(debian":131,iwai:[6,104],"\u5206z":40,"_queries":[94,74,3,4,8],"\u91cd\u307f\u3064\u304d":70,software:[],coverage:165,"\u7d42\u4e86\u30bf\u30b0":150,"\u7d42\u3048":140,"(get":166,"\u300cusers":170,"\u9805\u76ee":[1,100,91,74,117,131,48,59],"-node":120,"_remove":[],"_started":126,"\u89a7\u4e0b":165,"function":[35,37,122,14,126,160,149],"\u300cpopular":100,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[100,10,154,156,176,174],"-dd":[138,139],sigstop:116,construction:[],be:[35,102,75,122,123,43,138,127,105,95,18,129,118,72,76,58,113],compute:129,"\u4e00\u756a":[100,174,48,77],official:140,"\u3002iptables":94,problem:129,yuki:23,bigram:[],"int":[35,3,4,39,85,78,40,43,6,47,100,68,139,77,11,142,105,14,15,107,53,16,17,21,61,112,113,64,56,116,57,67,102,88,70,71,72,164,168,75,121,118,170,143,76],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":70,inv:156,"\u69d8\u3005":[],"*proc":85,"\uff08not":147,redcloth:140,"%post":6,compared:27,"\u7570\u306a\u308b":[],variety:39,"/message":140,"/default":[6,131],details:[35,123,138,129],"'user":107,"\u4eba\u3068":115,"/sources":141,"_query":[],"+ff":175,eof:89,"_hugetlb":23,"-threshold":[],searched:102,rep:156,"*string":76,saves:122,"/sysconfig":131,"\u3070\u308c\u308b":143,lgpl:37,"const":[35,75,56,114,104,14,105,57,72,76,47,113],"/travis":73,spec:[6,143,116,140],"\u30e9\u30a4\u30bb\u30f3\u30b9":6,"\u304b\u305a\u3072\u3053\u3055\u3093":6,"\u4e0b\u66f8\u304d":84,editrc:23,"\u3002tokendelimit":43,"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":140,"\u4f8b\u3068\u3068\u3082":68,".en":140,"\u932f\u8aa4":30,upload:140,msyql:77,"[macports":23,starttime:[94,74,3,4,8],"\u7c21\u5358":[],"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":143,"\u69cb\u9020\u4f53":[70,112,47,14],"\u304c\u3072\u3068\u3064":163,"/branches":165,"\u65e5\u672c\u6e2c":68,incompatible:160,"\u9006\u6587\u66f8\u51fa":70,"\u7bc4\u56f2\u5916":70,above:[122,164,95,43],"\u4e8c\u3064":[10,41,82,169,156,134,124,14,107,68,63],"\u578b\u3068\u3057\u3066":40,"\u30a8\u30f3\u30b3\u30fc\u30c9":[31,175,143],"\u30af\u30a8\u30ea\u30ed\u30b0":[6,23,16,164,43],obtained:35,"\u540c\u3058\u4f8b":71,"-admin":6,"\u30d0\u30c3\u30d5\u30a1":[36,113,85,116,6,117,105,71,72,76],"-h":[89,8,48],"_table":[],negative:[35,47],program:[122,58],kytea:[6,82,116,174],bundled:[],separated:98,"\u304b\u304b\u308b":[106,105,3],"\u9df2\u7530\u57fa":116,aware:35,"_register":[35,136],"\u3064\u3065\u3044":170,"\u62bc\u3057":3,word:[6,100,164,168,139],work:138,"\u62bc\u3059":[3,111],"\u30a2\u30fc\u30ab\u30a4\u30d6":[93,140,111],"\u5316\u6642":23,"\u540c\u68b1":[6,70,143,111],indicates:138,"\u73fe\u983b":70,"\u5bfe\u51e6":70,"\u30b9\u30ad\u30e3\u30f3":[150,42],provide:122,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":140,length:35,recovers:[75,55],"\"apple":175,"if":[35,127,8,95,138,98,47,102,139,77,12,14,105,17,55,58,63,113,72,164,75,122,123,172,141,129],"-lines":[122,23],"\u306e\u3046\u3061":[87,168],"/security":129,"_plugins":23,"\u306b\u5bfe\u3057\u7570":107,after:[122,129,102,18],"|with":[106,152,3,83,77,64,170,87,100,124,27,42,66,107,169,129,70,71,139,150,168],"\u76f4\u4e0b":23,lat:156,"_title":[156,71,3],".description":170,"*func":[47,14],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":143,"@naoina":[6,116],"\u30d9\u30fc\u30b7\u30c3\u30af":48,"\u306e\u3069\u3061\u3089\u304b":[100,88,168,139],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[],"\u5bfe\u8c61id":36,".conf":[154,131,8,129],japan:[158,94,121],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":163,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":70,"\"say":139,"/windows":[93,140],"\u4e0b\u9650":[57,112],then:[35,122,8,164],them:[129,76],"\u8f9e\u691c":[23,139,86],"_token":70,"break":55,they:[129,138],"\u5168\u3066":[100,139,40,106,105,8,147,71,111],"\u697d\u3057":[64,134],"\u56de\u6570":6,"\u3042\u304d\u3089":70,"-send":[122,58],"\u7a81\u7136":116,"\u5316\u65b9":[175,124],carlos:[53,118],serach:16,"/null":1,"_options":116,logs:[122,97,138,58,59],"<endpoint":58,patsuffix:133,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":6,"+ y":40,"+a":168,network:160,"_directory":[2,160],".deb":140,"\u3068\u3059\u3079\u3066":[6,100],"-rsync":140,wgs:[39,68,121,11,170,40,29,67,102,94,23,162],"\u6210\u308a":[100,168,160],"\u90e8\u5206":[],"\u77ed\u3044":[170,143],"+ \"":6,"_tp":166,"\u77ed\u304f":[106,30],standard:40,"_to":[170,71,114],"\u30eb\u30fc\u30eb":[70,82,143,48],hatake:[],"\u30eb\u30fc\u30d7":[6,70,143],created:[35,122,170],"++":[153,120,140,30,104,70,23,174,76],"+-":[76,8],creates:[35,129,76,172,138],"\"ni":164,"\"no":6,"\u6709\u7121":[11,150],"\u30eb\u30fc\u30c8":23,"\u59a5\u5f53":86,"\u8aad\u307f\u8fbc\u3093":[62,94],"><":[76,4],">=":[116,139],">>":[116,139],"_next":[57,102,143,112,116],">.":[150,42],">\"":[100,101,150,116],"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":15,"\u3082\u3089\u3048\u308b":115,"\u30b5\u30dd\u30fc\u30c8":[84,1,82,4,86,40,131,6,8,23,137,174,48,10,139,140,11,104,12,106,107,57,59,62,156,115,116,70,71,163,73,168,121,30,143,27,173,175,94],"\u540c\u4e00":[],"\u898b\u306a\u3057":57,john:[158,133],"/lc":[140,111],"\u63a2\u7d22":30,tokenfilterstem:[],">n":4,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[105,72,75,113],"\u3069\u3061\u3089\u304b":[139,27,42,168],"\"unknown":114,"\u73fe\u5728":[91,84,167,3,75,140,30,156,14,15,166,53,109,170,176,112,72,47,59],target:[],">_":175,"\u3002value":[72,54],"\u57fa\u76e4":14,":byte":56,"\u30d6\u30fc\u30eb":[11,40],contents:35,latency:156,dbms:27,"\u5f8c\u8005":[67,175,163],",\\\"":52,"\u8ff0\u3079":3,indexbuf:113,"_distance":[],indexed:55,"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[122,116,111],gzip:[],"\u5408\u308f\u305b":[6,113,139],gronnga:157,"\u3002host":94,"-strings":104,"/releases":[],"\u767a\u751f":[66,1,174,140,64,30,126,116,14,6,105,70,72,59],"\u8003\u3048":[3,168,121,30,115,48],"\u5270\u4f59":[],"/ruby":[],keywords:76,"\u65e2\u5b9a":6,"_input":[126,2],"\u771f\u306a\u3089":139,"*section":113,rectangle:[],"-frequency":23,iptables:48,"do":[70,156,127],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":143,"\u3082\u3057x":116,"\u3055\u3089\u306b":[39,10,3,77,86,157,30,70],de:111,"\u8ab0\u304b":80,"[libedit":23,"\u8ab0\u304c":170,runs:58,"\u81ea\u4f53":[70,168],"\u8ab0\u3067":70,"\u5341\u4e00":[],"\u4e0b\u90e8":140,"_compress":113,depends:37,"\u67d4\u8edf":[107,147,30],"\u5bfe\u8c61obj":36,"\u3002json":52,"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":63,terms:[152,3,168,117,64,150,100,89,27,42,41,107,129,139],"\u3044\u305a\u308c":[40,10,54],"\uff12\u3064":67,packages:[111,120,140,153,20,12,131,141,93,174,81],"_tables":116,"\u69cb\u3044":[164,27,42,111],ill:134,"\u3082\u3046\u307e\u304f":174,"\u4e00\u4ef6":[],"\u4e09\u7a2e":[],requests:[122,123,138],com:[125,121],col:72,compressed:[],"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u6709\u76ca":30,calros:88,"\u30d1\u30fc\u30b5\u30fc":168,"\u95b2\u89a7":94,")\u300d":89,snippet3:27,enginen:164,"_accepted":95,"'needle":63,"\u3082\u3057\u3053\u306e":154,"\u65b0\u305f":[85,105,63,75,113],applied:[129,37],"-secret":140,"\u904e\u7a0b":54,gnu:[],zlib:[66,143,113,12,116,6,141,160,70,23,174],"_message":[126,71],"_only":[2,160],"\u7e4b\u3052":70,aio:116,"\u5165\u529b":[1,135,3,5,89,43,94,97,99,142,52,16,144,146,176,148,156,65,116,66,117,23,104,164,166,74,157,126,32],"_close":[35,63,112,78,14,15,70,57,23,72,76],"[solaris":6,cond:116,conf:154,"\u56fa\u5b9a\u9577":143,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":63,"\u9069\u3057":[106,30,59],"-dataset":[],"\u4e0d\u5177\u5408":[6,70,80,116],"\u6771\u4eac":[64,67,68,134],"-packages":140,hana:39,"\u76ee\u7684":[174,82,116],"\u57fa\u70b9":100,"\u72b6\u614b":[166,74,120,143,3,140,117,64,115,12,89,14,6,141,30,153],client:8,the:[],"_shutdowned":[2,160],"\u30de\u30c3\u30d4\u30f3\u30b0":154,"\u826f\u4e8c":70,solaris:[],"_score":[100,113,142,116,6,67,54,170,23,139],"\u8db3\u3057":139,repoforge:[6,120],thanks:170,"\u3068\u306a\u3063":116,adding:[123,18],"=sjis":174,"\u7027\u5185":116,"\u7528\u3044\u308b":[39,3,11,30,91,67,94,72],"\u6307\u6a19":72,jekyll:140,"\u885d\u7a81":[],"\u30ed\u30c3\u30af":[1,89,116,6,17,23,72,99],"\u307e\u3068\u3081\u308b":8,"_expr":[],security:[],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[174,126,10,156],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[],"\u307e\u3068\u3081\u3066":[11,30,100,140,121],"-token":[70,12,141],"\u3057\u304d\u308c":6,tokenbigramsplitsymbolalphadigit:[64,107,16,33,155],comments:[],"_arg":2,tasuku:37,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":140,".sourceforge":[140,22],"_compile":76,"-threads":[122,89],repository:[],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":[],"\u8db3\u308a":[23,163],"\u30b5\u30fc\u30d3\u30b9":[6,70,30,116,73],substitution:107,"\u7a32\u7530":116,post:[],properties:138,obj:[36,72,75,85,117,50,76,47,110,113],"*ic":112,accepts:[122,118],"*ii":78,"\u6709\u7528":[3,86,87,126,8,70,48],"\"text":23,"\u5224\u5b9a":67,zxvf:140,"\u3068\u306a\u308a":[168,48,27,42,94],".h":[79,35],"**":[113,7,57,72,47,75],"float":[6,11,68,4],"\uff09\u3001":[86,134],"\u6700\u521d":[100,3,168,11,150,88,115,27,42,14,126,122,70,23,71,139,163,131,59],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[100,77],"\u6e80\u3059":116,compression:[],"_socket":[2,160],"\u5927\u6587":100,"\u5b89\u5168":94,way:58,cdbs:23,was:[],"_body":[64,66,83],"\u6027\u80fd":[],encoded:122,"true":[1,135,3,83,5,40,62,42,127,41,7,95,9,137,101,118,99,106,100,68,139,77,11,176,52,107,53,144,133,87,59,39,152,150,65,116,66,169,67,158,88,70,71,162,168,121,170,27,29,175],maximum:123,"\u30e1\u30c3\u30bb\u30fc\u30b8":[70,10,170],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[152,82,3,64,134,100,43,41,16,175,23,174,59],mte:37,"\u6587\u5b57":[1,82,3,83,40,134,89,42,6,7,23,100,68,139,103,11,14,52,105,16,57,59,39,41,63,150,116,162,67,70,71,72,163,164,168,75,121,30,77,124,27,29,170,175,76],"\u7d44\u307f\u8fbc\u3080":[30,63,8],"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[17,116],score1:63,score2:63,distributions:140,"\u3054\u89a7\u304f":[3,165],physical:117,test:[3,140,11,170,156,94,71,165],"\u5c5e\u6027":[82,124,136,66,44,97,155,101],"\u305f\u3081\u3057":67,truncate:[],welcome:[170,100,168,139],update:[],"\u547d\u4ee4":[],"[gqtp":116,scorer:[],tajima:6,masaharu:[6,104],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":23,"/debian":141,"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":160,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[],"<threshold":89,"\u901a\u77e5":140,"(ptr":143,"_denied":[2,160],"\u307e\u3067\u3057\u3070\u3089\u304f":[],"\u8a2d\u6a02":23,"\u5f53\u3066\u308b":11,entries:[100,168,150,42,146,129,139],"/http":[131,8],"\u72b6\u6cc1":[64,85,30],"\u3068\u3057\u3066":[],"\u4e0d\u6574\u5408":1,localhost:[166,4,140,122,156,89,8,95,23,48],"(database":154,"4gbyte":60,upper:[],initializes:35,initialized:35,"\u3002cursor":57,"[munin":[6,23,116,70],"\u30c8\u30e2":39,shared:[17,113,75],supporting:8,"dat\u30ad\u30fc":116,"[deb":[6,23,116,70],"\u6e2c\u4f4d":30,"\u30b5\u30d6\u30bf\u30b9\u30af":140,"\u96c6\u5408":[6,105,147,132,77],appears:27,change:[6,8,48,18],"\u30ec\u30dd\u30fc\u30c8":174,liblzo:[141,12],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[64,100,147],"\u305d\u306e\u969b":140,usually:58,".spec":23,".exe":93,"\u305d\u306e\u307e\u307e":140,"\u6700\u5c0f":[153,120,12,131,141,88],marked:131,"-cutter":140,"'haystack":63,"\u7d71\u5408":[6,30,116],httpd:[6,70,104,116,140],"\u6307\u6570":139,https:[],selects:102,"/copyright":70,"enter\u30ad\u30fc":116,"\u6d41\u91cf":48,"_plugin":[35,23,136,70],cas:160,"\u884c\u308f":[166,39,100,156],nfkc:175,can:[35,111,75,123,27,43,138,95,8,55,18,129,118,98,164,17],clearlock:[],",\"http":11,"_stable":108,"_stamp":138,"-sphinx":18,"\u884c\u3063":[165,70,67,140,121],"\u5b89\u5fc3":115,"-com":140,",'":[11,40],"\u884c\u3044":[166,39,63,3,140,64,156,134,89,107,105,170,57,71,72],",\"":[39,4,170,117,146,70,71],",.":140,mpaa:88,"\u884c\u3048":[70,3,168,165,107],write:[100,104,127,18,69,33],"^commit":140,"\u8fd1\u508d":[],"_zone":8,"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":116,"\u5316\u6e08":[72,75],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":152,uint:[143,3,83,40,6,94,97,118,133,100,139,103,106,53,87,59,39,152,64,116,169,67,158,88,70,71,168,121,77,126,129,175],",_":[39,100,3,139,121,77,142,107,67,170],"\u3057\u306a\u3051\u308c":168,"\u5207\u308a":[148,23,116,140,70],"\u8fd4\u3059\u304b":142,ghz:156,"\u5404\u56fd":140,"\u30b2\u30c3\u30c8":22,automatically:55,",{":[156,4],"\u304b\u308f\u308a":[64,153],"\u5357\u534a":6,"\u82f1\u8a9e":[0,23,111,140,70],"=-":174,"\u5bfe\u8c61ctx":14,ieee:40,"_account":111,":ss":[138,139],"_tsv":[98,163],"\u30bd\u30d5\u30c8":163,"-libedit":143,"=(":140,"\u3002gdb":165,"\u78ba\u5b9a":142,"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":174,"\u4f5c\u7528":6,non:55,"\u542b\u3081\u308b":[100,82,3,168,140,104,124,70,23,163],rake:140,"\"version":4,"\"ruby":77,"\"vector":116,alisa:107,now:[],"\u3086\u304d":133,"_lcp":105,january:122,"[normalizer":70,"\uff4d\uff59\uff53\uff51\uff4c":[150,42],"\u8aad\u307f\u8fbc\u3081\u308b":146,el:120,domain:[],en:[142,82,164],ea:[138,82],"\u30e9\u30d9\u30eb":116,kana:[142,16,164,172,43],ex:82,year:138,"\u70b9\u6570":[],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":140,opened:[129,55,138],space:[35,168,77],"\u518d\u69cb":23,increase:129,"\u3065\u3051":[],"/files":[140,18],shows:98,"\u5230\u9054":60,args:89,"\u5d8b\u7530":6,"-rroonga":15,"/pub":120,"\u7d50\u5408\u5f0f":[],arnaud:23,"[windows":[6,23,116,70],british:83,"\u3078\u306e":[11,174,14],"_block":[2,160],omitted:[127,4],variables:35,"\u305f\u3069\u308b":39,"_process":[2,160],message:[35,138,71,7],xt:82,size:[],unlink:76,checked:140,silent:73,bookmark:77,"_obj":[],"\uff08,":3,"\uff08-":[100,3],".git":[96,140,111],"\u30bd\u30b1\u30c3\u30c8":[66,135,5,65,6,117,7,144,146,148,176,97,32,74,130,99],"\u3044\u308c":[6,11,72],"\u3044\u308b":[],that:[35,100,102,113,122,27,164,6,127,105,8,95,138,129,98,76,47,17],kenichi:[23,143],localnames:146,"\u6a29\u8868":70,"=path":[],libevent:[174,141,12],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":109,"\uff08@":[23,143],x6:140,than:[138,129,77,43],"\u30d5\u30a9\u30fc\u30e0":[100,147,116,168],"*next":47,"\"\u4e8c":[],"[index":70,"/gat":[67,3,121],accesses:[129,113],"_basic":[8,48],"\u5404\u547d":156,browser:111,"/bundled":[],"(scope":169,"\u3044\u304d":[115,3,140],remained:138,"\u3059\u308b\u304b":121,"\u3044\u3044":[115,22],"-zlib":[],"\u30b3\u30f3\u30d1\u30a4\u30eb":[104,116],"\u30b3\u30f3\u30d1\u30a4\u30e9":[23,70],"_circle":[],engin:[142,164],"\u591a\u5f69":30,"=none":[41,82,124],"\u3044\u3064":164,"/table":127,"*buffer":72,"\u3044\u307e":62,"\u9806\u6b21":[166,89,3,94],":doc":76,"|suggest":142,price:11,"\u5c0e\u5165":[70,10,165],"_section":[113,170,87,66,70,71],"\u79fb\u52d5":[140,79,6,93,176,23],"\u672a\u4f7f\u7528":160,"\u3068\u308a\u3068\u3093":[168,139],"-yyy":111,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[],"\u305f\u3069\u3063":170,"\u3057\u3044":[64,134],"\u3057\u304f":116,"\u975e\u4e92":[6,70,116],"\u65b0\u5bbf\u99c5":67,"\u3057\u304b":[100,168,11,139,8,70,71,111,48,59],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],oldvalue:113,"\u3057\u3066":[39,100,143,3,140,121,64,12,115,116,6,105,8,165,111],"\u6700\u5927":[60,15,1,143,139,61,86,100,89,27,116,6,160,88,154,156,23,70,56,48,109],"\u30bf\u30a4\u30c8\u30eb":[39,100,139,11,71,168],title:[39,3,140,121,169,11,116,127,94,71],only:[35,55,8,95,118,98],"\u3057\u307e":115,"-server":[],"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":8,cannot:[],"\u5f8c\u8ff0":[57,169,63,140],"1\u6708":[11,170,40,100,139],"\u7528\u5909":70,"/gqtp":[131,116],"\u62c5\u5f53\u8005":140,"\u8b70\u8ad6":0,elfring:6,"\u840e\u7e2e":115,"*'":100,"\u300cbob":170,"({":122,"\u4e21\u65b9":[100,170,168,77,86,106,30,139,164,133],"(scan":165,"\u8a18\u6cd5":[71,139],"\u70b9\u4ee5\u4e0b":11,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":116,"_mode":70,"\u5dee\u96c6\u5408":139,between:[],"import":140,"\u5426\u304b":88,notice:[5,7,8],unlocks:35,"\u3057\u308c":[126,155,53,44],"\u3057\u308a":115,tokenbigrma:82,"\u3057\u3088":[36,63,11,106,116,14,52,68,17,23],"\u672a\u8a2d":6,article:71,"\u6a5f\u68b0":70,"\u3079\u30fc\u30b9":70,"\u8d77\u3053\u3063":53,"\u975e\u4f9d":120,"-groonga":[96,170,156,140],"-time":27,"\u5c55\u958b\u5f8c":100,learning:[],"\u8868\u8a18":[68,83,140,77,11,40,116,6,67,23,139,111],"\u8d70\u3089":53,"\u578b\u60c5":6,"\u3002callback":63,"\u8868\u8a08":163,"'>":101,"';":89,"=yes":[165,100,104,116,140],ruby:[],"\u5438\u53ce":3,developing:152,these:[27,55],"\u4f55\u3089\u304b":40,"\u30b7\u30b0\u30ca\u30eb":[23,70],geodetic:40,"\u5f8c\u65b9\u4e00\u81f4":[],"\u4f7f\u7528\u4f8b":68,"/packages":140,shorttext:[3,83,86,40,89,41,42,43,94,23,97,102,118,133,100,68,139,77,11,142,106,107,53,16,146,57,87,59,39,152,64,150,156,66,169,67,158,88,70,71,101,164,168,121,170,143,27,126,127,129,175],"\u3002\u3002":84,"\u3002\u300c":[39,100,82,168,124,41,139,71,59],"\u3002\u300d":64,"\u5fc5\u8981":[],canceled:95,", {":[8,48],"\u5c65\u6b74":140,"\u8f9e\u66f8":[153,1,64,143,116,6],develop:[152,10],", [":[],"-dir":156,"\u6fc1\u70b9":175,document:[139,140,150,143,89,27,42,31],"\u3002\u3044":63,favorited:170,"\u5b89\u5b9a":[117,10,104,30],"_space":[2,160],initialization:122,".po\u30d5\u30a1\u30a4\u30eb":[],", \"":[71,150,77],favorites:170,"\u3042\u306a\u305f":[140,22],eito:116,"\u3002\u3059":[106,156],theater:83,"\u8d77\u3053\u308a":83,"\u5171\u901a\u63a5":86,"\u3059\u3079\u3066":[152,10,3,139,121,77,87,105,156,100,6,53,82,8,88,23,174,143,41],"[output":104,"\u3002ecmascript":100,"\u6bd4\u3079":[106,70],excel:163,touch:129,"\u30ab\u30e9\u30e0":[],speed:157,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":74,"\u3002api":[150,27,42,147],"\u4f4e\u304f":64,mmap:[],"_extract":37,"\u4f4e\u3044":[64,100],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":152,real:[129,27],"\u542b\u3081":[100,163,168,140,88],"\u542b\u3080":[166,66,100,63,3,168,77,142,125,134,116,6,170,70,71,139],"\u8a00\u3046":[164,77],"\u4e38\u62ec":3,"\u9234\u6728":6,read:[27,160],"\u8a00\u3048":[64,168],"\u5c55\u958b\u7528":23,amd:140,"\u542b\u3093":[100,63,168,11,170,27,126,157,16,70,139],"_hook":[],using:[98,71,37,43],"\u6df7\u5728":31,"=site":94,output:[],"\u5c5e\u3059\u308b":[57,97,40,72,113],unsplit:63,"\u30c4\u30ea\u30fc":70,"\u30b7\u30b9\u30c6\u30e0":[],"\u5de6\u53f3":3,"id\u9806":57,"\u30ec\u30b9\u30dd\u30f3\u30b9":[15,2,116,6,160,23,70,48],"/column":127,unlocked:35,"\u30de\u30b7\u30f3":89,"\u542b\u307f":[57,126],"\u542b\u307e":[3,87,134,43,6,9,137,97,48,100,139,140,52,107,59,62,63,88,70,163,120,168,170,27,126],"\u5206\u3051":[],tomoatsu:143,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":8,".posted":170,"-static":23,rdbms:30,src:105,central:170,backup:[75,146],processor:[141,120,12,153],"/admin":[23,89],"\u30aa\u30d5\u30bb\u30c3\u30c8":[6,142,100],"\u53f3\u4e0b":[29,1],"\u53f3\u4e0a":1,"=title":94,operator:102,your:[18,127,129,23,73,111],"_example":164,log:[],prepare:8,aren:129,assumed:47,rpmforge:120,rlimit:[138,116],"\u77e5\u8b58":156,cflags:[20,140],"\u306b\u3064\u3076\u3084\u3051":115,"d\u30ad\u30fc":3,"/query":[76,9],",\"links":11,"default":[],"\u30b3\u30b9\u30c8":[106,105],"[benchmark":70,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":116,"\u9032\u3081":[],describe:35,"&request":95,"\u5bfe\u5fdc":[],"\u95a2\u4fc2":[],"\u56db\u89d2\u5f62":84,storage:[150,42],"\u691c\u67fb":72,"_code":[35,126,138],vmstat:154,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[94,48],you:[35,43,8,95,98,141,12,14,55,18,58,111,113,118,164,75,122,123,172,127,129,76],"\u4f4f\u3093":170,string1:103,massachusetts:170,suited:27,"[fedora":[6,70],gemfile:6,"\u4e94\u5165":23,building:98,"\u306a\u306b\u5bfe\u3057":[168,139],"\u5b9a\u7fa9":[135,3,85,40,89,42,6,97,47,100,68,139,106,107,105,54,144,63,113,56,150,65,66,169,158,160,88,70,71,163,168,27,101],"\u8a66\u3057":115,"\u8a66\u3059":177,"\u3002\u00d7":115,cores:122,naoya:[],"\u524d\u8ff0":[64,175,8,59],"\u5343\u4e07":[],month:[39,138],"\u308f\u304b\u3061":134,"\u3002name":[105,113,14],"4byte":160,"\u57fa\u6570":139,longitudexlatitude:116,"-e":89,"-d":[122,58,89,8,94],"-g":93,"\u4e16\u4ee3":10,"-a":[6,89,168],"_rk":57,"-c":[153,120,89,94],"-m":166,"-l":[122,138,89,58],"-n":[122,23,3,89],"-i":[156,89],"_rc":[35,36,100,72,75,85,78,114,105,14,15,21,108,102,17,57,50,76,47,113],"-j":174,"-t":[122,89],"_bulk":76,"-p":[122,156,89,94,166],"-s":[122,89,94,58],"\u304b\u304b\u308a":[106,168,139],"-x":[116,140],"-z":122,"-conditional":23,very:[126,100,168,150,27,42,52,164,139],"\u4ed5\u7d44\u307f":[6,8],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[23,48],"\u76f4\u5f8c":14,":\"":[76,3],"_github":[140,111],"\u6b8a\u547d":156,normalizers:[44,175],"\u9df2\u7530":116,"-\"":41,"--":[35,36,1,82,83,85,89,41,42,43,6,93,8,70,50,47,100,101,139,140,77,105,14,15,107,108,17,21,150,110,39,152,112,113,64,56,114,156,116,57,67,102,23,72,163,75,121,170,143,27,136,31,76],"-(":[139,140],"-+":8,"\u3057\u307e\u3057\u3087":[83,77],masafumi:[],"->":143,"/work":140,"\u518d\u73fe":[64,115,116,147],netbsd:[143,116],"\u975e\u5206":100,"\u53ef\u8aad":70,"[admin":[6,23,116],"@s":143,naoina:[6,116],"-jinja":140,"\u6e2c\u5730":[68,11,40,29,67,162],learned:58,"\"yyyy":139,pub:140,"/ja":[15,140,111],"\u304b\u304b\u3063":[126,100],"\u306b\u95a2\u3059\u308b":[],"\u30aa\u30b9\u30b9\u30e1":[153,120,12,141,93,128],"@'":3,"_dist":6,"\u30ec\u30b3\u30fc\u30c9r":63,daemonize:122,"\u308f\u304b\u308b":70,"\u308f\u304b\u308a":[70,143,121],"\u30b0\u30ed\u30fc\u30d0\u30eb":[6,17],"\u3068\u305d\u306e":10,"\u8ad6\u7406":[],hoge:103,"\u30de\u30c3\u30c1":[],"9\u3064":3,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":6,normallexicon:175,chunks:154,"=groo":122,takes:95,bash:174,"\u6c7a\u307e\u308b":3,"\u6c7a\u307e\u308a":163,"@yito":[6,116],fulltext:[150,82,27,42],".comment":[170,71],"-tokenizer":[153,120,12,116,6,141],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":[],"\u30af\u30ea\u30c3\u30af":[],"\u5fa9\u53f7":140,vm:[],"\u3002eclipse":111,"[load":[6,70],"/homebrew":140,"-databases":[3,122,87,53,94,97],nine:3,"\u9664\u53bb":[41,143,152,101,116],exclude:[6,70,116,88],string:[],"_batch":70,"-address":[6,23,89],snippet:[],"\u3042\u3089\u304b\u3058\u3081":[153,40,140],"[table":116,"_likes":[126,129,100,168,139],fu:82,":`":[],"[dat":[6,104],derived:58,"\u7686\u5ddd":70,"\u901f\u304f":[39,174,59],fa:82,tries:17,"\u3002'":[72,168],fd:122,"\u6642\u9593":[],"/token":[],"\u4e0b\u3055\u3044":[153,120,82,140,87,12,116,6,141,105,173,93,128],"\u56fd\u3054":121,documentation:[129,73,18],"\u4e00\u5bfe":11,narwhal:23,uninstall:6,"\u5909\u63db":[2,86,40,8,170,57,23,175],help:[23,165,111],"\u592b\u5fc5":133,"-wno":23,"\u5dee\u3057":140,"/lzo":[23,143,116],systemd:6,"\u306f\u3044\u304f\u3064\u304b":[60,126,17,48,168],"_rename":[],"\u30ab\u30fc\u30bd\u30eb":[57,23,143,112],shimada:143,systems:27,"\u57fa\u672c":[],"\u76f8\u5bfe\u30d1\u30b9":70,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[89,116,168],"\u4e09\u8c37\u3055\u3093":70,"-test":[165,140],"\u5f62\u72b6":84,stopped:[],"\u30ad\u30fc\u30ef\u30fc\u30c9":[],"\u597d\u304d":111,resizes:35,yito:[6,116],"\u306a\u306a\u3069":[168,139],"\u9032\u3093":30,"\u30b5\u30a4\u30ba":[36,86,6,93,70,153,11,12,105,57,59,60,113,154,116,117,160,23,72,120,30,27,141,128],"_vprintf":70,"=grooon":122,"\"sequence":[142,16,164,43],"\u30d5\u30a1\u30a4\u30eb":[],todo:[],event:[142,172,58,16,43,164],"_position":[106,152,3,83,169,64,170,87,100,168,27,42,66,107,129,71,139,150,113],"\u52a0\u3048\u308b":[66,23],"<ip":[156,89],trusty:[70,12,140],since:[138,118,131],"\u300cgrand":170,issue:0,"/mailarchive":140,"\u9045\u304f":[162,121],"\u9ad8\u304f":[64,77],"\u9045\u3044":[86,68],"\u3002mysql":[141,120,12,153],"\u9ad8\u3044":[100,3,142,117,8,30],"\u3042\u308f\u305b\u308b":6,reason:164,base:[35,8,140],put:168,loads:[8,58],rect:68,"\u5931\u52b9":[8,109],"_flters":[],"\u30b5\u30a4\u30c8":[11,39,140,147],"\u5024\u3068":[11,100,168],encoding:[35,114,4],"/data":73,"\u8ad6\u7406\u548c":[],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[131,173],"\u52a0\u308f\u308b":115,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":76,"\u3002_":[54,3],"\u5024\u304b":68,":value":[100,168],"\u53d7\u3051\u308b":[70,131],zeromq:174,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":15,schema:172,"\u3002make":156,kashihara:70,"\u3002null":[105,75,14],recursively:127,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":23,alphabets:[],translation:111,"\u5024\u3054":121,jquery:[70,143],grep:[141,120,12,153],"\u3002xml":126,"_probability":[23,142],recovered:75,str:[35,76],builder:78,"\u5206\u3051\u308b":[11,140],"\u547c\u51fa":[36,105,72,113],"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":48,"null":[],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,lib:[143,116,9],"_incr":72,"\u79d2\u5358":[11,40],"\u5024\u3068\u3057\u3066":[154,68,89,170],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":8,"\u4e00\u81f4\u7528":133,tokenbigramsplitsymbol:[64,155,143,33],".repoforge":120,"'hay":63,"/dev":140,clear:[70,72,127],"\uff08and":147,"\u6697\u53f7":140,"\u4ecb\u3057":[30,94],clean:165,latest:[],"\u4fbf\u5229":[100,82,168,77,11,30,124,126,173,147,174,164],"\u4e8c\u70b9\u9593":[],"\u62e1\u5f35\u578b":11,"\u59cb\u3081":111,parameters:[122,127,95,129],"\u5225\u3005":121,"<level":58,"\u6cbf\u3046":70,"\u4eca\u5f8c":[137,23,82,176],combinations:[],httprewritemodule:8,".nginx":8,"*index":[102,112],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[70,89,116],"\u89e6\u308c":3,"\u52a0\u7b97":[],"\u68ee\u7530":39,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"\u82b1\u5b50":39,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":32,"(argument":139,locale:111,"_enough":[2,160],":groonga":[100,12,168,140],"_would":[2,160],"\u5f93\u6765":70,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":63,utopic:[12,140],"\u7d39\u4ecb":[70,80,100,140,170],"\u4e00\u5ea6":[106,121,9,6,17,70,23,71,175,163,8],"\u5909\u6570":[35,139,140,20,104,116,136,6,23,70,163,47,165],"-level":[70,89,58],"\u624b\u9593":115,missing:[],"\u306f\u3061\u3087\u3046":139,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[151,147,73],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":15,delimit:116,oneiric:[23,116],geopoint:[],"\u5f71\u97ff":[6,70,116,140],experimental:[95,75,55],"\u767a\u63ee":30,jeff:133,"\u4e00\u5f0f":72,linux:[],"\u4e0d\u80fd":156,tokenbigramignoreblanksplitsymbol:[64,155,33],"\"web":[16,43],"\u6b62\u3081":70,"\u306e\u3069\u308c":[122,164],"\u4e8b\u67c4":115,stamp:138,describes:[126,95,55,18],empty:[],"/db":[131,55,142,8,146,58],"/dd":139,"\u56de\u7279":156,"\u7a3c\u52d5":74,"\u6a29\u9650":[174,94,116],"\u30a8\u30b9\u30b1\u30fc\u30d7":[],"\u6307\u793a":[85,3,94,164],"while":127,"\u505c\u6b62":[53,10,89,116,130],"_zlib":[66,2,113],"!(n":139,reads:58,ready:18,"\u898b\u3064\u3051":[6,1,115,164],fedora:[],checking:[122,75],"_keys":105,"geopoint\u9593":23,"-jp":116,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[174,140],composition:175,used:[75,122,123,14,127,109,170,138,118,98,58],temporary:75,uses:[138,129,98,58,75],user:[39,169,122,123,156,27,42,107,8,95,88,129,47],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[152,82,168,121,124,41,100,89,27,116,6,175,129,70,144,174,59],database:[],"-filter":[133,77,170,12,27,42,6,141,107,169,70,23,149,139],"\u30ef\u30a4\u30c9":23,"\u51fa\u529b":[],clears:113,"\u9806\u756a":[112,168,64,89,57,3],"\u30b0\u30e9\u30d5":30,"_path":[],"\u30d0\u30a4\u30b0\u30e9\u30e0":64,"\u5f0f\u8868":76,"\u8fd1\u4f3c":[6,23,68,162],"\u56de\u6307\u5b9a":168,"\"tritonn":100,"\u307e\u3057":[39,100,68,168,121,64,170,115,116,175,6,16,8,139,70,23,111,140,59],"\"uptime":4,"-gram":[82,3,139,64,30,134],"\u3064\u3051\u308b":[70,100,115,133,77],"...":[36,4,85,78,6,8,95,70,97,50,47,106,100,102,139,142,105,14,15,108,17,146,21,150,110,112,113,56,114,156,116,57,23,72,168,75,117,122,170,51,169,31,76],"\u9759\u7684":[],nginx:[],"_com":140,"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":160,"'..":116,"\uff09\u307e\u305f":[82,124,168,139],popular:100,"\u518d\u751f":8,"\u4f5c\u696d":[],"\u30c7\u30d5\u30a9\u30eb\u30c8":[1,82,3,4,40,134,89,6,94,23,174,48,106,100,10,139,77,11,142,14,52,107,108,144,17,21,59,41,63,64,114,156,116,176,68,70,162,104,166,168,121,143,8],"\u5927\u304d\u306a":[48,59],some:[138,123,172,95,129],"\u96a3\u63a5":[30,168],"~number":139,"\u5927\u304d\u304f":[11,143,10,146,162],"\u5927\u304d\u3044":[100,63,168,86,89,23],"\u3061\u3083\u3093":39,"\u30af\u30a8\u30ea\u30fc":[],"\u5927\u304d\u3055":86,".sh":[6,111,165,140,73],run:[],"\u4ed8\u304d":[],processing:138,"\u81ea\u5df1":170,"\u4ed8\u3044":175,"\u5f37\u5236":[6,1,72],"\u898f\u683c":57,"\u4ed8\u3051":[3,11,150,42,6,158,94,88,71,48],"\u30ab\u30a6\u30f3\u30c8":[170,116],"\"mori":146,"\u4f3c\u305f":175,"_read":2,ids:[102,77],"\u5916\u90e8":125,"\u5185\u5bb9":[36,131,3,85,87,43,6,94,97,100,139,140,11,57,111,156,115,70,71,164,168,166,75,170,27,126,129],idf:70,"\"serach":16,block:11,libzmq:[141,12],"\u3067\u3069\u3053":2,"\u30ad\u30e3\u30c3\u30b7\u30e5":[],".column":[70,116],".(":140,".)":[129,139,116,95,138],".-":111,"..":[35,3,87,89,6,8,95,48,100,139,77,142,52,107,146,111,116,117,168,123,127,31,59],"./":[174,111],"\u5316\u6f0f\u308c":6,"\u3067\u3082\u3063\u3068\u3082":26,".\"":[39,100,3,83,11,150,27,42,106,107,94,139],"\u5909\u66f4":[],".'":[6,66,116],".:":[122,58],"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":170,patprefix:133,"\u652f\u63f4":157,"\u30da\u30fc\u30b9\u30c8":6,"[groonga":[6,23,140,70],pangolin:[6,12,140],registered:[35,27,164],tokenbigramignoreblanksplitalpha:33,".]":[139,77,142,117,95,97],newer:[],"._":[100,168,121,11,116,70,72,139],"\u3002\u30bf\u30b0":[39,42,77],info:[5,7,8],".i":120,utf:[37,4,122,114,143,89,116,6,174,139],".n":[129,100,139,75,168],".o":39,munin:[153,1,12,120,6,141,23,174],"\u306b\u5bfe\u3057":[1,3,83,85,134,6,9,100,139,140,77,142,105,39,63,116,66,169,67,70,71,72,166,74,168,121,30,31],".c":[100,37],".d":[154,129,141],"_max":[61,2,112,15,108,160],".x":120,windows:[],".}":[117,139,77],"\u66ff\u3048":[],"\u5099\u8003":116,doesn:[129,8,95],"\u3002gnr":147,"#{l":138,"\u306b\u3068\u3063":115,"_columns":[],"\u958b\u3044":[175,143,116,23,32,99],"_float":56,"\u958b\u304f":[6,15,175,23],"\u958b\u304d":[15,75],"_rate":[94,74,3,4,8],application:[8,48],"\u958b\u3051":6,"'\u3002":89,"\u56db\u3064":134,sigcont:116,"\u6642\u4ee5\u5916":143,"\u843d\u3061\u308b":[23,143,116],"\u767a\u884c":94,draw:39,"_realloc":35,"_len":[6,76,113],"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[],"(title":[116,103],"\u306a\u304c\u308b":6,"\u4e00\u5de5":133,required:[122,127,8,95,118,48],"\"suggest":157,"\u5f37\u5316":[23,143,70],requires:[164,55],kawaji:6,"_pat":[],gt:[150,42],"\u30d6\u30e9\u30b8\u30eb":68,gr:[100,82],"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":100,gb:[154,4],ga:[82,156,175],go:106,"\u30dc\u30c7\u30a3":[59,160,9],gi:82,"\u500b\u6240":70,".ssssss":138,nippon:164,"_unknown":2,"\u300cgroonga":[70,147],"po\u30d5\u30a1\u30a4\u30eb":111,"/..":[127,8,140],"\u4e0d\u8db3":[153,120,12,141,93,128,70],"\u9632\u304e":116,"\u304a\u3053":[11,30],"\u3060\u3044":[23,70],exits:55,mercurial:140,".mo\u30d5\u30a1\u30a4\u30eb":111,deleting:[],"/bin":174,"\u5341\u5206":[64,36,154],"/sbin":81,"\u8ca0\u6570":[6,17],download:[120,140],onigmo:70,"-known":27,"/introduction":[3,94],opaque:160,".tsv":[163,4],"\u542b\u307e\u308c":[100,30,134,27,116,126,88,9,59],"\u983b\u7e41":[105,174],"\u4fdd\u5b58":[],"\u7b49\u5024":143,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[70,82],"\u578b\u7528":76,"-libstemmer":70,"\u62e1\u5f35\u5b50":[143,156,4,9],"- \"":70,"\u3002max":57,accessor:[105,72],".weight":116,"(table":70,blogroonga:[],"\u300d\uff08":[134,146],"_child":[2,160],"\u306e\u3042\u3068":6,"\u5177\u4f53":[64,71,121],"\u8fd1\u304f":[84,139,30],"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[151,78,30],"\u540c\u3058\u578b":77,"\u898b\u3064\u304b\u3089":105,"\u898b\u3064\u304b\u308a":100,"\u898b\u3064\u304b\u308b":6,"\u898b\u3064\u304b\u308c":115,"\u8d85\u3048":[64,100,116],win:93,"\u5171\u901a":[139,86,40,115,23,71],"boolean":37,"\u7d5e\u308a\u8fbc\u3080":[70,157],"\u3092\u304a\u3053":170,"\u624b\u9806":[],"\u3002\u30d0\u30b0":0,"\u7d5e\u308a\u8fbc\u3093":[30,116],"_no":[],"\u81ea\u5206":[156,115,8,128,111],milliseconds:122,soundkitchen:[6,23],cosmo:[70,116],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[154,100,77],started:[126,138,100,168,139],"\u5f15\u304d\u8d77\u3053\u3059":[6,116],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":165,"\u5371\u967a":[53,140,48],"\u53d7\u3051\u4ed8\u3051":[6,143],mitsuhiro:143,"\u7de8\u96c6":[],links:[11,94,121],sudo:[153,120,140,20,154,12,131,6,141,94,18,129,174,165,81],">max":4,objname:[32,99],"\u30b7\u30e3\u30fc\u30d7":59,tokendelimit:[155,82,33,43],"\u6df1\u523b":[6,64],"_repair":104,"\u512a\u5148":[30,156],"*valuebuf":36,"\"sphere":162,"\u9577\u4ee5\u4e0a":[105,72],spelling:83,".entries":129,"\u7d5e\u308a\u8fbc\u307f":[30,3],"\u66f8\u5f0f":[],rakutan:71,"\u81ea\u52d5":[39,3,113,140,86,168,156,6,105,54,8,9,133,23,70,139,111],"\u898b\u3064\u304b\u3063":[157,100],"_characters":76,"\u4e00\u500b":63,"\u30c7\u30d5\u30e9\u30b0":23,"!\"":[39,100,82,3,168,11,170,106,6,8,126,71,139,48,94],converting:[],"-mysql":[153,120,12,124,141,175],"\u88dc\u8db3":8,geoppoint:102,send:95,"_match":[],auto:142,"\u629c\u304d\u51fa\u3059":30,"_seek":[2,160],takayuki:23,"\u306b\u304f\u308b":64,"\u5f15\u8a9e":3,"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":115,"'query":6,"\u65e2\u5b58":[131,3,75,140,11,30,156,6,105,173,94,176,70],chunk:[117,129],"\u751f\u6210":[],special:100,"\u3050\u308b\u3093":[39,168,139],"-match":[],"\u306b\u304f\u3044":30,may:[75,55,127,95,129,113],"_default":[6,21,108,114,48],"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[23,116],"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":111,"_script":137,"_proxy":8,"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":170,"\u307f\u3066":67,deprecated:[100,10],times:[17,95],"-localstatedir":[],"\u307f\u304c":63,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[13,18],"_proc":[],"\u8aa4\u5dee":[23,68,162],largetext:86,"<max":89,unsupported:160,improving:129,"\u305e\u308c":[100,63,112,139,140,43],"\u5185\u8fd1\u304f":139,management:[75,27,73],"\u305d\u3053":[11,64,140],mkdir:146,"\u6700\u4e2d":30,"\u52d5\u5c0f":40,".groonga":[111,120,140,153,20,12,156,141,93,174,81],"_bad":2,"-doc":104,"\u306f\u3058\u3081":[],configure:[],"_utf":[57,114],travi:116,lists:70,",..":[52,97,100],"_vector":[39,100,113,77,11,170,87,116,66,169,158,70,72,76],"*min":57,updating:17,"\u3092\u3054":165,"_recv":70,"-log":[],arc:82,"_expander":[],"\u8a72\u5f53":[113,150,27,42,15,105,88,57,70,71,72],unchanged:35,"\u5f97\u308b":8,"\u56fd\u969b\u5316":[],"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":140,variable:35,"\u4fee\u6b63\u4e2d":16,"\u30de\u30a4\u30af\u30ed":[11,170,40,139],need:[122,95,18,129,118,98,76],"\u3068\u307f":[31,100,116],nsis:140,"\u6f14\u7b97":[139,143,116,6,105,147,70,174],"-db":104,"\u3092\u308a":8,"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":174,"\u3002post":48,"\u7570\u306a\u3063":57,"_lt":57,":func":[15,76,75,14],url:[140,31,94,146,70,23],uri:[31,8],"\u6982\u5ff5":10,"-point":40,"\u57fa\u6e96":[11,30,3,140],"_temporarily":[2,160],"\u5fc5\u9808":[],"\u3084\u3089":140,"\u3084\u3081":[23,116,70],"\u3002\u2193":89,ssssss:138,"\u53cb\u4eba":39,"\u6e2c\u5b9a":156,"|persistent":[97,53,87],based:[131,102,150,27,42,95],launchpad:[70,12],"\u3068\u3066":[86,100,48,30],"\u65e5\u6642":[],"\u4e0d\u6b63\u78ba":[6,74],"\\groonga":93,"\u5358\u306b":[62,116],"\u4e0d\u8981":[6,70,30,116,14],sha:140,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":173,"\u79d2\u3088\u308a":136,processed:138,"\u3050\u308b":[147,168,139],"_parse":[114,76],"_setpshared":116,kawada:70,"\u7a7a\u6587":[70,40,168],computed:35,latin:[6,174,89],"\u63a5\u7d9a\u5148":166,".list":141,"2\u3064\u3081":[71,168,48],"|ga":100,"\u975e\u5e38":[6,48],"_word":[70,152,41],"\u7ba1\u7406":[],wibowo:116,written:[118,18],ken:39,"\u3084\u304c":10,"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":6,"\u3053\u308c\u3089":[3,4,86,43,6,8,9,174,48,153,100,68,139,77,12,64,54,147,39,20,116,157,120,168,121,170,124,141,31,80,175],key:[],"\u3084\u3057":100,limits:129,admin:[70,143],"!\\":139,"\u3084\u307e":70,"\u682a\u5f0f":70,"\u96e3\u3057\u3044":30,jersey:170,"\u304a\u3089":140,"\u4eca\u56de":[6,3,27,139],"\u4f5c\u6210":[],"_add":[85,105,76],"\u30af\u30ea\u30a2":[6,23,72],quit:[],"\u91cd\u8907":[70,105],"\u30b9\u30ab\u30e9":113,quiz:39,"\u547d\u540d":6,compatibility:[118,175],"\u306b\u3088\u3063":[135,3,5,134,89,7,94,97,99,100,10,77,11,105,14,15,53,144,146,147,176,148,39,63,125,65,116,66,117,72,166,74,30,31,32,76,130],"\u6b21\u671f":140,username:[39,93],"\u65e5\u672c":[168,140,40,29,67,70,162,164,139],corresponding:72,"\u4ef6\u542b":170,"\u7d44\u307f\u5408\u308f":[30,100,63,88,59],"\u7a2e\u985e":[],"_binary":6,"\u4ee3\u308a":[6,68,168],glossary:73,"\u3076\u3093":115,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[100,82,169,104,107,93,8,70,23,163,59],demo:39,"\u3060\u304b\u3089":100,"/_":140,"\u76f4\u524d":85,"\u9818\u57df":[174,105,6,67,70,72],"/o":59,"_system":[23,2,160],"\u91cd\u8981":[106,100,82,140,77,165,115,26,14,15,8,30,174,91,48,59],"\u614e\u91cd":165,"/f":140,"/d":[70,8,48],"/c":[79,30],"\u91cd\u8996":[64,106],"-essential":[141,12],"/x":48,"-learner":[],"\u8aa4\u5b57":[6,23,143,163,116],crch:82,"(mroonga":163,http:[],"\u306b\u3088\u308a":[60,100,68,3,133,140,117,11,30,40,116,6,64,8,70,71,48,94],"_ito":23,"\u305f\u3070\u304b\u308a":106,"_scan":[],"/.":23,"/*":[79,154,131,8,111],"/(":140,"/'":70,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":6,"/$":111,well:27,"/\"":[39,3,121,77,11,67,94,146],"/?":122,"/;":8,"\u3042\u304d":133,accurate:27,"\u3042\u304f":15,sources:[87,18],"\u3042\u3063":[52,100,10,113,140,39,142,156,116,6,105,54,153,72,48,111],"-ruby":[6,140],"/kytea":82,logged:138,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":160,"\u30fb\u5186":30,"\u6790\u7cfb":139,"\u756a\u53f7":[166,100,113,131,156,89,116,54,94,70,48],"_mask":72,"\uff08or":147,".jp":[100,37,140,22,146],pikonyan:39,immediately:95,tomita:143,"\u78ba\u4fdd":[36,154,76,14],"\u6587\u5b57\u6570":[27,139],"(\u300c":140,"/key":72,"\u4e0b\u8a18":[10,74,117,53,63,57],"-plugins":[],library:98,"\u3002optarg":75,home:[174,140],"'config":89,"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":6,"\u5411\u3051":[],"_permission":2,"\u304f\u308c\u308b":[79,30,111],nihon:164,"\u5411\u3044":[126,86,100,70],"\u3093\u304c":[168,139],"_number":[126,94],limitations:95,"\u3057\u3064\u3064":165,"\u3042\u308c":[106,139,140,64,156,15,88,59],"\u3042\u308a":[],"\u3042\u308b":[],offset:[],"\u304b\u3051\u308b":[115,8],described:[],"\u9055\u3063":164,".hash":170,"-source":140,"\u6f0f\u308c":[6,30,83,140,147],"\u306a\u3084\u308a\u304b\u305f":83,compatible:8,"\u9055\u3044":[100,68,3,168,11,67,71,48,59],"\u9055\u3046":143,"\u500b\u6570":[6,113],"<log":89,"_nhooks":85,additional:[175,116],"_nsubrecs":[70,54,113,121],museum:170,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[],"\u30ed\u30b4":6,"\u30ed\u30b0":[],"\u5c55\u958b":[],"\u7279\u6b8a":[],"\u3059\u3053\u308c\u3089":100,hw:81,"\ufffetext":82,hh:[138,139],"\u540c\u3058\u5024":[3,8],ear:82,"/reference":[127,76],"*var":35,truncation:[23,118],"\u3068\u3053\u306e":164,"=submit":122,limit:[],"\u5b9f\u4f8b":[],"\u3068\u3053\u308d":[62,139,79,66,9,137,104,111],"{\"":[152,168,77,142,150,156,62,42,43,106,107,16,137,71,164,117,139],"\u79d2\u5f62":40,"\u7389\u91ce":70,eric:88,functions:[35,70,37],"\u3002video":39,halfwidth:175,"\u6163\u7fd2":6,"_many":[70,2,160],"_auto":[],"\u65b0\u3057\u3044":[],"\u2026\uff09":16,"\u65b0\u3057\u304f":[100,10,3,115,106,147,70,59],friends:39,sphinx:[79,70,111,13,18],katagiri:116,persistent:[87,105,75],"{\\":52,"\u305a\u308c":[66,10,5,30,40,89,68,52,11,105,7,160,63],".status":156,"=redhat":174,"\u5927\u62b5":8,"\u3002scan":165,consists:[],"\u30ab\u30e9\u30e0n":169,calculate:122,segments:117,"/raw":73,"\u592a\u90ce":39,swap:129,updated:[64,37,111],"void":[35,75,114,105,21,108,17,57,72,104],"/grn":76,updates:[27,18],"\u3066\u307f\u307e\u3057\u3087":67,"\u53c2\u7167\u5143":11,"\u30df\u30b9":164,"\u53c2\u7167\u5148":116,"=pat":104,vector:[6,164,116,77],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":6,"\u898b\u7a4d\u308b":154,japanese:[164,22],"\u9006\u9806":3,"\u3002grn":[63,147],implemented:37,even:164,"\u50be\u5411":71,"\u6210\u529f":[],"new":[],net:121,maverick:23,metadata:6,"\u306f\u3044\u3051":[72,158],"\u5fdc\u3058":[36,156,30],"<directory":58,"\u4e2d\u4e95":116,"\u305a\u306b":77,"\u305a\u3064":[156,71,89],":port":[31,89,8],"\u5411\u4e0a":[23,131,8,48,147],serch:[142,16],yamada:[],"\u3080\u308b":[168,139],concurrently:138,"\u826f\u3044\u4f8b":115,"\"body":[],mysqlgenerallexicon:[],"\u9023\u7d9a":[82,64,134,116,16,72],".yml":73,typo:[23,70],"\u3082\u3057\u4e00\u3064":[],type:[36,3,133,87,43,95,98,47,102,11,142,53,14,105,16,59,39,113,56,156,66,67,71,164,121,122,170,124],"-properties":12,"\u3002zlib":66,posting:102,"\u62ec\u5f27":52,warp:70,language:111,"\u4ee5\u4e0b":[],"\u4ee5\u4e0a":[],"_comment":169,"\u305f\u304b":[23,100,16],"_left":[23,102,2,160,29],"-ipadic":153,akio:[6,143],root:[8,116,94],"\u306b\u95a2\u3057":[63,156,116,14],"\u304c\u3063":[],"\u80a5\u5927":70,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[1,32],"\u63a8\u5968":[126,100,10,6,94,128,70],normalizernfkc:[],"_xml":98,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":70,"\u4f55\u500b":100,"\u6301\u3064\u3059\u3079":100,"_memo":107,"\u304c\u3059":105,"\uff08document":70,"\u9023\u7d61":111,sitedomain:[94,121],"\u30b9\u30fc\u30d7":134,"/result":104,"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":71,"\u3002tsv":[126,163],"_indexer":104,"_win":35,"\u9069\u5408":[64,3],"\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u9023\u7d50":[6,71,72,116],"\u5206\u5c90":165,"\u643a\u5e2f":30,"_ja":116,"\u5358\u4e00":66,"\u65b0\u898f\u30ea\u30ea\u30fc\u30b9":[],"\u3002google":168,"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":143,"_jp":174,"_small":[2,160],"\u6d6e\u52d5":[],before:73,"-add":75,"=allow":100,"\u6574\u6570":[],better:[],"\"pp":70,weakness:27,"\u300coutput":31,"\u30b9\u30c6\u30fc\u30bf\u30b9":[2,116,160],"\u691c\u8a0e":[64,131],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":8,"-pack":[],"\u691c\u8a3c":[166,70],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[],"'or":6,"\u975e\u4e92\u63db":[23,70],"'article":71,"\u30d1\u30b9":[166,143,3,75,140,156,87,9,89,136,94,31,23,70,174,58,48,8],"_stop":[70,152,41],"\u7c21\u6613http":[],extract:[],"\u30ed\u30b0\u30d1\u30b9":143,realtime:[142,43],"/bc":140,content:[106,152,101,168,169,126,100,27,116,6,107,8,129,23,71,48,139],"\u6570\u3048\u308b":121,grease:11,"/\uff09":143,"\u8996\u899a":30,"\u30d1\u30ea":68,"\u63a5\u8fd1":63,messages:116,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":143,iso:139,isn:14,features:55,hook:85,"1\u884c":156,"\u7531\u6765":147,"\u30e1\u30e2\u30ea\u30fc":59,outputting:98,"_keywords":76,"\u5358\u4f4d":[68,3,139,30,40,134,26,27,126,143,160,56,23,162,170],"_clear":[],tokens:82,mkostemp:70,"[http":[6,70,116],"\u5358\u4f53":[30,156],"\u5f79\u5272":[107,3],nsubrecs:[39,100,113,121,170],distance:68,keyword:[100,168,150,27,42,116,6,76],".json":[4,8],enabled:138,"\u524d\u4ed8\u304d":72,gnupg:140,enables:8,modern:170,"\u30a8\u30e9\u30fc":[],"\u7e4b\u3052\u308b":115,"\u958b\u3051\u308b":6,"\u81ea\u52d5\u5207\u308a":70,estimated:102,"_cas":2,"\u308f\u3051":[100,82,139,11,41,164],specfied:102,"\u30b1\u30fc\u30b9":[100,121,64,67,15,53,8,70,59],"\u3002\u30df\u30ea":11,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":73,regular:[122,8],"\u3002munin":[141,120,12,153],don:[127,98,76,8,43],radious:162,doc:[79,111,83,140,18],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":140,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[16,164,136,43],"\u56fa\u5b9a":[3,87,160,57,70,72,59],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":160,keybuf:105,sigsegv:105,"\u6210\u308a\u7acb\u3063":63,syntax:160,"\u65e5\u672c\u8a9e":[0,168,64,30,6,139,164,111],"\u8ffd\u52a0":[],zunda:23,"\"\u308d\u3086\u304d":133,yoji:23,"_address":[2,94,160],"_http":[156,8],"\u4e8c\u756a\u76ee":139,"\u72ec\u81ea":[],"\\\"a":169,stop:[6,131,8],"_limit":[],"/grntest":140,"\\\"}":52,gbyte:60,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[],"_index":[],bad:[70,116,160],architecture:[],"\u623b\u308a":[6,72],"*name":[35,113,56,114,14,105,72,76,47],"\u524d\u56de":140,",\"location":[39,67],"\u591a\u304f":[100,3,11,89,27,64,8,23,177,131,59],reference:[116,77],"\u591a\u3044":[64,168,139],"\u623b\u3063":8,".kentaro":116,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":134,"\u30aa\u30fc\u30ca\u30fc":116,"\u4e88\u7d04":66,subject:116,brazil:121,"\u672a\u958b\u653e":143,"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":77,inappropriate:160,sigint:23,filename:160,simplest:123,"\u7bc4\u56f2":[],"+fffe":82,threasd:89,"_geo":[],"\u3092\u901a\u3057":[89,3],"_get":[35,15,113,36,85,104,114,105,14,6,21,108,17,70,57,23,72,76,47],"]\u3002":70,"\u534a\u5f84":162,"_operation":[2,160],"_level":[],"\u73fe\u308c\u308b":64,against:[118,75,113],"\u3044\u3044\u306d":[100,168,139],"0e":156,"\u8a9e\u5f59":[],"_reinit":72,"\u62bd\u51fa":[],"\u3068\u3044\u3063":[153,100,68,168,77,86,116,6,67,147,70,48,139],"_too":[70,2,160],loaded:62,"\u3068\u3044\u3051":[154,100,164,160,59],three:[11,3],"\u3068\u3044\u3046":[82,3,4,86,40,134,42,6,8,9,137,70,174,48,100,10,139,140,77,11,142,107,16,147,59,39,152,64,156,125,115,116,117,67,68,23,71,163,164,165,175,168,121,169,30,124,27,170,31,111,94],"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":121,"\u7528\u3044":[],digits:138,"-help":[],"\u7591\u4f3c":[],multithread:105,"-scorer":149,"_log":[],"\u554f\u984c":[15,1,3,168,140,11,154,143,66,116,136,14,6,117,8,70,23,139,156,111],logaling:73,"\u6700\u3082":[117,100,14],seven:3,ip:[122,156,94],is:[35,131,82,3,4,41,42,43,6,94,95,138,98,47,48,83,100,101,139,77,11,14,107,105,17,55,18,58,111,152,113,150,102,160,70,71,164,168,75,127,118,123,27,172,122,129,76,8],"\u6069\u6075":131,it:[35,131,95,138,98,52,100,102,139,14,106,105,55,18,58,39,113,118,168,75,122,126,127,129,76],"\"application":23,im:164,il:[64,134],io:37,"in":[],ia:[64,134],ic:112,id:[],"/commits":70,"\u305d\u3093\u306a":[174,59],make:[],"\u306b\u3088\u3063\u3066":[10,3,11,30,116,14,64,54,165],"\u5f15\u7528":[89,116],unicorn:12,kib:129,"8byte":160,"\u3055\u307e\u3056\u307e\u306a":[],"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[66,54,59],left:102,protocol:[],just:[75,122,170,172,106,95,138,72],"@groonga":[140,22],"||":[6,71,63,116,139],assigned:95,"=add":82,yes:[166,142,165],"\u5f8c\u65b9":[],"-with":[],"\u89e3\u50cf":143,candidate:[122,142],defrag:[],character:[35,138],"\u306f\u3059\u3079\u3066":[62,82,3,139,41,100,52,127,8,147,137,129,109,175,59],"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":104,save:[122,140],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[],"\"http":77,"|>":138,"|<":138,"|:":138,"\u5cf6\u7530":6,daemon:58,"\u6539\u540d":[6,23],mruby:[137,70,62,116],unnecessary:129,"\u52b9\u7387":71,"*oldvalue":113,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[],centos:[],"_db":[],"\u7570\u306a\u308a":[100,168],"\u3067\u3044\u3046":[175,121],"\u4f7f\u7528":[],raltime:43,"\u964d\u9806":[57,142,100,3,105],"\u5bc6\u9375":[],"\u5c11\u3057":174,notification:138,tracker:0,"\u5c11\u304f":154,"\u7a0b\u5ea6":[23,3,116],"\u53c2\u8003":[],debhelper:23,"\u5b8c\u5168":[],"\u304c\u308f\u304b\u308a":[170,101],"\u304c\u308f\u304b\u308b":68,postgresql:[30,27],"/munin":174,"\u30c1\u30a7\u30c3\u30af":[166,143,156,116,6,117,88,70,23],"=true":95,"*optarg":[50,75],commit:111,meerkat:23,"_ratio":70,sphr:68,"\u305d\u3061\u3089":174,"\uff08\u307e\u3082":[],editor:111,"\u6291\u3048":64,fork:[89,111],tokenbigramignoreblanksplitsymbolalphadigit:[64,155],form:[122,175,3,168],"\u3059\u304e\u308b":77,"[dump":[6,70,116],".ne":37,"_animal":11,failure:[],"\u5165\u308c":[64,39,170],"\u5165\u308b":97,"\u5165\u308a":[],grroonga:157,"\u5426\u5b9a":[],lenny:23,"delete":[],"_location":[126,170],"\u6c7a\u3081\u308b":[100,63],kwic:27,"\u5165\u3063":[39,3,116,6,160,126,71,164,165],"sort\u30ad\u30fc":1,floating:40,"\u73fe\u5728\u5730":170,"\u30a8\u30c7\u30a3\u30bf":111,tokenbigramignoreblank:[64,155,33],appveyor:70,"\u3002\u307e\u305a":64,"\u914d\u5217":[],"\u3002\u307e\u305f":[166,10,3,139,11,30,40,89,67,16,94,63,31,163,156],"\u304f\u308c":115,exported:[],"\u30cf\u30a4\u30e9\u30a4\u30c8":[150,42],"\u300d:":175,".service":6,fsf:6,macports:[],assume:95,pseudo:[],"\u6539\u5584":[6,23,1,116,70],"_offset":[],"\u5909\u308a":70,"\u9069\u5207":[82,3,30,143,156,59],managed:[123,95],"\u81ea\u52d5\u7684":156,segv:[1,116],"\u7279\u6027":86,manager:[8,48],manages:55,"\u7fa9\u8a9e":163,"\u3068\u3059\u3050":106,"\u524a\u9664":[],kinjirou:39,"\u30bb\u30c3\u30b7\u30e7\u30f3":[148,89,160],"0mq":116,"-efficient":77,"\u8a2d\u8a08":[100,131],"\u4e0a\u91ce":143,"[php":[6,70],"\u30b5\u30f3\u30d7\u30eb":[],"\u4ee3\u308f\u308a":[175,168,150,89,27,42,93,94,174,8,59],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":16,"\"mysql":[157,77],"-escalation":[],item:[142,16,164,172,43],"\u672a\u6e80":[57,168],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":117,"_entry":85,"-deb":140,"\u4ed8\u4e0e":[],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[6,116],"\u629c\u3051":[23,116,70],"\u5076\u6570":139,"\u63db\u6642":23,"\uff08normalization":175,"-dev":[140,12,116,22,6,141,70,23,165],"\"xxx":116,">alloc":4,".so":9,"\u4f8b\u3068\u3057\u3066":11,softwares:[],"-mode":111,shift:174,"\u3068\u3059\u308c":30,"_version":[],"[suggest":[6,104,116],bom:143,suggestion:[122,172],raccoon:39,bob:[100,168,170,107,53,8,88,118,48],useful:[71,113],"\u30dd\u30a4\u30f3\u30bf":[14,105,57,72,47,110],"\u5fd8\u308c":[23,77],"\u3002table":[105,158,110],"-leak":143,"\u521d\u671f":[75,30,143,6,23,72],"\u4e21\u8005":67,"-check":[122,23,143],"ci\u4e00\u822c":73,"-libevent":104,"\u5e74\u9f62":[30,59],"_min":[108,112],ooo:86,"-each":23,"\"color":175,"\u305d\u3053\u306b":97,"/nfs":174,mbytes:156,"\u8fd1\u3055":139,"\u30b8\u30aa\u30b5\u30fc\u30c1":[],"\u30dd\u30a4\u30f3\u30c8":[163,77],"\u8fd1\u3044":[57,166],ull:82,"*tc":[57,112],"\u4e00\u6642":[],"\u30fb\u30b5\u30fc\u30d0":3,sample:[122,156,58],normalize:[],"\u3002\u30ed\u30b0":[8,59],"\u30d0\u30a4\u30c8":[2,113,86,40,143,27,14,6,116,57,23],"/cpuinfo":[141,120,12,153],"\u8a9e\u53e5":[39,116],"_current":15,map:[138,23,129],groo:100,"\u518d\u8aad":[176,163],max:[],mac:[],man:[1,88],".garbage":116,fluent:96,"\u540d\u524d":[],"_values":[],"\u5e02\u5185":84,pointed:35,"_init":[35,138,14,6,70,23,72,76],pointer:35,"/fedora":[6,153,143,140],group:[105,121],"\u8a08\u6e2c":[23,1,165],tweets:106,mail:156,main:141,"\u30b9\u30c6\u30df\u30f3\u30b0":[70,152],"\u91cd\u306a\u3063":116,"\u5b9f\u4f53":14,repositories:140,"_timeout":[2,17,160],ggdb:140,unlock:72,nroonga:[107,71,73],libgcc:70,"\u624b\u6bb5":[63,76],summary:156,"\u6240\u5c5e":53,"\u7a7a\u304d":[154,117],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],".flags":105,correct:[122,142,16],"\u624b\u7d9a\u304d":[85,47],"|allow":[100,168],"\u30ab\u30e9\u30e0id":105,earlier:118,"_content":[],"\u3002min":57,debootstrap:140,"_string":[],org:[94,121],advance:164,"\"hello":[152,41],"\u4e8b\u9805":[],rewrited:37,"\u6b21\u90ce":39,"\u304c\u3042\u308a":[0,152,68,140,100,163],"] [":156,first:[35,100,168,170,95,139],"\u5468\u8fba":[6,27],"\u30dd\u30fc\u30c8":[166,131,4,156,89,116,94,48],"\u7db2\u7f85":8,"long":[21,78,95,55],"\u81ea\u5df1\u7d39":170,crit:[5,7],"\u9078\u3073":157,"\u9078\u3076":[30,8],"1g":[141,12],"\u30bd\u30fc\u30c8\u30ad\u30fc":[142,1,105,100],"\u30d8\u30eb\u30d7":165,"_preparer":[142,16,164,43],"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":30,memo:107,"\u62e1\u5f35":[],"\u5c0f\u3055\u304f":[106,86,68,48,162],"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":10,"11":[100,82,139,77,64,107,129],"10":[156,3],"(grn":76,yoshioka:6,libgroonga:151,"\u5229\u7528\u4f8b":30,zsh:[174,140],dash:174,voiced:175,katakana:[175,164],".uuuuuu":139,"-receive":[122,58],speakers:22,"_open":[35,15,2,112,75,78,143,14,6,102,160,57,23],"\u914d\u5e03":[153,120,12,6,141,93,128,70],"_network":2,"\u8d70\u67fb":70,"\u6700\u7d42\u66f4":75,timeuot:17,">#{":138,"_enc":[57,114],performance:[122,129,27],"\u5f79\u7acb\u3061":116,theatre:83,beta:37,pair:[142,16,164,172,43],synonym:[100,83],"_sort":105,fills:122,"\u4f1a\u793e":70,"\u8003\u3048\u65b9":70,"|ng":100,"\u539f\u56e0":[],precise:[6,12,140],lexicon:[169,156,106,107,97,71,175,59],show:1,"-po":[],"\u6700\u5927\u5024":6,"\u30dc\u30c3\u30af\u30b9":100,threshold:[21,23,32,72],"\u77ed\u6642\u9593":30,"-plugin":96,"\u306a\u3093":10,"\u306a\u308c":10,black:175,"\u306a\u3089":[89,6,8,101,153,100,10,139,77,12,14,105,16,148,59,152,63,113,154,156,116,74,158,70,71,72,164,165,73,120,75,168,141,175],"\u306a\u308a":[2,3,4,40,89,6,8,9,132,70,99,52,100,10,139,140,77,11,142,14,15,105,16,54,109,133,59,39,152,113,64,156,115,116,162,106,66,67,68,160,23,71,72,163,164,73,175,75,121,30,168,27,126,170,31,32,76,94],"\u306a\u308b":[1,3,40,89,43,6,93,8,174,99,153,100,162,139,140,29,11,12,14,106,107,146,59,111,63,64,156,115,116,66,158,88,70,72,120,75,121,30,143,27,136,141,128,32],tamano:[],"_module":8,wheezy:[],get:[],"\u96c6\u3081":121,"\u51fa\u305b\u308b":30,geo:[],gem:140,"\u3002utf":[175,116],tokyogeopoint:[102,40,29,67,23,162],restarted:129,"\u5bfe\u8c61table1":105,morning:106,executes:122,wiki:8,kernel:129,caller:47,"\u8907\u96d1":[6,100,63,116,139],sear:164,masahiro:143,ency:156,"\u884c\u306a\u308f":6,"-threashold":[64,143],"\u53ca\u3073":156,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":48,reading:[],checks:[70,124,75,55],"\u6700\u5c0f\u5024":[70,139],"-blog":170,"\u3088\u3063\u3066":[84,82,132,40,91,67],"\u306a\u3069":[84,82,3,86,40,134,42,91,6,137,94,23,96,174,48,100,10,139,72,11,106,16,140,176,111,151,62,63,64,150,147,156,117,70,43,163,164,168,75,30,27,170],"\u306a\u306b":164,je:133,"\u306a\u3067":164,ja:[140,111],"\u306a\u3063":[131,82,3,6,94,23,48,100,10,140,77,11,64,115,116,117,70,71,104,165,168,30,143,126,170],"\u306a\u305c":[152,175,168,100,16,59,164,139],"\u5206\u5272":[3,139,30,134,86,23],"\u306a\u3059":29,"\u306a\u3055":[31,100,61],"\u306a\u3057":[],nogpgcheck:6,"_allowed":[2,160],"\u306a\u304e":169,"\u306a\u304f":[84,1,3,83,86,87,131,6,8,9,70,174,48,100,139,140,11,14,147,59,156,115,116,169,88,23,71,72,73,168,121,30,143,27,80],"\u4f8b\u5916":[137,70,62,153],"\u306a\u304a":[134,140],"\u306a\u304b":115,"\u306a\u3044":[],"*bsd":[23,143],"_invalid":[57,105,2,72],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":134,"\u4e0d\u9069\u5207":6,cancel:[123,95],"\u5f15\u304d\u51fa\u3059":30,"}/":[111,174,9],"}.":[107,100],"})":122,".select":156,tuning:[],"\u524d\u5f8c":[89,3],"\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb":89,mark:175,"&filter":95,"*max":57,shopping:106,"\u62e1\u5927":115,"}}":77,"}|":138,senboku:116,"}e":139,"_avoided":[2,160,72],"\u6240\u5b9a":[64,152,134,59],sound:[16,175],"_information":87,"\u30bb\u30df\u30b3\u30ed\u30f3":156,"\u30af\u30a8\u30ea\u30fcapi":[2,26],"}]":[62,4,11,156,95,137],hdd:156,"_corrupt":[2,160],"\"mroonga":[169,100,139,77],"\u6587\u66f8\u5185":152,characteristics:27,"\u8af8\u6761":60,"\u578bn":100,"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":116,"|')":66,"\uff01\u3057":22,"-document":[],"\u3002\u5024":88,different:122,pat:[57,86],"\u91cf\u8a08":1,same:[123,116,17,95,77],arguments:35,"=squeeze":140,"\u3002\u3044\u307e":104,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[],"< y":116,"\u8a00\u53ca":[169,170],"\uff01\u300d":[100,168,139],leaks:[],"\u7b49\u4fa1":[],"< n":139,running:[123,95],"\u672c\u5f53":[83,164],montywi:104,"\u305d\u3057\u3066":[100,82,121,11,30,27,170,71,164],markus:6,markup:79,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":70,"\u8aad\u307f\u98db\u3070":3,"\u6b21\u56de":[10,140],"(cmp":70,"[number":52,"(precise":140,money:39,"\u5927\u898f\u6a21":30,"\u3002\u3059\u3079\u3066":[53,165,111],"\u518d\u8d77":[129,131,163],".dll":35,"\u8fd4\u5024":[],"\u30c0\u30a4\u30a2\u30ed\u30b0":116,"\u3002none":89,"/false":[11,1],"\u4e2d\u592e\u5024":70,"\u5ea7\u6a19":[84,68,139,170,29,23,162],"\u56f0\u96e3":[6,30],"_syntax":[2,76],"\u9069\u5b9c":[70,140],"'ve":170,"\u9650\u308a":[63,64,134,52,54,72],"\u9650\u3089":115,quantal:6,specifies:[122,127,118,95],"\u9650\u3063":72,"\u7be0\u7530":70,testdb:[156,58],specified:[35,118,102,47],generates:172,"\u99c4\u76ee":115,ellip:68,"/database":[127,8,48],": n":166,"\u65b0\u5bbf":67,critical:[35,138],"\u6d0b\u5fd7":70,"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[],valuebuf:36,"\u306b\u3064\u3051":139,"\u30cb\u30c3\u30dd\u30f3":164,"\u306f\u3044":11,broken:[127,160,75,55,113],"\u306f\u305a":[6,156],"\u307e\u3064\u308f":116,"\u306f\u3069":[100,59],"\u306f\u3068":86,ptr:35,generated:[35,172,18],"\u306f\u307f":80,"@soundkitchen":[6,23],"\u3082\u3061\u308d\u3093":[156,121],"\"\u30df\u30ea":139,".patch":111,"_reopen":[],"\u9ed2\u3044\u70b9":84,"\u8abf\u6574":[64,154,100,147],"\u3002\u3059\u3050":8,"_cache":[],"\u4f55\u5ea6":116,"\u7279\u6709":[],"-login":129,"/ '":72,"\u306a\u304c\u3089":[100,82,3,140,30,6],"\u3002command":10,"\u63d0\u6848":[],"\u3082\u3046":[106,103,11,6,8,71],"\u8a18\u8f09":[6,140],"\u3002cpu\u30b3\u30a2":48,"\u3082\u3057":[126,100,68,168,169,156,116,15,107,2,8,88,174,70,73,163,48,59],"\u7834\u58ca":105,"\u516c\u958b\u9375":140,"\u3082\u3059":9,"\u3082\u3064":[158,121],"\u30c7\u30d7\u30ed\u30a4":8,"\u3082\u306e":[3,89,6,93,8,100,10,140,11,15,105,16,57,111,61,63,156,116,68,160,70,71,162,166,175,76],"|on":100,"|oo":100,"$prefix":23,"\u3002drilldown":100,"\u5883\u754c":[6,68],general:[],file:[1,122,143,8,18,129,160],"*obj":[36,72,75,85,50,76,47,110,113],again:[8,17],"\u53d6\u308c\u308b":52,"\uff08true":11,"\u5b50\u5348\u7dda":68,"\u4e0e\u3048\u308b":[52,166,67,10,89],"\u5b57\u5c0f":100,"\u3002pcre":8,"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":77,"\u8a18\u8ff0":[63,3,89,156,170,71,76],"\u4e00\u6642\u7684":[154,72],"\u4e0a\u9650":[],"6gib":129,starting:35,sergey:70,"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[6,23,70],expressions:8,nested:116,libmsgpack:[141,12],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":70,"_difference":105,"/lib":[131,8,55,9],"-alloc":74,"\u8aad\u3081":6,"\u8aad\u3080":62,"\u5dee\u5206":156,"\u8aad\u3093":[80,73],"\u4f4e\u4e0b":116,")mroonga":163,hottolink:37,"\u30e1\u30cb\u30e5\u30fc":[],"\u52e7\u3081":70,"\u306f\u3053\u306e":[154,100,169],sigusr:23,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":77,"\u771f\u507d\u5024":[],"\u304c\u3053\u306e":168,titles:[168,139],plugins:129,"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":165,"\u5225\u9014deb":140,"@orangain":116,tokenbigramignoreblanksplitalphadigit:33,"_append":[78,63,76,72],"\u30e1\u30bf\u30c7\u30fc\u30bf":[137,62,87],"\u8aad\u307f":[30,1,164,140,147],"\u5909\u66f4\u5f8c":[114,105,14,108,21,72],"\u307e\u3057\u3087":[39,100,68,3],"\u30c6\u30b9\u30c8":[],threads:[122,138],"\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8":89,"\u6e96\u5099":[],"\u6d3b\u7528":131,"\u5931\u308f":6,search:[82,168,142,150,27,42,43,6,157,105,16,57,23,163,164,139],published:140,"\u300c\u5024":59,aptitude:165,"\u672a\u77e5":104,memos:152,".synonym":100,"\u78ba\u7387":142,distinct:122,"\u5ca9\u4e95":[6,116],"\u5317\u534a\u7403":6,"\u958b\u653e":14,"_gqtp":156,"\u3053\u3068":[],"\u3053\u306e":[35,2,3,4,109,86,87,134,89,149,42,43,6,82,93,45,70,137,153,174,118,48,83,52,100,68,139,140,77,11,104,12,105,15,64,53,16,17,57,124,59,151,39,62,63,160,127,20,150,156,116,162,106,66,169,67,107,22,171,88,23,71,91,163,164,73,120,168,121,111,30,25,26,27,41,126,141,128,170,129,80,81,76,8],jsonp:[122,23],"[element":[139,77],"\u4e00\u756a\u5de6":139,"[example":70,none:[100,82,124,41,172,127,8,71,174,160],hour:[138,17],"\u3053\u3053":[100,3,168,140,11,142,126,64,67,170,175,163,139],dev:[141,12],"\u6c17\u8efd":[70,115],"\u3053\u3046":115,"\u4e2d\u5fc3":162,share:174,"\u96c5\u5e83":70,minimum:35,numbers:123,strlen:35,"/normalizers":[],needs:129,maps:129,"\u3053\u308c":[82,83,86,134,42,43,6,8,9,70,174,48,106,100,68,139,140,77,79,15,16,59,63,64,154,116,66,157,67,160,88,23,71,163,164,175,168,121,169,30,27,11,170,111,109],"\u3053\u3080":62,"*value":[57,36,105,72,78],"\u591a\u3059\u304e":143,"/afr":[67,3,121],"\u666e\u901a":[115,139],mariadb:[70,116],response:[122,95],kuriyama:70,"\u3066\u304d":2,"\u3066\u304f":165,"\u30c4\u30a4\u30fc\u30c8":[],"\u547c\u3073":[100,63,77,11,156,89,27],"\u547c\u3070":[3,139,40,53,14,105,116,47],"\u3002ftp":156,"`hostname":89,"\u5217\u578b":[11,70,168,121],"\u3002\u4f8b":72,finalizes:35,through:8,filters:[],"\u975e\u308f":134,existence:75,"\u308c\u308b":[84,3,85,86,40,134,89,43,6,70,137,174,47,106,100,10,140,77,11,142,176,14,15,53,16,54,57,59,62,63,64,125,156,116,117,67,68,160,88,23,164,165,175,169,30,124,27,111,76,109],"\u6955\u5186":[68,162],good:[152,139,100,41,106,168],"\u516c\u5f0f":[23,120,153,107],"\u3079\u3066":[100,8,121],"\u9664\u304f":6,"\u5316\u95a2":143,"\u4f1d\u7d71":30,"\u3079\u304f":3,"\u9577\u91ce":70,"\u9664\u3044":[156,27],"-encoding":[],micro:170,token:[],learing:43,"\u52b9\u679c":170,"\u9664\u3051":105,"\u767b\u9332":[],hard:129,flower:11,"\u30d5\u30e9\u30f3\u30b9":68,"\"gr":59,"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":165,"\u8ddd\u96e2":[84,1,68,139,103,30,6,67,162],"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":93,"\uff08\u79d2":72,"\u3068\u3082\u3063\u3068":174,"\u89b3\u70b9":[154,70],"_blank":124,tahr:[70,12],"\u4e09\u8c37":70,tritonn:[100,168,139],"\u308c\u305a":10,"\u306b\u3082":[100,134],"\u306b\u3088":6,done:17,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[170,68],".blog":64,"_data":[],koi:[6,174,89],"\u306b\u5bfe\u5fdc\u4ed8\u3051":164,least:129,"\u516c\u5e73":116,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":48,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[31,89,8],"/archive":140,"*results":105,selector:144,"\u308c\u307e\u305b":[10,150,89,117,105,71,174,163],"\u6574\u7406":[6,116],"},":[39,100,82,3,83,77,170,155,156,41,106,107,53,68,44,133,101,71,139,118,168],"\u4e71\u6570":[61,67],"_tag":150,"\u8a18\u9332":[6,30,54,9],"\"requires":6,"\u30d3\u30e5\u30fc":6,"\u4e0a\u8a18":[60,111,100,174,3,121,169,64,156,43,6,107,67,16,94,88,101,73,163,59],ages:[97,88,59],"\u30b9\u30ab\u30e9\u30fc":77,".key":105,built:72,"/lists":140,"-limit":[1,89,100,116],extracted:76,"\u307e\u3068\u3081":[],build:[140,12,116,74,141,93,18,73],"_available":[2,160],"\u53d6\u308a\u51fa\u3057":[57,112,3],eggs:71,"[experimental":[],most:102,"~*":76,"\u306b\u3057":[70,100,139,116,168],myisam:30,"\u5e73\u884c":140,"-protocol":[156,89,94],"\u306b\u3059":64,kb:154,ka:175,"\u306b\u3066":[6,68,116,140],"_put":[],wareohji:6,"\u306b\u3069":63,ko:37,km:170,"\"theater":83,"\u7528\u8a9e\u96c6":117,"\u4e0a\u66f8\u304d":[67,140],mlock:143,"_by":[35,170,104,136,105,70,57,23,72,76],"(drilldown":54,"\u30d1\u30c3\u30c1":[],"\u5927\u8cb4":6,relation:72,nterms:117,find:18,depended:[],"_int":[56,72,76],"\u7d50\u57ce":70,"\u30a2\u30ca\u30a6\u30f3\u30b9":140,permission:160,express:[6,93,116],"\u601d\u3044":111,"\u601d\u3046":[71,121],"\u62c5\u5f53":140,"\u9593\u9055\u3063":[116,6,157,16,70,23],"\"popular":100,transitional:131,"_and":[50,63],"\uff08byte":[72,113],common:[57,23,105,139],"\u601d\u3063":79,"/log":[122,131,174,89,8],"_sjlj":70,lion:6,tokenizers:[],"\u76f8\u624b":115,"[backslash":168,please:[131,75,111],"\u30e2\u30b8\u30e5\u30fc\u30eb":[],"(news":140,"\u5024\u57df":132,".log":[131,10,156,89,127,8,174],"\u30cb\u30db\u30f3":164,readme:[116,140],"\u8a9e\u4ee5":139,"\u8868\u73fe":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":6,"\u66f8\u3051\u308b":[6,70,116],reverse:[8,140],"\u6570\u70b9":40,"-file":[122,23,126,89],"\u5b9f\u51e6":[63,47],"\u6642\u70b9":[15,10,140,114,14,6,17],point:[],simple:[118,131],"\u3059\u304e\u307e\u305b":39,"\u306f\u3058\u307e\u308a":10,shutdown:[],"\u6253\u3064\u524d":140,"\"gronga":157,"_connection":2,create:[35,164],"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[15,169,14],"\u53ce\u96c6":[126,30],"_when":126,"\u30a2\u30ed\u30b1\u30fc\u30c8":74,bill:[64,134],replaced:[58,172],ful:82,"\u307b\u3057\u304f":100,engi:[142,164],larger:[129,58,43],"\u5f15\u6570":[],"^ \"":139,itself:77,"\u56db\u5247":70,rubygems:6,"\u95be\u5024":[],"-key":[104,140],"\u7d42\u7aef":[6,76,75,14],reconstructed:[],emphasize:101,")groonga":163,"\u56fd\u540d":121,development:170,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":70,"-chroot":140,"\uff08perl":8,keys:[70,105,8],"-existence":116,aggregate:27,"\u5834\u6240":[],"\u53cc\u65b9":115,"\"\u3001":[164,121],"\"\u3002":70,"\u30b9\u30bf\u30a4\u30eb":89,"\u5409\u7530":116,"\u7d44\u307f\u5408\u308f\u305b":[63,3,140,64,30,66,70],flags:[],sortby:[],convenient:164,entry:[66,135,85,65,52,127,158,144,32,99],"\u3064\u307e\u308a":[100,82,140],sunos:70,"\u3002dump":146,"\u547c\u3073\u51fa\u3059":[61,162,103,29,147,167],"\u3001\u00d7":115,"\u5024\u306a\u3089":116,"\"value":100,"\u547c\u3073\u51fa\u3055":[85,100,14],"\u547c\u3073\u51fa\u3057":[],"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":156,"\u306f\u3069\u3061\u3089":48,source:[39,3,75,140,170,87,66,53,126,71],realloc:143,"5\u3064":88,bin:[93,18],manage:18,big:[],"\u968e\u5c64":63,bit:[153,120,20,40,12,156,116,141,93,128,73],"\u5f53\u3066":[86,82,97,14],"\u30d7\u30e9\u30b0\u30a4\u30f3":[153,1,175,107,30,12,152,136,116,6,141,137,143,9,62,23,70,174,163,120,111],"\u5927\u4e08\u592b":[174,115],"\u8aa4\u308a":[6,70,116],"\u5354\u529b":[],hardy:143,"\u4e0a\u8ff0":163,"*keys":105,"-command":[],"_over":[2,160],"\u4ee5\u5916":[84,86,40,23,100,140,77,14,15,105,59,63,112,113,56,156,116,74,70,72,168,75,30,143,76],google:[157,100],"\u5168suffix":105,"\u8aa4\u3063":[6,70,116,140],examples:143,"\u3001[":3,server:[39,131,122,6,8,95,70,48],"\u3002set":156,"\u66f8\u304b":[6,170],"\u3001c":3,"\u66f8\u304f":[70,71,168],"\u8a73\u3057\u304f":[11,30,3],"\u66f8\u304d":[],"\u66f8\u3044":[70,170,168,139],newark:170,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":70,"\u3092\u3064\u3051\u308b":139,"\u30d3\u30eb\u30c9":[],"\u5024\u306a\u3057":104,"/cutter":140,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":6,"_checks":124,cxxflags:[20,140],"\u3001#":170,"\u3001\"":[101,3,83,169,170,40,116,43,6,157,16,23,164],"\u3001$":140,"\u3001'":[168,11,40,89,107,70,114,139],"\u3001(":[57,40,156,105,88],nginxhttpstubstatusmodule:70,"\u3001-":[31,40,143,156],"\u3001/":[3,94],"\u3001.":[165,111],"\u5730\u5f62":[68,162],"\u3001:":[15,156,14],"(fedora":131,"\u3084\u3059\u3044\u304b":163,"\u3001>":65,"\u5730\u70b9":[67,68],"\u7a4d\u307f\u91cd\u306a\u3063":116,"/yum":140,"\u9010\u6b21":[70,30],"\u5927\u95a2":70,"\u6295\u5165":[64,1],"[label1":70,"_fin":[6,35,76,14],"\u30de\u30eb\u30c1\u30b3\u30a2cpu":174,"\u51fa\u3059":170,"\u51fa\u3055":116,"\u51fa\u3057":170,"_full":[],"-type":[43,16,8,23,164,48],"\u7b97\u8853":[],"-binary":[8,48],"/epel":120,"\u56de\u907f":[],"\u52d5\u304d":[100,48],"\u52d5\u304f":[6,23,174,177],"\u52d5\u304b":[70,116],"*keybuf":105,curl:[174,4,122,6,8,95,81,48,73],sourceforge:140,"\u90fd\u6c11":[64,134],"\u6570\u73e0":169,bracket:[],functionality:122,"\u5207\u308a\u6368\u3066":11,libwinpthread:70,"\u30c7\u30fc\u30bf":[],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":156,"\u53d6\u5f97":[],confirm:111,"\u3068\u307f\u306a\u3057":168,"_nil":[57,105,143,76],failures:140,"\u7d50\u5408":[63,168,147],rinse:140,getaddrinfo:6,jason:133,wanabe:116,"/cache":8,"\u57cb\u3081\u8fbc\u3080":156,query:[],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":6,"_debug":165,"/\u65e5":170,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[139,71,100,168],"-release":[],"\u3042\u3089\u308f\u3057":83,"\u4f59\u308a":139,putting:129,"/request":95,"_database":[],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":6,"-build":165,uubntu:165,"\u512a\u308c":30,".output":31,"\u76f4\u611f":133,"\u9665\u3063":6,"_header":87,"\u9023\u643a":30,"_thread":156,"= n":139,access:129,"\u5f35\u308c\u308b":116,"\u4e2d\u56fd":68,"\u3002\u30ad\u30fc":100,"= y":116,"\u826f\u304f":71,"\u826f\u3044":[71,115],nonexistent:100,"\u30ef\u30fc\u30ab\u30fc":8,"\u632f\u821e":68,"0xc":160,"\u306b\u5bfe\u5fdc":[36,100,72,113,85,56,89,14,6,105,31,176,23,70,52,104,47],"= \"":[70,100,139],"/tmp":[163,48],";\"":6,"\u57cb\u3081\u8fbc\u307e":140,"\u57cb\u3081\u8fbc\u307f":[27,42],named:164,"\u3002adjuster":70,"/to":[8,48],"\u30ed\u30f3\u30c9\u30f3":68,"ci\u4e0a":73,"(ctx":[15,63,76,113],"\u53d7\u4ed8":[83,116],"\u5b8c\u4e86":[100,140,111],"'mroonga":[107,71],"\u30d5\u30ec\u30fc\u30ba":[],".pid":89,"\u5f35\u3063":[100,116],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[],"\u4e2d\u7a0b\u5ea6":[153,120,12,141,93,128],normalizer:[],"_previous":15,"[header":[126,62,82,124,66,127,53,44,109,9,137,118,155,158,59],normalized:124,"\u305d\u308c\u3089":[166,100,113,66,17,163,48],escaped:76,"\u96c6\u307e\u3063":121,"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":116,"_malloc":35,"\u8d77\u52d5":[],twiter:6,"\"items":146,"\"correction":157,"\u30af\u30e9\u30c3\u30b7\u30e5":[143,116,6,53,70,23],"{prefix":[174,9],"/linux":[],"-za":122,"\u6295\u7a3f\u5834\u6240":170,gcc:[153,120,20,116,6,23,174],dd:[138,139],"\u30b3\u30de\u30f3\u30c9":[],"\u5186\u6ed1":140,"\u5f35\u3089":[6,11,113,116],"\u5f35\u308b":[168,139],"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":70,".textile":140,"\u30b5\u30fc\u30d0\u30fcid":23,bind:23,lines:[122,165],"/repositories":140,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":143,"\u7d9a\u304d":52,"\u306e\u3088\u3046":[100,168,87,116,15,53,147,70,139],"(cutter":165,"\u7d9a\u3044":[64,100],hiroshi:[23,143],jiro:39,"\u3002int":116,"\u7d9a\u3051":156,lf:166,"\u6d88\u8cbb":106,lc:111,ll:[64,82,134],euc:[174,89,116],li:[64,134],lt:[150,82,27,42],ls:140,"_gqpt":156,lz:174,"\u9589\u3058\u308b":[23,1,86],"\u306f\u3069\u3061\u3089\u304b":[168,139],"\u8a71\u3057":80,"\u3067\u3057\u3087":[151,121,30,106,53,174],dat:86,"\uff08world":40,"\u30c7\u30a3\u30b9\u30afi":59,day:[106,138],"\u30e6\u30fc\u30b6":[66,100,63,3,140,40,156,43,6,157,16,164],"\u4e00\u3064":[135,5,40,134,7,97,99,10,103,11,14,15,105,144,146,176,148,61,113,65,66,117,68,162,74,167,169,30,29,101,32,130],"\u70b9\u9593":[84,68],"_persistent":[105,113],"\u5217\u5f0f":76,"& y":116,"& x":70,normalizerauto:[],"\u74b0\u5883":[],"\u5217\u5f15":63,"& b":139,"\u3042\u308c\u3053\u308c":115,"\u5f85\u3061\u53d7\u3051\u308b":94,"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[107,101,169],"\u88dc\u3046":30,"\u5fc3\u914d":128,res:[105,50,156,102],"& _":67,docutils:[],"\u30ab\u30ec\u30fc":134,ref:[],red:[],"_end":2,"/\u6708":170,frank:88,"\u73fe\u72b6":10,"\u4ed8\u5c5e":[31,8],"/aba":[67,3,121],"& (":139,"\u76ee\u8996":126,"\u30d6\u30e9\u30b8\u30ea\u30a2":68,"*top":102,"_long":[2,160],"\u91ce\u9996":70,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":30,hex:39,reaches:129,"\u30d9\u30af\u30bf":[6,143,1,72,116],"\u7d44\u307f\u8fbc\u307f":[],monkey:11,"\u305d\u306e\u3088\u3046":158,"\u6c38\u7d9a":[],"\u8aad\u307f\u8fbc\u3080":[1,62],natty:23,completed:164,acquire:17,documentations:149,"\u3068\u3088\u3044":174,"\u53d6\u308a\u5f97\u308b":40,"<..":[],"\u305b\u3044\u305c\u3044":59,"_illegal":2,"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[],"\u5229\u70b9":30,"\u30da\u30fc\u30b8":[49,100,3,140,89,116,22,6,31,111],"\u81f3\u308b":11,have:[106,129,98,75],"=users":[8,48],"\"co":157,min:[],"_control":[2,160],"\u914d\u4e0b":[31,140],"_func":[35,70,47,14],"\u8aad\u307f\u8fbc\u307f":[62,3,9,116,70,23,163],"\uff08gnu":174,"/commands":[70,53,87,127,97],"_character":76,eight:3,"_offline":104,"\u306a\u3082\u306e":[113,140],"\uff09\u3002":64,"\u6e2c\u5730\u7cfb":40,"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[6,16,59],request:[],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[126,1,10,143,116,6,70,23,104],"\uff08least":109,"\u7d44\u307f\u8fbc\u3093":[70,30],normally:[129,98,14],text:[126,100,82,4,127,86,40,156,27,6,107,102,146,129,71,139,48,168],"\u8d8a\u3048\u308b":64,supported:[37,8,95],"\u5ea6\u3068":23,conifugration:73,"\u610f\u5473":[100,63,3,168,121,77,163,87,89,116,67,142,174,76,164,156,139],"\u5b66\u3093":170,"*table":[57,105,72,113],"get\u30e1\u30bd\u30c3\u30c9":31,"[mruby":70,"\u65b9\u6cd5":[],")\u3059\u3079\u3066":88,"\u5c11\u306a\u304f":[139,30,115,27,106,168],"\u5c11\u306a\u3044":[100,168,106,147,70,163,139],"[column":70,"\u7e70\u308a\u8fd4\u3059":143,"_prepend":72,"\u306e\u307f\u3057\u304b":157,"_eval":[],"\u7e70\u308a\u8fd4\u3057":[156,139,111],"\u5272\u308a":[82,139,11,86,14,97],calling:35,fixed:6,"_busy":[2,160],"\u5236\u5fa1":[],exists:55,"\u3002blogs":64,we:[],"\u4ee3\u5165":[],writable:[],enhanced:37,wc:[141,120,12,153],xxxxx:140,"\u985e\u4f3c":[],"{name":139,"(string":103,"\u30c7\u30e1\u30ea\u30c3\u30c8":86,progress:138,"\u6751\u4e0a":[70,116],"_incompatible":2,"\u5b66\u3073":[100,68,121],"\u7dad\u6301":[30,48],"\u9577\u3059\u304e\u308b":116,sho:116,"\u5168\u4ef6":[57,168,139],"\"ddl":70,"\u518d\u8d77\u52d5":[],plugin:[],"-suggest":[],"_expression":100,".org":[3,93,8,174,153,101,140,77,11,12,15,146,111,39,20,156,67,94,70,120,121,141,81],"\u88dc\u6b63":[],"\u628a\u63e1":115,otherwise:[35,72,95],comment:[169,71,170],"\"fulltext":82,"\u304a\u304d\u307e\u3057\u3087":11,"-history":23,"\u4e00\u6587":[],"\u4ee5\u524d":[64,170,116,6,11,70,23,175],"\u30ab\u30b9\u30bf\u30e0":8,"\u91cd\u307f\u4ed8\u3051":[64,100],"\u30e1\u30e2\u30ea":[],"\u5c0f\u6570\u70b9":11,json:[],"\u91cd\u307f\u4ed8\u304d":[],copied:35,"\u901f\u3044":[86,70],define:[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":23,bulk:76,finished:[138,95],bye:41,"_domain":2,"=..":140,"\u5168\u4f53":[],value:[],"\u540c\u3058":[],almost:129,"\u6307\u91dd":[],"(cve":70,"\u30bf\u30a4\u30df\u30f3\u30b0":[6,3],regression:[],".db":[89,3,94,116],pkgs:120,"-endpoint":[122,58],optarg:[50,75],"\u67af\u308c":[131,173],receiver:[122,58],":!":168,"[apt":6,"\u672c\u4f53":80,"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":140,center:162,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":116,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":140,sets:14,position:[35,41,82,102],"*result":105,"1byte":160,"\"ellipsoid":162,"\u8868\u793a":[],"-platform":[],stores:76,"_byte":[2,160],"x\u30df\u30ea":[40,139],"\u5229\u7528":[],stored:[58,43],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":86,":<":[100,168],"\u958b\u59cb":[100,68,150,156,116,74,53,70,23,72,165],"_true":72,"\u3055\u3093":[121,143,27,136,116,6,157,70,23,104,48,111],add:[100,82,12,6,18,70,149,111],"\u3002gqtp":[166,2,94,160],"\u3055\u3089":71,match:[],tests:140,"|none":100,"\u5730\u57df":30,elapsed:[122,126,4,138],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":64,like:[8,113],success:160,"_leak":165,"_decr":72,"\u7f6e\u63db":[],"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":48,works:[35,138],soft:129,"\u63d0\u6848\u7528":122,"\u4e0d\u6b63":[1,143,116,70,23,165,59],"((x":40,"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":116,"\u8ca0\u8377":[143,8],"\u7121\u52b9":[100,168,114,116,6,105,8,57,174,104],"\u610f\u56f3":[168,169,116,6,107,70,71],tmp:[3,140,122,142,87,89,116,53,94,97,163,48],"_optarg":[50,75],sjis:[174,37,89],"\u30b5\u30de\u30ea":116,"\u5f62\u5f0f":[],",\"domain":121,"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":139,"\u30d0\u30b0":[23,115,116],"\u3046\u307e\u304f":[],dcb:70,host:[156,94],"\u6319\u52d5":[],"\u30c0\u30e1\u30fc\u30b8":64,about:[35,126,123,138,15,95,18,129,149,73],actual:8,socket:160,"\u3055\u305b":115,"\u4ee5\u5185":[170,67,16,139,164],introduces:[],"\u3055\u304d":11,"_time":[126,138],tomo:39,"\u3055\u3044":[131,82,3,133,119,86,40,41,22,127,6,2,93,94,95,9,137,101,174,48,153,100,68,139,77,11,142,12,64,53,17,21,87,59,111,62,44,20,154,155,156,116,66,169,67,158,109,70,118,165,120,168,121,30,124,107,141,170,31,81,8],introduced:8,"\u524d\u65b9\u4e00\u81f4":[],"!!":[52,39,8,170],"\u6307\u3059\u5024":57,"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":140,"!)":8,cleared:127,dataset:[122,58,172,164],"_object":2,"\u30ec\u30fc\u30bf":6,ayumu:[],rch:82,">default":4,"\u901f\u5ea6":[23,39,156,116,86],"\u7591\u554f":71,glib:116,"_inappropriate":2,"[power8":70,but:[122,129,118,58,95],"\u3068\u3068":[79,111],"\u3068\u3069":45,"\u3068\u306e":139,"\u3068\u3063":8,"\u30fb\u5168":144,buf:[105,72,113],bug:[6,37],"\u5730\u56f3":30,"-w":140,dangerous:[127,75,113],"\u3068\u3057":[166,39,62,63,139,157,11,156,40,89,116,43,106,68,16,8,71,14,163,164],"\u3068\u3048":[10,30,114,134,27,42,67,70,174,76],binlib:140,"\u3068\u304d":[1,82,3,40,134,89,43,6,8,9,70,174,47,48,153,100,68,139,140,77,11,142,12,14,107,105,16,147,57,59,39,63,112,125,115,116,66,157,160,23,163,164,120,175,168,121,30,143,27,126,141,170,81,94],"-disable":[122,23,143,70],"_empty":[2,160],epel:[6,120],colum:129,pid:[1,174,89],"\u8a08\u7b97":[84,1,68,139,103,30,40,116,43,6,67,16,137,70,162,164],"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[143,174,140],"-config":[1,143,89,6,23,174],saer:[142,16],"\u4f7f\u3044\u5206\u3051":[64,134],pip:18,"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":140,"\u305f\u3060\u3057":[1,168,134,89,116,66,54,31,57,23,70,139],"\u305f\u3060\u3051":6,"\u6291\u5236":[6,70,116],detail:156,"\u3068\u308b":72,"\u4fc2\u6570":[100,63],"\ufffecrch":82,"\u3068\u3082":[100,139,154,156,27,169,67,168],"_vars":35,"\u306e\u3044\u305a\u308c":[87,83],"\u307b\u3069":[131,3,11,142,89,59],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[6,160],"\u5909\u3048\u308b":[64,100],"\u307b\u3046":70,"\u307b\u304b":[11,30],"-r":[122,58],"4e":154,"|ro":100,"\u3002groonga":[3,4,86,6,93,8,132,174,153,100,10,139,12,156,116,66,70,71,164,74,120,168,30,141,80,94],"\u6e1b\u3089":[6,86,16,83],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":57,tweet:106,umask:70,"\"ab":157,under:[122,8,58],"-ci\u4e0a":116,risk:[],"/acccess":131,"/plugins":[143,174,116,9],"\u5b9f\u6570":40,"\u6761\u4ef6\u5f0f":[],"\u6700\u9577":[23,156,139],"_snip":[6,70],"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":142,"-repository":[6,12,140],estimates:102,"/mm":139,"\u7b87\u6240":[126,27,140,116],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[23,116,70],"\u4e00\u8a9e":64,"\u5b9f\u65bd":140,"\u81f4\u547d":6,"-rpm":140,"\u7d44\u8fbc":[61,135,103,5,40,65,162,167,66,29,7,144,130,146,148,176,97,32,74,117,99],"=largetable":95,"\u683c\u7d0d":[],"\u53cd\u8ee2":139,"\u30e2\u30cb\u30bf\u30fc":[141,120,12,153],"\u9069\u7528":[],"\u3002output":[70,146],studio:[6,93,116],path:[],"\u95a2\u4fc2\u5f0f":[],".ddl":156,"_key":[],"\u79cb\u8449":67,changed:[37,8,95],"\u5f62\u614b":[30,174,139],"\u58ca\u308c\u308b":[6,23,1,143,116],"\u63a8\u79fb":10,"\u3082\u3063\u3068":100,"-ci":[70,116],"\u30d3\u30eb\u30c8\u30a4\u30f3":116,"\u8fd4\u5374":[97,100,3],"\u8aad\u307f\u3084\u3059\u3044":104,"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[70,87],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":116,noarch:[153,120],m6:20,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":112,namebuf:[72,113],autogen:[6,140,111],"\u30a2\u30e1\u30ea\u30ab":68,"_jis":174,"-bind":[6,23,89],must:[35,102,75,122,43,127,95,55,129,76,58,113],me:[69,33],te:82,"\u7f6e\u304d\u63db\u3048":[70,89,168,111],mb:6,mm:[138,139],ml:115,"\"blank":175,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":156,mv:176,install:[],my:[100,168,139],"/xml":48,"\"s":[82,142,16,164],end:[166,150,4,160],eng:[142,164],"\u3002html":150,"\u3002functions":165,"\u30d7\u30ed\u30bb\u30b9":[166,74,10,3,30,89,116,6,117,53,8,9,156,148,48],env:163,"\u3067\u3082\u3063\u3068":[],rroonga:[169,116,15,107,147,70,71,73],"\u30b4\u30df":[23,143,117],"\u7d42\u4e86":[],description:[170,134],"-devel":[153,120],"\u305d\u306e\u5f8c":139,".tar":111,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[],"-files":[],"\u5c0f\u3055\u3044":[100,63,168,86,136,57,162,59],"\u5272\u308a\u5f53\u3066":[15,143],"\u4e88\u5b9a":[62,10,77,79,27,68,137,23,48],executed:94,"\u7acb\u3061\u4e0a\u3052":156,"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":70,"\u305f\u304f":[121,116,27,157,23,48,111],"\u5bfe\u8c61table2":105,synonyms:163,"\u300c\u697d\u3057\u3044":134,"@packages":140,gqtp:[],"\u305f\u3073":[67,10,156,140],"\u305f\u3060":[153,77],"\u8fd4\u308a\u5024":[70,116],"\u4e00\u884c":[156,143,89],"\u3072\u308d":133,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":116,"\u3072\u3089":[164,168,139],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":109,notified:95,"\u3054\u3089\u3093\u304f":96,"2\u3064":[0,131,3,87,43,48,153,100,103,12,107,59,116,66,169,70,71,120,168,121,170,141,177],each:[122,123,43,16,8,95,142,138,76,164],searc:164,signing:140,"\u3002\uff08":[84,100,143,168,111,86,40,134,27,42,14,117,16,139,147,57,23,43,164,73],"\u3002\uff09":[84,1,134,168,111,86,100,27,42,43,16,139,57,23,73,143,59],"(byte":[105,113],"\u6e96\u62e0":[8,116],goo:[168,139],msgpack:[4,160],tried:170,"\u30da\u30a2":[83,11,43,157,16,163,164],got:[],newly:[118,27],"\u4f59\u8a08":115,"\u4e8c\u756a":[],free:[117,143,138],"\u305f\u308a":[131,85,86,40,147,115,30,70,80,59],"\u305f\u3089":[100,139,140,169,143,115,131,107,88,70,174,164,48,111],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":53,freq:43,"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":15,"\u305f\u3081":[],"\u53e4\u304f":70,freecode:[],"\u53e4\u3044":[],"_locked":72,filter:[],onto:129,rand:[],already:[35,129,17,58],"\u53ef\u5909":[23,87,32,160],"\u897f\u66a6":139,top:[23,102,29],"\u30d6\u30e9\u30a6\u30b6":[174,94,140,111],"\u304a\u304b\u3057\u304f":143,too:[71,160],tom:107,tood:35,"_pragma":100,tool:73,serve:140,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":117,".com":[],"\u6d0b\u723e":23,"\"good":[100,139],"_untag":[],expr:[72,76,47,110],"*cursor":102,obata:143,"_isspace":35,"\u8d64\u9053":68,ram:156,"\u6709\u3057":87,"\u5834\u5408":[],"\u5f93\u3063":[100,105,57,31,50,48],"\u4e00\u89a7":[],"_source":140,hanako:158,"\u591a\u9762":30,"> y":116,"/stop":[152,41],"\u5f93\u3046":143,"/share":[23,89],though:164,"\u3044\u307e\u305b":[84,100,82,168,86,116,126,8,142,139,177,163,120,48,59],bsd:[70,174],"\u3072\u3068\u3064":[6,168,103],"\u30b5\u30b8\u30a7\u30b9\u30c8":[],treats:[],"\u30ed\u30fc\u30de":164,"\u30ed\u30fc\u30c9":[],"\u30ec\u30b3\u30fc\u30c9":[],marverick:143,"\u307f\u306a\u3055":63,pkg:[20,143,174],"\u5ea6\u8868":143,"\u5c0f\u6570":[],"\u6c42\u307e\u308a":30,"\u3002hook":85,"\u306b\u3064\u3076\u3084\u3051\u308b":115,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":63,"\u59cb\u307e\u3063":[126,157],"_valid":8,fontaine:23,"*fin":47,"\u3064\u3064":[64,107],"/example":127,watch:140,"\u306f\u307e\u3068\u3081\u3066":140,report:55,"\u3064\u304d":[60,62,101,77,100,66,109,137,163],"\u3064\u304b":136,"\u3064\u3044":170,"\u7d50\u679c":[],hendro:116,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[],"-per":[122,23],"_with":[133,134,105,113,139,59,168],"\u3064\u3051":[100,68],nul:[35,23,75],"-commnad":10,ciritical:8,"\u5bfe\u8c61cursor":[57,112],"_for":63,"\u4e8c\u3064\u76ee":[],"\u30d7\u30ed\u30b0\u30e9\u30e0":[6,87,80,143,8],"\u56db\u6368":23,"\u30d7\u30ed\u30bb\u30b9id":94,"\u30b5\u30fc\u30d0\u30fc":[],"\u59cb\u307e\u308a":140,"\u59cb\u307e\u308b":[100,168,156,66,157,105,54,70,163,164,48,139],news:[],"\u82e6\u624b":30,"\u3068\u3057\u307e\u3057\u3087":[71,83],extracts:76,"\u30e9\u30f3\u30c0\u30e0":67,"4gib":[86,160],"\u65b9\u5411":57,"\u591a\u91cd":166,"\u5f8c\u304b\u3089":146,"\u7d4c\u7def":[11,40,67],"/or":127,trust:140,"\uff13\u3064":40,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":156,"\u7b49\u3057\u3044":[100,63,168,72,139],"\u7b49\u3057\u304f":[63,168,139],"&lt":[150,27,42],been:140,"\u30a8\u30e9\u30fc\u30ed\u30b0":131,"_blog":71,"\u8d77\u6e90":11,"/shutdown":[8,48],tokenmecab:[6,64,134,155],"\u5217\u60c5":82,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[],msec:17,xxx:[89,116,139],"_not":[100,2,127,53,158,160,95,118,50],"\u6700\u9069":8,"\u7528\u9014":[153,100,77,86,12,116,126,141,93,128,30,70,120,131],"\u6728\u4e0a":57,"*ctx":[35,36,72,112,75,85,78,14,15,21,105,102,56,57,50,76,47,110,113],"\"e":[142,82,164],"\"a":[70,82,169],"\"b":169,"\"c":169,"\"n":[126,100,3,168,74,8,139,94],"\"h":82,"\"i":[126,152,168,170,100,106,71,139],"\"k":39,"\"t":82,"\u5c1a\u4e5f":116,"\u81ea\u8eab":[6,23,82,89,163],"\"}":[39,152,168,121,169,11,106,43,52,107,67,16,8,158,142,139,71,175,164,48,133],"\"x":[70,116],"\"@":170,"\u691c\u7d22\u4f8b":[],suggest:[],"\u30bf\u30fc\u30df\u30ca\u30eb":8,niku:70,"\"\\":76,"\"]":[39,100,3,139,77,64,170,87,89,27,146,164],"\"_":[3,83,87,41,43,8,101,118,48,133,52,100,68,139,77,11,142,106,107,53,16,146,39,152,64,116,169,67,158,88,71,164,168,121,170,126,175,94],"\"[":6,"\"'":[100,168,77,64,134,116,6,70,139],"\"\"":[169,40,104],"\"#":23,"\",":[82,3,83,87,89,41,42,43,94,95,97,118,133,106,100,68,139,77,11,142,52,107,53,16,146,39,152,64,150,156,116,117,67,158,88,71,164,168,121,169,170,27,126,101,175,8],"\"-":[23,68],"\".":[164,121,95,139],"\"/":[87,53,89,67,97],"\"(":[83,116],"\")":[39,68,139,103,114,107,116,6,29,67,95,88,70],"\"*":6,"\"<":[150,116,42],"\">":[150,4,42,27],"\"?":4,"\":":[82,3,4,62,42,43,41,94,95,137,101,118,48,83,106,100,68,139,77,11,142,52,107,53,16,133,39,152,44,150,155,156,74,117,67,158,88,71,164,168,121,169,170,124,175,8],"\";":[156,8,48],"\u78ef\u90e8":116,charlie:170,"/run":[89,140],"\u3084\u3059\u304f":[70,143],"\u3084\u3059\u3044":[1,100,27,42,147],"\u5bfe\u8c61table":[57,105,72,113],"_tags":[39,170],"_ctx":[],"\u4ecb\u6587":170,"_buffer":[78,2,160],".scr":156,"*bottom":102,"_selector":[],"5f":156,"5c":74,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[],ceekz:116,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[168,139],advanced:37,"\u542b\u3080\u5168\u3066":53,"\u5c0f\u6587\u5b57":[57,82,3,175,59],poedit:111,"\u6b63\u3057\u304f":[6,70,164,116,168],"\"engine":[16,164,43],"\u6b63\u3057\u3044":[157,16,163],"\u7d20\u89e3":[30,174,139],"\u307e\u308f\u308a":80,successfully:35,"_str":[170,76],jennifer:133,escape:76,"\u73fe\u4ee3":30,tutorial:35,".zip":111,"_right":[23,102,29],".github":[140,111],allocate:[],core:156,deleted:72,"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":6,night:[106,83],"\u3001\u300c":[39,1,121,64,134,89,100,67,164],"\u6d88\u3048":86,deletes:118,limitation:129,"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[6,3],ppa:[],"\u3002ascii":[168,139],"\u3092\u3054\u89a7\u304f":30,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":97,two:[138,8,58],"[@":[6,23,116,70],git:[96,140,111],"[{":[8,48],"[a":122,gib:[60,129],"[test":6,"\u3084\u307e\u306d":[70,116],"[n":[70,116],head:[166,70,160],"_interrupted":[2,95],")senna":163,removed:[],"\u6253\u3064":140,"\u57f7\u7b46":[84,71,91],"\u9032\u6570":[117,139],versions:131,"[:":94,"[#":[6,23,104,70],"[\"":[39,100,139,77,11,142,87,27,64,170,164,117],autoconf:23,"\u5185\u8a33":64,"[,":162,"\u6dfb\u4ed8":6,"\u8abf\u3079\u308b":[29,162,116,154],decrypt:140,"(match":107,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[],check:[],ongaeshi:[6,143,116],"\u305f\u304b\u3063":[16,83],no:[1,37,86,100,116,127,102,160,142,129],"/mxcl":140,when:[122,75,113,18],ne:82,ng:82,ny:170,setting:129,"\u5217\u6319":3,"\u6ce8\u8a18":116,tid:112,saerch:[142,16],"\u4e09\u756a\u76ee":139,"\u5024\u3054\u3068":121,"=number":[],"_touch":[143,75],"_unlock":[35,72],sql:121,longer:37,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":117,"\u672c\u756a":140,"_memory":[],"\u4e00\u8cab":[],backward:118,varying:35,",\"tags":39,"\u30d0\u30c3\u30d5\u30a1id":117,"\u30d2\u30c3\u30c8":[100,63,133,64,170,134,116,106,164],row:27,"_same":116,"\u4e00\u822c":[100,3,168,30,15,147,72],environment:73,"}attr":116,"*tid":112,advantage:27,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[168,139],"=get":41,enqueue:125,"6elz":70,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":32,level:[35,5,89,7,8,138,58,160],"\u8208\u5473":30,brother:168,"/db2":48,"/db1":48,"\u6d88\u305b":8,obsolete:131,"\u6f14\u7b97\u5b50":[],"\u79d2\u8868":[11,64,67,139],"\u6c42\u3081\u308b":[30,68,121,162],"\u5024\u6bce":[100,121],"\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":140,"_truncate":[23,105,113,70],"/load":[62,8,48],"\u56f0\u3063":115,".builtin":75,reply:71,"3\u3064":[100,3,121,11,150,27,116,126,53,147,71,165],"\u751f\u3058":[135,5,65,7,144,176,99],baseball:[39,71],"\u9ad8\u6a5f":[30,63],"=groonga":[122,8],deb:[6,141,12,140],"\u6b63\u78ba":[11,74,3],"\u63d0\u4f9b":[],"_success":[35,100,2,75,14,15,17,138,76,113],"\uff08ruby":73,"_info":[],"\u9006\u306b":[39,170],"\u30ea\u30f3\u30af":[168,140,11,116,6,96,70,139],"_delete":[57,23,105,72,85],"\u307f\u307e\u3057\u3087":[39,3,83,121,11,170,67,71],"\uff08messagepack":174,handled:8,"-src":141,sports:39,"\"name":107,"\u76f8\u5fdc":105,memory:[],msg:125,":type":[76,14],outputs:[138,58],"_concurrency":166,cases:75,"\u30bb\u30c3\u30c8":[41,63,134,105,57,72,99],"\u3044\u308f\u3086\u308b":39,"*dest":105,"_asc":105,".txt":140,"/in":[],"\u672a\u4f7f":70,memry:129,"\uff11\u3064":[87,125],"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[166,70,131,8,116],"/setup":73,"_sis":[133,134,168,105,59,139],"-docutils":140,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[],":clear":140,shibuya:143,"\u76f8\u5f53":[126,67,3,121],"\u5f15\u304d\u8d77\u3059":[6,116],clone:[],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":73,crashed:127,"\u7f72\u540d":[],"\u6b20\u70b9":30,"_qe":[],succeeded:[66,127,53,158,118],"_ql":70,"\u8efd\u3044":53,"\u30b0\u30eb\u30fc\u30d7":[],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[100,8],"\u3002tag":39,"_res":156,"/srpm":140,"_descriptor":[2,160],"\u542b\u307e\u308c\u308b":[63,3,140,11,30,150,89,42,64],normalizermysqlunicodeci:[],"\u56f2\u307e":[27,42],"\u56f2\u307f":[150,89,27,42],"[[":[133,89,152,42,41,95,137,97,118,100,68,139,77,11,106,107,53,39,62,64,150,158,71,164,168,122,170,27],"\u30d9\u30fc\u30b9\u30d1\u30b9":8,"_pass":8,"\u56de\u7e70\u308a":156,cutter:[],"\u6ce8\u76ee":[100,121],"\u3059\u306a\u308f\u3061":11,term:[66,117,83],name:[],"\u500b\u3005":[64,10,63],"\u65e5\u3005":115,"\u30b7\u30a7\u30a2":22,osanai:[],"\u534a\u7121":[23,59],"\u5bfe\u8c61column":113,"\u53d6\u308b":160,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":116,"\u30cd\u30b9\u30c8":[6,70,71,116],"\u30d1\u30fc\u30b9":[23,114,76,147],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":65,"\u6642\u4ee3":30,"\u3042\u3044\u307e\u3044":59,cancels:95,libstemmer:70,"-default":[],"=unique":95,candidate2:142,"\u914d\u7f6e":[3,140],"\u56f2\u3080":[3,27,116],"\u3002key":[105,134,3],"\u30b3\u30fc\u30c9":[70,82,116,111],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":168,"\u4e92\u63db":[153,120,10,139,140,12,124,141,31,70,48],turn:8,"\"element":77,"\u30db\u30b9\u30c8":[166,140,89,156,6,94,23],yum:[6,153,120,140,18],"\u5b8c\u7d50":115,"-normalizer":[153,120,12,124,6,141,175],"\u304a\u9858\u3044":[156,115],origin:111,fetched:43,redhat:[23,174],"-version":[],"\u3002geopoint":170,"\u30b7\u30f3\u30d7\u30eb":[177,121,147],"_function":[35,2,160,95],array:117,"\u7d5e\u8fbc":[],"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[68,109,147],returns:[35,102,113,122,105,95,118],"\u3084\u307e\u3060":70,kbytes:156,"\u30d1\u30a4\u30d7":66,"\u30a8\u30f3\u30c8\u30ea":[100,139,168,15,169,113],specify:[122,172,127,8,58,111],"-httpd":[],"cpu\u30b3\u30a2":[],"< t1":63,"\u3080\u308b\u3093":[168,139],posix:139,pre:37,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":60,"_local":[156,146],ann:140,"_groonga":126,enourmous:43,"\u53b3\u5bc6":[70,164],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[],takuto:143,"_permitted":[2,160],"\u30d5\u30e9\u30b0":[1,82,3,133,5,87,91,6,7,135,23,99,100,139,77,11,176,14,144,57,59,65,66,117,160,70,104,168,124,175],animation:39,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[21,100,174,89],multiple:[122,164,95],"_suggest":136,"_down":[2,160],removep:72,"\u81a8\u5927":30,"\uff09:":[153,62,134,20,12,120,141,137,81],"\u4e2d\u65ad":[6,23,85,70],geoindex:[],"8mb":[],"\u5c06\u6765":[62,68,77,124,116,155,44,160,137,48],"\u4e00\u81f4":[],"\u7551\u30b1":70,"\u547c\u3076":[6,165,147],"\u5ea6y":40,sitecountry:[94,121],"\u540c\u3058\u91cd\u307f":107,"\u88dc\u5b8c":[],"\u3002weight":11,"\u30d1\u30c3\u30b1\u30fc\u30b8":[],"\u5024\u3088\u308a":[100,63],"\u7530\u8fba":116,"_json":98,"\u985e\u7fa9":100,explicitly:[164,18],"[2":89,"\u5f53\u8a72":[10,72],ssh:140,"\"null":6,"_port":156,":')":66,tokenfilterstopword:[],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":134,mapped:129,ignored:[6,75,95],"\u30b9\u30b3\u30a2\u30fc":[],".co":[100,37],"#'":89,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[170,1,59],fails:[],"<gqtp":156,managing:75,"\"#\"":156,"(..":116,"_tokenize":[],"#{":138,cities:68,come:170,"\u4e0d\u5909":54,quiet:160,"\u30ec\u30b3\u30fc\u30c9id":[],"\u4e00\u822c\u7684":30,color:175,whombx:116,"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":6,period:[],"\u6a19\u8a18":70,"\u76f8\u5bfe":[23,100,140],"_clone":140,raring:[70,116],"#proxy":8,"\u5f8c\u4e8c":[],"*db":[72,75,14],"\u6709\u9650":100,"(age":88,"/lock":127,engine:[82,142,150,27,42,43,157,16,164],"/vdw":[67,3,121],"_tokenizer":[],"_value":[],"_tokenized":[82,124],"-case":[],"case":[35,129,58],"[build":[],"\u25cb\u25cb":115,"\u30ed\u30ae\u30f3\u30b0":14,shops:134,"\u975e\u63a8\u5968":6,"\u53d7\u3051":[68,3,83,160,116,6,8,88,70,125,48,94],"\u305f\u3068\u3048":64,saerc:[142,16],"\u559c\u3073":[79,111],archive:[],html:[],"\u5831\u4ee5":82,messagepack:[],"\uff08romaji":164,status:[],"0\u30d9\u30fc\u30b9":100,downloads:93,"[\u8a9e":117,"\u7d4c\u7531":[66,135,148,140,5,156,143,65,6,117,7,144,146,97,176,70,32,74,130,99],"\u8907\u6570":[],without:[164,43,8,27],"[geo":[23,116],"\u30d1\u30bf\u30fc\u30f3":[126,139],"/unit":165,"\u4f5c\u6210\u6e08":89,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],unicode:175,"\u3088\u304b\u3063":64,"\u53ef\u5426":3,except:129,blog:[64,169,71,3],"\\'":[89,168],"\\%":93,"\\\"":[101,150,134,27,42,52,169],"\u9577\u65b9\u5f62":23,hino:116,"\u63a2\u3059":71,"\u3002point":[29,162],"/base":140,"\\\\":[169,150,168],")..":140,"\u3079\u304d":[87,72,160,140,175],accepted:95,"\u3068\u304a\u308a":[60,67,156,121],"*mutex":35,"_send":[15,98,14],"-mm":[138,139],"_host":156,"\u985e\u7d39":64,"\"groonga":[100,139,77,27,157,169,59],frees:35,automake:143,provides:[],"@uzulla":23,"_unlink":72,mooz:23,"\u4e09\u3064":[68,134],o0:140,"/eval":137,"\uff08personal":[],"\u30b9\u30da\u30a4\u30f3":68,tokenbigramsplitsymbolalpha:[100,82,64,134,155,33],oo:[86,82],on:[35,37,75,72,122,150,27,42,105,82,8,102,98,48,111],ok:158,of:[],"_escalation":[],"\u30e6\u30fc\u30b6\u30fc":[],"\u8a2d\u5b9a\u5024":[154,1],os:[],or:[35,95,102,75,127,122,138,105,100,168,107,67,160,55,129,70,113,98,163,118,83],tokentrigram:[155,82,33],"_leading":100,"\u5c11\u306a\u3051\u308c":59,"\u5f0f\u5168":[168,139],"\u884c\u76ee":[126,156,140],"\u30c1\u30e3\u30f3\u30af":117,libmecab:[141,12,140],"{path":174,"\u8a55\u4fa1":[137,169,63,116,139],there:[131,168,77,127,95,129,118,175,164],"\u53d7\u3051\u53d6\u308a":[63,3,8],strict:70,"\u300ccomments":170,"/modules":[143,8],"\u901a\u308a":[84,82,87,42,43,97,174,100,68,139,140,142,12,107,98,59,64,150,169,101,88,71,162,73,168,124,27,158],jun:70,"*escaped":76,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":175,"(location":[39,67,68,170],datasets:172,":set":70,"\u69cb\u7bc9":[],"\u4f5c\u3063":[121,64,105,8,57,23,175],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[],":macro":113,"/hostname":[156,89],"\u30de\u30fc\u30b8":[6,111],"\u65b9\u5f62":[68,162],"\u5927\u6587\u5b57":[70,3,59],"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":116,"\u4f5c\u308a":[71,16,164,59],"\u4f5c\u308b":[39,83,77,170,125,16,147,70,111,59],"\u8ab2\u7a0b":116,"\u5149\u7537":116,"\u3066\u3057\u307e\u3044":115,"\uff08proc":85,"_type":[],ftp:156,included:[],"\u53d7\u3051\u53d6\u3063":30,"\u3002ctrl\u30ad\u30fc":3,"/mysql":[],"\u30ea\u30bd\u30fc\u30b9":[15,70,106],"\u65b9\u5f0f":[89,71,3,30],":mm":[138,139],"/usr":[174,89],"\u6c17\u306b":[87,72,111],"/select":[8,95,94],directory:[35,122,58,160],"4\u3064":[86,27],"\u30c7\u30fc\u30e2\u30f3":[],migrated:[100,168,139],all:[100,102,83,140,123,168,43,6,127,138,129,118,139,113],dist:140,executing:[122,14],scalar:77,"\u6761\u4ef6":[],"\u306f\u305d\u306e":14,"\u8fd1\u3044\u9806":84,jessie:[70,116],"\u30d3\u30c3\u30c8":[],"\u5b58\u5426":72,"/locale":[111,140,18],"/scalar":132,init:[6,70,174,47],"\u304a\u5f85\u3061":22,"\u5b9f\u7528":70,".name":[117,170,169],"[travis":116,"\u95a2\u9023":[],"=message":[],"-word":100,systemctl:131,"***":7,llt:82,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[23,140],"\u8a9e\u7248":140,and:[35,37,41,43,8,95,138,98,100,102,107,105,17,55,18,58,152,113,116,67,70,71,72,164,75,122,27,172,127,129,76],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":70,longtext:[40,102],list:[140,58,172,18],"_html":[],"\u304a\u3088\u3073":[3,140,11,30,89,6,174,47],"\u4f4e\u6e1b":[131,143],"\u6d69\u4e8c":6,"<protocol":89,"\u89aa\u5207":143,yappo:[70,37,116],"\u884c\u3048\u308b":[6,39],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[],"/news":140,tex:82,"/centos":[120,131,140],"_scalar":[83,87,41,42,101,118,100,68,139,106,107,53,146,39,152,113,64,150,66,169,158,88,71,168,121,170,27,127,129],will:[35,129,72],"(packages":140,sub:[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[],version:[37,3,4,140,156,14,74,108,94,23,8],memcached:[],tags:[39,87,77,97,59],shouldn:[],"\u88dc\u5b8c\u8a9e":164,"#worker":8,serihiro:6,"\u6163\u308c":121,allows:27,matsuu:143,options:[],gtihub:23,unrecoverable:75,tokenunigram:[155,33],ocelot:[23,116],"\u5358\u7d14":[63,133,162],"\u300c\u697d\u3057":134,"/atv":[67,3,121],"\u69cb\u6587":[],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[74,130],"\u7a4d\u7b97":[100,63],"_expire":72,thus:[58,172],"\u547c\u3093":[70,134,121],"\u3002git":140,"\u30d7\u30ed\u30f3\u30d7\u30c8":4,"\u524d\u63d0":[],"_supported":[2,160],"\u89e3\u6790":[],"\u79fb\u884c":[23,10],"_encoding":[],"\u306e\u306b\u5bfe\u3057":14,"=table":59,"\u671f\u5316":[6,14],"\u30ea\u30cd\u30fc\u30e0":23,grndb:[],"\u958b\u767a":[],"\u7406\u7531":[],">\u529b":7,recursive:[96,140],endian:[],stemming:[],"&..":94,overcommit:129,disable:[122,23,8],"_text":[70,76,124,165],"\u30ea\u30dd\u30b8\u30c8\u30ea":[],"-max":[122,23,89],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":165,"-munin":[],"-http":[],specifying:35,"\"book":139,":\u79d2":170,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":140,"\u9ad8\u307e\u3063":30,disables:[8,18],developed:152,disabled:[138,164],"\u623b\u308a\u5024":[],"\"is":11,"\u30bf\u30a4\u30d7":[85,23,156,48],"_link":[2,160],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":110,soccer:39,"\u30d6\u30fc\u30ea\u30a2\u30f3":40,"_large":[2,160],"return":[126,138],"\u52d5\u4f5c":[],"\u6d45\u898b":116,"\u5897\u3048":[137,71,82,77],"\u8a71\u984c":22,"-encodiong":139,innodb:30,"\u51fa\u6765\u308b":170,"-create":[],"\u5897\u3084":77,weight:[6,11,100,113,77],generation:18,"_release":140,"/en":[8,140,18],"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":12,"\u6c42\u3081":[30,103],"_new":[6,23,125],"/managers":[8,48],"\u3072\u3053\u3055\u3093":[6,70],generate:[35,18],thread:[35,75,125,156,127,105,138,113],"\u306b\u3088\u308b":[],"_hash":[],"\u30ab\u30b9\u30b1\u30fc\u30c9":[],"\u5927\u304d":[77,86,6,117,8,59],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":70,"\u5e03\u6559":80,"${":[107,100,139,129,111],"\u518d\u3073":70,gpl:37,passes:[140,95],"\u5b58\u5728":[1,3,134,131,6,8,100,72,14,105,54,146,57,154,156,116,67,88,70,71,162,121,30,143,126,29,94],script:[],gpg:140,"\u3050\u3088\u3046":68,"\u60c5\u5831\u540d":97,passed:[75,95,140],store:[102,76],gps:30,"\u8a9e\u691c":100,option:[122,138,58,18],"$(":[153,141,120,12,81],"/synonyms":163,"\u6574\u5408":[1,72],"\u6271\u3048\u308b":[154,116,70],"\u540d\u4e00":[],"\u898b\u308b":2,"\u306e\u304b\u308f\u308a":70,"/groonga":[131,3,87,89,6,93,8,9,96,97,174,153,140,79,12,53,55,111,20,116,94,23,163,73,120,122,143,141,129,175,81],"-working":6,"-get":[6,141,12,140,18],",[\"":64,"7e":156,"\u898b\u3066":[126,100,8],"\u307e\u307e":[10,140,121,11,115,116],"\u898b\u3064":[6,142,143],"/#":15,"\u540dn":[97,100],"\u307e\u3060":[62,10,139,142,100,27,116,74,160,70,137,23],"\u307e\u3067":[60,52,63,3,133,121,86,88,89,116,106,15,17,140,70,71,170,156,111],"\u307e\u3059":[0,2,3,4,5,6,7,8,9,10,79,12,13,14,15,16,17,18,20,21,23,25,26,27,29,31,32,76,35,36,135,61,40,41,42,43,44,45,46,47,48,153,174,52,53,54,56,57,58,59,60,39,62,63,64,65,66,67,68,70,71,72,73,74,75,103,141,80,81,82,83,84,85,86,87,89,22,91,93,94,96,97,50,99,100,101,77,105,108,106,107,11,109,110,111,112,113,114,115,116,117,118,120,121,122,30,124,126,127,128,129,130,131,132,133,134,137,139,140,142,144,146,147,148,149,150,151,152,154,155,156,157,158,160,88,162,163,164,165,166,167,168,169,170,171,173,175,176,177],"\u307e\u305a":[3,83,121,64,170,134,156,93,8,140,139,71,174,111],"\u307e\u305b":[35,36,131,2,3,83,109,84,86,40,134,89,62,42,6,82,94,9,137,97,70,174,48,52,100,68,139,140,77,11,142,176,156,105,14,15,107,53,16,54,17,57,148,87,59,152,44,112,113,64,154,132,155,115,116,106,66,157,158,160,88,23,71,72,163,164,74,175,168,121,169,30,124,27,126,111,76,130,8],"_list":[],"\u307e\u305f":[],"\u3058\u304d":27,port:[122,156,94,81],centos6:6,"\u7279\u5b9a":[],superior:27,"[pat":6,"\u9069\u6642":85,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":71,"\u66f8\u304d\u5f8c":134,"\u306a\u3051\u308c":[36,2,132,87,89,6,8,174,52,100,101,139,77,11,53,14,15,105,59,113,156,66,169,88,72,163,73,168,76],added:[105,37,102],"\u3093\u3057\u304d":147,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":63,"\u30d5\u30a3\u30eb\u30bf":6,exec:160,customize:[8,164],"\u30e1\u30fc\u30c8\u30eb":[68,162],"\u89e3\u653e":[74,112,14,15,57,70,72],nothing:[98,55],"\u73fe\u5b9f":121,"\u307e\u307e\u3067":64,"\u3002id":14,"-oriented":27,"\u9577\u3055":[113,11,56,156,6,105,57,72],orangain:116,"\u624b\u52d5":8,"&query":94,".rb":[70,62,143],"\u304a\u3051":100,"_users":170,"\u304a\u304d":[30,140],"\u304a\u304b":174,"\u304a\u3044":[3,113,140,11,30,116,105,54,23,72,165,111],"\u59cb\u70b9":3,"_call":[2,95,63,160],"_format":[2,160],firewood:[6,116],"\u304a\u3070":[23,1,116],concatinated:122,"-ftp":156,"\u4f4e\u6a5f":63,"\u904b\u7528":30,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[],rose:11,"\u629c\u3051\u308b":3,"\u671b\u307e\u3057\u3044":[30,115,140],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":8,longest:105,"\u304a\u3070\u305f":[23,116],"\u305d\u308c":[3,83,40,134,43,93,153,100,101,139,140,11,57,87,111,63,112,64,56,74,71,72,168,121,143,59],"\u306b\u304a\u3044":[11,10,140],"\u4fdd\u8a3c":[117,10],armhf:70,"\u6570\u5024":[],"(content":[101,27],"\u30b3\u30df\u30c3\u30c8":140,"\u76ee\u4ee5\u964d":100,art:170,tobby:107,dump:[],"]]":[100,122,142,89,52,158,144,156],"][":[168,116,6,70,23,104],"\u305d\u3046":[88,115,139,73],are:[35,100,102,75,77,122,164,27,172,43,138,127,95,17,55,116,129,175,76,58,111],"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[156,140,111],"_mutex":35,"]}":[11,117,169],"\u30b9\u30b3\u30a2":[100,63,77,64,142,6,122,67,54],"]x":170,"\u5897\u3048\u308b":[155,44],libraries:[],"/non":116,"\u305d\u306e":[],"\u3067\u3088\u308a":70,korea:121,recently:109,creating:129,"\u5927\u91cf":[39,63,3,86,70,59],"\u304a\u3088":17,"\u898b\u3064\u3051\u308b":[53,175,8,164],"\u304a\u308a":[70,67],solr:139,"\u672a\u521d":6,"\u30c6\u30fc\u30d6\u30eb":[],license:[37,140],"\u8a02\u6b63":163,"]>":[],"]'":[8,48],became:131,context:[76,72,27,8,14],"]\"":[6,170,116],"],":[82,3,83,87,89,41,42,43,94,95,97,118,133,106,100,68,139,77,11,142,52,107,53,16,146,155,39,152,44,64,150,156,74,117,67,158,88,71,164,168,121,169,122,170,124,27,126,101,175],"]/":94,"].":70,"])":[61,150,162,17],finds:105,minagawa:116,"\u691c\u7d22id":105,reasons:55,"\u3042\u3068":[140,111],improper:160,"\u30b3\u30de\u30f3\u30c9url":48,"_cancel":[],"[backward":[],"'alice":168,"\u7d76\u5bfe":9,":#{":138,"\u8003\u616e":[64,83],"\u5f0f\u3068\u3057\u3066":76,due:27,pg:88,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed":8,po:[],kiske:6,"\u3057\u3084\u3059\u304f":6,"\u6574\u5217":[30,3],"(html":101,"\u8a00\u8a9e\u540d":111,"\u30d9\u30fc\u30b9":[131,82,168,177,30,143,6,105,23,57,70,139,111],"\u30d8\u30c3\u30c0":[70,116],"\u79d2\u9593":23,"\u5730\u7cfb":68,evaluated:137,behavior:[],"(body":[150,42],"\"sug":157,xvzf:[153,120,20,12,141,174,81],"\u5404\u8a9e":117,"\u6027\u5225":30,"_expansion":[],rid:[78,112],"\u30ed\u30fc\u30ab\u30eb":[139,140],"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":[],"\u6210\u679c":[],"*type":113,"/ppa":12,"\u5065\u4f5c":39,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[],"/hoge":89,"\u64ec\u4f3c":[100,168,139],abcde:124,edge:125,nanoseconds:138,"\\bin":93,"\"alice":168,"\u6b8b\u5ff5":11,"\u9006\u5f15\u304d":[],"\u3067\u304d\u308b":[],tables:[146,129,172,55,43],"\u4e92\u63db\u6027":140,"\u3002keys":105,"\u64a4\u5ec3":[70,143,89,99],"\u5024\u7528":23,"\u304f\u3060":[131,82,3,133,119,86,40,41,22,127,6,2,93,94,95,9,137,101,174,48,153,100,68,139,77,11,142,12,64,53,17,21,87,59,111,62,44,20,154,155,156,116,66,169,67,158,109,70,118,120,168,121,30,124,107,141,170,31,81,8],boost:164,"_finalizer":[47,14],"@wareohji":6,".score":118,unstable:[],"\u6642\u523b":[126,75,170,156,74,16,167],".title":[11,127],"\u7f6e\u304b":[31,174,163,8],"\u7f6e\u304d":[57,143,72,83,140],"\u7f6e\u304f":174,"\u7f6e\u3044":[70,140],"\u5404\u8981":77,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[1,175,139,114,89,14,70,174,76],"/rroonga":70,retry:160,"\u69cb\u6210":[153,120,63,3,140,12,131,141,70],proc:[35,153,100,85,12,120,141,105,47,110],"-drilldown":[70,121],"_between":70,"_improper":2,"{type":122,"\u9577\u751f\u304d":59,"\u5b9f\u73fe":[],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[17,116],"\"service":16,range:[],"lzo\u3044":66,"\u672c\u6587":[71,101],"\u5831\u544a":[],"\u524d\u65b9":[],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u30da\u30fc\u30b8":[],shimoda:143,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[70,89,8],"\u7a2e\u5225":124,fast:[126,100,82,168,150,27,42,52,101,71,139],"/hosts":140,"_links":[2,160],"html\u30bf\u30b0":101,files:[],"-query":[131,3,168,170,138,89,27,42,116,6,107,8,70,23,163,150,133],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[70,152,100,91],"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":59,aramaki:[23,143],piro:[],"_op":[50,76,63],"_or":[],"\u306b\u3064":6,"_of":[2,160],highlight:[],"_on":[2,160],called:35,"\u63a5\u982d":[23,139,86],associated:35,horikoshi:23,"\u679c\u305f":3,warning:[5,138,7,8],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":77,"\u306b\u5bfe\u3059\u308b":[],grouped:[],tatsuya:6,grn:[],gro:27,newvalue:113,nice:106,users:[],"\u5c5e\u3057":[40,132,121],"\u305f\u3076\u3093":174,develops:152,drilldown:[],"\u982d\u8f9e":86,"\u300d\u3001":[39,170],"'grn":114,"\u300d\u3002":147,"\u570f\u5185":170,"\u8868\u3059\u578b":40,"-deafult":23,"\u8aad\u307f\u53d6\u308a":[52,53,89],"-package":[],"\u30b3\u30a2":[174,8,48],"-benchmark":[],"-count":74,once:[],"\u30a4\u30f3\u30c7\u30c3\u30af":71,"\u958b\u304f\u969b":6,"\u5272\u308a\u5f53\u3066\u308b":[11,86,3],issues:70,"\u30b9\u30ad\u30c3\u30d7":[70,116],"_pvector":76,"\u8a9e\u6271":134,"\u30ad\u30fc\u30b5\u30a4\u30ba":86,"\u30cb\u30e5\u30fc\u30b9":106,stable:10,include:[79,70,88,127],"\u7e70\u308a\u8fd4\u3057\u6570":156,"=gr":122,"\u30de\u30c9\u30ea\u30fc\u30c9":68,"\"saerch":16,"\u30d7\u30e9\u30b0\u30de":100,"\u306a\u3068\u304d":30,"*user":[35,47],"\u3002run":165,"\u3067\u5024":[89,3],ranguba:[15,70,77],"\"complete":157,"-in":[72,140],"-id":[6,89,95],"_dir":[35,23,140],"|correct":142,"_use":[70,2,160,14],".po":[],smaller:[138,77],".pc":[23,136],"-line":73,"\u3053\u3046\u3059\u308c":115,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[70,71,87,116],"\u3002buf":113,etime:166,"\u30a8\u30f3\u30b8\u30f3":[11,39,100,89,30],"{time":138,"-exact":74,"\u521d\u56de":111,"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":84,"\u5341\u5206\u6c17":100,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[86,3,8],"\u4e0a\u3052\u308b":64,"/coremodule":8,"_name":[],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":89,"\u30c8\u30e9\u30a4":[23,59,168,139,86],">version":4,"\u5206\u6790":30,apple:175,apt:[140,12,6,141,18,73],"*str":[35,76],expect:70,"\u3057\u307e\u3063":70,api:[],"_commit":78,"\u5207\u308b":[70,8],"\u5148\u60c5":170,"\u9001\u4fe1":[],use:[],from:[],"\u3057\u307e\u3057":116,usa:121,"\u3057\u307e\u305b":[100,64,115,8,174,164],"\u3057\u307e\u3059":[100,139,170,134,120,157,168],"\u3057\u307e\u3046":[140,30,143,115,116,6,70,23],usr:[89,8,9,174,165,81],"\u3057\u307e\u3044":[11,64,16,156,133],"\u4efb\u610f":[3,140,89,40,156,30],start:[106,122,131],sort:105,"(keyword":76,"_names":75,tokenbigramignoreblanksplitsymbolalpha:[64,155],"?msg":140,"[args":89,"/index":[132,89,140,111],"-html":[6,143],dropped:[],"\u30b7\u30fc\u30b1\u30f3\u30b9":[16,164,43],tar:[153,120,140,20,12,141,174,81],"_install":[],tag:[39,140],something:[],tab:98,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":70,"/rpmforge":120,sis:23,united:158,satoh:23,"\u30c0\u30d6\u30eb":[168,86,6,23,139,59],six:[138,3],"\u30d5\u30a3\u30fc\u30eb\u30c9":87,sid:[23,117,70],instead:[100,89,131,99],"_create":[],"\u884c\u3046":[166,39,152,68,133,140,170,134,115,100,6,107,67,143,165,57,70,71,131,59],"\"rectangle":[6,68,162],"\u30a2\u30af\u30bb\u30b5":72,"_configure":116,"\u30a2\u30af\u30bb\u30b9":[166,143,140,11,105,89,17,116,6,53,94,31,23,70,111,8],"\u3042\u308b\u3044":[153,10,113,30,160,168,139,162,29,105,63,8,70,50,59],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":116,"$home":140,interrupted:160,"-msgpack":48,"[github":70,freebsd:[],"\u4eac\u90fd":[64,134],"#groonga":[170,163],"\u300cbill":134,"/stem":152,"\u5bfe\u8a71":[3,94],"%'":70,"\u7279\u5225":[82,168,2,17,174,76,164],"\u30c0\u30f3\u30d7":[6,143,116],"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":140,"/apt":[141,140],"/api":48,restart:131,inspecting:[],multithreading:95,"\u3057\u3046\u308b":70,crash:[],indexing:[],"\u30b9\u30ad\u30fc\u30de":[100,68,168,169,150,27,42,106,107,158,101,146,88,129,71,76,139],"\u30bb\u30af\u30b7\u30e7\u30f3":[82,124,87,41,43,93,8,137,174,45,153,100,68,77,12,52,53,16,109,149,59,151,62,113,127,20,171,160,70,118,163,164,73,120,168,121,26,126,141,128,129,80,111,81],"\u53c2\u52a0":[80,22],successor:139,articles:71,"_free":35,edit:[],".net":[39,3,140,121,11,22,67,94],"%\\":93,nfs:174,"\u6df7\u305c":[11,142],".overcommit":[],",\"link":11,"\u5c3a\u5ea6":30,related:129,"\u89e3\u6c7a":[6,23,115,117,154],remove:[72,124],inverted:27,out:156,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":170,supports:[35,37,58],dictionary:175,"\u30ec\u30a4\u30e4":63,york:[170,68],"8r":[6,174,89],lts:[12,140,73],"\u4e00\u90e8":[6,65,3,140,157],"\u8ca0\u62c5":115,lte:82,auth:[8,48],"\u304a\u3059\u3059\u3081\u3057":[131,168,140,139],"\u8aac\u660e":[],"1\u305a":[10,54],"\"tags":77,"\u53d6\u308a\u8fbc\u307e":140,"\u53d6\u308a\u8fbc\u307f":23,"_symbolic":[2,160],"\u8d77\u70b9":100,utc:139,"\u78ba\u8a8d":[],"_qlog":6,unknown:160,"\u304a\u304b\u3057":143,makefile:140,",[":64,priority:164,their:129,"1\u3064":[82,132,86,87,42,8,9,137,70,71,48,100,139,77,142,107,59,60,39,62,156,115,116,157,160,23,118,168,169,170,27,127,109],"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":89,developer:170,"\u7279\u5316":[139,111],"\u30d5\u30a9\u30eb\u30c0\u30fc":93,"-jumandic":153,"\u64a4\u53bb":23,"\u9ad8\u3044\u9806":3,"\u89e3\u6d88":[1,32,116,72,77],"_unsupported":2,"\u51fa\u73fe":[30,87,142,113,91],".grn":[8,146],"\u9001\u308a\u65b9":[],"\u884c\u6307\u5411":30,"\u30ab\u30bf\u30ab\u30ca":[57,142,175,164],ueno:[6,143,136],"\u76ee\u304f\u3089\u3044":59,"_expanders":[163,9],"=complete":122,which:[35,122,58,164],"\u4eee\u60f3":[67,116,121],"\u901f\u3084\u304b":10,".travis":73,"\u7d44\u8fbc\u578b":[],"class":[150,101,27,42],"_build":165,"_term":37,"_delimited":37,"/docs":8,"_is":[2,126,160,95,23,72],gronga:[157,163],"_ip":94,"_in":[],"_ii":[],"-output":[100,101,150,156,27,42,116,6],"_id":[35,36,100,3,113,140,104,123,78,105,14,112,67,54,95,70,57,23,72,76,139],"_delimiter":[82,124],"\u6307\u3057":11,"\u5bfe\u8c61object":[36,75,85,72,47,110,113],"\u5c02\u7528":[],",\n#":[39,100,82,3,168,77,11,170,41,107,67,94,139],"\u5bfe\u8c61":[82,3,134,42,135,132,50,48,99,100,10,140,142,14,52,107,105,144,146,57,125,59,39,63,112,113,64,150,65,66,158,23,71,72,104,165,166,168,111,30,27,170,174,32,76],"\u3044\u308d\u3044\u308d":[],cache:[],"\u30b7\u30a7\u30eb":[174,156,168],daiki:[6,143,136],candidates:164,"*newvalue":113,"\u6848\u5185":[115,140],local:146,"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":174,"\u6295\u7a3f":[],"\u4ed8\u3051\u308b":[125,152,175,3,83],"!condition":139,"!xxx":70,"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":70,nvars:47,",\n{":[152,168,121,77,142,43,107,16,8,169,139,71,175,164,133],subrecord:116,words:139,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":1,"\u3070\u3044\u3051":[36,100,174,132,113,77,163,87,168,105,73,6,169,53,8,139,72,76,59],"(column":[70,150,27,42,88],",\n[":[27,146],",\n]":[64,169,67,133],"\u4e00\u4ef6\u9032\u3081":57,candidate1:142,queries:[156,27],view:122,"\u304b\u304e\u308a":156,"=fedora":140,"\uff08\u578b":56,"\u884c\u6570":23,acquires:17,still:95,"\"table":89,dll:[6,23,70],"\u30ea\u30c8\u30e9\u30a4":17,".askmonty":70,"\u4e43\u6bc5":143,job:156,homebrew:[],"\u3084\u305d\u306e":158,commands:[],april:140,"/local":[174,8,140],"\u672a\u5bfe":6,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[6,31,143,89],"_var":[35,70,76,47,56],"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[174,93],table:[],"\u671f\u5f85":30,rpm:[153,120,140,143,116,6,70,23],"\u304a\u3059\u3059\u3081":48,"\u30b5\u30d6\u30bb\u30c3\u30c8":[40,105],"=gro":122,"\u9bae\u5ea6":106,"_refused":[2,160],"\u78ba\u5b9f":16,porting:37,"\u521d\u671f\u5024":166,"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":6,mike:158,sufficient:35,"-cache":[89,116],hmm:170,"\u5024\u578b":11,"\u672a\u5b9a":11,"\u4f4f\u6240":6,cursor:[57,102,112],"\u793a\u3059":[126,100,2,168,107,11,150,169,27,42,52,29,68,139,101,158,88,97,162,48,133],"\u793a\u3055":97,"\u793a\u3057":[84,68,3,140,121,64,25,124,74,2,94,71],"\u3072\u308d\u3086\u304d":133,"-debug":143,"*src":105,avg:166,"\u8fd4\u4fe1":[170,71,115],uptime:[1,3,4,74,94,8],"\u5185\u90e8":[74,140,11,78,27,14,15,105,70,72,104],"\u578b\u304b":40,"\uff08longest":[23,139],"\u6ce8\u610f":[100,101,3,168,121,77,11,156,116,64,105,8,140,133,23,139,48,59],gets:35,"\u691c\u7d22key":105,"\u6587\u8108":169,"\u5168\u6587\u691c":[],"\u3075\u306a\u3068":70,english:[100,164,22,18],uzulla:23,"\uff01:":174,"@kiske":6,normalizermysqlgeneralci:[],"\u521d\u671f\u5316":[6,47,14],tcp:89,")=":154,"_device":[2,160],"(windows":156,"\u5236\u7d04":60,"\u898b\u76f4\u3057":70,"(name":35,unsigned:[35,113,78,15,105,56,57,70,72,76,47],"\u627f\u8a8d":70,book:139,"\u9ad8\u7cbe":30,moritars:71,qwik:146,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[23,174,165,128,111],execute:[122,58,43],"\u300c\uff76":175,"'pid":89,know:55,"\u30b9\u30ec\u30c3\u30c9":[30,125,156,14,89,48],"\u307e\u305f\u3044":[6,68],earch:82,";rroonga":[150,42],james:133,"_threshold":[],"\u307e\u305f\u3050":[],"\u306a\u304b\u3063":[100,10,3,139,107,5,89,144,65,6,64,7,135,169,88,176,70,156,99],"_push":63,because:[4,122,43,8,129,164],sequence:[123,172,43,16,142,138,164],"-host":156,platforms:35,"export":18,vojtovich:70,"\u30b3\u30e1\u30f3\u30c8":[],"_sortby":[],"_exists":[2,160],"\u306e\u307b\u304b":[11,40],"\u96e2\u308c":67,leak:[],"\u2192id":86,"\u7d44\u5408":107,"enum":75,"\u7acb\u3061\u4e0a\u304c\u3063":156,"*path":[105,75,113],"\u518d\u691c":147,"\u306e\u3044\u305a\u308c\u304b":[29,105,50,162,56],"\u305d\u308c\u305e\u308c":[82,3,4,86,134,89,174,100,139,140,11,107,105,59,63,64,67,160,70,71,72,165,121,126,31],"\u5358\u72ec":[156,113],column:[],universe:12,"\u30fbor":67,".html":[89,8,140,111],"$groonga":140,"\u6570\u5b57":[64,70,16,156,59],yuya:[],"_length":[35,160],"\u5b9f\u7a3c":166,transfer:[30,131,160],"\u3002mroonga":[30,72],"*key":105,"var":[35,63,87,89,8,55,174],"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":73,"\u30d5\u30a3\u30eb\u30bf\u30fc":169,palalles:140,"-pid":[23,89],"\u30b9\u30cb\u30da\u30c3\u30c8":[27,116],"-pip":18,"\u6700\u5f8c":[82,139,140,11,143,156,14,6,64,8],"\u7834\u68c4":[47,14],squeeze:[116,140],palallel:140,"\u30e1\u30f3\u30d0":105,"\u56fa\u6709":[85,77],whether:[118,72,75,55],record:[68,3,77,11,105,102,94],"\u30ed\u30b0\u30a4\u30f3":140,"\u4e00\u9577":30,"\u6c7a\u5b9a":100,blogs:64,"\u305d\u308c\u3086\u3048":[11,168],"\u7a4d\u7528":100,"8bit":40,"\u7acb\u5834":80,"\"se":164,"@github":140,"\u52a0\u3048":[11,63,133,73],other:[35,75,127,17,58,113],bool:[152,168,11,40,116,41,29,162,133],"-analyzer":[6,23],"\u306f\u307e\u305a":140,".gpg":140,"-sortby":116,".location":170,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":143,debian:[],"\u9054\u3059\u308b":57,emerg:[5,7],"\u5909\u66f4\u70b9":[],"\u306f\u307e\u3060":[53,48]},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/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","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","install/solaris","reference/api/grn_match_escalation","community","news/1.2.x","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","characteristic","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","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/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","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/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","reference/command/request_id","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/tuning","reference/commands/shutdown","server/package","reference/column","tutorial/patricia_trie","spec/search","reference/commands/table_remove","news/1.1.x","reference/commands/ruby_eval","reference/log","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/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/functions/geo_in_circle","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","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.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.25. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","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.18.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.18.2. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.14.3. \u88dc\u6b63","7.18.1. \u5168\u4f53\u8a2d\u5b9a","12.2.1. Introduction","8. \u4ed5\u69d8","2.7. Oracle Solaris","7.18.15. <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","7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7","7.18. API","7.3. \u30b3\u30de\u30f3\u30c9","7.12.13. snippet_html","5. \u30b5\u30fc\u30d0\u30fc","7.12.5. geo_in_rectangle","1. Groonga\u306e\u7279\u5fb4","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.8. Tokenizers","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.18.23. Plugin","7.18.14. <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.36. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.12.7. highlight_html","7.14.4. \u63d0\u6848","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","7.14. \u30b5\u30b8\u30a7\u30b9\u30c8","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.18.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.3.1. \u6bd4\u8f03","Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","7.18.18. <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>","\u7591\u4f3c\u30ab\u30e9\u30e0 (pseudo_column)","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.18.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.18.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. \u5236\u9650\u4e8b\u9805","7.12.12. rand","7.3.28. <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.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.12.3. geo_distance","7.3.24. <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.18.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","11.1. Travis CI","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.18.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.18.9. grn_expr","\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0","7.18.12. <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.37. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.13.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.18.11. <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.12.1. between","7.1.3. groonga\u30b3\u30de\u30f3\u30c9","5.3.3. groonga-httpd","4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210","7.12.9. in_values","2.1. Windows","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.18.5. <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.29. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.12.8. html_untag","7.18.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.12.2. edit_distance","1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012/01/29","7.18.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.15. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.12.11. query","7.18.4. <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.18.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. \u56fd\u969b\u5316","7.18.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.18.3. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.18.8. <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.39. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.2. GQTP","2.5. CentOS","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","7.1.8. groonga-suggest-httpd","7.3.3. Request ID","7.3.21. <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.17. Tuning","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8","7.6. \u30ab\u30e9\u30e0","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","8.2. \u691c\u7d22","7.3.35. <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.27. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.16. Log","7.11.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.32. <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.11. grn_expr","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.12. \u95a2\u6570","7.12.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.38. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.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.3.2. groonga","7.12.4. geo_in_circle","7.10.1. QueryExpanderTSV","7.14.2. \u88dc\u5b8c","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.1.2. grnslap","7.12.10. now","7.11.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587","7.12.14. sub_filter","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","7.13. \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.3. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[21,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[89,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[72,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[21,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[75,1,1,"c.grn_db_create"],grn_plugin_charlen:[35,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[85,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[72,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[57,1,1,"c.grn_table_cursor_close"],"-P":[166,0,1,"cmdoption-P"],grn_table_cursor_set_value:[57,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[76,1,1,"c.grn_expr_syntax_escape"],"--log-output-dir":[156,0,1,"cmdoption--log-output-dir"],"-d":[58,0,1,"cmdoption-d"],"-a":[89,0,1,"cmdoption-a"],"-c":[89,0,1,"cmdoption-c"],grn_obj_set_info:[36,1,1,"c.grn_obj_set_info"],"-m":[166,0,1,"cmdoption-m"],"-l":[58,0,1,"cmdoption-l"],"--disable-max-fd-check":[122,0,1,"cmdoption--disable-max-fd-check"],"-i":[156,0,1,"cmdoption-i"],"-h":[89,0,1,"cmdoption-h"],grn_db:[75,2,1,"c.grn_db"],"-t":[122,0,1,"cmdoption-t"],grn_command_version:[108,2,1,"c.grn_command_version"],grn_obj_set_element_info:[36,1,1,"c.grn_obj_set_element_info"],"-p":[122,0,1,"cmdoption-p"],"-s":[58,0,1,"cmdoption-s"],"-r":[58,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[35,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[14,1,1,"c.grn_ctx_at"],"--bind-address":[89,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[108,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[89,0,1,"cmdoption--config-path"],grn_table_size:[105,1,1,"c.grn_table_size"],"--query-log-path":[89,0,1,"cmdoption--query-log-path"],grn_ctx_use:[14,1,1,"c.grn_ctx_use"],grn_obj_defrag:[72,1,1,"c.grn_obj_defrag"],db:[156,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[17,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[57,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[114,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[72,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[78,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[72,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[102,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[105,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[113,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[72,1,1,"c.grn_obj_unlink"],grn_obj_id:[72,1,1,"c.grn_obj_id"],grn_obj_set_value:[72,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[35,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[114,2,1,"c.grn_encoding"],grn_proc_create:[47,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[35,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[113,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[58,0,1,"cmdoption--log-base-path"],"--dir":[156,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[72,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[105,2,1,"c.grn_table_group_result"],grn_expr_close:[76,1,1,"c.grn_expr_close"],grn_obj_path:[72,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[15,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[75,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[102,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[72,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[105,1,1,"c.grn_table_lcp_search"],grn_table_create:[105,1,1,"c.grn_table_create"],grn_table_cursor_get_value:[57,1,1,"c.grn_table_cursor_get_value"],"--address":[89,0,1,"cmdoption--address"],"--daemon":[58,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[72,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[105,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[14,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[89,0,1,"cmdoption--pid-path"],"--encoding":[89,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[14,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[15,2,1,"c.grn_cache"],grn_table_delete_by_id:[105,1,1,"c.grn_table_delete_by_id"],grn_content_type:[98,2,1,"c.grn_content_type"],grn_plugin_mutex:[35,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[76,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[78,2,1,"c.grn_ii_buffer"],"--host":[156,0,1,"cmdoption--host"],grn_ctx_get_output_type:[14,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[47,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[15,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[110,1,1,"c.grn_obj_user_data"],grn_obj_lock:[72,1,1,"c.grn_obj_lock"],grn_obj_name:[72,1,1,"c.grn_obj_name"],"--log-path":[58,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[113,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"-e":[89,0,1,"cmdoption-e"],GRN_OBJ_COMPARE:[72,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[76,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[35,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[72,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[57,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[76,1,1,"c.grn_expr_alloc"],grn_expr_compile:[76,1,1,"c.grn_expr_compile"],grn_user_data:[110,2,1,"c.grn_user_data"],grn_obj_get_range:[72,1,1,"c.grn_obj_get_range"],grn_table_get:[105,1,1,"c.grn_table_get"],grn_ctx_fin:[14,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[102,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[89,0,1,"cmdoption--max-threads"],grn_ctx_init:[14,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[78,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[72,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[105,2,1,"c.grn_table_sort_key"],grn_obj_rename:[72,1,1,"c.grn_obj_rename"],grn_table_group_flags:[105,2,1,"c.grn_table_group_flags"],grn_obj_check:[72,1,1,"c.grn_obj_check"],grn_table_at:[105,1,1,"c.grn_table_at"],grn_column_name:[113,1,1,"c.grn_column_name"],grn_table_difference:[105,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[122,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[35,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[15,1,1,"c.grn_cache_close"],grn_obj_close:[72,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[113,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[105,1,1,"c.grn_table_truncate"],grn_obj_get_value:[72,1,1,"c.grn_obj_get_value"],grn_cache_open:[15,1,1,"c.grn_cache_open"],"--server-id":[89,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[85,1,1,"c.grn_obj_delete_hook"],"-n":[89,0,1,"cmdoption-n"],"--port":[122,0,1,"cmdoption--port"],grn_ii:[78,2,1,"c.grn_ii"],"--ftp":[156,0,1,"cmdoption--ftp"],grn_obj_is_locked:[72,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[76,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[35,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[58,0,1,"cmdoption--log-level"],grn_table_rename:[105,1,1,"c.grn_table_rename"],GRN_COLUMN_NAME_NSUBRECS:[113,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[35,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[108,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[35,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[36,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[50,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[76,1,1,"c.grn_expr_append_const_str"],script:[156,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[35,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[108,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[76,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[35,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[85,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[35,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[112,1,1,"c.grn_index_cursor_open"],grn_proc_func:[47,2,1,"c.grn_proc_func"],grn_db_create_optarg:[75,2,1,"c.grn_db_create_optarg"],grn_column_table:[113,1,1,"c.grn_column_table"],grn_table_add:[105,1,1,"c.grn_table_add"],grn_obj_unlock:[72,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[15,1,1,"c.grn_cache_set_max_n_entries"],grn_proc_type:[47,2,1,"c.grn_proc_type"],grn_proc_get_info:[47,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[72,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[14,1,1,"c.grn_ctx_close"],grn_ctx:[14,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[113,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[113,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[113,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[57,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[72,1,1,"c.grn_obj_get_values"],grn_column_rename:[113,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[72,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[36,1,1,"c.grn_obj_get_info"],grn_ctx_db:[14,1,1,"c.grn_ctx_db"],"--protocol":[156,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[35,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[57,2,1,"c.grn_table_cursor"],grn_ctx_get:[14,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[21,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[75,1,1,"c.grn_db_open"],grn_column_index:[113,1,1,"c.grn_column_index"],"--n-threads":[122,0,1,"cmdoption--n-threads"],"--help":[89,0,1,"cmdoption--help"],"--groonga":[156,0,1,"cmdoption--groonga"],grn_table_setoperation:[105,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[113,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[72,3,1,"c.GRN_OBJ_SET"],"--document-root":[89,0,1,"cmdoption--document-root"],grn_info_type:[36,2,1,"c.grn_info_type"],grn_column_truncate:[113,1,1,"c.grn_column_truncate"],grn_obj:[72,2,1,"c.grn_obj"],grn_obj_remove:[72,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[35,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[72,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[76,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[76,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[78,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[102,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[17,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[78,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[50,1,1,"c.grn_obj_search"],"--send-endpoint":[58,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[105,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[85,2,1,"c.grn_hook_entry"],grn_expr_append_op:[76,1,1,"c.grn_expr_append_op"],grn_geo_point:[102,2,1,"c.grn_geo_point"],grn_table_cursor_table:[57,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[112,1,1,"c.grn_index_cursor_next"],grn_table_delete:[105,1,1,"c.grn_table_delete"],dest:[89,0,1,"cmdoption-arg-dest"],grn_ctx_open:[14,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[35,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[113,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[72,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[14,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[89,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[57,1,1,"c.grn_table_cursor_delete"],grn_type_create:[56,1,1,"c.grn_type_create"],grn_obj_path_by_id:[72,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[35,1,1,"c.grn_plugin_command_create"],grn_db_recover:[75,1,1,"c.grn_db_recover"],grn_builtin_type:[56,2,1,"c.grn_builtin_type"],grn_table_get_key:[105,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[72,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[21,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[15,1,1,"c.grn_cache_current_get"],grn_expr_create:[76,1,1,"c.grn_expr_create"],grn_get_default_command_version:[108,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[76,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[114,1,1,"c.grn_encoding_parse"],grn_column_create:[113,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[14,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[105,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[85,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[114,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[108,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[35,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[114,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[58,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[113,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[105,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[35,1,1,"c.GRN_PLUGIN_FIN"],command:[89,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[35,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[35,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[75,1,1,"c.grn_db_touch"],grn_table_update:[105,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[75,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[75,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"_pat":86,"\u53c2\u7167\u578b":77,senna:37,"\u6539\u826f":[1,37,143,116,136,6,70,23,104],"\u7b26\u53f7":139,"\u6d41\u308c":111,"-prefix":174,prefix:63,per:129,"\u6761\u4ef6":[67,101,100,140,168],query:[107,100,160,138],"-lzo":[],"=number":174,keywordn:150,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":94,"_filters":[82,59],"\u30d3\u30c3\u30c8":139,"\u7279\u5fb4":[86,30],ruby:[137,62],"-release":140,"\u901a\u4fe1":125,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[122,4],to:[122,123,164],"_column":[54,113],snippet:27,"\u524a\u9664":158,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":165,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[156,34],"-lz4":174,string:[41,82,124],groonga:[49,131,37,140,172,122,30,125,89,90,63,159,8,161,31,80,111,58,156,94],"\u95a2\u9023":[71,100,8,13,58],"=message":174,"\u304a\u6c17":170,facebook:22,"\u30b5\u30f3\u30d7\u30eb":[166,156],"_database":8,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[163,165,128,18],"\u52d5\u4f5c":[165,16,164,140,43],"\u30b9\u30af\u30ea\u30d7\u30c8":[139,140],"_or":88,"\u3068\u3057\u3066":40,"\u3065\u3051":10,gnu:141,"-escalation":174,"\u6761\u4ef6\u5f0f":168,"\u7c21\u5358":100,"\u30aa\u30d7\u30b7\u30e7\u30f3":[166,156,89,172],".po":111,"\u8ad6\u7406\u548c":168,"\u4ed8\u4e0e":71,"\u771f\u507d\u5024":[11,139],"-benchmark":156,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":152,"\u6f14\u7b97\u5b50":139,"_cursor":[57,112],"_remove":[135,65],"\u7701\u7565":[41,68,122,124,107,82],sub:169,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":140,"\u53c2\u8003":[82,5,86,87,62,42,41,2,95,137,99,100,142,176,52,107,144,147,155,59,152,44,150,169,158,109,69,163,123,124,27,172,126,7,175],"\u30ea\u30c6\u30e9\u30eb":139,"\u6210\u529f":126,"\u4fdd\u5b58":[11,59],"new":53,tips:140,"\u683c\u7d0d":40,memcached:94,body:126,xml:126,"\u6587\u6cd5":67,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":168,"\u30c6\u30b9\u30c8":165,"\u30bf\u30b0":39,"\u9069\u7528":77,"\u3042\u308a":[168,139],ubuntu:12,"\u6e96\u5099":[83,140],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":48,softwares:[],"\u95a2\u4fc2\u5f0f":63,"\u4e26\u5217":140,"_key":86,"\u63d0\u4f9b":115,"\u4e3b\u30ad\u30fc":[40,133],blogroonga:140,"_version":[108,10],"_name":[127,53,150,118],"_output":100,"\u5165\u6f14":139,"_info":36,changes:37,options:[122,58],"\u7ffb\u8a33":[140,111],"\u30af\u30a8\u30ea":[30,63,83],"\u30de\u30c3\u30c1":139,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":8,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[80,13],"\u6587\u5b57\u5217":[11,139],api:[79,25],"_table":[57,105,63],select:100,"\u6982\u8981":[35,36,2,5,86,87,62,42,127,41,92,135,8,95,9,137,97,50,150,47,99,52,100,10,102,77,142,105,108,14,15,85,53,144,17,82,78,57,148,58,158,59,169,152,44,112,55,56,114,155,65,66,21,68,109,88,69,118,72,163,107,74,113,175,75,117,122,123,101,124,27,126,98,7,146,110,30,129,32,176,130],"\u9001\u4fe1":94,use:150,"\u69cb\u6587":[82,5,87,41,42,7,135,95,9,137,97,99,100,68,139,142,176,52,107,53,144,55,155,148,59,62,44,146,150,65,66,117,158,109,88,69,118,74,168,169,124,27,127,92,101,32,130],"\u624b\u9806":140,zip:93,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":63,"\u30d5\u30ec\u30fc\u30ba":168,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":30,"_no":86,https:48,tokenize:82,scope:169,"_flags":100,"\u3066\u308b":170,"\u60c5\u5831":[84,30,115,67,159,170,165],"\u30d6\u30ed\u30b0":140,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":24,"\u3059\u308b":[0,140,121,77,64,154,164,115,43,122,16,8,71,58,165],normalizer:[82,150,44,124,59],"\u7d4c\u7def\u5ea6":11,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":139,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":140,"\u5f15\u6570":[82,5,87,89,41,42,127,7,135,101,95,137,97,99,100,68,103,142,52,107,53,144,146,176,148,58,59,61,62,156,150,65,66,117,158,109,88,118,162,166,74,169,122,124,29,92,129,32,130],"\u3053\u3068":140,"_base":8,"_command":108,homebrew:[140,81],"_escape":150,"\u4ee5\u4e0b":168,"\u4ee5\u4e0a":[168,139],"\u30b8\u30aa\u30b5\u30fc\u30c1":39,"\u8d77\u52d5":[131,94],"\u3060\u3051":[115,77],"\u524d\u63d0":140,install:174,clearlock:99,"\u89e3\u6790":165,"\u7de8\u96c6":111,"\u6bd4\u8f03":[139,48],"_encoding":114,"\u304c\u3063":71,process:[129,138],lock:127,"in":[92,37],"_install":174,"/linux":141,"\u660e\u793a":140,"\u3053\u3061\u3089":115,grndb:55,"\u958b\u767a":[151,159,115],old:[],"\u548c\u4ee3":139,normalize:124,"\u7406\u7531":115,sphere:68,"\u540d\u524d":[166,61,167,103,156,40,89,172,29,54,31,162],"\u691c\u51fa":165,normalizernfkc:175,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":93,how:[123,164],"\u548c\u6f14":139,"\u52d5\u7684":106,"\u5b9f\u884c\u4f8b":[36,72,112,75,85,78,114,105,14,15,21,108,102,56,57,50,76,47,110,113],"\u8fd1\u508d":139,"\u30b3\u30de\u30f3\u30c9":[26,3,94,89,31],"_create":[66,8,59],"-gqtp":131,"\u7d42\u4e86":[131,8,94],"_hash":86,max:[129,109,88],clone:111,"\u4e57\u7b97":139,mac:81,callback:63,offset:100,"\u6642\u9593":[170,139],"\u7f72\u540d":140,data:[164,8,58],"\u30da\u30fc\u30b8\u30f3\u30b0":100,"\u8a2d\u5b9a":[140,122,17,8,48,73],"-munin":174,"\u4e00\u81f4rk":164,"-http":131,register:9,"-files":140,"_auto":8,"\u7d22\u5f15":30,"\u30b0\u30eb\u30fc\u30d7":[168,139],freebsd:129,"\u30a4\u30f3\u30dd\u30fc\u30c8":140,"\u8ee2\u7f6e":30,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":145,"\u30c4\u30a4\u30fc\u30c8":115,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[49,13,140],rand:61,grntest:140,"\u30d1\u30c8\u30ea\u30b7\u30a2":133,"\u623b\u308a\u5024":[82,5,87,41,42,7,135,95,9,137,97,99,68,142,176,52,107,53,144,146,155,148,59,62,44,150,65,66,117,158,109,88,69,118,74,169,122,124,27,127,92,101,32,130],"\u305f\u3044":140,gqtp:[125,131,160,94,119],"\u6d6e\u52d5":139,"_api":63,"_reopen":176,"_match":21,"_rename":53,"\u6587\u66f8":[16,139],"=platform":174,"\u63a5\u7d9a":94,tsv:[126,163],"\u4ee5\u4e0b\u6f14":139,cutter:[165,140],"\u57fa\u672c":[3,139],greater:63,"\u30d7\u30ed\u30c8\u30b3\u30eb":[94,160],number:129,"\u9664\u7b97":139,not:63,"\u8a8d\u8a3c":48,"\u8fd4\u5024":[61,100,167,103,29,31,162],now:167,"\u5c0f\u306a\u308a":[168,139],"\u90e8\u5206\u4e00\u81f4":[],"_select":63,"-pack":174,name:[53,59],edit:103,"-encoding":174,"\u66f4\u65b0":[30,140,111],kern:129,token:[82,59],mode:[41,82,63],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":3,".overcommit":129,".max":129,"-create":172,"\u4e26\u3079":3,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":86,normalizerauto:175,"\u751f\u6210":[111,140,18],"\u74b0\u5883":[165,140],"\u5b9f\u4f8b":63,"\u9032\u3081":115,"\u8a98\u5c0e":115,"\u30d8\u30c3\u30c0\u30fc":160,todo:[107,27],"\u9001\u308a\u65b9":[0,111],"-match":174,"\u30ab\u30d0\u30ec\u30c3\u30b8":165,"\u7def\u5ea6":30,"-default":174,"\u90e8\u5206":134,red:140,rk:164,"_content":98,"\u6307\u5b9a":[68,3,168,140,40,10,71],nofile:129,"\u30e6\u30fc\u30b6\u30fcid":170,proxy:8,"_string":[107,169],"\u305f\u3081":[100,63,115],"\u7d50\u5408\u5f0f":168,"\u4ed5\u69d8":19,"\u4e8b\u9805":[60,40,156],launch:122,freecode:[],"\u53e4\u3044":70,filter:[169,100],"\u53ef\u80fd":[152,68,122,30,124,41,107,82,8],"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":30,"_proc":47,"_user":110,assign:123,"\u30d9\u30af\u30bf\u30fc":40,"\u3078\u3068":115,"\u6e1b\u7b97":139,suffix:63,"\u8aac\u660e":[166,61,167,103,156,40,89,29,54,31,162],"-version":10,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":176,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":170,"\u7d44\u307f\u8fbc\u307f":[175,89],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":140,open:[129,150],size:160,"\u78ba\u8a8d":[140,111],"\u7d5e\u8fbc":67,dump:146,script:137,introduction:18,"\u30ab\u30b9\u30b1\u30fc\u30c9":158,"\u4fee\u6b63":[1,37,143,116,136,6,70,23],"\u5bfe\u7b56":[64,154],"\u6c38\u7d9a":86,"_obj":72,"\u30ea\u30dd\u30b8\u30c8\u30ea":[96,111],"=encoding":174,"\u306f\u3058\u3081":157,tokenizer:[155,82],configure:[174,140,18],releases:[],"_clear":127,desctipion:172,"\u8ffd\u8de1":0,".com":[],"\u66f8\u5f0f":[166,61,167,3,103,122,156,89,29,8,31,162,58],"\u5b66\u7fd2":[122,157,16,164,43],"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":59,"-httpd":[122,131,8,90,58],"_index":112,"_untag":101,"-log":174,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":38,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[11,77],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":8,"\u30c6\u30fc\u30d6\u30eb":[60,3,11,86,40,107,170,71,58,59],"_expander":[107,100],"\u3044\u304f":115,hashtags:170,"\u30a8\u30e9\u30fc":[126,154],"-zlib":174,"\u56fd\u969b\u5316":111,"\u5834\u5408":[126,71,140],recover:55,"_circle":162,"\u3044\u308b":84,"\u7279\u6b8a":156,"\u4e00\u89a7":[170,2,24],"_list":[155,97,87,44],min:88,"\u304b\u3089":[153,120,12,115,141,93,174,81],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":0,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":59,"-with":174,archive:12,"\u7279\u5b9a":[165,140],"\u307e\u3068\u3081":140,"_distance":[68,103],"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":165,mroonga:30,libmemcached:165,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":77,"\u7d22\u7528":[3,91],"\u7528\u79d8":140,"\u30c4\u30fc\u30eb":[174,8,94],"\u7d44\u8fbc\u578b":40,"\u30b5\u30b8\u30a7\u30b9\u30c8":45,synopstis:172,"_put":7,windows:[93,140],geoindex:170,request:[122,123,95,111],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":121,"_in":[29,162],"_ii":78,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":140,"\u30b5\u30fc\u30d0":[30,94],"\u30ed\u30fc\u30c9":[170,3,77],"_processes":8,tokenfilterstem:152,"\u3084\u308a":115,"\u5fc5\u9808":[100,68,122,87,124,41,107,53,82,95,118],"\u30ec\u30b3\u30fc\u30c9":[100,3],"-po":140,"\u5270\u4f59":139,"\u30d5\u30a1\u30bb\u30c3\u30c8":100,"\u30d1\u30c3\u30c1":111,"\u304a\u304f":115,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":140,"\u8ffd\u52a0":[175,140,111],solaris:20,"\u88dc\u5b8c":[157,164],"\u3044\u308d\u3044\u308d":11,"\u5c0f\u6570":139,"\u30d1\u30c3\u30b1\u30fc\u30b8":140,depended:[],ellipsoid:68,"\u4e0d\u7b49\u4fa1":[168,139],grnslap:166,cache:[100,109],"\u9ad8\u5ea6":100,"\u65e5\u6642":11,"_equal":63,"\u65b9\u6cd5":[10,140,77,64,154,171,43,106,16,80,13,164,165,111],"\u30ea\u30ea\u30fc\u30b9":[1,140,143,116,136,6,70,23,104],rectangle:68,"\u4e00\u6642":86,"\u6295\u7a3f":170,"-server":131,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":48,wheezy:141,get:122,db:63,clang:165,"_html":[150,27,42],"_limit":[100,8,109],cannot:154,"\u7b97\u5b50":139,"_eval":137,"\u91cd\u307f":[71,77],geo:[29,68,162],target:[127,118],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[10,48],"\u305d\u306e":174,"\u5171\u8d77":[16,164,43],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":125,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":64,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":2,"_search":50,"\u7d50\u679c":[64,156,3,121],tokenfilterstopword:152,"\u52a0\u7b97":139,"\u6570\u5024":11,contain:63,release:[],"\u64cd\u4f5c":[171,3],"\u3084\u308b":140,"\u69cb\u7bc9":[106,165],"\u5236\u5fa1":139,filters:[],"\u30b9\u30b3\u30a2\u30fc":100,"\u4ee3\u5165":139,travis:73,tokenizers:33,arg:63,close:150,news:37,"\u8a00\u8a9e":111,"\u65b0\u898f":140,"\u6a5f\u80fd":84,"\u30ab\u30e9\u30e0":[60,68,3,121,54,132,71],"\u985e\u4f3c":[16,139],"\u7ba1\u7406":[8,94],"\u5c02\u7528":94,"\u30e2\u30b8\u30e5\u30fc\u30eb":8,"_pack":174,"_tokenize":41,between:88,reading:164,"\u7bc4\u56f2":[3,59],"\u4f4d\u7f6e":[84,68,30,67,10,170],"\u8868\u73fe":63,"_geo":102,javascript:67,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":30,"\u904e\u53bb":115,key:59,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":156,"\u5373\u6642":30,"\u30b7\u30d5\u30c8":139,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[168,139],"_level":[5,8],commands:55,"\u518d\u8d77\u52d5":131,"\u77e5\u308a":140,"-suggest":[122,58,172],"\u306a\u3057":[139,48],equal:63,"-document":18,"\u30b5\u30fc\u30d0\u30fc":[31,131,28],"\u88dc\u6b63":[157,16],"\u30d1\u30e9\u30e1\u30fc\u30bf":[71,10],"\u306a\u3044":[40,115],"\u975e\u308f\u304b\u3061":134,load:52,"\u8a9e\u5f59":[3,91],ci:73,"\u4f5c\u6210":[170,91,3,140,59],point:68,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":18,"\u62bd\u51fa":[139,43],header:126,"\u7f6e\u63db":107,"\u95a2\u6570":[149,139,165],"\u6574\u6570":139,"_cancel":95,path:62,table:[100,135,86,87,41,53,97,59],quit:148,"\u53c2\u7167":[11,39,160,30],tuning:129,"_values":92,"\u30e1\u30e2\u30ea":129,json:[52,126],"\u91cd\u307f\u4ed8\u304d":77,"\u306b\u95a2\u3059\u308b":40,po:140,"\u7528\u3044":[176,67],define:144,"(geopoint":170,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[138,163],"-help":174,"_tokenizer":59,"\u6392\u4ed6":139,"_value":88,"\u5b9f\u884c":[46,63,140,156,8,165],"\u7a2e\u985e":11,"_log":8,"-message":174,"\u5dee\u6f14":139,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[0,22],"\u5168\u4f53":17,plugin:35,"\u30a8\u30b9\u30b1\u30fc\u30d7":168,value:59,"\u5236\u9650":[60,121,77,86,40,156,163],cast:51,near:63,"\u306e\u306b":64,"\u691c\u7d22":[39,100,134,3,83,84,64,30,77,43,168,67,16,170,133,139,71,164,59],"\u5f8c\u65b9\u4e00\u81f4":[],"\u30e9\u30a4\u30d6\u30e9\u30ea":[30,174],"\u540c\u3058":64,"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":22,geopoint:170,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":175,"\u6307\u91dd":115,"\u5fc5\u8981":[101,18],vm:129,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":140,"_expansion":100,"\u53d6\u5f97":[3,140],"\u30ec\u30b3\u30fc\u30c9id":86,"\u95be\u5024":64,id:[123,95],".maxfileperproc":129,"\u8a9e\u5f59\u8868":59,"\u5ea7\u6a19\u5024":139,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":140,fedora:153,"\u4f7f\u3044\u65b9":[82,4,5,87,41,42,43,92,135,8,95,9,137,97,99,106,100,68,77,142,176,52,107,53,16,144,55,155,148,58,59,62,44,146,156,150,65,66,117,158,109,88,69,118,163,164,74,169,122,124,27,127,7,101,32,130],"_rectangle":29,suggest:142,make:[174,140],"\u4f8b\u3048":115,"\u6210\u679c":111,"-dataset":172,"\u7a4d\u6f14":139,"_filter":[69,169],html:[101,111,18],"-learner":58,messagepack:126,"\u30ad\u30fc\u30ef\u30fc\u30c9":[64,170],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":140,http:[31,131,177,4,94],".po\u30d5\u30a1\u30a4\u30eb":111,"null":139,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":8,"\u306b\u3088\u308b":[71,133,121],"\u8ab2\u984c":0,"\u30b9\u30c8\u30ec\u30fc\u30b8":30,"_data":110,"\u5834\u6240":[115,163],"\u5168\u6587\u691c":[3,91],"\u95a2\u4fc2":[39,100,174],database:[122,58],"\u307e\u305f":71,"\u3055\u307e\u3056\u307e\u306a":67,"()":63,flags:[41,82,124,160,59],sortby:100,"\u51fa\u529b":[126,100,3,4,111],gzip:48,the:129,lcov:165,"-localstatedir":174,"_path":[122,8,58],"\u8868\u793a":3,"-platform":174,protocol:160,"-path":174,less:63,"(v":63,"_tagn":150,"\u5229\u7528":[67,152,8],"_ctx":14,"\u5171\u6709":30,"\u9006\u5f15\u304d":39,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":94,"\u547c\u3073\u51fa\u3057":139,"\u5f8c\u65b9":[139,168,133],"\u3067\u304d\u308b":[63,115],loading:8,"\u8ad6\u7406":[168,139],mmap:154,"\u30bd\u30fc\u30c8":[67,121],defrag:32,"_selector":144,"\u660e\u793a\u7684":68,"\u62e1\u5f35":83,"\u4e00\u81f4":[139,164,134,168,133],match:[107,71,100],hat:140,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":48,"\u7d4c\u5ea6":30,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":30,"\u8ad6\u7406\u7a4d":168,enable:18,"\u9759\u7684":[106,165],period:37,nginx:8,"_hook":85,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":173,"\u30bd\u30fc\u30b9":[153,120,12,141,93,174,81],"\u7a4d\u4ee3":139,linux:129,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":94,"\u5354\u529b":115,"\u691c\u7d22\u4f8b":63,"-command":10,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[3,48],"_expr":[63,76,147],adjuster:100,"_threshold":100,"\u4f5c\u696d":140,"\u307e\u305f\u3050":71,"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":94,"\u4ed5\u65b9":111,learning:58,centos:120,"_db":75,"-plugins":174,"\u30b7\u30b9\u30c6\u30e0":[0,170],"\u5358\u8a9e":139,"_dat":86,"\u4f7f\u7528":129,"\u5727\u7e2e":48,"\u30b3\u30e1\u30f3\u30c8":170,"_sortby":100,"\u5411\u3051":[159,140],"\u5bc6\u9375":140,"\u66f8\u304d":134,"\u5f62\u5f0f":[52,126],comments:170,exit:172,allocate:154,"\u30af\u30a8\u30ea\u30fc":[8,24,168],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":131,"\u30d3\u30eb\u30c9":[153,120,140,12,141,93,174,81],"\u5206\u3051":134,run:18,"\u5168\u6587\u691c\u7d22":168,"\u4ed8\u304d":[39,139],"\u3046\u307e\u304f":115,"\u4e0a\u9650":60,"\u4f9d\u5b58":174,"\u5b8c\u5168":134,"\u3042\u308b":170,"\uff08personal":12,"\u5927\u306a\u308a":[168,139],output:100,"\u96c6\u8a08":30,from:58,post:[8,48],"_query":8,"\u6319\u52d5":134,by:8,"\u5b9f\u73fe":63,"_border":88,"package":12,column:[150,65,42,66,53,88,87],of:129,"_escalation":[21,100],"\u30e6\u30fc\u30b6\u30fc":[170,115],location:68,range:69,"_columns":[107,71,100],os:81,"\u524d\u65b9\u4e00\u81f4":[],software:[],ppa:12,scorer:[67,100],"\u767b\u9332":0,"\u5b9f\u9a13":23,domain:121,"\u30ad\u30e3\u30c3\u30b7\u30e5":[100,8],"\u30d5\u30a1\u30a4\u30eb":[46,63,140,18,163,48,111],"_cache":[15,8],"\u5831\u544a":0,"\u524d\u65b9":[139,164,168,133],"\u7279\u6709":8,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":165,log:[5,138,7,176,58],"\u8907\u6570":[71,121,48],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":156,"_prefix":174,"\u5909\u66f4":[64,143,48],"\u30d0\u30fc\u30b8\u30e7\u30f3":[143,1,10,136,140],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":71,redmine:115,"\u30ed\u30b0":176,"\u5c55\u958b":24,"\u7b49\u4fa1":[168,139],"\u63d0\u6848":[122,157,43],"cpu\u30b3\u30a2":48,twitter:[115,140,22],"\u30d5\u30a9\u30ed\u30fc":170,files:[129,58,172],shutdown:130,"_full":150,"\u6027\u80fd":[8,48],memory:154,"\u72ec\u81ea":139,"\u7b97\u8853":139,"with":18,"_load":62,pull:111,"\u5165\u308a":170,"default":[10,59],"\u5426\u5b9a":[168,139],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":140,limit:100,"\u66ff\u3048":3,"\u304a\u3055\u3089\u3044":115,highlight:[150,42],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[35,36,85,78,98,47,50,108,14,15,105,17,21,110,112,113,56,114,57,102,72,75,76],"\u304a\u77e5\u3089":[70,1,143,136],similar:63,"delete":158,"\u611f\u8b1d":[1,143,116,136,6,70,23,104],bigram:170,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":140,approximate:68,command:10,"\u69d8\u3005":165,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":170,"\u3067\u304d":40,"\u56de\u907f":154,"\u3054\u3068":71,"\u70b9\u6570":139,check:[117,55],"\u306b\u5bfe\u3059\u308b":71,"\u5bfe\u5fdc":[84,115,48],"\u7570\u306a\u308b":64,"\u4ee3\u5165\u5f0f":168,extract:[],"\u3068\u308a":115,"\u914d\u5217":139,"\u3042\u3052\u308b":64,"\u306e\u307f":[165,140],grn:[36,85,78,98,47,50,108,14,15,105,147,21,110,63,112,113,56,114,57,102,72,75,76],queryexpandertsv:163,"\u5168\u6587":[64,30,67,3,71],"_type":[68,56,98,160,59],users:170,truncate:118,"\u30c7\u30fc\u30bf":[3,11,170,40,43,59],worker:8,"-package":174,"\u30c7\u30d0\u30c3\u30ac":165,update:[164,140,18],"\u7591\u4f3c":54,"\u547d\u4ee4":156,"\u65b0\u3057\u3044":111,"_map":129,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":48,"\u4f7f\u3046":[68,8],"=path":174,drilldown:100,"-latest":140,"\u3088\u3046":[16,164,43],debian:[141,140],"\u4f5c\u308a\u65b9":77,"_count":129,"\u4f7f\u3044":134,macports:81,"-threshold":174,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[60,39,71,106],pseudo:54,"_offset":100,status:[74,160,172],"_memory":129,"\u5909\u66f4\u70b9":140,oracle:20,"\u539f\u56e0":64,"\u30c7\u30fc\u30e2\u30f3":94}})
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}})
@@ -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 v4.0.8-168-gae696d7ドキュメント</title>
10
+ <title>5. サーバー &mdash; Groonga v5.0.0ドキュメント</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: '4.0.8-168-gae696d7',
18
+ VERSION: '5.0.0',
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 v4.0.8-168-gae696d7ドキュメント" href="index.html" />
29
+ <link rel="top" title="Groonga v5.0.0ドキュメント" 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>
33
+ <body role="document">
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">
51
+ <div class="related" role="navigation" aria-label="related navigation">
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 v4.0.8-168-gae696d7ドキュメント</a> &raquo;</li>
63
+ <li><a href="index.html">Groonga v5.0.0ドキュメント</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">
70
+ <div class="body" role="main">
71
71
 
72
72
  <div class="section" id="server">
73
73
  <h1>5. サーバー<a class="headerlink" href="#server" title="このヘッドラインへのパーマリンク">¶</a></h1>
@@ -94,7 +94,7 @@
94
94
  </div>
95
95
  </div>
96
96
  </div>
97
- <div class="sphinxsidebar">
97
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
98
98
  <div class="sphinxsidebarwrapper">
99
99
  <h4>前のトピックへ</h4>
100
100
  <p class="topless"><a href="tutorial/query_expansion.html"
@@ -102,12 +102,14 @@
102
102
  <h4>次のトピックへ</h4>
103
103
  <p class="topless"><a href="server/package.html"
104
104
  title="次の章へ">5.1. サーバーパッケージ</a></p>
105
- <h3>このページ</h3>
106
- <ul class="this-page-menu">
107
- <li><a href="_sources/server.txt"
108
- rel="nofollow">ソースコードを表示</a></li>
109
- </ul>
110
- <div id="searchbox" style="display: none">
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">
111
113
  <h3>クイック検索</h3>
112
114
  <form class="search" action="search.html" method="get">
113
115
  <input type="text" name="q" />
@@ -124,7 +126,7 @@
124
126
  </div>
125
127
  <div class="clearer"></div>
126
128
  </div>
127
- <div class="related">
129
+ <div class="related" role="navigation" aria-label="related navigation">
128
130
  <h3>ナビゲーション</h3>
129
131
  <ul>
130
132
  <li class="right" style="margin-right: 10px">
@@ -136,11 +138,11 @@
136
138
  <li class="right" >
137
139
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
138
140
  >前へ</a> |</li>
139
- <li><a href="index.html">Groonga v4.0.8-168-gae696d7ドキュメント</a> &raquo;</li>
141
+ <li><a href="index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
140
142
  </ul>
141
143
  </div>
142
- <div class="footer">
143
- &copy; Copyright 2009-2014, Brazil, Inc.
144
+ <div class="footer" role="contentinfo">
145
+ &copy; Copyright 2009-2015, Brazil, Inc.
144
146
  </div>
145
147
  </body>
146
148
  </html>
@@ -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 v4.0.8-168-gae696d7ドキュメント</title>
10
+ <title>5.2. GQTP &mdash; Groonga v5.0.0ドキュメント</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: '4.0.8-168-gae696d7',
18
+ VERSION: '5.0.0',
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 v4.0.8-168-gae696d7ドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.0ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
31
  <link rel="next" title="5.3. HTTP" href="http.html" />
32
32
  <link rel="prev" title="5.1. サーバーパッケージ" href="package.html" />
33
33
  </head>
34
- <body>
34
+ <body role="document">
35
35
  <div class="header">
36
36
  <h1 class="title">
37
37
  <a id="top-link" href="../index.html">
@@ -49,7 +49,7 @@
49
49
  </div>
50
50
 
51
51
 
52
- <div class="related">
52
+ <div class="related" role="navigation" aria-label="related navigation">
53
53
  <h3>ナビゲーション</h3>
54
54
  <ul>
55
55
  <li class="right" style="margin-right: 10px">
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="package.html" title="5.1. サーバーパッケージ"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v4.0.8-168-gae696d7ドキュメント</a> &raquo;</li>
64
+ <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -69,7 +69,7 @@
69
69
  <div class="document">
70
70
  <div class="documentwrapper">
71
71
  <div class="bodywrapper">
72
- <div class="body">
72
+ <div class="body" role="main">
73
73
 
74
74
  <div class="section" id="gqtp">
75
75
  <h1>5.2. GQTP<a class="headerlink" href="#gqtp" title="このヘッドラインへのパーマリンク">¶</a></h1>
@@ -81,7 +81,7 @@
81
81
  </div>
82
82
  </div>
83
83
  </div>
84
- <div class="sphinxsidebar">
84
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
85
85
  <div class="sphinxsidebarwrapper">
86
86
  <h4>前のトピックへ</h4>
87
87
  <p class="topless"><a href="package.html"
@@ -89,12 +89,14 @@
89
89
  <h4>次のトピックへ</h4>
90
90
  <p class="topless"><a href="http.html"
91
91
  title="次の章へ">5.3. HTTP</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">
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">
98
100
  <h3>クイック検索</h3>
99
101
  <form class="search" action="../search.html" method="get">
100
102
  <input type="text" name="q" />
@@ -111,7 +113,7 @@
111
113
  </div>
112
114
  <div class="clearer"></div>
113
115
  </div>
114
- <div class="related">
116
+ <div class="related" role="navigation" aria-label="related navigation">
115
117
  <h3>ナビゲーション</h3>
116
118
  <ul>
117
119
  <li class="right" style="margin-right: 10px">
@@ -123,12 +125,12 @@
123
125
  <li class="right" >
124
126
  <a href="package.html" title="5.1. サーバーパッケージ"
125
127
  >前へ</a> |</li>
126
- <li><a href="../index.html">Groonga v4.0.8-168-gae696d7ドキュメント</a> &raquo;</li>
128
+ <li><a href="../index.html">Groonga v5.0.0ドキュメント</a> &raquo;</li>
127
129
  <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
128
130
  </ul>
129
131
  </div>
130
- <div class="footer">
131
- &copy; Copyright 2009-2014, Brazil, Inc.
132
+ <div class="footer" role="contentinfo">
133
+ &copy; Copyright 2009-2015, Brazil, Inc.
132
134
  </div>
133
135
  </body>
134
136
  </html>