isomorfeus-ferret 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +612 -0
  3. data/README.md +44 -0
  4. data/ext/isomorfeus_ferret_ext/benchmark.c +223 -0
  5. data/ext/isomorfeus_ferret_ext/benchmark.h +45 -0
  6. data/ext/isomorfeus_ferret_ext/benchmarks_all.h +25 -0
  7. data/ext/isomorfeus_ferret_ext/bm_bitvector.c +123 -0
  8. data/ext/isomorfeus_ferret_ext/bm_hash.c +118 -0
  9. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +40 -0
  10. data/ext/isomorfeus_ferret_ext/bm_store.c +93 -0
  11. data/ext/isomorfeus_ferret_ext/email.rl +21 -0
  12. data/ext/isomorfeus_ferret_ext/extconf.rb +5 -0
  13. data/ext/isomorfeus_ferret_ext/fio_tmpfile.h +53 -0
  14. data/ext/isomorfeus_ferret_ext/frb_analysis.c +2577 -0
  15. data/ext/isomorfeus_ferret_ext/frb_index.c +3457 -0
  16. data/ext/isomorfeus_ferret_ext/frb_lang.c +9 -0
  17. data/ext/isomorfeus_ferret_ext/frb_lang.h +17 -0
  18. data/ext/isomorfeus_ferret_ext/frb_qparser.c +629 -0
  19. data/ext/isomorfeus_ferret_ext/frb_search.c +4460 -0
  20. data/ext/isomorfeus_ferret_ext/frb_store.c +515 -0
  21. data/ext/isomorfeus_ferret_ext/frb_threading.h +30 -0
  22. data/ext/isomorfeus_ferret_ext/frb_utils.c +1127 -0
  23. data/ext/isomorfeus_ferret_ext/frt_analysis.c +1644 -0
  24. data/ext/isomorfeus_ferret_ext/frt_analysis.h +247 -0
  25. data/ext/isomorfeus_ferret_ext/frt_array.c +124 -0
  26. data/ext/isomorfeus_ferret_ext/frt_array.h +54 -0
  27. data/ext/isomorfeus_ferret_ext/frt_bitvector.c +95 -0
  28. data/ext/isomorfeus_ferret_ext/frt_bitvector.h +586 -0
  29. data/ext/isomorfeus_ferret_ext/frt_compound_io.c +374 -0
  30. data/ext/isomorfeus_ferret_ext/frt_config.h +44 -0
  31. data/ext/isomorfeus_ferret_ext/frt_document.c +134 -0
  32. data/ext/isomorfeus_ferret_ext/frt_document.h +52 -0
  33. data/ext/isomorfeus_ferret_ext/frt_except.c +95 -0
  34. data/ext/isomorfeus_ferret_ext/frt_except.h +188 -0
  35. data/ext/isomorfeus_ferret_ext/frt_field_index.c +233 -0
  36. data/ext/isomorfeus_ferret_ext/frt_field_index.h +42 -0
  37. data/ext/isomorfeus_ferret_ext/frt_filter.c +157 -0
  38. data/ext/isomorfeus_ferret_ext/frt_fs_store.c +502 -0
  39. data/ext/isomorfeus_ferret_ext/frt_global.c +427 -0
  40. data/ext/isomorfeus_ferret_ext/frt_global.h +290 -0
  41. data/ext/isomorfeus_ferret_ext/frt_hash.c +518 -0
  42. data/ext/isomorfeus_ferret_ext/frt_hash.h +466 -0
  43. data/ext/isomorfeus_ferret_ext/frt_hashset.c +191 -0
  44. data/ext/isomorfeus_ferret_ext/frt_hashset.h +206 -0
  45. data/ext/isomorfeus_ferret_ext/frt_helper.c +62 -0
  46. data/ext/isomorfeus_ferret_ext/frt_helper.h +13 -0
  47. data/ext/isomorfeus_ferret_ext/frt_ind.c +353 -0
  48. data/ext/isomorfeus_ferret_ext/frt_ind.h +54 -0
  49. data/ext/isomorfeus_ferret_ext/frt_index.c +6377 -0
  50. data/ext/isomorfeus_ferret_ext/frt_index.h +880 -0
  51. data/ext/isomorfeus_ferret_ext/frt_lang.c +104 -0
  52. data/ext/isomorfeus_ferret_ext/frt_lang.h +44 -0
  53. data/ext/isomorfeus_ferret_ext/frt_mempool.c +87 -0
  54. data/ext/isomorfeus_ferret_ext/frt_mempool.h +33 -0
  55. data/ext/isomorfeus_ferret_ext/frt_multimapper.c +349 -0
  56. data/ext/isomorfeus_ferret_ext/frt_multimapper.h +52 -0
  57. data/ext/isomorfeus_ferret_ext/frt_posh.c +1006 -0
  58. data/ext/isomorfeus_ferret_ext/frt_posh.h +973 -0
  59. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.c +147 -0
  60. data/ext/isomorfeus_ferret_ext/frt_priorityqueue.h +147 -0
  61. data/ext/isomorfeus_ferret_ext/frt_q_boolean.c +1612 -0
  62. data/ext/isomorfeus_ferret_ext/frt_q_const_score.c +157 -0
  63. data/ext/isomorfeus_ferret_ext/frt_q_filtered_query.c +209 -0
  64. data/ext/isomorfeus_ferret_ext/frt_q_fuzzy.c +281 -0
  65. data/ext/isomorfeus_ferret_ext/frt_q_match_all.c +147 -0
  66. data/ext/isomorfeus_ferret_ext/frt_q_multi_term.c +672 -0
  67. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +3084 -0
  68. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +1182 -0
  69. data/ext/isomorfeus_ferret_ext/frt_q_prefix.c +98 -0
  70. data/ext/isomorfeus_ferret_ext/frt_q_range.c +665 -0
  71. data/ext/isomorfeus_ferret_ext/frt_q_span.c +2386 -0
  72. data/ext/isomorfeus_ferret_ext/frt_q_term.c +311 -0
  73. data/ext/isomorfeus_ferret_ext/frt_q_wildcard.c +166 -0
  74. data/ext/isomorfeus_ferret_ext/frt_ram_store.c +460 -0
  75. data/ext/isomorfeus_ferret_ext/frt_scanner.c +899 -0
  76. data/ext/isomorfeus_ferret_ext/frt_scanner.h +28 -0
  77. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +6705 -0
  78. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +4419 -0
  79. data/ext/isomorfeus_ferret_ext/frt_search.c +1824 -0
  80. data/ext/isomorfeus_ferret_ext/frt_search.h +924 -0
  81. data/ext/isomorfeus_ferret_ext/frt_similarity.c +150 -0
  82. data/ext/isomorfeus_ferret_ext/frt_similarity.h +79 -0
  83. data/ext/isomorfeus_ferret_ext/frt_sort.c +796 -0
  84. data/ext/isomorfeus_ferret_ext/frt_stopwords.c +395 -0
  85. data/ext/isomorfeus_ferret_ext/frt_store.c +680 -0
  86. data/ext/isomorfeus_ferret_ext/frt_store.h +789 -0
  87. data/ext/isomorfeus_ferret_ext/frt_term_vectors.c +72 -0
  88. data/ext/isomorfeus_ferret_ext/frt_threading.h +23 -0
  89. data/ext/isomorfeus_ferret_ext/frt_win32.h +54 -0
  90. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.c +409 -0
  91. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.h +95 -0
  92. data/ext/isomorfeus_ferret_ext/libstemmer.c +93 -0
  93. data/ext/isomorfeus_ferret_ext/libstemmer.h +73 -0
  94. data/ext/isomorfeus_ferret_ext/q_parser.y +1366 -0
  95. data/ext/isomorfeus_ferret_ext/scanner.h +28 -0
  96. data/ext/isomorfeus_ferret_ext/scanner.in +43 -0
  97. data/ext/isomorfeus_ferret_ext/scanner.rl +84 -0
  98. data/ext/isomorfeus_ferret_ext/scanner_mb.rl +200 -0
  99. data/ext/isomorfeus_ferret_ext/scanner_utf8.rl +85 -0
  100. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +324 -0
  101. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +7 -0
  102. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +610 -0
  103. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +6 -0
  104. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +1104 -0
  105. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +6 -0
  106. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +749 -0
  107. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +7 -0
  108. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +1233 -0
  109. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +6 -0
  110. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +490 -0
  111. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +6 -0
  112. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +1217 -0
  113. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.h +7 -0
  114. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +1052 -0
  115. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +6 -0
  116. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +283 -0
  117. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +6 -0
  118. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +735 -0
  119. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +6 -0
  120. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +1003 -0
  121. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +7 -0
  122. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +1079 -0
  123. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +6 -0
  124. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +293 -0
  125. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +6 -0
  126. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +984 -0
  127. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +6 -0
  128. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +686 -0
  129. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +6 -0
  130. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.c +325 -0
  131. data/ext/isomorfeus_ferret_ext/stem_UTF_8_danish.h +6 -0
  132. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.c +620 -0
  133. data/ext/isomorfeus_ferret_ext/stem_UTF_8_dutch.h +6 -0
  134. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.c +1111 -0
  135. data/ext/isomorfeus_ferret_ext/stem_UTF_8_english.h +6 -0
  136. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.c +754 -0
  137. data/ext/isomorfeus_ferret_ext/stem_UTF_8_finnish.h +6 -0
  138. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.c +1242 -0
  139. data/ext/isomorfeus_ferret_ext/stem_UTF_8_french.h +6 -0
  140. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.c +495 -0
  141. data/ext/isomorfeus_ferret_ext/stem_UTF_8_german.h +6 -0
  142. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.c +1220 -0
  143. data/ext/isomorfeus_ferret_ext/stem_UTF_8_hungarian.h +6 -0
  144. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.c +1059 -0
  145. data/ext/isomorfeus_ferret_ext/stem_UTF_8_italian.h +6 -0
  146. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.c +285 -0
  147. data/ext/isomorfeus_ferret_ext/stem_UTF_8_norwegian.h +6 -0
  148. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.c +741 -0
  149. data/ext/isomorfeus_ferret_ext/stem_UTF_8_porter.h +6 -0
  150. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.c +1009 -0
  151. data/ext/isomorfeus_ferret_ext/stem_UTF_8_portuguese.h +6 -0
  152. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.c +990 -0
  153. data/ext/isomorfeus_ferret_ext/stem_UTF_8_romanian.h +6 -0
  154. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.c +680 -0
  155. data/ext/isomorfeus_ferret_ext/stem_UTF_8_russian.h +6 -0
  156. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.c +1083 -0
  157. data/ext/isomorfeus_ferret_ext/stem_UTF_8_spanish.h +6 -0
  158. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.c +294 -0
  159. data/ext/isomorfeus_ferret_ext/stem_UTF_8_swedish.h +6 -0
  160. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.c +2191 -0
  161. data/ext/isomorfeus_ferret_ext/stem_UTF_8_turkish.h +6 -0
  162. data/ext/isomorfeus_ferret_ext/stem_api.c +66 -0
  163. data/ext/isomorfeus_ferret_ext/stem_api.h +26 -0
  164. data/ext/isomorfeus_ferret_ext/stem_header.h +57 -0
  165. data/ext/isomorfeus_ferret_ext/stem_modules.h +190 -0
  166. data/ext/isomorfeus_ferret_ext/stem_modules.txt +50 -0
  167. data/ext/isomorfeus_ferret_ext/stem_utilities.c +478 -0
  168. data/ext/isomorfeus_ferret_ext/test.c +850 -0
  169. data/ext/isomorfeus_ferret_ext/test.h +416 -0
  170. data/ext/isomorfeus_ferret_ext/test_1710.c +63 -0
  171. data/ext/isomorfeus_ferret_ext/test_analysis.c +1221 -0
  172. data/ext/isomorfeus_ferret_ext/test_array.c +272 -0
  173. data/ext/isomorfeus_ferret_ext/test_bitvector.c +600 -0
  174. data/ext/isomorfeus_ferret_ext/test_compound_io.c +170 -0
  175. data/ext/isomorfeus_ferret_ext/test_document.c +156 -0
  176. data/ext/isomorfeus_ferret_ext/test_except.c +244 -0
  177. data/ext/isomorfeus_ferret_ext/test_fields.c +522 -0
  178. data/ext/isomorfeus_ferret_ext/test_file_deleter.c +185 -0
  179. data/ext/isomorfeus_ferret_ext/test_filter.c +331 -0
  180. data/ext/isomorfeus_ferret_ext/test_fs_store.c +25 -0
  181. data/ext/isomorfeus_ferret_ext/test_global.c +299 -0
  182. data/ext/isomorfeus_ferret_ext/test_hash.c +485 -0
  183. data/ext/isomorfeus_ferret_ext/test_hashset.c +288 -0
  184. data/ext/isomorfeus_ferret_ext/test_helper.c +47 -0
  185. data/ext/isomorfeus_ferret_ext/test_highlighter.c +548 -0
  186. data/ext/isomorfeus_ferret_ext/test_index.c +2323 -0
  187. data/ext/isomorfeus_ferret_ext/test_lang.c +74 -0
  188. data/ext/isomorfeus_ferret_ext/test_mempool.c +102 -0
  189. data/ext/isomorfeus_ferret_ext/test_multimapper.c +64 -0
  190. data/ext/isomorfeus_ferret_ext/test_priorityqueue.c +213 -0
  191. data/ext/isomorfeus_ferret_ext/test_q_const_score.c +84 -0
  192. data/ext/isomorfeus_ferret_ext/test_q_filtered.c +61 -0
  193. data/ext/isomorfeus_ferret_ext/test_q_fuzzy.c +241 -0
  194. data/ext/isomorfeus_ferret_ext/test_q_parser.c +464 -0
  195. data/ext/isomorfeus_ferret_ext/test_q_span.c +575 -0
  196. data/ext/isomorfeus_ferret_ext/test_ram_store.c +77 -0
  197. data/ext/isomorfeus_ferret_ext/test_search.c +1874 -0
  198. data/ext/isomorfeus_ferret_ext/test_segments.c +167 -0
  199. data/ext/isomorfeus_ferret_ext/test_similarity.c +25 -0
  200. data/ext/isomorfeus_ferret_ext/test_sort.c +333 -0
  201. data/ext/isomorfeus_ferret_ext/test_store.c +591 -0
  202. data/ext/isomorfeus_ferret_ext/test_store.h +3 -0
  203. data/ext/isomorfeus_ferret_ext/test_term.c +351 -0
  204. data/ext/isomorfeus_ferret_ext/test_term_vectors.c +373 -0
  205. data/ext/isomorfeus_ferret_ext/test_test.c +83 -0
  206. data/ext/isomorfeus_ferret_ext/test_threading.c +188 -0
  207. data/ext/isomorfeus_ferret_ext/testhelper.c +561 -0
  208. data/ext/isomorfeus_ferret_ext/testhelper.h +25 -0
  209. data/ext/isomorfeus_ferret_ext/tests_all.h +87 -0
  210. data/ext/isomorfeus_ferret_ext/uchar-ucs4.rl +1854 -0
  211. data/ext/isomorfeus_ferret_ext/uchar-utf8.rl +1999 -0
  212. data/ext/isomorfeus_ferret_ext/url.rl +27 -0
  213. data/ext/isomorfeus_ferret_ext/word_list.h +15156 -0
  214. data/lib/isomorfeus/ferret/document.rb +132 -0
  215. data/lib/isomorfeus/ferret/field_symbol.rb +85 -0
  216. data/lib/isomorfeus/ferret/index/field_infos.rb +48 -0
  217. data/lib/isomorfeus/ferret/index/index.rb +970 -0
  218. data/lib/isomorfeus/ferret/monitor.rb +323 -0
  219. data/lib/isomorfeus/ferret/stdlib_patches.rb +151 -0
  220. data/lib/isomorfeus/ferret/version.rb +5 -0
  221. data/lib/isomorfeus-ferret.rb +8 -0
  222. metadata +307 -0
@@ -0,0 +1,1220 @@
1
+ /* This file was generated automatically by the Snowball to ANSI C compiler */
2
+
3
+ #include "stem_header.h"
4
+
5
+ extern int hungarian_UTF_8_stem(struct SN_env * z);
6
+
7
+ static int r_double(struct SN_env * z);
8
+ static int r_undouble(struct SN_env * z);
9
+ static int r_factive(struct SN_env * z);
10
+ static int r_instrum(struct SN_env * z);
11
+ static int r_plur_owner(struct SN_env * z);
12
+ static int r_sing_owner(struct SN_env * z);
13
+ static int r_owned(struct SN_env * z);
14
+ static int r_plural(struct SN_env * z);
15
+ static int r_case_other(struct SN_env * z);
16
+ static int r_case_special(struct SN_env * z);
17
+ static int r_case(struct SN_env * z);
18
+ static int r_v_ending(struct SN_env * z);
19
+ static int r_R1(struct SN_env * z);
20
+ static int r_mark_regions(struct SN_env * z);
21
+
22
+ extern struct SN_env * hungarian_UTF_8_create_env(void);
23
+ extern void hungarian_UTF_8_close_env(struct SN_env * z);
24
+
25
+ static const symbol s_0_0[2] = { 'c', 's' };
26
+ static const symbol s_0_1[3] = { 'd', 'z', 's' };
27
+ static const symbol s_0_2[2] = { 'g', 'y' };
28
+ static const symbol s_0_3[2] = { 'l', 'y' };
29
+ static const symbol s_0_4[2] = { 'n', 'y' };
30
+ static const symbol s_0_5[2] = { 's', 'z' };
31
+ static const symbol s_0_6[2] = { 't', 'y' };
32
+ static const symbol s_0_7[2] = { 'z', 's' };
33
+
34
+ static const struct among a_0[8] =
35
+ {
36
+ /* 0 */ { 2, s_0_0, -1, -1, 0},
37
+ /* 1 */ { 3, s_0_1, -1, -1, 0},
38
+ /* 2 */ { 2, s_0_2, -1, -1, 0},
39
+ /* 3 */ { 2, s_0_3, -1, -1, 0},
40
+ /* 4 */ { 2, s_0_4, -1, -1, 0},
41
+ /* 5 */ { 2, s_0_5, -1, -1, 0},
42
+ /* 6 */ { 2, s_0_6, -1, -1, 0},
43
+ /* 7 */ { 2, s_0_7, -1, -1, 0}
44
+ };
45
+
46
+ static const symbol s_1_0[2] = { 0xC3, 0xA1 };
47
+ static const symbol s_1_1[2] = { 0xC3, 0xA9 };
48
+
49
+ static const struct among a_1[2] =
50
+ {
51
+ /* 0 */ { 2, s_1_0, -1, 1, 0},
52
+ /* 1 */ { 2, s_1_1, -1, 2, 0}
53
+ };
54
+
55
+ static const symbol s_2_0[2] = { 'b', 'b' };
56
+ static const symbol s_2_1[2] = { 'c', 'c' };
57
+ static const symbol s_2_2[2] = { 'd', 'd' };
58
+ static const symbol s_2_3[2] = { 'f', 'f' };
59
+ static const symbol s_2_4[2] = { 'g', 'g' };
60
+ static const symbol s_2_5[2] = { 'j', 'j' };
61
+ static const symbol s_2_6[2] = { 'k', 'k' };
62
+ static const symbol s_2_7[2] = { 'l', 'l' };
63
+ static const symbol s_2_8[2] = { 'm', 'm' };
64
+ static const symbol s_2_9[2] = { 'n', 'n' };
65
+ static const symbol s_2_10[2] = { 'p', 'p' };
66
+ static const symbol s_2_11[2] = { 'r', 'r' };
67
+ static const symbol s_2_12[3] = { 'c', 'c', 's' };
68
+ static const symbol s_2_13[2] = { 's', 's' };
69
+ static const symbol s_2_14[3] = { 'z', 'z', 's' };
70
+ static const symbol s_2_15[2] = { 't', 't' };
71
+ static const symbol s_2_16[2] = { 'v', 'v' };
72
+ static const symbol s_2_17[3] = { 'g', 'g', 'y' };
73
+ static const symbol s_2_18[3] = { 'l', 'l', 'y' };
74
+ static const symbol s_2_19[3] = { 'n', 'n', 'y' };
75
+ static const symbol s_2_20[3] = { 't', 't', 'y' };
76
+ static const symbol s_2_21[3] = { 's', 's', 'z' };
77
+ static const symbol s_2_22[2] = { 'z', 'z' };
78
+
79
+ static const struct among a_2[23] =
80
+ {
81
+ /* 0 */ { 2, s_2_0, -1, -1, 0},
82
+ /* 1 */ { 2, s_2_1, -1, -1, 0},
83
+ /* 2 */ { 2, s_2_2, -1, -1, 0},
84
+ /* 3 */ { 2, s_2_3, -1, -1, 0},
85
+ /* 4 */ { 2, s_2_4, -1, -1, 0},
86
+ /* 5 */ { 2, s_2_5, -1, -1, 0},
87
+ /* 6 */ { 2, s_2_6, -1, -1, 0},
88
+ /* 7 */ { 2, s_2_7, -1, -1, 0},
89
+ /* 8 */ { 2, s_2_8, -1, -1, 0},
90
+ /* 9 */ { 2, s_2_9, -1, -1, 0},
91
+ /* 10 */ { 2, s_2_10, -1, -1, 0},
92
+ /* 11 */ { 2, s_2_11, -1, -1, 0},
93
+ /* 12 */ { 3, s_2_12, -1, -1, 0},
94
+ /* 13 */ { 2, s_2_13, -1, -1, 0},
95
+ /* 14 */ { 3, s_2_14, -1, -1, 0},
96
+ /* 15 */ { 2, s_2_15, -1, -1, 0},
97
+ /* 16 */ { 2, s_2_16, -1, -1, 0},
98
+ /* 17 */ { 3, s_2_17, -1, -1, 0},
99
+ /* 18 */ { 3, s_2_18, -1, -1, 0},
100
+ /* 19 */ { 3, s_2_19, -1, -1, 0},
101
+ /* 20 */ { 3, s_2_20, -1, -1, 0},
102
+ /* 21 */ { 3, s_2_21, -1, -1, 0},
103
+ /* 22 */ { 2, s_2_22, -1, -1, 0}
104
+ };
105
+
106
+ static const symbol s_3_0[2] = { 'a', 'l' };
107
+ static const symbol s_3_1[2] = { 'e', 'l' };
108
+
109
+ static const struct among a_3[2] =
110
+ {
111
+ /* 0 */ { 2, s_3_0, -1, 1, 0},
112
+ /* 1 */ { 2, s_3_1, -1, 2, 0}
113
+ };
114
+
115
+ static const symbol s_4_0[2] = { 'b', 'a' };
116
+ static const symbol s_4_1[2] = { 'r', 'a' };
117
+ static const symbol s_4_2[2] = { 'b', 'e' };
118
+ static const symbol s_4_3[2] = { 'r', 'e' };
119
+ static const symbol s_4_4[2] = { 'i', 'g' };
120
+ static const symbol s_4_5[3] = { 'n', 'a', 'k' };
121
+ static const symbol s_4_6[3] = { 'n', 'e', 'k' };
122
+ static const symbol s_4_7[3] = { 'v', 'a', 'l' };
123
+ static const symbol s_4_8[3] = { 'v', 'e', 'l' };
124
+ static const symbol s_4_9[2] = { 'u', 'l' };
125
+ static const symbol s_4_10[4] = { 'n', 0xC3, 0xA1, 'l' };
126
+ static const symbol s_4_11[4] = { 'n', 0xC3, 0xA9, 'l' };
127
+ static const symbol s_4_12[4] = { 'b', 0xC3, 0xB3, 'l' };
128
+ static const symbol s_4_13[4] = { 'r', 0xC3, 0xB3, 'l' };
129
+ static const symbol s_4_14[4] = { 't', 0xC3, 0xB3, 'l' };
130
+ static const symbol s_4_15[4] = { 'b', 0xC3, 0xB5, 'l' };
131
+ static const symbol s_4_16[4] = { 'r', 0xC3, 0xB5, 'l' };
132
+ static const symbol s_4_17[4] = { 't', 0xC3, 0xB5, 'l' };
133
+ static const symbol s_4_18[3] = { 0xC3, 0xBC, 'l' };
134
+ static const symbol s_4_19[1] = { 'n' };
135
+ static const symbol s_4_20[2] = { 'a', 'n' };
136
+ static const symbol s_4_21[3] = { 'b', 'a', 'n' };
137
+ static const symbol s_4_22[2] = { 'e', 'n' };
138
+ static const symbol s_4_23[3] = { 'b', 'e', 'n' };
139
+ static const symbol s_4_24[7] = { 'k', 0xC3, 0xA9, 'p', 'p', 'e', 'n' };
140
+ static const symbol s_4_25[2] = { 'o', 'n' };
141
+ static const symbol s_4_26[3] = { 0xC3, 0xB6, 'n' };
142
+ static const symbol s_4_27[5] = { 'k', 0xC3, 0xA9, 'p', 'p' };
143
+ static const symbol s_4_28[3] = { 'k', 'o', 'r' };
144
+ static const symbol s_4_29[1] = { 't' };
145
+ static const symbol s_4_30[2] = { 'a', 't' };
146
+ static const symbol s_4_31[2] = { 'e', 't' };
147
+ static const symbol s_4_32[5] = { 'k', 0xC3, 0xA9, 'n', 't' };
148
+ static const symbol s_4_33[7] = { 'a', 'n', 'k', 0xC3, 0xA9, 'n', 't' };
149
+ static const symbol s_4_34[7] = { 'e', 'n', 'k', 0xC3, 0xA9, 'n', 't' };
150
+ static const symbol s_4_35[7] = { 'o', 'n', 'k', 0xC3, 0xA9, 'n', 't' };
151
+ static const symbol s_4_36[2] = { 'o', 't' };
152
+ static const symbol s_4_37[4] = { 0xC3, 0xA9, 'r', 't' };
153
+ static const symbol s_4_38[3] = { 0xC3, 0xB6, 't' };
154
+ static const symbol s_4_39[3] = { 'h', 'e', 'z' };
155
+ static const symbol s_4_40[3] = { 'h', 'o', 'z' };
156
+ static const symbol s_4_41[4] = { 'h', 0xC3, 0xB6, 'z' };
157
+ static const symbol s_4_42[3] = { 'v', 0xC3, 0xA1 };
158
+ static const symbol s_4_43[3] = { 'v', 0xC3, 0xA9 };
159
+
160
+ static const struct among a_4[44] =
161
+ {
162
+ /* 0 */ { 2, s_4_0, -1, -1, 0},
163
+ /* 1 */ { 2, s_4_1, -1, -1, 0},
164
+ /* 2 */ { 2, s_4_2, -1, -1, 0},
165
+ /* 3 */ { 2, s_4_3, -1, -1, 0},
166
+ /* 4 */ { 2, s_4_4, -1, -1, 0},
167
+ /* 5 */ { 3, s_4_5, -1, -1, 0},
168
+ /* 6 */ { 3, s_4_6, -1, -1, 0},
169
+ /* 7 */ { 3, s_4_7, -1, -1, 0},
170
+ /* 8 */ { 3, s_4_8, -1, -1, 0},
171
+ /* 9 */ { 2, s_4_9, -1, -1, 0},
172
+ /* 10 */ { 4, s_4_10, -1, -1, 0},
173
+ /* 11 */ { 4, s_4_11, -1, -1, 0},
174
+ /* 12 */ { 4, s_4_12, -1, -1, 0},
175
+ /* 13 */ { 4, s_4_13, -1, -1, 0},
176
+ /* 14 */ { 4, s_4_14, -1, -1, 0},
177
+ /* 15 */ { 4, s_4_15, -1, -1, 0},
178
+ /* 16 */ { 4, s_4_16, -1, -1, 0},
179
+ /* 17 */ { 4, s_4_17, -1, -1, 0},
180
+ /* 18 */ { 3, s_4_18, -1, -1, 0},
181
+ /* 19 */ { 1, s_4_19, -1, -1, 0},
182
+ /* 20 */ { 2, s_4_20, 19, -1, 0},
183
+ /* 21 */ { 3, s_4_21, 20, -1, 0},
184
+ /* 22 */ { 2, s_4_22, 19, -1, 0},
185
+ /* 23 */ { 3, s_4_23, 22, -1, 0},
186
+ /* 24 */ { 7, s_4_24, 22, -1, 0},
187
+ /* 25 */ { 2, s_4_25, 19, -1, 0},
188
+ /* 26 */ { 3, s_4_26, 19, -1, 0},
189
+ /* 27 */ { 5, s_4_27, -1, -1, 0},
190
+ /* 28 */ { 3, s_4_28, -1, -1, 0},
191
+ /* 29 */ { 1, s_4_29, -1, -1, 0},
192
+ /* 30 */ { 2, s_4_30, 29, -1, 0},
193
+ /* 31 */ { 2, s_4_31, 29, -1, 0},
194
+ /* 32 */ { 5, s_4_32, 29, -1, 0},
195
+ /* 33 */ { 7, s_4_33, 32, -1, 0},
196
+ /* 34 */ { 7, s_4_34, 32, -1, 0},
197
+ /* 35 */ { 7, s_4_35, 32, -1, 0},
198
+ /* 36 */ { 2, s_4_36, 29, -1, 0},
199
+ /* 37 */ { 4, s_4_37, 29, -1, 0},
200
+ /* 38 */ { 3, s_4_38, 29, -1, 0},
201
+ /* 39 */ { 3, s_4_39, -1, -1, 0},
202
+ /* 40 */ { 3, s_4_40, -1, -1, 0},
203
+ /* 41 */ { 4, s_4_41, -1, -1, 0},
204
+ /* 42 */ { 3, s_4_42, -1, -1, 0},
205
+ /* 43 */ { 3, s_4_43, -1, -1, 0}
206
+ };
207
+
208
+ static const symbol s_5_0[3] = { 0xC3, 0xA1, 'n' };
209
+ static const symbol s_5_1[3] = { 0xC3, 0xA9, 'n' };
210
+ static const symbol s_5_2[8] = { 0xC3, 0xA1, 'n', 'k', 0xC3, 0xA9, 'n', 't' };
211
+
212
+ static const struct among a_5[3] =
213
+ {
214
+ /* 0 */ { 3, s_5_0, -1, 2, 0},
215
+ /* 1 */ { 3, s_5_1, -1, 1, 0},
216
+ /* 2 */ { 8, s_5_2, -1, 3, 0}
217
+ };
218
+
219
+ static const symbol s_6_0[4] = { 's', 't', 'u', 'l' };
220
+ static const symbol s_6_1[5] = { 'a', 's', 't', 'u', 'l' };
221
+ static const symbol s_6_2[6] = { 0xC3, 0xA1, 's', 't', 'u', 'l' };
222
+ static const symbol s_6_3[5] = { 's', 't', 0xC3, 0xBC, 'l' };
223
+ static const symbol s_6_4[6] = { 'e', 's', 't', 0xC3, 0xBC, 'l' };
224
+ static const symbol s_6_5[7] = { 0xC3, 0xA9, 's', 't', 0xC3, 0xBC, 'l' };
225
+
226
+ static const struct among a_6[6] =
227
+ {
228
+ /* 0 */ { 4, s_6_0, -1, 2, 0},
229
+ /* 1 */ { 5, s_6_1, 0, 1, 0},
230
+ /* 2 */ { 6, s_6_2, 0, 3, 0},
231
+ /* 3 */ { 5, s_6_3, -1, 2, 0},
232
+ /* 4 */ { 6, s_6_4, 3, 1, 0},
233
+ /* 5 */ { 7, s_6_5, 3, 4, 0}
234
+ };
235
+
236
+ static const symbol s_7_0[2] = { 0xC3, 0xA1 };
237
+ static const symbol s_7_1[2] = { 0xC3, 0xA9 };
238
+
239
+ static const struct among a_7[2] =
240
+ {
241
+ /* 0 */ { 2, s_7_0, -1, 1, 0},
242
+ /* 1 */ { 2, s_7_1, -1, 2, 0}
243
+ };
244
+
245
+ static const symbol s_8_0[1] = { 'k' };
246
+ static const symbol s_8_1[2] = { 'a', 'k' };
247
+ static const symbol s_8_2[2] = { 'e', 'k' };
248
+ static const symbol s_8_3[2] = { 'o', 'k' };
249
+ static const symbol s_8_4[3] = { 0xC3, 0xA1, 'k' };
250
+ static const symbol s_8_5[3] = { 0xC3, 0xA9, 'k' };
251
+ static const symbol s_8_6[3] = { 0xC3, 0xB6, 'k' };
252
+
253
+ static const struct among a_8[7] =
254
+ {
255
+ /* 0 */ { 1, s_8_0, -1, 7, 0},
256
+ /* 1 */ { 2, s_8_1, 0, 4, 0},
257
+ /* 2 */ { 2, s_8_2, 0, 6, 0},
258
+ /* 3 */ { 2, s_8_3, 0, 5, 0},
259
+ /* 4 */ { 3, s_8_4, 0, 1, 0},
260
+ /* 5 */ { 3, s_8_5, 0, 2, 0},
261
+ /* 6 */ { 3, s_8_6, 0, 3, 0}
262
+ };
263
+
264
+ static const symbol s_9_0[3] = { 0xC3, 0xA9, 'i' };
265
+ static const symbol s_9_1[5] = { 0xC3, 0xA1, 0xC3, 0xA9, 'i' };
266
+ static const symbol s_9_2[5] = { 0xC3, 0xA9, 0xC3, 0xA9, 'i' };
267
+ static const symbol s_9_3[2] = { 0xC3, 0xA9 };
268
+ static const symbol s_9_4[3] = { 'k', 0xC3, 0xA9 };
269
+ static const symbol s_9_5[4] = { 'a', 'k', 0xC3, 0xA9 };
270
+ static const symbol s_9_6[4] = { 'e', 'k', 0xC3, 0xA9 };
271
+ static const symbol s_9_7[4] = { 'o', 'k', 0xC3, 0xA9 };
272
+ static const symbol s_9_8[5] = { 0xC3, 0xA1, 'k', 0xC3, 0xA9 };
273
+ static const symbol s_9_9[5] = { 0xC3, 0xA9, 'k', 0xC3, 0xA9 };
274
+ static const symbol s_9_10[5] = { 0xC3, 0xB6, 'k', 0xC3, 0xA9 };
275
+ static const symbol s_9_11[4] = { 0xC3, 0xA9, 0xC3, 0xA9 };
276
+
277
+ static const struct among a_9[12] =
278
+ {
279
+ /* 0 */ { 3, s_9_0, -1, 7, 0},
280
+ /* 1 */ { 5, s_9_1, 0, 6, 0},
281
+ /* 2 */ { 5, s_9_2, 0, 5, 0},
282
+ /* 3 */ { 2, s_9_3, -1, 9, 0},
283
+ /* 4 */ { 3, s_9_4, 3, 4, 0},
284
+ /* 5 */ { 4, s_9_5, 4, 1, 0},
285
+ /* 6 */ { 4, s_9_6, 4, 1, 0},
286
+ /* 7 */ { 4, s_9_7, 4, 1, 0},
287
+ /* 8 */ { 5, s_9_8, 4, 3, 0},
288
+ /* 9 */ { 5, s_9_9, 4, 2, 0},
289
+ /* 10 */ { 5, s_9_10, 4, 1, 0},
290
+ /* 11 */ { 4, s_9_11, 3, 8, 0}
291
+ };
292
+
293
+ static const symbol s_10_0[1] = { 'a' };
294
+ static const symbol s_10_1[2] = { 'j', 'a' };
295
+ static const symbol s_10_2[1] = { 'd' };
296
+ static const symbol s_10_3[2] = { 'a', 'd' };
297
+ static const symbol s_10_4[2] = { 'e', 'd' };
298
+ static const symbol s_10_5[2] = { 'o', 'd' };
299
+ static const symbol s_10_6[3] = { 0xC3, 0xA1, 'd' };
300
+ static const symbol s_10_7[3] = { 0xC3, 0xA9, 'd' };
301
+ static const symbol s_10_8[3] = { 0xC3, 0xB6, 'd' };
302
+ static const symbol s_10_9[1] = { 'e' };
303
+ static const symbol s_10_10[2] = { 'j', 'e' };
304
+ static const symbol s_10_11[2] = { 'n', 'k' };
305
+ static const symbol s_10_12[3] = { 'u', 'n', 'k' };
306
+ static const symbol s_10_13[4] = { 0xC3, 0xA1, 'n', 'k' };
307
+ static const symbol s_10_14[4] = { 0xC3, 0xA9, 'n', 'k' };
308
+ static const symbol s_10_15[4] = { 0xC3, 0xBC, 'n', 'k' };
309
+ static const symbol s_10_16[2] = { 'u', 'k' };
310
+ static const symbol s_10_17[3] = { 'j', 'u', 'k' };
311
+ static const symbol s_10_18[5] = { 0xC3, 0xA1, 'j', 'u', 'k' };
312
+ static const symbol s_10_19[3] = { 0xC3, 0xBC, 'k' };
313
+ static const symbol s_10_20[4] = { 'j', 0xC3, 0xBC, 'k' };
314
+ static const symbol s_10_21[6] = { 0xC3, 0xA9, 'j', 0xC3, 0xBC, 'k' };
315
+ static const symbol s_10_22[1] = { 'm' };
316
+ static const symbol s_10_23[2] = { 'a', 'm' };
317
+ static const symbol s_10_24[2] = { 'e', 'm' };
318
+ static const symbol s_10_25[2] = { 'o', 'm' };
319
+ static const symbol s_10_26[3] = { 0xC3, 0xA1, 'm' };
320
+ static const symbol s_10_27[3] = { 0xC3, 0xA9, 'm' };
321
+ static const symbol s_10_28[1] = { 'o' };
322
+ static const symbol s_10_29[2] = { 0xC3, 0xA1 };
323
+ static const symbol s_10_30[2] = { 0xC3, 0xA9 };
324
+
325
+ static const struct among a_10[31] =
326
+ {
327
+ /* 0 */ { 1, s_10_0, -1, 18, 0},
328
+ /* 1 */ { 2, s_10_1, 0, 17, 0},
329
+ /* 2 */ { 1, s_10_2, -1, 16, 0},
330
+ /* 3 */ { 2, s_10_3, 2, 13, 0},
331
+ /* 4 */ { 2, s_10_4, 2, 13, 0},
332
+ /* 5 */ { 2, s_10_5, 2, 13, 0},
333
+ /* 6 */ { 3, s_10_6, 2, 14, 0},
334
+ /* 7 */ { 3, s_10_7, 2, 15, 0},
335
+ /* 8 */ { 3, s_10_8, 2, 13, 0},
336
+ /* 9 */ { 1, s_10_9, -1, 18, 0},
337
+ /* 10 */ { 2, s_10_10, 9, 17, 0},
338
+ /* 11 */ { 2, s_10_11, -1, 4, 0},
339
+ /* 12 */ { 3, s_10_12, 11, 1, 0},
340
+ /* 13 */ { 4, s_10_13, 11, 2, 0},
341
+ /* 14 */ { 4, s_10_14, 11, 3, 0},
342
+ /* 15 */ { 4, s_10_15, 11, 1, 0},
343
+ /* 16 */ { 2, s_10_16, -1, 8, 0},
344
+ /* 17 */ { 3, s_10_17, 16, 7, 0},
345
+ /* 18 */ { 5, s_10_18, 17, 5, 0},
346
+ /* 19 */ { 3, s_10_19, -1, 8, 0},
347
+ /* 20 */ { 4, s_10_20, 19, 7, 0},
348
+ /* 21 */ { 6, s_10_21, 20, 6, 0},
349
+ /* 22 */ { 1, s_10_22, -1, 12, 0},
350
+ /* 23 */ { 2, s_10_23, 22, 9, 0},
351
+ /* 24 */ { 2, s_10_24, 22, 9, 0},
352
+ /* 25 */ { 2, s_10_25, 22, 9, 0},
353
+ /* 26 */ { 3, s_10_26, 22, 10, 0},
354
+ /* 27 */ { 3, s_10_27, 22, 11, 0},
355
+ /* 28 */ { 1, s_10_28, -1, 18, 0},
356
+ /* 29 */ { 2, s_10_29, -1, 19, 0},
357
+ /* 30 */ { 2, s_10_30, -1, 20, 0}
358
+ };
359
+
360
+ static const symbol s_11_0[2] = { 'i', 'd' };
361
+ static const symbol s_11_1[3] = { 'a', 'i', 'd' };
362
+ static const symbol s_11_2[4] = { 'j', 'a', 'i', 'd' };
363
+ static const symbol s_11_3[3] = { 'e', 'i', 'd' };
364
+ static const symbol s_11_4[4] = { 'j', 'e', 'i', 'd' };
365
+ static const symbol s_11_5[4] = { 0xC3, 0xA1, 'i', 'd' };
366
+ static const symbol s_11_6[4] = { 0xC3, 0xA9, 'i', 'd' };
367
+ static const symbol s_11_7[1] = { 'i' };
368
+ static const symbol s_11_8[2] = { 'a', 'i' };
369
+ static const symbol s_11_9[3] = { 'j', 'a', 'i' };
370
+ static const symbol s_11_10[2] = { 'e', 'i' };
371
+ static const symbol s_11_11[3] = { 'j', 'e', 'i' };
372
+ static const symbol s_11_12[3] = { 0xC3, 0xA1, 'i' };
373
+ static const symbol s_11_13[3] = { 0xC3, 0xA9, 'i' };
374
+ static const symbol s_11_14[4] = { 'i', 't', 'e', 'k' };
375
+ static const symbol s_11_15[5] = { 'e', 'i', 't', 'e', 'k' };
376
+ static const symbol s_11_16[6] = { 'j', 'e', 'i', 't', 'e', 'k' };
377
+ static const symbol s_11_17[6] = { 0xC3, 0xA9, 'i', 't', 'e', 'k' };
378
+ static const symbol s_11_18[2] = { 'i', 'k' };
379
+ static const symbol s_11_19[3] = { 'a', 'i', 'k' };
380
+ static const symbol s_11_20[4] = { 'j', 'a', 'i', 'k' };
381
+ static const symbol s_11_21[3] = { 'e', 'i', 'k' };
382
+ static const symbol s_11_22[4] = { 'j', 'e', 'i', 'k' };
383
+ static const symbol s_11_23[4] = { 0xC3, 0xA1, 'i', 'k' };
384
+ static const symbol s_11_24[4] = { 0xC3, 0xA9, 'i', 'k' };
385
+ static const symbol s_11_25[3] = { 'i', 'n', 'k' };
386
+ static const symbol s_11_26[4] = { 'a', 'i', 'n', 'k' };
387
+ static const symbol s_11_27[5] = { 'j', 'a', 'i', 'n', 'k' };
388
+ static const symbol s_11_28[4] = { 'e', 'i', 'n', 'k' };
389
+ static const symbol s_11_29[5] = { 'j', 'e', 'i', 'n', 'k' };
390
+ static const symbol s_11_30[5] = { 0xC3, 0xA1, 'i', 'n', 'k' };
391
+ static const symbol s_11_31[5] = { 0xC3, 0xA9, 'i', 'n', 'k' };
392
+ static const symbol s_11_32[5] = { 'a', 'i', 't', 'o', 'k' };
393
+ static const symbol s_11_33[6] = { 'j', 'a', 'i', 't', 'o', 'k' };
394
+ static const symbol s_11_34[6] = { 0xC3, 0xA1, 'i', 't', 'o', 'k' };
395
+ static const symbol s_11_35[2] = { 'i', 'm' };
396
+ static const symbol s_11_36[3] = { 'a', 'i', 'm' };
397
+ static const symbol s_11_37[4] = { 'j', 'a', 'i', 'm' };
398
+ static const symbol s_11_38[3] = { 'e', 'i', 'm' };
399
+ static const symbol s_11_39[4] = { 'j', 'e', 'i', 'm' };
400
+ static const symbol s_11_40[4] = { 0xC3, 0xA1, 'i', 'm' };
401
+ static const symbol s_11_41[4] = { 0xC3, 0xA9, 'i', 'm' };
402
+
403
+ static const struct among a_11[42] =
404
+ {
405
+ /* 0 */ { 2, s_11_0, -1, 10, 0},
406
+ /* 1 */ { 3, s_11_1, 0, 9, 0},
407
+ /* 2 */ { 4, s_11_2, 1, 6, 0},
408
+ /* 3 */ { 3, s_11_3, 0, 9, 0},
409
+ /* 4 */ { 4, s_11_4, 3, 6, 0},
410
+ /* 5 */ { 4, s_11_5, 0, 7, 0},
411
+ /* 6 */ { 4, s_11_6, 0, 8, 0},
412
+ /* 7 */ { 1, s_11_7, -1, 15, 0},
413
+ /* 8 */ { 2, s_11_8, 7, 14, 0},
414
+ /* 9 */ { 3, s_11_9, 8, 11, 0},
415
+ /* 10 */ { 2, s_11_10, 7, 14, 0},
416
+ /* 11 */ { 3, s_11_11, 10, 11, 0},
417
+ /* 12 */ { 3, s_11_12, 7, 12, 0},
418
+ /* 13 */ { 3, s_11_13, 7, 13, 0},
419
+ /* 14 */ { 4, s_11_14, -1, 24, 0},
420
+ /* 15 */ { 5, s_11_15, 14, 21, 0},
421
+ /* 16 */ { 6, s_11_16, 15, 20, 0},
422
+ /* 17 */ { 6, s_11_17, 14, 23, 0},
423
+ /* 18 */ { 2, s_11_18, -1, 29, 0},
424
+ /* 19 */ { 3, s_11_19, 18, 26, 0},
425
+ /* 20 */ { 4, s_11_20, 19, 25, 0},
426
+ /* 21 */ { 3, s_11_21, 18, 26, 0},
427
+ /* 22 */ { 4, s_11_22, 21, 25, 0},
428
+ /* 23 */ { 4, s_11_23, 18, 27, 0},
429
+ /* 24 */ { 4, s_11_24, 18, 28, 0},
430
+ /* 25 */ { 3, s_11_25, -1, 20, 0},
431
+ /* 26 */ { 4, s_11_26, 25, 17, 0},
432
+ /* 27 */ { 5, s_11_27, 26, 16, 0},
433
+ /* 28 */ { 4, s_11_28, 25, 17, 0},
434
+ /* 29 */ { 5, s_11_29, 28, 16, 0},
435
+ /* 30 */ { 5, s_11_30, 25, 18, 0},
436
+ /* 31 */ { 5, s_11_31, 25, 19, 0},
437
+ /* 32 */ { 5, s_11_32, -1, 21, 0},
438
+ /* 33 */ { 6, s_11_33, 32, 20, 0},
439
+ /* 34 */ { 6, s_11_34, -1, 22, 0},
440
+ /* 35 */ { 2, s_11_35, -1, 5, 0},
441
+ /* 36 */ { 3, s_11_36, 35, 4, 0},
442
+ /* 37 */ { 4, s_11_37, 36, 1, 0},
443
+ /* 38 */ { 3, s_11_38, 35, 4, 0},
444
+ /* 39 */ { 4, s_11_39, 38, 1, 0},
445
+ /* 40 */ { 4, s_11_40, 35, 2, 0},
446
+ /* 41 */ { 4, s_11_41, 35, 3, 0}
447
+ };
448
+
449
+ static const unsigned char g_v[] = { 17, 65, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17, 52, 14 };
450
+
451
+ static const symbol s_0[] = { 'a' };
452
+ static const symbol s_1[] = { 'e' };
453
+ static const symbol s_2[] = { 'e' };
454
+ static const symbol s_3[] = { 'a' };
455
+ static const symbol s_4[] = { 'a' };
456
+ static const symbol s_5[] = { 'a' };
457
+ static const symbol s_6[] = { 'e' };
458
+ static const symbol s_7[] = { 'a' };
459
+ static const symbol s_8[] = { 'e' };
460
+ static const symbol s_9[] = { 'e' };
461
+ static const symbol s_10[] = { 'a' };
462
+ static const symbol s_11[] = { 'e' };
463
+ static const symbol s_12[] = { 'a' };
464
+ static const symbol s_13[] = { 'e' };
465
+ static const symbol s_14[] = { 'a' };
466
+ static const symbol s_15[] = { 'e' };
467
+ static const symbol s_16[] = { 'a' };
468
+ static const symbol s_17[] = { 'e' };
469
+ static const symbol s_18[] = { 'a' };
470
+ static const symbol s_19[] = { 'e' };
471
+ static const symbol s_20[] = { 'a' };
472
+ static const symbol s_21[] = { 'e' };
473
+ static const symbol s_22[] = { 'a' };
474
+ static const symbol s_23[] = { 'e' };
475
+ static const symbol s_24[] = { 'a' };
476
+ static const symbol s_25[] = { 'e' };
477
+ static const symbol s_26[] = { 'a' };
478
+ static const symbol s_27[] = { 'e' };
479
+ static const symbol s_28[] = { 'a' };
480
+ static const symbol s_29[] = { 'e' };
481
+ static const symbol s_30[] = { 'a' };
482
+ static const symbol s_31[] = { 'e' };
483
+ static const symbol s_32[] = { 'a' };
484
+ static const symbol s_33[] = { 'e' };
485
+ static const symbol s_34[] = { 'a' };
486
+ static const symbol s_35[] = { 'e' };
487
+
488
+ static int r_mark_regions(struct SN_env * z) {
489
+ z->I[0] = z->l;
490
+ { int c1 = z->c; /* or, line 51 */
491
+ if (in_grouping_U(z, g_v, 97, 252, 0)) goto lab1;
492
+ if (in_grouping_U(z, g_v, 97, 252, 1) < 0) goto lab1; /* goto */ /* non v, line 48 */
493
+ { int c2 = z->c; /* or, line 49 */
494
+ if (z->c + 1 >= z->l || z->p[z->c + 1] >> 5 != 3 || !((101187584 >> (z->p[z->c + 1] & 0x1f)) & 1)) goto lab3;
495
+ if (!(find_among(z, a_0, 8))) goto lab3; /* among, line 49 */
496
+ goto lab2;
497
+ lab3:
498
+ z->c = c2;
499
+ { int ret = skip_utf8(z->p, z->c, 0, z->l, 1);
500
+ if (ret < 0) goto lab1;
501
+ z->c = ret; /* next, line 49 */
502
+ }
503
+ }
504
+ lab2:
505
+ z->I[0] = z->c; /* setmark p1, line 50 */
506
+ goto lab0;
507
+ lab1:
508
+ z->c = c1;
509
+ if (out_grouping_U(z, g_v, 97, 252, 0)) return 0;
510
+ { /* gopast */ /* grouping v, line 53 */
511
+ int ret = out_grouping_U(z, g_v, 97, 252, 1);
512
+ if (ret < 0) return 0;
513
+ z->c += ret;
514
+ }
515
+ z->I[0] = z->c; /* setmark p1, line 53 */
516
+ }
517
+ lab0:
518
+ return 1;
519
+ }
520
+
521
+ static int r_R1(struct SN_env * z) {
522
+ if (!(z->I[0] <= z->c)) return 0;
523
+ return 1;
524
+ }
525
+
526
+ static int r_v_ending(struct SN_env * z) {
527
+ int among_var;
528
+ z->ket = z->c; /* [, line 61 */
529
+ if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 161 && z->p[z->c - 1] != 169)) return 0;
530
+ among_var = find_among_b(z, a_1, 2); /* substring, line 61 */
531
+ if (!(among_var)) return 0;
532
+ z->bra = z->c; /* ], line 61 */
533
+ { int ret = r_R1(z);
534
+ if (ret == 0) return 0; /* call R1, line 61 */
535
+ if (ret < 0) return ret;
536
+ }
537
+ switch(among_var) {
538
+ case 0: return 0;
539
+ case 1:
540
+ { int ret = slice_from_s(z, 1, s_0); /* <-, line 62 */
541
+ if (ret < 0) return ret;
542
+ }
543
+ break;
544
+ case 2:
545
+ { int ret = slice_from_s(z, 1, s_1); /* <-, line 63 */
546
+ if (ret < 0) return ret;
547
+ }
548
+ break;
549
+ }
550
+ return 1;
551
+ }
552
+
553
+ static int r_double(struct SN_env * z) {
554
+ { int m_test = z->l - z->c; /* test, line 68 */
555
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((106790108 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
556
+ if (!(find_among_b(z, a_2, 23))) return 0; /* among, line 68 */
557
+ z->c = z->l - m_test;
558
+ }
559
+ return 1;
560
+ }
561
+
562
+ static int r_undouble(struct SN_env * z) {
563
+ { int ret = skip_utf8(z->p, z->c, z->lb, 0, -1);
564
+ if (ret < 0) return 0;
565
+ z->c = ret; /* next, line 73 */
566
+ }
567
+ z->ket = z->c; /* [, line 73 */
568
+ { int ret = skip_utf8(z->p, z->c, z->lb, z->l, - 1);
569
+ if (ret < 0) return 0;
570
+ z->c = ret; /* hop, line 73 */
571
+ }
572
+ z->bra = z->c; /* ], line 73 */
573
+ { int ret = slice_del(z); /* delete, line 73 */
574
+ if (ret < 0) return ret;
575
+ }
576
+ return 1;
577
+ }
578
+
579
+ static int r_instrum(struct SN_env * z) {
580
+ int among_var;
581
+ z->ket = z->c; /* [, line 77 */
582
+ if (z->c - 1 <= z->lb || z->p[z->c - 1] != 108) return 0;
583
+ among_var = find_among_b(z, a_3, 2); /* substring, line 77 */
584
+ if (!(among_var)) return 0;
585
+ z->bra = z->c; /* ], line 77 */
586
+ { int ret = r_R1(z);
587
+ if (ret == 0) return 0; /* call R1, line 77 */
588
+ if (ret < 0) return ret;
589
+ }
590
+ switch(among_var) {
591
+ case 0: return 0;
592
+ case 1:
593
+ { int ret = r_double(z);
594
+ if (ret == 0) return 0; /* call double, line 78 */
595
+ if (ret < 0) return ret;
596
+ }
597
+ break;
598
+ case 2:
599
+ { int ret = r_double(z);
600
+ if (ret == 0) return 0; /* call double, line 79 */
601
+ if (ret < 0) return ret;
602
+ }
603
+ break;
604
+ }
605
+ { int ret = slice_del(z); /* delete, line 81 */
606
+ if (ret < 0) return ret;
607
+ }
608
+ { int ret = r_undouble(z);
609
+ if (ret == 0) return 0; /* call undouble, line 82 */
610
+ if (ret < 0) return ret;
611
+ }
612
+ return 1;
613
+ }
614
+
615
+ static int r_case(struct SN_env * z) {
616
+ z->ket = z->c; /* [, line 87 */
617
+ if (!(find_among_b(z, a_4, 44))) return 0; /* substring, line 87 */
618
+ z->bra = z->c; /* ], line 87 */
619
+ { int ret = r_R1(z);
620
+ if (ret == 0) return 0; /* call R1, line 87 */
621
+ if (ret < 0) return ret;
622
+ }
623
+ { int ret = slice_del(z); /* delete, line 111 */
624
+ if (ret < 0) return ret;
625
+ }
626
+ { int ret = r_v_ending(z);
627
+ if (ret == 0) return 0; /* call v_ending, line 112 */
628
+ if (ret < 0) return ret;
629
+ }
630
+ return 1;
631
+ }
632
+
633
+ static int r_case_special(struct SN_env * z) {
634
+ int among_var;
635
+ z->ket = z->c; /* [, line 116 */
636
+ if (z->c - 2 <= z->lb || (z->p[z->c - 1] != 110 && z->p[z->c - 1] != 116)) return 0;
637
+ among_var = find_among_b(z, a_5, 3); /* substring, line 116 */
638
+ if (!(among_var)) return 0;
639
+ z->bra = z->c; /* ], line 116 */
640
+ { int ret = r_R1(z);
641
+ if (ret == 0) return 0; /* call R1, line 116 */
642
+ if (ret < 0) return ret;
643
+ }
644
+ switch(among_var) {
645
+ case 0: return 0;
646
+ case 1:
647
+ { int ret = slice_from_s(z, 1, s_2); /* <-, line 117 */
648
+ if (ret < 0) return ret;
649
+ }
650
+ break;
651
+ case 2:
652
+ { int ret = slice_from_s(z, 1, s_3); /* <-, line 118 */
653
+ if (ret < 0) return ret;
654
+ }
655
+ break;
656
+ case 3:
657
+ { int ret = slice_from_s(z, 1, s_4); /* <-, line 119 */
658
+ if (ret < 0) return ret;
659
+ }
660
+ break;
661
+ }
662
+ return 1;
663
+ }
664
+
665
+ static int r_case_other(struct SN_env * z) {
666
+ int among_var;
667
+ z->ket = z->c; /* [, line 124 */
668
+ if (z->c - 3 <= z->lb || z->p[z->c - 1] != 108) return 0;
669
+ among_var = find_among_b(z, a_6, 6); /* substring, line 124 */
670
+ if (!(among_var)) return 0;
671
+ z->bra = z->c; /* ], line 124 */
672
+ { int ret = r_R1(z);
673
+ if (ret == 0) return 0; /* call R1, line 124 */
674
+ if (ret < 0) return ret;
675
+ }
676
+ switch(among_var) {
677
+ case 0: return 0;
678
+ case 1:
679
+ { int ret = slice_del(z); /* delete, line 125 */
680
+ if (ret < 0) return ret;
681
+ }
682
+ break;
683
+ case 2:
684
+ { int ret = slice_del(z); /* delete, line 126 */
685
+ if (ret < 0) return ret;
686
+ }
687
+ break;
688
+ case 3:
689
+ { int ret = slice_from_s(z, 1, s_5); /* <-, line 127 */
690
+ if (ret < 0) return ret;
691
+ }
692
+ break;
693
+ case 4:
694
+ { int ret = slice_from_s(z, 1, s_6); /* <-, line 128 */
695
+ if (ret < 0) return ret;
696
+ }
697
+ break;
698
+ }
699
+ return 1;
700
+ }
701
+
702
+ static int r_factive(struct SN_env * z) {
703
+ int among_var;
704
+ z->ket = z->c; /* [, line 133 */
705
+ if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 161 && z->p[z->c - 1] != 169)) return 0;
706
+ among_var = find_among_b(z, a_7, 2); /* substring, line 133 */
707
+ if (!(among_var)) return 0;
708
+ z->bra = z->c; /* ], line 133 */
709
+ { int ret = r_R1(z);
710
+ if (ret == 0) return 0; /* call R1, line 133 */
711
+ if (ret < 0) return ret;
712
+ }
713
+ switch(among_var) {
714
+ case 0: return 0;
715
+ case 1:
716
+ { int ret = r_double(z);
717
+ if (ret == 0) return 0; /* call double, line 134 */
718
+ if (ret < 0) return ret;
719
+ }
720
+ break;
721
+ case 2:
722
+ { int ret = r_double(z);
723
+ if (ret == 0) return 0; /* call double, line 135 */
724
+ if (ret < 0) return ret;
725
+ }
726
+ break;
727
+ }
728
+ { int ret = slice_del(z); /* delete, line 137 */
729
+ if (ret < 0) return ret;
730
+ }
731
+ { int ret = r_undouble(z);
732
+ if (ret == 0) return 0; /* call undouble, line 138 */
733
+ if (ret < 0) return ret;
734
+ }
735
+ return 1;
736
+ }
737
+
738
+ static int r_plural(struct SN_env * z) {
739
+ int among_var;
740
+ z->ket = z->c; /* [, line 142 */
741
+ if (z->c <= z->lb || z->p[z->c - 1] != 107) return 0;
742
+ among_var = find_among_b(z, a_8, 7); /* substring, line 142 */
743
+ if (!(among_var)) return 0;
744
+ z->bra = z->c; /* ], line 142 */
745
+ { int ret = r_R1(z);
746
+ if (ret == 0) return 0; /* call R1, line 142 */
747
+ if (ret < 0) return ret;
748
+ }
749
+ switch(among_var) {
750
+ case 0: return 0;
751
+ case 1:
752
+ { int ret = slice_from_s(z, 1, s_7); /* <-, line 143 */
753
+ if (ret < 0) return ret;
754
+ }
755
+ break;
756
+ case 2:
757
+ { int ret = slice_from_s(z, 1, s_8); /* <-, line 144 */
758
+ if (ret < 0) return ret;
759
+ }
760
+ break;
761
+ case 3:
762
+ { int ret = slice_del(z); /* delete, line 145 */
763
+ if (ret < 0) return ret;
764
+ }
765
+ break;
766
+ case 4:
767
+ { int ret = slice_del(z); /* delete, line 146 */
768
+ if (ret < 0) return ret;
769
+ }
770
+ break;
771
+ case 5:
772
+ { int ret = slice_del(z); /* delete, line 147 */
773
+ if (ret < 0) return ret;
774
+ }
775
+ break;
776
+ case 6:
777
+ { int ret = slice_del(z); /* delete, line 148 */
778
+ if (ret < 0) return ret;
779
+ }
780
+ break;
781
+ case 7:
782
+ { int ret = slice_del(z); /* delete, line 149 */
783
+ if (ret < 0) return ret;
784
+ }
785
+ break;
786
+ }
787
+ return 1;
788
+ }
789
+
790
+ static int r_owned(struct SN_env * z) {
791
+ int among_var;
792
+ z->ket = z->c; /* [, line 154 */
793
+ if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 105 && z->p[z->c - 1] != 169)) return 0;
794
+ among_var = find_among_b(z, a_9, 12); /* substring, line 154 */
795
+ if (!(among_var)) return 0;
796
+ z->bra = z->c; /* ], line 154 */
797
+ { int ret = r_R1(z);
798
+ if (ret == 0) return 0; /* call R1, line 154 */
799
+ if (ret < 0) return ret;
800
+ }
801
+ switch(among_var) {
802
+ case 0: return 0;
803
+ case 1:
804
+ { int ret = slice_del(z); /* delete, line 155 */
805
+ if (ret < 0) return ret;
806
+ }
807
+ break;
808
+ case 2:
809
+ { int ret = slice_from_s(z, 1, s_9); /* <-, line 156 */
810
+ if (ret < 0) return ret;
811
+ }
812
+ break;
813
+ case 3:
814
+ { int ret = slice_from_s(z, 1, s_10); /* <-, line 157 */
815
+ if (ret < 0) return ret;
816
+ }
817
+ break;
818
+ case 4:
819
+ { int ret = slice_del(z); /* delete, line 158 */
820
+ if (ret < 0) return ret;
821
+ }
822
+ break;
823
+ case 5:
824
+ { int ret = slice_from_s(z, 1, s_11); /* <-, line 159 */
825
+ if (ret < 0) return ret;
826
+ }
827
+ break;
828
+ case 6:
829
+ { int ret = slice_from_s(z, 1, s_12); /* <-, line 160 */
830
+ if (ret < 0) return ret;
831
+ }
832
+ break;
833
+ case 7:
834
+ { int ret = slice_del(z); /* delete, line 161 */
835
+ if (ret < 0) return ret;
836
+ }
837
+ break;
838
+ case 8:
839
+ { int ret = slice_from_s(z, 1, s_13); /* <-, line 162 */
840
+ if (ret < 0) return ret;
841
+ }
842
+ break;
843
+ case 9:
844
+ { int ret = slice_del(z); /* delete, line 163 */
845
+ if (ret < 0) return ret;
846
+ }
847
+ break;
848
+ }
849
+ return 1;
850
+ }
851
+
852
+ static int r_sing_owner(struct SN_env * z) {
853
+ int among_var;
854
+ z->ket = z->c; /* [, line 168 */
855
+ among_var = find_among_b(z, a_10, 31); /* substring, line 168 */
856
+ if (!(among_var)) return 0;
857
+ z->bra = z->c; /* ], line 168 */
858
+ { int ret = r_R1(z);
859
+ if (ret == 0) return 0; /* call R1, line 168 */
860
+ if (ret < 0) return ret;
861
+ }
862
+ switch(among_var) {
863
+ case 0: return 0;
864
+ case 1:
865
+ { int ret = slice_del(z); /* delete, line 169 */
866
+ if (ret < 0) return ret;
867
+ }
868
+ break;
869
+ case 2:
870
+ { int ret = slice_from_s(z, 1, s_14); /* <-, line 170 */
871
+ if (ret < 0) return ret;
872
+ }
873
+ break;
874
+ case 3:
875
+ { int ret = slice_from_s(z, 1, s_15); /* <-, line 171 */
876
+ if (ret < 0) return ret;
877
+ }
878
+ break;
879
+ case 4:
880
+ { int ret = slice_del(z); /* delete, line 172 */
881
+ if (ret < 0) return ret;
882
+ }
883
+ break;
884
+ case 5:
885
+ { int ret = slice_from_s(z, 1, s_16); /* <-, line 173 */
886
+ if (ret < 0) return ret;
887
+ }
888
+ break;
889
+ case 6:
890
+ { int ret = slice_from_s(z, 1, s_17); /* <-, line 174 */
891
+ if (ret < 0) return ret;
892
+ }
893
+ break;
894
+ case 7:
895
+ { int ret = slice_del(z); /* delete, line 175 */
896
+ if (ret < 0) return ret;
897
+ }
898
+ break;
899
+ case 8:
900
+ { int ret = slice_del(z); /* delete, line 176 */
901
+ if (ret < 0) return ret;
902
+ }
903
+ break;
904
+ case 9:
905
+ { int ret = slice_del(z); /* delete, line 177 */
906
+ if (ret < 0) return ret;
907
+ }
908
+ break;
909
+ case 10:
910
+ { int ret = slice_from_s(z, 1, s_18); /* <-, line 178 */
911
+ if (ret < 0) return ret;
912
+ }
913
+ break;
914
+ case 11:
915
+ { int ret = slice_from_s(z, 1, s_19); /* <-, line 179 */
916
+ if (ret < 0) return ret;
917
+ }
918
+ break;
919
+ case 12:
920
+ { int ret = slice_del(z); /* delete, line 180 */
921
+ if (ret < 0) return ret;
922
+ }
923
+ break;
924
+ case 13:
925
+ { int ret = slice_del(z); /* delete, line 181 */
926
+ if (ret < 0) return ret;
927
+ }
928
+ break;
929
+ case 14:
930
+ { int ret = slice_from_s(z, 1, s_20); /* <-, line 182 */
931
+ if (ret < 0) return ret;
932
+ }
933
+ break;
934
+ case 15:
935
+ { int ret = slice_from_s(z, 1, s_21); /* <-, line 183 */
936
+ if (ret < 0) return ret;
937
+ }
938
+ break;
939
+ case 16:
940
+ { int ret = slice_del(z); /* delete, line 184 */
941
+ if (ret < 0) return ret;
942
+ }
943
+ break;
944
+ case 17:
945
+ { int ret = slice_del(z); /* delete, line 185 */
946
+ if (ret < 0) return ret;
947
+ }
948
+ break;
949
+ case 18:
950
+ { int ret = slice_del(z); /* delete, line 186 */
951
+ if (ret < 0) return ret;
952
+ }
953
+ break;
954
+ case 19:
955
+ { int ret = slice_from_s(z, 1, s_22); /* <-, line 187 */
956
+ if (ret < 0) return ret;
957
+ }
958
+ break;
959
+ case 20:
960
+ { int ret = slice_from_s(z, 1, s_23); /* <-, line 188 */
961
+ if (ret < 0) return ret;
962
+ }
963
+ break;
964
+ }
965
+ return 1;
966
+ }
967
+
968
+ static int r_plur_owner(struct SN_env * z) {
969
+ int among_var;
970
+ z->ket = z->c; /* [, line 193 */
971
+ if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((10768 >> (z->p[z->c - 1] & 0x1f)) & 1)) return 0;
972
+ among_var = find_among_b(z, a_11, 42); /* substring, line 193 */
973
+ if (!(among_var)) return 0;
974
+ z->bra = z->c; /* ], line 193 */
975
+ { int ret = r_R1(z);
976
+ if (ret == 0) return 0; /* call R1, line 193 */
977
+ if (ret < 0) return ret;
978
+ }
979
+ switch(among_var) {
980
+ case 0: return 0;
981
+ case 1:
982
+ { int ret = slice_del(z); /* delete, line 194 */
983
+ if (ret < 0) return ret;
984
+ }
985
+ break;
986
+ case 2:
987
+ { int ret = slice_from_s(z, 1, s_24); /* <-, line 195 */
988
+ if (ret < 0) return ret;
989
+ }
990
+ break;
991
+ case 3:
992
+ { int ret = slice_from_s(z, 1, s_25); /* <-, line 196 */
993
+ if (ret < 0) return ret;
994
+ }
995
+ break;
996
+ case 4:
997
+ { int ret = slice_del(z); /* delete, line 197 */
998
+ if (ret < 0) return ret;
999
+ }
1000
+ break;
1001
+ case 5:
1002
+ { int ret = slice_del(z); /* delete, line 198 */
1003
+ if (ret < 0) return ret;
1004
+ }
1005
+ break;
1006
+ case 6:
1007
+ { int ret = slice_del(z); /* delete, line 199 */
1008
+ if (ret < 0) return ret;
1009
+ }
1010
+ break;
1011
+ case 7:
1012
+ { int ret = slice_from_s(z, 1, s_26); /* <-, line 200 */
1013
+ if (ret < 0) return ret;
1014
+ }
1015
+ break;
1016
+ case 8:
1017
+ { int ret = slice_from_s(z, 1, s_27); /* <-, line 201 */
1018
+ if (ret < 0) return ret;
1019
+ }
1020
+ break;
1021
+ case 9:
1022
+ { int ret = slice_del(z); /* delete, line 202 */
1023
+ if (ret < 0) return ret;
1024
+ }
1025
+ break;
1026
+ case 10:
1027
+ { int ret = slice_del(z); /* delete, line 203 */
1028
+ if (ret < 0) return ret;
1029
+ }
1030
+ break;
1031
+ case 11:
1032
+ { int ret = slice_del(z); /* delete, line 204 */
1033
+ if (ret < 0) return ret;
1034
+ }
1035
+ break;
1036
+ case 12:
1037
+ { int ret = slice_from_s(z, 1, s_28); /* <-, line 205 */
1038
+ if (ret < 0) return ret;
1039
+ }
1040
+ break;
1041
+ case 13:
1042
+ { int ret = slice_from_s(z, 1, s_29); /* <-, line 206 */
1043
+ if (ret < 0) return ret;
1044
+ }
1045
+ break;
1046
+ case 14:
1047
+ { int ret = slice_del(z); /* delete, line 207 */
1048
+ if (ret < 0) return ret;
1049
+ }
1050
+ break;
1051
+ case 15:
1052
+ { int ret = slice_del(z); /* delete, line 208 */
1053
+ if (ret < 0) return ret;
1054
+ }
1055
+ break;
1056
+ case 16:
1057
+ { int ret = slice_del(z); /* delete, line 209 */
1058
+ if (ret < 0) return ret;
1059
+ }
1060
+ break;
1061
+ case 17:
1062
+ { int ret = slice_del(z); /* delete, line 210 */
1063
+ if (ret < 0) return ret;
1064
+ }
1065
+ break;
1066
+ case 18:
1067
+ { int ret = slice_from_s(z, 1, s_30); /* <-, line 211 */
1068
+ if (ret < 0) return ret;
1069
+ }
1070
+ break;
1071
+ case 19:
1072
+ { int ret = slice_from_s(z, 1, s_31); /* <-, line 212 */
1073
+ if (ret < 0) return ret;
1074
+ }
1075
+ break;
1076
+ case 20:
1077
+ { int ret = slice_del(z); /* delete, line 214 */
1078
+ if (ret < 0) return ret;
1079
+ }
1080
+ break;
1081
+ case 21:
1082
+ { int ret = slice_del(z); /* delete, line 215 */
1083
+ if (ret < 0) return ret;
1084
+ }
1085
+ break;
1086
+ case 22:
1087
+ { int ret = slice_from_s(z, 1, s_32); /* <-, line 216 */
1088
+ if (ret < 0) return ret;
1089
+ }
1090
+ break;
1091
+ case 23:
1092
+ { int ret = slice_from_s(z, 1, s_33); /* <-, line 217 */
1093
+ if (ret < 0) return ret;
1094
+ }
1095
+ break;
1096
+ case 24:
1097
+ { int ret = slice_del(z); /* delete, line 218 */
1098
+ if (ret < 0) return ret;
1099
+ }
1100
+ break;
1101
+ case 25:
1102
+ { int ret = slice_del(z); /* delete, line 219 */
1103
+ if (ret < 0) return ret;
1104
+ }
1105
+ break;
1106
+ case 26:
1107
+ { int ret = slice_del(z); /* delete, line 220 */
1108
+ if (ret < 0) return ret;
1109
+ }
1110
+ break;
1111
+ case 27:
1112
+ { int ret = slice_from_s(z, 1, s_34); /* <-, line 221 */
1113
+ if (ret < 0) return ret;
1114
+ }
1115
+ break;
1116
+ case 28:
1117
+ { int ret = slice_from_s(z, 1, s_35); /* <-, line 222 */
1118
+ if (ret < 0) return ret;
1119
+ }
1120
+ break;
1121
+ case 29:
1122
+ { int ret = slice_del(z); /* delete, line 223 */
1123
+ if (ret < 0) return ret;
1124
+ }
1125
+ break;
1126
+ }
1127
+ return 1;
1128
+ }
1129
+
1130
+ extern int hungarian_UTF_8_stem(struct SN_env * z) {
1131
+ { int c1 = z->c; /* do, line 229 */
1132
+ { int ret = r_mark_regions(z);
1133
+ if (ret == 0) goto lab0; /* call mark_regions, line 229 */
1134
+ if (ret < 0) return ret;
1135
+ }
1136
+ lab0:
1137
+ z->c = c1;
1138
+ }
1139
+ z->lb = z->c; z->c = z->l; /* backwards, line 230 */
1140
+
1141
+ { int m2 = z->l - z->c; (void)m2; /* do, line 231 */
1142
+ { int ret = r_instrum(z);
1143
+ if (ret == 0) goto lab1; /* call instrum, line 231 */
1144
+ if (ret < 0) return ret;
1145
+ }
1146
+ lab1:
1147
+ z->c = z->l - m2;
1148
+ }
1149
+ { int m3 = z->l - z->c; (void)m3; /* do, line 232 */
1150
+ { int ret = r_case(z);
1151
+ if (ret == 0) goto lab2; /* call case, line 232 */
1152
+ if (ret < 0) return ret;
1153
+ }
1154
+ lab2:
1155
+ z->c = z->l - m3;
1156
+ }
1157
+ { int m4 = z->l - z->c; (void)m4; /* do, line 233 */
1158
+ { int ret = r_case_special(z);
1159
+ if (ret == 0) goto lab3; /* call case_special, line 233 */
1160
+ if (ret < 0) return ret;
1161
+ }
1162
+ lab3:
1163
+ z->c = z->l - m4;
1164
+ }
1165
+ { int m5 = z->l - z->c; (void)m5; /* do, line 234 */
1166
+ { int ret = r_case_other(z);
1167
+ if (ret == 0) goto lab4; /* call case_other, line 234 */
1168
+ if (ret < 0) return ret;
1169
+ }
1170
+ lab4:
1171
+ z->c = z->l - m5;
1172
+ }
1173
+ { int m6 = z->l - z->c; (void)m6; /* do, line 235 */
1174
+ { int ret = r_factive(z);
1175
+ if (ret == 0) goto lab5; /* call factive, line 235 */
1176
+ if (ret < 0) return ret;
1177
+ }
1178
+ lab5:
1179
+ z->c = z->l - m6;
1180
+ }
1181
+ { int m7 = z->l - z->c; (void)m7; /* do, line 236 */
1182
+ { int ret = r_owned(z);
1183
+ if (ret == 0) goto lab6; /* call owned, line 236 */
1184
+ if (ret < 0) return ret;
1185
+ }
1186
+ lab6:
1187
+ z->c = z->l - m7;
1188
+ }
1189
+ { int m8 = z->l - z->c; (void)m8; /* do, line 237 */
1190
+ { int ret = r_sing_owner(z);
1191
+ if (ret == 0) goto lab7; /* call sing_owner, line 237 */
1192
+ if (ret < 0) return ret;
1193
+ }
1194
+ lab7:
1195
+ z->c = z->l - m8;
1196
+ }
1197
+ { int m9 = z->l - z->c; (void)m9; /* do, line 238 */
1198
+ { int ret = r_plur_owner(z);
1199
+ if (ret == 0) goto lab8; /* call plur_owner, line 238 */
1200
+ if (ret < 0) return ret;
1201
+ }
1202
+ lab8:
1203
+ z->c = z->l - m9;
1204
+ }
1205
+ { int m10 = z->l - z->c; (void)m10; /* do, line 239 */
1206
+ { int ret = r_plural(z);
1207
+ if (ret == 0) goto lab9; /* call plural, line 239 */
1208
+ if (ret < 0) return ret;
1209
+ }
1210
+ lab9:
1211
+ z->c = z->l - m10;
1212
+ }
1213
+ z->c = z->lb;
1214
+ return 1;
1215
+ }
1216
+
1217
+ extern struct SN_env * hungarian_UTF_8_create_env(void) { return SN_create_env(0, 1, 0); }
1218
+
1219
+ extern void hungarian_UTF_8_close_env(struct SN_env * z) { SN_close_env(z, 0); }
1220
+