stemmer4r 0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. data/CVS/Entries +5 -0
  2. data/CVS/Repository +1 -0
  3. data/CVS/Root +1 -0
  4. data/LICENSE +20 -0
  5. data/README +9 -0
  6. data/ext/CVS/Entries +1 -0
  7. data/ext/CVS/Repository +1 -0
  8. data/ext/CVS/Root +1 -0
  9. data/ext/stemmer4r/CVS/Entries +4 -0
  10. data/ext/stemmer4r/CVS/Repository +1 -0
  11. data/ext/stemmer4r/CVS/Root +1 -0
  12. data/ext/stemmer4r/depend +14 -0
  13. data/ext/stemmer4r/extconf.rb +8 -0
  14. data/ext/stemmer4r/libstemmer_c/CVS/Entries +7 -0
  15. data/ext/stemmer4r/libstemmer_c/CVS/Repository +1 -0
  16. data/ext/stemmer4r/libstemmer_c/CVS/Root +1 -0
  17. data/ext/stemmer4r/libstemmer_c/MANIFEST +39 -0
  18. data/ext/stemmer4r/libstemmer_c/Makefile +5 -0
  19. data/ext/stemmer4r/libstemmer_c/include/CVS/Entries +2 -0
  20. data/ext/stemmer4r/libstemmer_c/include/CVS/Repository +1 -0
  21. data/ext/stemmer4r/libstemmer_c/include/CVS/Root +1 -0
  22. data/ext/stemmer4r/libstemmer_c/include/libstemmer.h +63 -0
  23. data/ext/stemmer4r/libstemmer_c/libstemmer/CVS/Entries +3 -0
  24. data/ext/stemmer4r/libstemmer_c/libstemmer/CVS/Repository +1 -0
  25. data/ext/stemmer4r/libstemmer_c/libstemmer/CVS/Root +1 -0
  26. data/ext/stemmer4r/libstemmer_c/libstemmer/libstemmer.c +78 -0
  27. data/ext/stemmer4r/libstemmer_c/libstemmer/modules.h +96 -0
  28. data/ext/stemmer4r/libstemmer_c/mkinc.mak +42 -0
  29. data/ext/stemmer4r/libstemmer_c/runtime/CVS/Entries +5 -0
  30. data/ext/stemmer4r/libstemmer_c/runtime/CVS/Repository +1 -0
  31. data/ext/stemmer4r/libstemmer_c/runtime/CVS/Root +1 -0
  32. data/ext/stemmer4r/libstemmer_c/runtime/api.c +69 -0
  33. data/ext/stemmer4r/libstemmer_c/runtime/api.h +27 -0
  34. data/ext/stemmer4r/libstemmer_c/runtime/header.h +56 -0
  35. data/ext/stemmer4r/libstemmer_c/runtime/utilities.c +403 -0
  36. data/ext/stemmer4r/libstemmer_c/src_c/CVS/Entries +33 -0
  37. data/ext/stemmer4r/libstemmer_c/src_c/CVS/Repository +1 -0
  38. data/ext/stemmer4r/libstemmer_c/src_c/CVS/Root +1 -0
  39. data/ext/stemmer4r/libstemmer_c/src_c/stem_danish.c +330 -0
  40. data/ext/stemmer4r/libstemmer_c/src_c/stem_danish.h +16 -0
  41. data/ext/stemmer4r/libstemmer_c/src_c/stem_dutch.c +635 -0
  42. data/ext/stemmer4r/libstemmer_c/src_c/stem_dutch.h +16 -0
  43. data/ext/stemmer4r/libstemmer_c/src_c/stem_english.c +1109 -0
  44. data/ext/stemmer4r/libstemmer_c/src_c/stem_english.h +16 -0
  45. data/ext/stemmer4r/libstemmer_c/src_c/stem_finnish.c +792 -0
  46. data/ext/stemmer4r/libstemmer_c/src_c/stem_finnish.h +16 -0
  47. data/ext/stemmer4r/libstemmer_c/src_c/stem_french.c +1276 -0
  48. data/ext/stemmer4r/libstemmer_c/src_c/stem_french.h +16 -0
  49. data/ext/stemmer4r/libstemmer_c/src_c/stem_german.c +504 -0
  50. data/ext/stemmer4r/libstemmer_c/src_c/stem_german.h +16 -0
  51. data/ext/stemmer4r/libstemmer_c/src_c/stem_german2.c +549 -0
  52. data/ext/stemmer4r/libstemmer_c/src_c/stem_german2.h +16 -0
  53. data/ext/stemmer4r/libstemmer_c/src_c/stem_italian.c +1087 -0
  54. data/ext/stemmer4r/libstemmer_c/src_c/stem_italian.h +16 -0
  55. data/ext/stemmer4r/libstemmer_c/src_c/stem_kraaij_pohlmann.c +1780 -0
  56. data/ext/stemmer4r/libstemmer_c/src_c/stem_kraaij_pohlmann.h +16 -0
  57. data/ext/stemmer4r/libstemmer_c/src_c/stem_lovins.c +1752 -0
  58. data/ext/stemmer4r/libstemmer_c/src_c/stem_lovins.h +16 -0
  59. data/ext/stemmer4r/libstemmer_c/src_c/stem_norwegian.c +279 -0
  60. data/ext/stemmer4r/libstemmer_c/src_c/stem_norwegian.h +16 -0
  61. data/ext/stemmer4r/libstemmer_c/src_c/stem_porter.c +776 -0
  62. data/ext/stemmer4r/libstemmer_c/src_c/stem_porter.h +16 -0
  63. data/ext/stemmer4r/libstemmer_c/src_c/stem_portuguese.c +1027 -0
  64. data/ext/stemmer4r/libstemmer_c/src_c/stem_portuguese.h +16 -0
  65. data/ext/stemmer4r/libstemmer_c/src_c/stem_russian.c +701 -0
  66. data/ext/stemmer4r/libstemmer_c/src_c/stem_russian.h +16 -0
  67. data/ext/stemmer4r/libstemmer_c/src_c/stem_spanish.c +1109 -0
  68. data/ext/stemmer4r/libstemmer_c/src_c/stem_spanish.h +16 -0
  69. data/ext/stemmer4r/libstemmer_c/src_c/stem_swedish.c +299 -0
  70. data/ext/stemmer4r/libstemmer_c/src_c/stem_swedish.h +16 -0
  71. data/ext/stemmer4r/stemmer4r.c +146 -0
  72. data/stemmer4r.gemspec +23 -0
  73. data/test/CVS/Entries +2 -0
  74. data/test/CVS/Repository +1 -0
  75. data/test/CVS/Root +1 -0
  76. data/test/test.rb +31 -0
  77. data/test/tests/CVS/Entries +12 -0
  78. data/test/tests/CVS/Repository +1 -0
  79. data/test/tests/CVS/Root +1 -0
  80. data/test/tests/da/CVS/Entries +3 -0
  81. data/test/tests/da/CVS/Repository +1 -0
  82. data/test/tests/da/CVS/Root +1 -0
  83. data/test/tests/da/output.txt +23829 -0
  84. data/test/tests/da/voc.txt +23829 -0
  85. data/test/tests/de/CVS/Entries +3 -0
  86. data/test/tests/de/CVS/Repository +1 -0
  87. data/test/tests/de/CVS/Root +1 -0
  88. data/test/tests/de/output.txt +35033 -0
  89. data/test/tests/de/voc.txt +35033 -0
  90. data/test/tests/en/CVS/Entries +3 -0
  91. data/test/tests/en/CVS/Repository +1 -0
  92. data/test/tests/en/CVS/Root +1 -0
  93. data/test/tests/en/output.txt +29400 -0
  94. data/test/tests/en/voc.txt +29400 -0
  95. data/test/tests/es/CVS/Entries +3 -0
  96. data/test/tests/es/CVS/Repository +1 -0
  97. data/test/tests/es/CVS/Root +1 -0
  98. data/test/tests/es/output.txt +28390 -0
  99. data/test/tests/es/voc.txt +28390 -0
  100. data/test/tests/fi/CVS/Entries +3 -0
  101. data/test/tests/fi/CVS/Repository +1 -0
  102. data/test/tests/fi/CVS/Root +1 -0
  103. data/test/tests/fi/output.txt +50000 -0
  104. data/test/tests/fi/voc.txt +50000 -0
  105. data/test/tests/fr/CVS/Entries +3 -0
  106. data/test/tests/fr/CVS/Repository +1 -0
  107. data/test/tests/fr/CVS/Root +1 -0
  108. data/test/tests/fr/output.txt +20403 -0
  109. data/test/tests/fr/voc.txt +20403 -0
  110. data/test/tests/it/CVS/Entries +3 -0
  111. data/test/tests/it/CVS/Repository +1 -0
  112. data/test/tests/it/CVS/Root +1 -0
  113. data/test/tests/it/output.txt +35494 -0
  114. data/test/tests/it/voc.txt +35494 -0
  115. data/test/tests/nl/CVS/Entries +3 -0
  116. data/test/tests/nl/CVS/Repository +1 -0
  117. data/test/tests/nl/CVS/Root +1 -0
  118. data/test/tests/nl/output.txt +45669 -0
  119. data/test/tests/nl/voc.txt +45669 -0
  120. data/test/tests/no/CVS/Entries +3 -0
  121. data/test/tests/no/CVS/Repository +1 -0
  122. data/test/tests/no/CVS/Root +1 -0
  123. data/test/tests/no/output.txt +20628 -0
  124. data/test/tests/no/voc.txt +20628 -0
  125. data/test/tests/pt/CVS/Entries +3 -0
  126. data/test/tests/pt/CVS/Repository +1 -0
  127. data/test/tests/pt/CVS/Root +1 -0
  128. data/test/tests/pt/output.txt +32016 -0
  129. data/test/tests/pt/voc.txt +32016 -0
  130. data/test/tests/ru/CVS/Entries +3 -0
  131. data/test/tests/ru/CVS/Repository +1 -0
  132. data/test/tests/ru/CVS/Root +1 -0
  133. data/test/tests/ru/output.txt +49673 -0
  134. data/test/tests/ru/voc.txt +49673 -0
  135. data/test/tests/sv/CVS/Entries +3 -0
  136. data/test/tests/sv/CVS/Repository +1 -0
  137. data/test/tests/sv/CVS/Root +1 -0
  138. data/test/tests/sv/output.txt +30623 -0
  139. data/test/tests/sv/voc.txt +30623 -0
  140. metadata +221 -0
@@ -0,0 +1,1752 @@
1
+
2
+ /* This file was generated automatically by the Snowball to ANSI C compiler */
3
+
4
+ #include "../runtime/header.h"
5
+
6
+ extern int lovins_stem(struct SN_env * z);
7
+ static int r_respell(struct SN_env * z);
8
+ static int r_undouble(struct SN_env * z);
9
+ static int r_endings(struct SN_env * z);
10
+ static int r_CC(struct SN_env * z);
11
+ static int r_BB(struct SN_env * z);
12
+ static int r_AA(struct SN_env * z);
13
+ static int r_Z(struct SN_env * z);
14
+ static int r_Y(struct SN_env * z);
15
+ static int r_X(struct SN_env * z);
16
+ static int r_W(struct SN_env * z);
17
+ static int r_V(struct SN_env * z);
18
+ static int r_U(struct SN_env * z);
19
+ static int r_T(struct SN_env * z);
20
+ static int r_S(struct SN_env * z);
21
+ static int r_R(struct SN_env * z);
22
+ static int r_Q(struct SN_env * z);
23
+ static int r_P(struct SN_env * z);
24
+ static int r_O(struct SN_env * z);
25
+ static int r_N(struct SN_env * z);
26
+ static int r_M(struct SN_env * z);
27
+ static int r_L(struct SN_env * z);
28
+ static int r_K(struct SN_env * z);
29
+ static int r_J(struct SN_env * z);
30
+ static int r_I(struct SN_env * z);
31
+ static int r_H(struct SN_env * z);
32
+ static int r_G(struct SN_env * z);
33
+ static int r_F(struct SN_env * z);
34
+ static int r_E(struct SN_env * z);
35
+ static int r_D(struct SN_env * z);
36
+ static int r_C(struct SN_env * z);
37
+ static int r_B(struct SN_env * z);
38
+ static int r_A(struct SN_env * z);
39
+
40
+ extern struct SN_env * lovins_create_env(void);
41
+ extern void lovins_close_env(struct SN_env * z);
42
+
43
+ static symbol s_0_0[1] = { 'd' };
44
+ static symbol s_0_1[1] = { 'f' };
45
+ static symbol s_0_2[2] = { 'p', 'h' };
46
+ static symbol s_0_3[2] = { 't', 'h' };
47
+ static symbol s_0_4[1] = { 'l' };
48
+ static symbol s_0_5[2] = { 'e', 'r' };
49
+ static symbol s_0_6[2] = { 'o', 'r' };
50
+ static symbol s_0_7[2] = { 'e', 's' };
51
+ static symbol s_0_8[1] = { 't' };
52
+
53
+ static struct among a_0[9] =
54
+ {
55
+ /* 0 */ { 1, s_0_0, -1, -1, 0},
56
+ /* 1 */ { 1, s_0_1, -1, -1, 0},
57
+ /* 2 */ { 2, s_0_2, -1, -1, 0},
58
+ /* 3 */ { 2, s_0_3, -1, -1, 0},
59
+ /* 4 */ { 1, s_0_4, -1, -1, 0},
60
+ /* 5 */ { 2, s_0_5, -1, -1, 0},
61
+ /* 6 */ { 2, s_0_6, -1, -1, 0},
62
+ /* 7 */ { 2, s_0_7, -1, -1, 0},
63
+ /* 8 */ { 1, s_0_8, -1, -1, 0}
64
+ };
65
+
66
+ static symbol s_1_0[2] = { 's', '\'' };
67
+ static symbol s_1_1[1] = { 'a' };
68
+ static symbol s_1_2[2] = { 'i', 'a' };
69
+ static symbol s_1_3[3] = { 'a', 't', 'a' };
70
+ static symbol s_1_4[2] = { 'i', 'c' };
71
+ static symbol s_1_5[3] = { 'a', 'i', 'c' };
72
+ static symbol s_1_6[5] = { 'a', 'l', 'l', 'i', 'c' };
73
+ static symbol s_1_7[4] = { 'a', 'r', 'i', 'c' };
74
+ static symbol s_1_8[4] = { 'a', 't', 'i', 'c' };
75
+ static symbol s_1_9[4] = { 'i', 't', 'i', 'c' };
76
+ static symbol s_1_10[5] = { 'a', 'n', 't', 'i', 'c' };
77
+ static symbol s_1_11[5] = { 'i', 's', 't', 'i', 'c' };
78
+ static symbol s_1_12[7] = { 'a', 'l', 'i', 's', 't', 'i', 'c' };
79
+ static symbol s_1_13[7] = { 'a', 'r', 'i', 's', 't', 'i', 'c' };
80
+ static symbol s_1_14[7] = { 'i', 'v', 'i', 's', 't', 'i', 'c' };
81
+ static symbol s_1_15[2] = { 'e', 'd' };
82
+ static symbol s_1_16[5] = { 'a', 'n', 'c', 'e', 'd' };
83
+ static symbol s_1_17[5] = { 'e', 'n', 'c', 'e', 'd' };
84
+ static symbol s_1_18[5] = { 'i', 's', 'h', 'e', 'd' };
85
+ static symbol s_1_19[3] = { 'i', 'e', 'd' };
86
+ static symbol s_1_20[4] = { 'e', 'n', 'e', 'd' };
87
+ static symbol s_1_21[5] = { 'i', 'o', 'n', 'e', 'd' };
88
+ static symbol s_1_22[4] = { 'a', 't', 'e', 'd' };
89
+ static symbol s_1_23[5] = { 'e', 'n', 't', 'e', 'd' };
90
+ static symbol s_1_24[4] = { 'i', 'z', 'e', 'd' };
91
+ static symbol s_1_25[6] = { 'a', 'r', 'i', 'z', 'e', 'd' };
92
+ static symbol s_1_26[3] = { 'o', 'i', 'd' };
93
+ static symbol s_1_27[5] = { 'a', 'r', 'o', 'i', 'd' };
94
+ static symbol s_1_28[4] = { 'h', 'o', 'o', 'd' };
95
+ static symbol s_1_29[5] = { 'e', 'h', 'o', 'o', 'd' };
96
+ static symbol s_1_30[5] = { 'i', 'h', 'o', 'o', 'd' };
97
+ static symbol s_1_31[7] = { 'e', 'l', 'i', 'h', 'o', 'o', 'd' };
98
+ static symbol s_1_32[4] = { 'w', 'a', 'r', 'd' };
99
+ static symbol s_1_33[1] = { 'e' };
100
+ static symbol s_1_34[2] = { 'a', 'e' };
101
+ static symbol s_1_35[4] = { 'a', 'n', 'c', 'e' };
102
+ static symbol s_1_36[6] = { 'i', 'c', 'a', 'n', 'c', 'e' };
103
+ static symbol s_1_37[4] = { 'e', 'n', 'c', 'e' };
104
+ static symbol s_1_38[3] = { 'i', 'd', 'e' };
105
+ static symbol s_1_39[5] = { 'i', 'c', 'i', 'd', 'e' };
106
+ static symbol s_1_40[5] = { 'o', 't', 'i', 'd', 'e' };
107
+ static symbol s_1_41[3] = { 'a', 'g', 'e' };
108
+ static symbol s_1_42[4] = { 'a', 'b', 'l', 'e' };
109
+ static symbol s_1_43[6] = { 'a', 't', 'a', 'b', 'l', 'e' };
110
+ static symbol s_1_44[6] = { 'i', 'z', 'a', 'b', 'l', 'e' };
111
+ static symbol s_1_45[8] = { 'a', 'r', 'i', 'z', 'a', 'b', 'l', 'e' };
112
+ static symbol s_1_46[4] = { 'i', 'b', 'l', 'e' };
113
+ static symbol s_1_47[7] = { 'e', 'n', 'c', 'i', 'b', 'l', 'e' };
114
+ static symbol s_1_48[3] = { 'e', 'n', 'e' };
115
+ static symbol s_1_49[3] = { 'i', 'n', 'e' };
116
+ static symbol s_1_50[5] = { 'i', 'd', 'i', 'n', 'e' };
117
+ static symbol s_1_51[3] = { 'o', 'n', 'e' };
118
+ static symbol s_1_52[5] = { 'a', 't', 'u', 'r', 'e' };
119
+ static symbol s_1_53[6] = { 'e', 'a', 't', 'u', 'r', 'e' };
120
+ static symbol s_1_54[3] = { 'e', 's', 'e' };
121
+ static symbol s_1_55[4] = { 'w', 'i', 's', 'e' };
122
+ static symbol s_1_56[3] = { 'a', 't', 'e' };
123
+ static symbol s_1_57[7] = { 'e', 'n', 't', 'i', 'a', 't', 'e' };
124
+ static symbol s_1_58[5] = { 'i', 'n', 'a', 't', 'e' };
125
+ static symbol s_1_59[6] = { 'i', 'o', 'n', 'a', 't', 'e' };
126
+ static symbol s_1_60[3] = { 'i', 't', 'e' };
127
+ static symbol s_1_61[3] = { 'i', 'v', 'e' };
128
+ static symbol s_1_62[5] = { 'a', 't', 'i', 'v', 'e' };
129
+ static symbol s_1_63[3] = { 'i', 'z', 'e' };
130
+ static symbol s_1_64[5] = { 'a', 'l', 'i', 'z', 'e' };
131
+ static symbol s_1_65[7] = { 'i', 'c', 'a', 'l', 'i', 'z', 'e' };
132
+ static symbol s_1_66[6] = { 'i', 'a', 'l', 'i', 'z', 'e' };
133
+ static symbol s_1_67[9] = { 'e', 'n', 't', 'i', 'a', 'l', 'i', 'z', 'e' };
134
+ static symbol s_1_68[8] = { 'i', 'o', 'n', 'a', 'l', 'i', 'z', 'e' };
135
+ static symbol s_1_69[5] = { 'a', 'r', 'i', 'z', 'e' };
136
+ static symbol s_1_70[3] = { 'i', 'n', 'g' };
137
+ static symbol s_1_71[6] = { 'a', 'n', 'c', 'i', 'n', 'g' };
138
+ static symbol s_1_72[6] = { 'e', 'n', 'c', 'i', 'n', 'g' };
139
+ static symbol s_1_73[5] = { 'a', 'g', 'i', 'n', 'g' };
140
+ static symbol s_1_74[5] = { 'e', 'n', 'i', 'n', 'g' };
141
+ static symbol s_1_75[6] = { 'i', 'o', 'n', 'i', 'n', 'g' };
142
+ static symbol s_1_76[5] = { 'a', 't', 'i', 'n', 'g' };
143
+ static symbol s_1_77[6] = { 'e', 'n', 't', 'i', 'n', 'g' };
144
+ static symbol s_1_78[4] = { 'y', 'i', 'n', 'g' };
145
+ static symbol s_1_79[5] = { 'i', 'z', 'i', 'n', 'g' };
146
+ static symbol s_1_80[7] = { 'a', 'r', 'i', 'z', 'i', 'n', 'g' };
147
+ static symbol s_1_81[3] = { 'i', 's', 'h' };
148
+ static symbol s_1_82[4] = { 'y', 'i', 's', 'h' };
149
+ static symbol s_1_83[1] = { 'i' };
150
+ static symbol s_1_84[2] = { 'a', 'l' };
151
+ static symbol s_1_85[4] = { 'i', 'c', 'a', 'l' };
152
+ static symbol s_1_86[5] = { 'a', 'i', 'c', 'a', 'l' };
153
+ static symbol s_1_87[7] = { 'i', 's', 't', 'i', 'c', 'a', 'l' };
154
+ static symbol s_1_88[5] = { 'o', 'i', 'd', 'a', 'l' };
155
+ static symbol s_1_89[3] = { 'e', 'a', 'l' };
156
+ static symbol s_1_90[3] = { 'i', 'a', 'l' };
157
+ static symbol s_1_91[6] = { 'a', 'n', 'c', 'i', 'a', 'l' };
158
+ static symbol s_1_92[5] = { 'a', 'r', 'i', 'a', 'l' };
159
+ static symbol s_1_93[6] = { 'e', 'n', 't', 'i', 'a', 'l' };
160
+ static symbol s_1_94[5] = { 'i', 'o', 'n', 'a', 'l' };
161
+ static symbol s_1_95[7] = { 'a', 't', 'i', 'o', 'n', 'a', 'l' };
162
+ static symbol s_1_96[9] = { 'i', 'z', 'a', 't', 'i', 'o', 'n', 'a', 'l' };
163
+ static symbol s_1_97[5] = { 'e', 'n', 't', 'a', 'l' };
164
+ static symbol s_1_98[3] = { 'f', 'u', 'l' };
165
+ static symbol s_1_99[4] = { 'e', 'f', 'u', 'l' };
166
+ static symbol s_1_100[4] = { 'i', 'f', 'u', 'l' };
167
+ static symbol s_1_101[2] = { 'y', 'l' };
168
+ static symbol s_1_102[3] = { 'i', 's', 'm' };
169
+ static symbol s_1_103[5] = { 'i', 'c', 'i', 's', 'm' };
170
+ static symbol s_1_104[6] = { 'o', 'i', 'd', 'i', 's', 'm' };
171
+ static symbol s_1_105[5] = { 'a', 'l', 'i', 's', 'm' };
172
+ static symbol s_1_106[7] = { 'i', 'c', 'a', 'l', 'i', 's', 'm' };
173
+ static symbol s_1_107[8] = { 'i', 'o', 'n', 'a', 'l', 'i', 's', 'm' };
174
+ static symbol s_1_108[5] = { 'i', 'n', 'i', 's', 'm' };
175
+ static symbol s_1_109[7] = { 'a', 't', 'i', 'v', 'i', 's', 'm' };
176
+ static symbol s_1_110[2] = { 'u', 'm' };
177
+ static symbol s_1_111[3] = { 'i', 'u', 'm' };
178
+ static symbol s_1_112[3] = { 'i', 'a', 'n' };
179
+ static symbol s_1_113[5] = { 'i', 'c', 'i', 'a', 'n' };
180
+ static symbol s_1_114[2] = { 'e', 'n' };
181
+ static symbol s_1_115[4] = { 'o', 'g', 'e', 'n' };
182
+ static symbol s_1_116[2] = { 'o', 'n' };
183
+ static symbol s_1_117[3] = { 'i', 'o', 'n' };
184
+ static symbol s_1_118[5] = { 'a', 't', 'i', 'o', 'n' };
185
+ static symbol s_1_119[7] = { 'i', 'c', 'a', 't', 'i', 'o', 'n' };
186
+ static symbol s_1_120[9] = { 'e', 'n', 't', 'i', 'a', 't', 'i', 'o', 'n' };
187
+ static symbol s_1_121[7] = { 'i', 'n', 'a', 't', 'i', 'o', 'n' };
188
+ static symbol s_1_122[7] = { 'i', 's', 'a', 't', 'i', 'o', 'n' };
189
+ static symbol s_1_123[9] = { 'a', 'r', 'i', 's', 'a', 't', 'i', 'o', 'n' };
190
+ static symbol s_1_124[8] = { 'e', 'n', 't', 'a', 't', 'i', 'o', 'n' };
191
+ static symbol s_1_125[7] = { 'i', 'z', 'a', 't', 'i', 'o', 'n' };
192
+ static symbol s_1_126[9] = { 'a', 'r', 'i', 'z', 'a', 't', 'i', 'o', 'n' };
193
+ static symbol s_1_127[6] = { 'a', 'c', 't', 'i', 'o', 'n' };
194
+ static symbol s_1_128[1] = { 'o' };
195
+ static symbol s_1_129[2] = { 'a', 'r' };
196
+ static symbol s_1_130[3] = { 'e', 'a', 'r' };
197
+ static symbol s_1_131[3] = { 'i', 'e', 'r' };
198
+ static symbol s_1_132[6] = { 'a', 'r', 'i', 's', 'e', 'r' };
199
+ static symbol s_1_133[4] = { 'i', 'z', 'e', 'r' };
200
+ static symbol s_1_134[6] = { 'a', 'r', 'i', 'z', 'e', 'r' };
201
+ static symbol s_1_135[2] = { 'o', 'r' };
202
+ static symbol s_1_136[4] = { 'a', 't', 'o', 'r' };
203
+ static symbol s_1_137[1] = { 's' };
204
+ static symbol s_1_138[2] = { '\'', 's' };
205
+ static symbol s_1_139[2] = { 'a', 's' };
206
+ static symbol s_1_140[3] = { 'i', 'c', 's' };
207
+ static symbol s_1_141[6] = { 'i', 's', 't', 'i', 'c', 's' };
208
+ static symbol s_1_142[2] = { 'e', 's' };
209
+ static symbol s_1_143[5] = { 'a', 'n', 'c', 'e', 's' };
210
+ static symbol s_1_144[5] = { 'e', 'n', 'c', 'e', 's' };
211
+ static symbol s_1_145[4] = { 'i', 'd', 'e', 's' };
212
+ static symbol s_1_146[5] = { 'o', 'i', 'd', 'e', 's' };
213
+ static symbol s_1_147[4] = { 'a', 'g', 'e', 's' };
214
+ static symbol s_1_148[3] = { 'i', 'e', 's' };
215
+ static symbol s_1_149[5] = { 'a', 'c', 'i', 'e', 's' };
216
+ static symbol s_1_150[6] = { 'a', 'n', 'c', 'i', 'e', 's' };
217
+ static symbol s_1_151[6] = { 'e', 'n', 'c', 'i', 'e', 's' };
218
+ static symbol s_1_152[5] = { 'a', 'r', 'i', 'e', 's' };
219
+ static symbol s_1_153[5] = { 'i', 't', 'i', 'e', 's' };
220
+ static symbol s_1_154[7] = { 'a', 'l', 'i', 't', 'i', 'e', 's' };
221
+ static symbol s_1_155[7] = { 'i', 'v', 'i', 't', 'i', 'e', 's' };
222
+ static symbol s_1_156[4] = { 'i', 'n', 'e', 's' };
223
+ static symbol s_1_157[6] = { 'n', 'e', 's', 's', 'e', 's' };
224
+ static symbol s_1_158[4] = { 'a', 't', 'e', 's' };
225
+ static symbol s_1_159[6] = { 'a', 't', 'i', 'v', 'e', 's' };
226
+ static symbol s_1_160[4] = { 'i', 'n', 'g', 's' };
227
+ static symbol s_1_161[2] = { 'i', 's' };
228
+ static symbol s_1_162[3] = { 'a', 'l', 's' };
229
+ static symbol s_1_163[4] = { 'i', 'a', 'l', 's' };
230
+ static symbol s_1_164[7] = { 'e', 'n', 't', 'i', 'a', 'l', 's' };
231
+ static symbol s_1_165[6] = { 'i', 'o', 'n', 'a', 'l', 's' };
232
+ static symbol s_1_166[4] = { 'i', 's', 'm', 's' };
233
+ static symbol s_1_167[4] = { 'i', 'a', 'n', 's' };
234
+ static symbol s_1_168[6] = { 'i', 'c', 'i', 'a', 'n', 's' };
235
+ static symbol s_1_169[4] = { 'i', 'o', 'n', 's' };
236
+ static symbol s_1_170[6] = { 'a', 't', 'i', 'o', 'n', 's' };
237
+ static symbol s_1_171[10] = { 'a', 'r', 'i', 's', 'a', 't', 'i', 'o', 'n', 's' };
238
+ static symbol s_1_172[9] = { 'e', 'n', 't', 'a', 't', 'i', 'o', 'n', 's' };
239
+ static symbol s_1_173[8] = { 'i', 'z', 'a', 't', 'i', 'o', 'n', 's' };
240
+ static symbol s_1_174[10] = { 'a', 'r', 'i', 'z', 'a', 't', 'i', 'o', 'n', 's' };
241
+ static symbol s_1_175[3] = { 'a', 'r', 's' };
242
+ static symbol s_1_176[4] = { 'i', 'e', 'r', 's' };
243
+ static symbol s_1_177[5] = { 'i', 'z', 'e', 'r', 's' };
244
+ static symbol s_1_178[5] = { 'a', 't', 'o', 'r', 's' };
245
+ static symbol s_1_179[4] = { 'l', 'e', 's', 's' };
246
+ static symbol s_1_180[5] = { 'e', 'l', 'e', 's', 's' };
247
+ static symbol s_1_181[4] = { 'n', 'e', 's', 's' };
248
+ static symbol s_1_182[5] = { 'e', 'n', 'e', 's', 's' };
249
+ static symbol s_1_183[8] = { 'a', 'b', 'l', 'e', 'n', 'e', 's', 's' };
250
+ static symbol s_1_184[9] = { 'e', 'a', 'b', 'l', 'e', 'n', 'e', 's', 's' };
251
+ static symbol s_1_185[8] = { 'i', 'b', 'l', 'e', 'n', 'e', 's', 's' };
252
+ static symbol s_1_186[7] = { 'a', 't', 'e', 'n', 'e', 's', 's' };
253
+ static symbol s_1_187[7] = { 'i', 't', 'e', 'n', 'e', 's', 's' };
254
+ static symbol s_1_188[7] = { 'i', 'v', 'e', 'n', 'e', 's', 's' };
255
+ static symbol s_1_189[9] = { 'a', 't', 'i', 'v', 'e', 'n', 'e', 's', 's' };
256
+ static symbol s_1_190[7] = { 'i', 'n', 'g', 'n', 'e', 's', 's' };
257
+ static symbol s_1_191[7] = { 'i', 's', 'h', 'n', 'e', 's', 's' };
258
+ static symbol s_1_192[5] = { 'i', 'n', 'e', 's', 's' };
259
+ static symbol s_1_193[7] = { 'a', 'r', 'i', 'n', 'e', 's', 's' };
260
+ static symbol s_1_194[6] = { 'a', 'l', 'n', 'e', 's', 's' };
261
+ static symbol s_1_195[8] = { 'i', 'c', 'a', 'l', 'n', 'e', 's', 's' };
262
+ static symbol s_1_196[10] = { 'a', 'n', 't', 'i', 'a', 'l', 'n', 'e', 's', 's' };
263
+ static symbol s_1_197[10] = { 'e', 'n', 't', 'i', 'a', 'l', 'n', 'e', 's', 's' };
264
+ static symbol s_1_198[9] = { 'i', 'o', 'n', 'a', 'l', 'n', 'e', 's', 's' };
265
+ static symbol s_1_199[7] = { 'f', 'u', 'l', 'n', 'e', 's', 's' };
266
+ static symbol s_1_200[8] = { 'l', 'e', 's', 's', 'n', 'e', 's', 's' };
267
+ static symbol s_1_201[7] = { 'o', 'u', 's', 'n', 'e', 's', 's' };
268
+ static symbol s_1_202[8] = { 'e', 'o', 'u', 's', 'n', 'e', 's', 's' };
269
+ static symbol s_1_203[8] = { 'i', 'o', 'u', 's', 'n', 'e', 's', 's' };
270
+ static symbol s_1_204[9] = { 'i', 't', 'o', 'u', 's', 'n', 'e', 's', 's' };
271
+ static symbol s_1_205[7] = { 'e', 'n', 't', 'n', 'e', 's', 's' };
272
+ static symbol s_1_206[4] = { 'a', 'n', 't', 's' };
273
+ static symbol s_1_207[4] = { 'i', 's', 't', 's' };
274
+ static symbol s_1_208[6] = { 'i', 'c', 'i', 's', 't', 's' };
275
+ static symbol s_1_209[2] = { 'u', 's' };
276
+ static symbol s_1_210[3] = { 'o', 'u', 's' };
277
+ static symbol s_1_211[4] = { 'e', 'o', 'u', 's' };
278
+ static symbol s_1_212[6] = { 'a', 'c', 'e', 'o', 'u', 's' };
279
+ static symbol s_1_213[9] = { 'a', 'n', 't', 'a', 'n', 'e', 'o', 'u', 's' };
280
+ static symbol s_1_214[4] = { 'i', 'o', 'u', 's' };
281
+ static symbol s_1_215[6] = { 'a', 'c', 'i', 'o', 'u', 's' };
282
+ static symbol s_1_216[5] = { 'i', 't', 'o', 'u', 's' };
283
+ static symbol s_1_217[3] = { 'a', 'n', 't' };
284
+ static symbol s_1_218[5] = { 'i', 'c', 'a', 'n', 't' };
285
+ static symbol s_1_219[3] = { 'e', 'n', 't' };
286
+ static symbol s_1_220[5] = { 'e', 'm', 'e', 'n', 't' };
287
+ static symbol s_1_221[7] = { 'i', 'z', 'e', 'm', 'e', 'n', 't' };
288
+ static symbol s_1_222[3] = { 'i', 's', 't' };
289
+ static symbol s_1_223[5] = { 'i', 'c', 'i', 's', 't' };
290
+ static symbol s_1_224[5] = { 'a', 'l', 'i', 's', 't' };
291
+ static symbol s_1_225[7] = { 'i', 'c', 'a', 'l', 'i', 's', 't' };
292
+ static symbol s_1_226[6] = { 'i', 'a', 'l', 'i', 's', 't' };
293
+ static symbol s_1_227[6] = { 'i', 'o', 'n', 'i', 's', 't' };
294
+ static symbol s_1_228[6] = { 'e', 'n', 't', 'i', 's', 't' };
295
+ static symbol s_1_229[1] = { 'y' };
296
+ static symbol s_1_230[3] = { 'a', 'c', 'y' };
297
+ static symbol s_1_231[4] = { 'a', 'n', 'c', 'y' };
298
+ static symbol s_1_232[4] = { 'e', 'n', 'c', 'y' };
299
+ static symbol s_1_233[2] = { 'l', 'y' };
300
+ static symbol s_1_234[4] = { 'e', 'a', 'l', 'y' };
301
+ static symbol s_1_235[4] = { 'a', 'b', 'l', 'y' };
302
+ static symbol s_1_236[4] = { 'i', 'b', 'l', 'y' };
303
+ static symbol s_1_237[4] = { 'e', 'd', 'l', 'y' };
304
+ static symbol s_1_238[5] = { 'i', 'e', 'd', 'l', 'y' };
305
+ static symbol s_1_239[3] = { 'e', 'l', 'y' };
306
+ static symbol s_1_240[5] = { 'a', 't', 'e', 'l', 'y' };
307
+ static symbol s_1_241[5] = { 'i', 'v', 'e', 'l', 'y' };
308
+ static symbol s_1_242[7] = { 'a', 't', 'i', 'v', 'e', 'l', 'y' };
309
+ static symbol s_1_243[5] = { 'i', 'n', 'g', 'l', 'y' };
310
+ static symbol s_1_244[7] = { 'a', 't', 'i', 'n', 'g', 'l', 'y' };
311
+ static symbol s_1_245[3] = { 'i', 'l', 'y' };
312
+ static symbol s_1_246[4] = { 'l', 'i', 'l', 'y' };
313
+ static symbol s_1_247[5] = { 'a', 'r', 'i', 'l', 'y' };
314
+ static symbol s_1_248[4] = { 'a', 'l', 'l', 'y' };
315
+ static symbol s_1_249[6] = { 'i', 'c', 'a', 'l', 'l', 'y' };
316
+ static symbol s_1_250[7] = { 'a', 'i', 'c', 'a', 'l', 'l', 'y' };
317
+ static symbol s_1_251[9] = { 'a', 'l', 'l', 'i', 'c', 'a', 'l', 'l', 'y' };
318
+ static symbol s_1_252[9] = { 'i', 's', 't', 'i', 'c', 'a', 'l', 'l', 'y' };
319
+ static symbol s_1_253[11] = { 'a', 'l', 'i', 's', 't', 'i', 'c', 'a', 'l', 'l', 'y' };
320
+ static symbol s_1_254[7] = { 'o', 'i', 'd', 'a', 'l', 'l', 'y' };
321
+ static symbol s_1_255[5] = { 'i', 'a', 'l', 'l', 'y' };
322
+ static symbol s_1_256[8] = { 'e', 'n', 't', 'i', 'a', 'l', 'l', 'y' };
323
+ static symbol s_1_257[7] = { 'i', 'o', 'n', 'a', 'l', 'l', 'y' };
324
+ static symbol s_1_258[9] = { 'a', 't', 'i', 'o', 'n', 'a', 'l', 'l', 'y' };
325
+ static symbol s_1_259[11] = { 'i', 'z', 'a', 't', 'i', 'o', 'n', 'a', 'l', 'l', 'y' };
326
+ static symbol s_1_260[7] = { 'e', 'n', 't', 'a', 'l', 'l', 'y' };
327
+ static symbol s_1_261[5] = { 'f', 'u', 'l', 'l', 'y' };
328
+ static symbol s_1_262[6] = { 'e', 'f', 'u', 'l', 'l', 'y' };
329
+ static symbol s_1_263[6] = { 'i', 'f', 'u', 'l', 'l', 'y' };
330
+ static symbol s_1_264[4] = { 'e', 'n', 'l', 'y' };
331
+ static symbol s_1_265[4] = { 'a', 'r', 'l', 'y' };
332
+ static symbol s_1_266[5] = { 'e', 'a', 'r', 'l', 'y' };
333
+ static symbol s_1_267[6] = { 'l', 'e', 's', 's', 'l', 'y' };
334
+ static symbol s_1_268[5] = { 'o', 'u', 's', 'l', 'y' };
335
+ static symbol s_1_269[6] = { 'e', 'o', 'u', 's', 'l', 'y' };
336
+ static symbol s_1_270[6] = { 'i', 'o', 'u', 's', 'l', 'y' };
337
+ static symbol s_1_271[5] = { 'e', 'n', 't', 'l', 'y' };
338
+ static symbol s_1_272[3] = { 'a', 'r', 'y' };
339
+ static symbol s_1_273[3] = { 'e', 'r', 'y' };
340
+ static symbol s_1_274[7] = { 'i', 'c', 'i', 'a', 'n', 'r', 'y' };
341
+ static symbol s_1_275[5] = { 'a', 't', 'o', 'r', 'y' };
342
+ static symbol s_1_276[3] = { 'i', 't', 'y' };
343
+ static symbol s_1_277[5] = { 'a', 'c', 'i', 't', 'y' };
344
+ static symbol s_1_278[5] = { 'i', 'c', 'i', 't', 'y' };
345
+ static symbol s_1_279[4] = { 'e', 'i', 't', 'y' };
346
+ static symbol s_1_280[5] = { 'a', 'l', 'i', 't', 'y' };
347
+ static symbol s_1_281[7] = { 'i', 'c', 'a', 'l', 'i', 't', 'y' };
348
+ static symbol s_1_282[6] = { 'i', 'a', 'l', 'i', 't', 'y' };
349
+ static symbol s_1_283[9] = { 'a', 'n', 't', 'i', 'a', 'l', 'i', 't', 'y' };
350
+ static symbol s_1_284[9] = { 'e', 'n', 't', 'i', 'a', 'l', 'i', 't', 'y' };
351
+ static symbol s_1_285[8] = { 'i', 'o', 'n', 'a', 'l', 'i', 't', 'y' };
352
+ static symbol s_1_286[5] = { 'e', 'l', 'i', 't', 'y' };
353
+ static symbol s_1_287[7] = { 'a', 'b', 'i', 'l', 'i', 't', 'y' };
354
+ static symbol s_1_288[9] = { 'i', 'z', 'a', 'b', 'i', 'l', 'i', 't', 'y' };
355
+ static symbol s_1_289[11] = { 'a', 'r', 'i', 'z', 'a', 'b', 'i', 'l', 'i', 't', 'y' };
356
+ static symbol s_1_290[7] = { 'i', 'b', 'i', 'l', 'i', 't', 'y' };
357
+ static symbol s_1_291[5] = { 'i', 'n', 'i', 't', 'y' };
358
+ static symbol s_1_292[5] = { 'a', 'r', 'i', 't', 'y' };
359
+ static symbol s_1_293[5] = { 'i', 'v', 'i', 't', 'y' };
360
+
361
+ static struct among a_1[294] =
362
+ {
363
+ /* 0 */ { 2, s_1_0, -1, 1, r_A},
364
+ /* 1 */ { 1, s_1_1, -1, 1, r_A},
365
+ /* 2 */ { 2, s_1_2, 1, 1, r_A},
366
+ /* 3 */ { 3, s_1_3, 1, 1, r_A},
367
+ /* 4 */ { 2, s_1_4, -1, 1, r_A},
368
+ /* 5 */ { 3, s_1_5, 4, 1, r_A},
369
+ /* 6 */ { 5, s_1_6, 4, 1, r_BB},
370
+ /* 7 */ { 4, s_1_7, 4, 1, r_A},
371
+ /* 8 */ { 4, s_1_8, 4, 1, r_B},
372
+ /* 9 */ { 4, s_1_9, 4, 1, r_H},
373
+ /* 10 */ { 5, s_1_10, 4, 1, r_C},
374
+ /* 11 */ { 5, s_1_11, 4, 1, r_A},
375
+ /* 12 */ { 7, s_1_12, 11, 1, r_B},
376
+ /* 13 */ { 7, s_1_13, 11, 1, r_A},
377
+ /* 14 */ { 7, s_1_14, 11, 1, r_A},
378
+ /* 15 */ { 2, s_1_15, -1, 1, r_E},
379
+ /* 16 */ { 5, s_1_16, 15, 1, r_B},
380
+ /* 17 */ { 5, s_1_17, 15, 1, r_A},
381
+ /* 18 */ { 5, s_1_18, 15, 1, r_A},
382
+ /* 19 */ { 3, s_1_19, 15, 1, r_A},
383
+ /* 20 */ { 4, s_1_20, 15, 1, r_E},
384
+ /* 21 */ { 5, s_1_21, 15, 1, r_A},
385
+ /* 22 */ { 4, s_1_22, 15, 1, r_I},
386
+ /* 23 */ { 5, s_1_23, 15, 1, r_C},
387
+ /* 24 */ { 4, s_1_24, 15, 1, r_F},
388
+ /* 25 */ { 6, s_1_25, 24, 1, r_A},
389
+ /* 26 */ { 3, s_1_26, -1, 1, r_A},
390
+ /* 27 */ { 5, s_1_27, 26, 1, r_A},
391
+ /* 28 */ { 4, s_1_28, -1, 1, r_A},
392
+ /* 29 */ { 5, s_1_29, 28, 1, r_A},
393
+ /* 30 */ { 5, s_1_30, 28, 1, r_A},
394
+ /* 31 */ { 7, s_1_31, 30, 1, r_E},
395
+ /* 32 */ { 4, s_1_32, -1, 1, r_A},
396
+ /* 33 */ { 1, s_1_33, -1, 1, r_A},
397
+ /* 34 */ { 2, s_1_34, 33, 1, r_A},
398
+ /* 35 */ { 4, s_1_35, 33, 1, r_B},
399
+ /* 36 */ { 6, s_1_36, 35, 1, r_A},
400
+ /* 37 */ { 4, s_1_37, 33, 1, r_A},
401
+ /* 38 */ { 3, s_1_38, 33, 1, r_L},
402
+ /* 39 */ { 5, s_1_39, 38, 1, r_A},
403
+ /* 40 */ { 5, s_1_40, 38, 1, r_A},
404
+ /* 41 */ { 3, s_1_41, 33, 1, r_B},
405
+ /* 42 */ { 4, s_1_42, 33, 1, r_A},
406
+ /* 43 */ { 6, s_1_43, 42, 1, r_A},
407
+ /* 44 */ { 6, s_1_44, 42, 1, r_E},
408
+ /* 45 */ { 8, s_1_45, 44, 1, r_A},
409
+ /* 46 */ { 4, s_1_46, 33, 1, r_A},
410
+ /* 47 */ { 7, s_1_47, 46, 1, r_A},
411
+ /* 48 */ { 3, s_1_48, 33, 1, r_E},
412
+ /* 49 */ { 3, s_1_49, 33, 1, r_M},
413
+ /* 50 */ { 5, s_1_50, 49, 1, r_I},
414
+ /* 51 */ { 3, s_1_51, 33, 1, r_R},
415
+ /* 52 */ { 5, s_1_52, 33, 1, r_E},
416
+ /* 53 */ { 6, s_1_53, 52, 1, r_Z},
417
+ /* 54 */ { 3, s_1_54, 33, 1, r_A},
418
+ /* 55 */ { 4, s_1_55, 33, 1, r_A},
419
+ /* 56 */ { 3, s_1_56, 33, 1, r_A},
420
+ /* 57 */ { 7, s_1_57, 56, 1, r_A},
421
+ /* 58 */ { 5, s_1_58, 56, 1, r_A},
422
+ /* 59 */ { 6, s_1_59, 56, 1, r_D},
423
+ /* 60 */ { 3, s_1_60, 33, 1, r_AA},
424
+ /* 61 */ { 3, s_1_61, 33, 1, r_A},
425
+ /* 62 */ { 5, s_1_62, 61, 1, r_A},
426
+ /* 63 */ { 3, s_1_63, 33, 1, r_F},
427
+ /* 64 */ { 5, s_1_64, 63, 1, r_A},
428
+ /* 65 */ { 7, s_1_65, 64, 1, r_A},
429
+ /* 66 */ { 6, s_1_66, 64, 1, r_A},
430
+ /* 67 */ { 9, s_1_67, 66, 1, r_A},
431
+ /* 68 */ { 8, s_1_68, 64, 1, r_A},
432
+ /* 69 */ { 5, s_1_69, 63, 1, r_A},
433
+ /* 70 */ { 3, s_1_70, -1, 1, r_N},
434
+ /* 71 */ { 6, s_1_71, 70, 1, r_B},
435
+ /* 72 */ { 6, s_1_72, 70, 1, r_A},
436
+ /* 73 */ { 5, s_1_73, 70, 1, r_B},
437
+ /* 74 */ { 5, s_1_74, 70, 1, r_E},
438
+ /* 75 */ { 6, s_1_75, 70, 1, r_A},
439
+ /* 76 */ { 5, s_1_76, 70, 1, r_I},
440
+ /* 77 */ { 6, s_1_77, 70, 1, r_C},
441
+ /* 78 */ { 4, s_1_78, 70, 1, r_B},
442
+ /* 79 */ { 5, s_1_79, 70, 1, r_F},
443
+ /* 80 */ { 7, s_1_80, 79, 1, r_A},
444
+ /* 81 */ { 3, s_1_81, -1, 1, r_C},
445
+ /* 82 */ { 4, s_1_82, 81, 1, r_A},
446
+ /* 83 */ { 1, s_1_83, -1, 1, r_A},
447
+ /* 84 */ { 2, s_1_84, -1, 1, r_BB},
448
+ /* 85 */ { 4, s_1_85, 84, 1, r_A},
449
+ /* 86 */ { 5, s_1_86, 85, 1, r_A},
450
+ /* 87 */ { 7, s_1_87, 85, 1, r_A},
451
+ /* 88 */ { 5, s_1_88, 84, 1, r_A},
452
+ /* 89 */ { 3, s_1_89, 84, 1, r_Y},
453
+ /* 90 */ { 3, s_1_90, 84, 1, r_A},
454
+ /* 91 */ { 6, s_1_91, 90, 1, r_A},
455
+ /* 92 */ { 5, s_1_92, 90, 1, r_A},
456
+ /* 93 */ { 6, s_1_93, 90, 1, r_A},
457
+ /* 94 */ { 5, s_1_94, 84, 1, r_A},
458
+ /* 95 */ { 7, s_1_95, 94, 1, r_B},
459
+ /* 96 */ { 9, s_1_96, 95, 1, r_A},
460
+ /* 97 */ { 5, s_1_97, 84, 1, r_A},
461
+ /* 98 */ { 3, s_1_98, -1, 1, r_A},
462
+ /* 99 */ { 4, s_1_99, 98, 1, r_A},
463
+ /*100 */ { 4, s_1_100, 98, 1, r_A},
464
+ /*101 */ { 2, s_1_101, -1, 1, r_R},
465
+ /*102 */ { 3, s_1_102, -1, 1, r_B},
466
+ /*103 */ { 5, s_1_103, 102, 1, r_A},
467
+ /*104 */ { 6, s_1_104, 102, 1, r_A},
468
+ /*105 */ { 5, s_1_105, 102, 1, r_B},
469
+ /*106 */ { 7, s_1_106, 105, 1, r_A},
470
+ /*107 */ { 8, s_1_107, 105, 1, r_A},
471
+ /*108 */ { 5, s_1_108, 102, 1, r_J},
472
+ /*109 */ { 7, s_1_109, 102, 1, r_A},
473
+ /*110 */ { 2, s_1_110, -1, 1, r_U},
474
+ /*111 */ { 3, s_1_111, 110, 1, r_A},
475
+ /*112 */ { 3, s_1_112, -1, 1, r_A},
476
+ /*113 */ { 5, s_1_113, 112, 1, r_A},
477
+ /*114 */ { 2, s_1_114, -1, 1, r_F},
478
+ /*115 */ { 4, s_1_115, 114, 1, r_A},
479
+ /*116 */ { 2, s_1_116, -1, 1, r_S},
480
+ /*117 */ { 3, s_1_117, 116, 1, r_Q},
481
+ /*118 */ { 5, s_1_118, 117, 1, r_B},
482
+ /*119 */ { 7, s_1_119, 118, 1, r_G},
483
+ /*120 */ { 9, s_1_120, 118, 1, r_A},
484
+ /*121 */ { 7, s_1_121, 118, 1, r_A},
485
+ /*122 */ { 7, s_1_122, 118, 1, r_A},
486
+ /*123 */ { 9, s_1_123, 122, 1, r_A},
487
+ /*124 */ { 8, s_1_124, 118, 1, r_A},
488
+ /*125 */ { 7, s_1_125, 118, 1, r_F},
489
+ /*126 */ { 9, s_1_126, 125, 1, r_A},
490
+ /*127 */ { 6, s_1_127, 117, 1, r_G},
491
+ /*128 */ { 1, s_1_128, -1, 1, r_A},
492
+ /*129 */ { 2, s_1_129, -1, 1, r_X},
493
+ /*130 */ { 3, s_1_130, 129, 1, r_Y},
494
+ /*131 */ { 3, s_1_131, -1, 1, r_A},
495
+ /*132 */ { 6, s_1_132, -1, 1, r_A},
496
+ /*133 */ { 4, s_1_133, -1, 1, r_F},
497
+ /*134 */ { 6, s_1_134, 133, 1, r_A},
498
+ /*135 */ { 2, s_1_135, -1, 1, r_T},
499
+ /*136 */ { 4, s_1_136, 135, 1, r_A},
500
+ /*137 */ { 1, s_1_137, -1, 1, r_W},
501
+ /*138 */ { 2, s_1_138, 137, 1, r_A},
502
+ /*139 */ { 2, s_1_139, 137, 1, r_B},
503
+ /*140 */ { 3, s_1_140, 137, 1, r_A},
504
+ /*141 */ { 6, s_1_141, 140, 1, r_A},
505
+ /*142 */ { 2, s_1_142, 137, 1, r_E},
506
+ /*143 */ { 5, s_1_143, 142, 1, r_B},
507
+ /*144 */ { 5, s_1_144, 142, 1, r_A},
508
+ /*145 */ { 4, s_1_145, 142, 1, r_L},
509
+ /*146 */ { 5, s_1_146, 145, 1, r_A},
510
+ /*147 */ { 4, s_1_147, 142, 1, r_B},
511
+ /*148 */ { 3, s_1_148, 142, 1, r_P},
512
+ /*149 */ { 5, s_1_149, 148, 1, r_A},
513
+ /*150 */ { 6, s_1_150, 148, 1, r_A},
514
+ /*151 */ { 6, s_1_151, 148, 1, r_A},
515
+ /*152 */ { 5, s_1_152, 148, 1, r_A},
516
+ /*153 */ { 5, s_1_153, 148, 1, r_A},
517
+ /*154 */ { 7, s_1_154, 153, 1, r_A},
518
+ /*155 */ { 7, s_1_155, 153, 1, r_A},
519
+ /*156 */ { 4, s_1_156, 142, 1, r_M},
520
+ /*157 */ { 6, s_1_157, 142, 1, r_A},
521
+ /*158 */ { 4, s_1_158, 142, 1, r_A},
522
+ /*159 */ { 6, s_1_159, 142, 1, r_A},
523
+ /*160 */ { 4, s_1_160, 137, 1, r_N},
524
+ /*161 */ { 2, s_1_161, 137, 1, r_A},
525
+ /*162 */ { 3, s_1_162, 137, 1, r_BB},
526
+ /*163 */ { 4, s_1_163, 162, 1, r_A},
527
+ /*164 */ { 7, s_1_164, 163, 1, r_A},
528
+ /*165 */ { 6, s_1_165, 162, 1, r_A},
529
+ /*166 */ { 4, s_1_166, 137, 1, r_B},
530
+ /*167 */ { 4, s_1_167, 137, 1, r_A},
531
+ /*168 */ { 6, s_1_168, 167, 1, r_A},
532
+ /*169 */ { 4, s_1_169, 137, 1, r_B},
533
+ /*170 */ { 6, s_1_170, 169, 1, r_B},
534
+ /*171 */ { 10, s_1_171, 170, 1, r_A},
535
+ /*172 */ { 9, s_1_172, 170, 1, r_A},
536
+ /*173 */ { 8, s_1_173, 170, 1, r_A},
537
+ /*174 */ { 10, s_1_174, 173, 1, r_A},
538
+ /*175 */ { 3, s_1_175, 137, 1, r_O},
539
+ /*176 */ { 4, s_1_176, 137, 1, r_A},
540
+ /*177 */ { 5, s_1_177, 137, 1, r_F},
541
+ /*178 */ { 5, s_1_178, 137, 1, r_A},
542
+ /*179 */ { 4, s_1_179, 137, 1, r_A},
543
+ /*180 */ { 5, s_1_180, 179, 1, r_A},
544
+ /*181 */ { 4, s_1_181, 137, 1, r_A},
545
+ /*182 */ { 5, s_1_182, 181, 1, r_E},
546
+ /*183 */ { 8, s_1_183, 182, 1, r_A},
547
+ /*184 */ { 9, s_1_184, 183, 1, r_E},
548
+ /*185 */ { 8, s_1_185, 182, 1, r_A},
549
+ /*186 */ { 7, s_1_186, 182, 1, r_A},
550
+ /*187 */ { 7, s_1_187, 182, 1, r_A},
551
+ /*188 */ { 7, s_1_188, 182, 1, r_A},
552
+ /*189 */ { 9, s_1_189, 188, 1, r_A},
553
+ /*190 */ { 7, s_1_190, 181, 1, r_A},
554
+ /*191 */ { 7, s_1_191, 181, 1, r_A},
555
+ /*192 */ { 5, s_1_192, 181, 1, r_A},
556
+ /*193 */ { 7, s_1_193, 192, 1, r_E},
557
+ /*194 */ { 6, s_1_194, 181, 1, r_A},
558
+ /*195 */ { 8, s_1_195, 194, 1, r_A},
559
+ /*196 */ { 10, s_1_196, 194, 1, r_A},
560
+ /*197 */ { 10, s_1_197, 194, 1, r_A},
561
+ /*198 */ { 9, s_1_198, 194, 1, r_A},
562
+ /*199 */ { 7, s_1_199, 181, 1, r_A},
563
+ /*200 */ { 8, s_1_200, 181, 1, r_A},
564
+ /*201 */ { 7, s_1_201, 181, 1, r_A},
565
+ /*202 */ { 8, s_1_202, 201, 1, r_A},
566
+ /*203 */ { 8, s_1_203, 201, 1, r_A},
567
+ /*204 */ { 9, s_1_204, 201, 1, r_A},
568
+ /*205 */ { 7, s_1_205, 181, 1, r_A},
569
+ /*206 */ { 4, s_1_206, 137, 1, r_B},
570
+ /*207 */ { 4, s_1_207, 137, 1, r_A},
571
+ /*208 */ { 6, s_1_208, 207, 1, r_A},
572
+ /*209 */ { 2, s_1_209, 137, 1, r_V},
573
+ /*210 */ { 3, s_1_210, 209, 1, r_A},
574
+ /*211 */ { 4, s_1_211, 210, 1, r_A},
575
+ /*212 */ { 6, s_1_212, 211, 1, r_A},
576
+ /*213 */ { 9, s_1_213, 211, 1, r_A},
577
+ /*214 */ { 4, s_1_214, 210, 1, r_A},
578
+ /*215 */ { 6, s_1_215, 214, 1, r_B},
579
+ /*216 */ { 5, s_1_216, 210, 1, r_A},
580
+ /*217 */ { 3, s_1_217, -1, 1, r_B},
581
+ /*218 */ { 5, s_1_218, 217, 1, r_A},
582
+ /*219 */ { 3, s_1_219, -1, 1, r_C},
583
+ /*220 */ { 5, s_1_220, 219, 1, r_A},
584
+ /*221 */ { 7, s_1_221, 220, 1, r_A},
585
+ /*222 */ { 3, s_1_222, -1, 1, r_A},
586
+ /*223 */ { 5, s_1_223, 222, 1, r_A},
587
+ /*224 */ { 5, s_1_224, 222, 1, r_A},
588
+ /*225 */ { 7, s_1_225, 224, 1, r_A},
589
+ /*226 */ { 6, s_1_226, 224, 1, r_A},
590
+ /*227 */ { 6, s_1_227, 222, 1, r_A},
591
+ /*228 */ { 6, s_1_228, 222, 1, r_A},
592
+ /*229 */ { 1, s_1_229, -1, 1, r_B},
593
+ /*230 */ { 3, s_1_230, 229, 1, r_A},
594
+ /*231 */ { 4, s_1_231, 229, 1, r_B},
595
+ /*232 */ { 4, s_1_232, 229, 1, r_A},
596
+ /*233 */ { 2, s_1_233, 229, 1, r_B},
597
+ /*234 */ { 4, s_1_234, 233, 1, r_Y},
598
+ /*235 */ { 4, s_1_235, 233, 1, r_A},
599
+ /*236 */ { 4, s_1_236, 233, 1, r_A},
600
+ /*237 */ { 4, s_1_237, 233, 1, r_E},
601
+ /*238 */ { 5, s_1_238, 237, 1, r_A},
602
+ /*239 */ { 3, s_1_239, 233, 1, r_E},
603
+ /*240 */ { 5, s_1_240, 239, 1, r_A},
604
+ /*241 */ { 5, s_1_241, 239, 1, r_A},
605
+ /*242 */ { 7, s_1_242, 241, 1, r_A},
606
+ /*243 */ { 5, s_1_243, 233, 1, r_B},
607
+ /*244 */ { 7, s_1_244, 243, 1, r_A},
608
+ /*245 */ { 3, s_1_245, 233, 1, r_A},
609
+ /*246 */ { 4, s_1_246, 245, 1, r_A},
610
+ /*247 */ { 5, s_1_247, 245, 1, r_A},
611
+ /*248 */ { 4, s_1_248, 233, 1, r_B},
612
+ /*249 */ { 6, s_1_249, 248, 1, r_A},
613
+ /*250 */ { 7, s_1_250, 249, 1, r_A},
614
+ /*251 */ { 9, s_1_251, 249, 1, r_C},
615
+ /*252 */ { 9, s_1_252, 249, 1, r_A},
616
+ /*253 */ { 11, s_1_253, 252, 1, r_B},
617
+ /*254 */ { 7, s_1_254, 248, 1, r_A},
618
+ /*255 */ { 5, s_1_255, 248, 1, r_A},
619
+ /*256 */ { 8, s_1_256, 255, 1, r_A},
620
+ /*257 */ { 7, s_1_257, 248, 1, r_A},
621
+ /*258 */ { 9, s_1_258, 257, 1, r_B},
622
+ /*259 */ { 11, s_1_259, 258, 1, r_B},
623
+ /*260 */ { 7, s_1_260, 248, 1, r_A},
624
+ /*261 */ { 5, s_1_261, 233, 1, r_A},
625
+ /*262 */ { 6, s_1_262, 261, 1, r_A},
626
+ /*263 */ { 6, s_1_263, 261, 1, r_A},
627
+ /*264 */ { 4, s_1_264, 233, 1, r_E},
628
+ /*265 */ { 4, s_1_265, 233, 1, r_K},
629
+ /*266 */ { 5, s_1_266, 265, 1, r_Y},
630
+ /*267 */ { 6, s_1_267, 233, 1, r_A},
631
+ /*268 */ { 5, s_1_268, 233, 1, r_A},
632
+ /*269 */ { 6, s_1_269, 268, 1, r_A},
633
+ /*270 */ { 6, s_1_270, 268, 1, r_A},
634
+ /*271 */ { 5, s_1_271, 233, 1, r_A},
635
+ /*272 */ { 3, s_1_272, 229, 1, r_F},
636
+ /*273 */ { 3, s_1_273, 229, 1, r_E},
637
+ /*274 */ { 7, s_1_274, 229, 1, r_A},
638
+ /*275 */ { 5, s_1_275, 229, 1, r_A},
639
+ /*276 */ { 3, s_1_276, 229, 1, r_A},
640
+ /*277 */ { 5, s_1_277, 276, 1, r_A},
641
+ /*278 */ { 5, s_1_278, 276, 1, r_A},
642
+ /*279 */ { 4, s_1_279, 276, 1, r_A},
643
+ /*280 */ { 5, s_1_280, 276, 1, r_A},
644
+ /*281 */ { 7, s_1_281, 280, 1, r_A},
645
+ /*282 */ { 6, s_1_282, 280, 1, r_A},
646
+ /*283 */ { 9, s_1_283, 282, 1, r_A},
647
+ /*284 */ { 9, s_1_284, 282, 1, r_A},
648
+ /*285 */ { 8, s_1_285, 280, 1, r_A},
649
+ /*286 */ { 5, s_1_286, 276, 1, r_A},
650
+ /*287 */ { 7, s_1_287, 276, 1, r_A},
651
+ /*288 */ { 9, s_1_288, 287, 1, r_A},
652
+ /*289 */ { 11, s_1_289, 288, 1, r_A},
653
+ /*290 */ { 7, s_1_290, 276, 1, r_A},
654
+ /*291 */ { 5, s_1_291, 276, 1, r_CC},
655
+ /*292 */ { 5, s_1_292, 276, 1, r_B},
656
+ /*293 */ { 5, s_1_293, 276, 1, r_A}
657
+ };
658
+
659
+ static symbol s_2_0[2] = { 'b', 'b' };
660
+ static symbol s_2_1[2] = { 'd', 'd' };
661
+ static symbol s_2_2[2] = { 'g', 'g' };
662
+ static symbol s_2_3[2] = { 'l', 'l' };
663
+ static symbol s_2_4[2] = { 'm', 'm' };
664
+ static symbol s_2_5[2] = { 'n', 'n' };
665
+ static symbol s_2_6[2] = { 'p', 'p' };
666
+ static symbol s_2_7[2] = { 'r', 'r' };
667
+ static symbol s_2_8[2] = { 's', 's' };
668
+ static symbol s_2_9[2] = { 't', 't' };
669
+
670
+ static struct among a_2[10] =
671
+ {
672
+ /* 0 */ { 2, s_2_0, -1, -1, 0},
673
+ /* 1 */ { 2, s_2_1, -1, -1, 0},
674
+ /* 2 */ { 2, s_2_2, -1, -1, 0},
675
+ /* 3 */ { 2, s_2_3, -1, -1, 0},
676
+ /* 4 */ { 2, s_2_4, -1, -1, 0},
677
+ /* 5 */ { 2, s_2_5, -1, -1, 0},
678
+ /* 6 */ { 2, s_2_6, -1, -1, 0},
679
+ /* 7 */ { 2, s_2_7, -1, -1, 0},
680
+ /* 8 */ { 2, s_2_8, -1, -1, 0},
681
+ /* 9 */ { 2, s_2_9, -1, -1, 0}
682
+ };
683
+
684
+ static symbol s_3_0[3] = { 'u', 'a', 'd' };
685
+ static symbol s_3_1[3] = { 'v', 'a', 'd' };
686
+ static symbol s_3_2[3] = { 'c', 'i', 'd' };
687
+ static symbol s_3_3[3] = { 'l', 'i', 'd' };
688
+ static symbol s_3_4[4] = { 'e', 'r', 'i', 'd' };
689
+ static symbol s_3_5[4] = { 'p', 'a', 'n', 'd' };
690
+ static symbol s_3_6[3] = { 'e', 'n', 'd' };
691
+ static symbol s_3_7[3] = { 'o', 'n', 'd' };
692
+ static symbol s_3_8[3] = { 'l', 'u', 'd' };
693
+ static symbol s_3_9[3] = { 'r', 'u', 'd' };
694
+ static symbol s_3_10[2] = { 'u', 'l' };
695
+ static symbol s_3_11[3] = { 'h', 'e', 'r' };
696
+ static symbol s_3_12[4] = { 'm', 'e', 't', 'r' };
697
+ static symbol s_3_13[4] = { 'i', 's', 't', 'r' };
698
+ static symbol s_3_14[3] = { 'u', 'r', 's' };
699
+ static symbol s_3_15[3] = { 'u', 'c', 't' };
700
+ static symbol s_3_16[2] = { 'e', 't' };
701
+ static symbol s_3_17[3] = { 'm', 'i', 't' };
702
+ static symbol s_3_18[3] = { 'e', 'n', 't' };
703
+ static symbol s_3_19[4] = { 'u', 'm', 'p', 't' };
704
+ static symbol s_3_20[3] = { 'r', 'p', 't' };
705
+ static symbol s_3_21[3] = { 'e', 'r', 't' };
706
+ static symbol s_3_22[2] = { 'y', 't' };
707
+ static symbol s_3_23[3] = { 'i', 'e', 'v' };
708
+ static symbol s_3_24[3] = { 'o', 'l', 'v' };
709
+ static symbol s_3_25[2] = { 'a', 'x' };
710
+ static symbol s_3_26[2] = { 'e', 'x' };
711
+ static symbol s_3_27[3] = { 'b', 'e', 'x' };
712
+ static symbol s_3_28[3] = { 'd', 'e', 'x' };
713
+ static symbol s_3_29[3] = { 'p', 'e', 'x' };
714
+ static symbol s_3_30[3] = { 't', 'e', 'x' };
715
+ static symbol s_3_31[2] = { 'i', 'x' };
716
+ static symbol s_3_32[3] = { 'l', 'u', 'x' };
717
+ static symbol s_3_33[2] = { 'y', 'z' };
718
+
719
+ static struct among a_3[34] =
720
+ {
721
+ /* 0 */ { 3, s_3_0, -1, 18, 0},
722
+ /* 1 */ { 3, s_3_1, -1, 19, 0},
723
+ /* 2 */ { 3, s_3_2, -1, 20, 0},
724
+ /* 3 */ { 3, s_3_3, -1, 21, 0},
725
+ /* 4 */ { 4, s_3_4, -1, 22, 0},
726
+ /* 5 */ { 4, s_3_5, -1, 23, 0},
727
+ /* 6 */ { 3, s_3_6, -1, 24, 0},
728
+ /* 7 */ { 3, s_3_7, -1, 25, 0},
729
+ /* 8 */ { 3, s_3_8, -1, 26, 0},
730
+ /* 9 */ { 3, s_3_9, -1, 27, 0},
731
+ /* 10 */ { 2, s_3_10, -1, 9, 0},
732
+ /* 11 */ { 3, s_3_11, -1, 28, 0},
733
+ /* 12 */ { 4, s_3_12, -1, 7, 0},
734
+ /* 13 */ { 4, s_3_13, -1, 6, 0},
735
+ /* 14 */ { 3, s_3_14, -1, 5, 0},
736
+ /* 15 */ { 3, s_3_15, -1, 2, 0},
737
+ /* 16 */ { 2, s_3_16, -1, 32, 0},
738
+ /* 17 */ { 3, s_3_17, -1, 29, 0},
739
+ /* 18 */ { 3, s_3_18, -1, 30, 0},
740
+ /* 19 */ { 4, s_3_19, -1, 3, 0},
741
+ /* 20 */ { 3, s_3_20, -1, 4, 0},
742
+ /* 21 */ { 3, s_3_21, -1, 31, 0},
743
+ /* 22 */ { 2, s_3_22, -1, 33, 0},
744
+ /* 23 */ { 3, s_3_23, -1, 1, 0},
745
+ /* 24 */ { 3, s_3_24, -1, 8, 0},
746
+ /* 25 */ { 2, s_3_25, -1, 14, 0},
747
+ /* 26 */ { 2, s_3_26, -1, 15, 0},
748
+ /* 27 */ { 3, s_3_27, 26, 10, 0},
749
+ /* 28 */ { 3, s_3_28, 26, 11, 0},
750
+ /* 29 */ { 3, s_3_29, 26, 12, 0},
751
+ /* 30 */ { 3, s_3_30, 26, 13, 0},
752
+ /* 31 */ { 2, s_3_31, -1, 16, 0},
753
+ /* 32 */ { 3, s_3_32, -1, 17, 0},
754
+ /* 33 */ { 2, s_3_33, -1, 34, 0}
755
+ };
756
+
757
+ static symbol s_0[] = { 'e' };
758
+ static symbol s_1[] = { 'e' };
759
+ static symbol s_2[] = { 'f' };
760
+ static symbol s_3[] = { 't' };
761
+ static symbol s_4[] = { 'l', 'l' };
762
+ static symbol s_5[] = { 'o' };
763
+ static symbol s_6[] = { 'e' };
764
+ static symbol s_7[] = { 'a' };
765
+ static symbol s_8[] = { 'e' };
766
+ static symbol s_9[] = { 'l' };
767
+ static symbol s_10[] = { 'i' };
768
+ static symbol s_11[] = { 'e' };
769
+ static symbol s_12[] = { 'u' };
770
+ static symbol s_13[] = { 'u' };
771
+ static symbol s_14[] = { 'x' };
772
+ static symbol s_15[] = { 's' };
773
+ static symbol s_16[] = { 'o' };
774
+ static symbol s_17[] = { 'a' };
775
+ static symbol s_18[] = { 'c' };
776
+ static symbol s_19[] = { 'e' };
777
+ static symbol s_20[] = { 'm' };
778
+ static symbol s_21[] = { 's' };
779
+ static symbol s_22[] = { 'l' };
780
+ static symbol s_23[] = { 'i' };
781
+ static symbol s_24[] = { 'c' };
782
+ static symbol s_25[] = { 'l' };
783
+ static symbol s_26[] = { 'n' };
784
+ static symbol s_27[] = { 'n' };
785
+ static symbol s_28[] = { 'r' };
786
+ static symbol s_29[] = { 'd', 'r' };
787
+ static symbol s_30[] = { 't' };
788
+ static symbol s_31[] = { 't' };
789
+ static symbol s_32[] = { 's' };
790
+ static symbol s_33[] = { 't' };
791
+ static symbol s_34[] = { 'o' };
792
+ static symbol s_35[] = { 'l' };
793
+ static symbol s_36[] = { 'm' };
794
+ static symbol s_37[] = { 'n' };
795
+ static symbol s_38[] = { 'r' };
796
+ static symbol s_39[] = { 'c' };
797
+ static symbol s_40[] = { 's' };
798
+ static symbol s_41[] = { 'u' };
799
+ static symbol s_42[] = { 'l' };
800
+ static symbol s_43[] = { 'i' };
801
+ static symbol s_44[] = { 'e' };
802
+ static symbol s_45[] = { 'u' };
803
+ static symbol s_46[] = { 'i', 'n' };
804
+ static symbol s_47[] = { 'f' };
805
+ static symbol s_48[] = { 'm', 'e', 't' };
806
+ static symbol s_49[] = { 'r', 'y', 's', 't' };
807
+ static symbol s_50[] = { 'l' };
808
+ static symbol s_51[] = { 'i', 'e', 'f' };
809
+ static symbol s_52[] = { 'u', 'c' };
810
+ static symbol s_53[] = { 'u', 'm' };
811
+ static symbol s_54[] = { 'r', 'b' };
812
+ static symbol s_55[] = { 'u', 'r' };
813
+ static symbol s_56[] = { 'i', 's', 't', 'e', 'r' };
814
+ static symbol s_57[] = { 'm', 'e', 't', 'e', 'r' };
815
+ static symbol s_58[] = { 'o', 'l', 'u', 't' };
816
+ static symbol s_59[] = { 'a' };
817
+ static symbol s_60[] = { 'i' };
818
+ static symbol s_61[] = { 'o' };
819
+ static symbol s_62[] = { 'l' };
820
+ static symbol s_63[] = { 'b', 'i', 'c' };
821
+ static symbol s_64[] = { 'd', 'i', 'c' };
822
+ static symbol s_65[] = { 'p', 'i', 'c' };
823
+ static symbol s_66[] = { 't', 'i', 'c' };
824
+ static symbol s_67[] = { 'a', 'c' };
825
+ static symbol s_68[] = { 'e', 'c' };
826
+ static symbol s_69[] = { 'i', 'c' };
827
+ static symbol s_70[] = { 'l', 'u', 'c' };
828
+ static symbol s_71[] = { 'u', 'a', 's' };
829
+ static symbol s_72[] = { 'v', 'a', 's' };
830
+ static symbol s_73[] = { 'c', 'i', 's' };
831
+ static symbol s_74[] = { 'l', 'i', 's' };
832
+ static symbol s_75[] = { 'e', 'r', 'i', 's' };
833
+ static symbol s_76[] = { 'p', 'a', 'n', 's' };
834
+ static symbol s_77[] = { 's' };
835
+ static symbol s_78[] = { 'e', 'n', 's' };
836
+ static symbol s_79[] = { 'o', 'n', 's' };
837
+ static symbol s_80[] = { 'l', 'u', 's' };
838
+ static symbol s_81[] = { 'r', 'u', 's' };
839
+ static symbol s_82[] = { 'p' };
840
+ static symbol s_83[] = { 't' };
841
+ static symbol s_84[] = { 'h', 'e', 's' };
842
+ static symbol s_85[] = { 'm', 'i', 's' };
843
+ static symbol s_86[] = { 'm' };
844
+ static symbol s_87[] = { 'e', 'n', 's' };
845
+ static symbol s_88[] = { 'e', 'r', 's' };
846
+ static symbol s_89[] = { 'n' };
847
+ static symbol s_90[] = { 'e', 's' };
848
+ static symbol s_91[] = { 'y', 's' };
849
+ static symbol s_92[] = { 'y', 's' };
850
+
851
+ static int r_A(struct SN_env * z) {
852
+ { int c = z->c - 2;
853
+ if (z->lb > c || c > z->l) return 0;
854
+ z->c = c; /* hop, line 21 */
855
+ }
856
+ return 1;
857
+ }
858
+
859
+ static int r_B(struct SN_env * z) {
860
+ { int c = z->c - 3;
861
+ if (z->lb > c || c > z->l) return 0;
862
+ z->c = c; /* hop, line 22 */
863
+ }
864
+ return 1;
865
+ }
866
+
867
+ static int r_C(struct SN_env * z) {
868
+ { int c = z->c - 4;
869
+ if (z->lb > c || c > z->l) return 0;
870
+ z->c = c; /* hop, line 23 */
871
+ }
872
+ return 1;
873
+ }
874
+
875
+ static int r_D(struct SN_env * z) {
876
+ { int c = z->c - 5;
877
+ if (z->lb > c || c > z->l) return 0;
878
+ z->c = c; /* hop, line 24 */
879
+ }
880
+ return 1;
881
+ }
882
+
883
+ static int r_E(struct SN_env * z) {
884
+ { int m_test = z->l - z->c; /* test, line 25 */
885
+ { int c = z->c - 2;
886
+ if (z->lb > c || c > z->l) return 0;
887
+ z->c = c; /* hop, line 25 */
888
+ }
889
+ z->c = z->l - m_test;
890
+ }
891
+ { int m = z->l - z->c; (void) m; /* not, line 25 */
892
+ if (!(eq_s_b(z, 1, s_0))) goto lab0;
893
+ return 0;
894
+ lab0:
895
+ z->c = z->l - m;
896
+ }
897
+ return 1;
898
+ }
899
+
900
+ static int r_F(struct SN_env * z) {
901
+ { int m_test = z->l - z->c; /* test, line 26 */
902
+ { int c = z->c - 3;
903
+ if (z->lb > c || c > z->l) return 0;
904
+ z->c = c; /* hop, line 26 */
905
+ }
906
+ z->c = z->l - m_test;
907
+ }
908
+ { int m = z->l - z->c; (void) m; /* not, line 26 */
909
+ if (!(eq_s_b(z, 1, s_1))) goto lab0;
910
+ return 0;
911
+ lab0:
912
+ z->c = z->l - m;
913
+ }
914
+ return 1;
915
+ }
916
+
917
+ static int r_G(struct SN_env * z) {
918
+ { int m_test = z->l - z->c; /* test, line 27 */
919
+ { int c = z->c - 3;
920
+ if (z->lb > c || c > z->l) return 0;
921
+ z->c = c; /* hop, line 27 */
922
+ }
923
+ z->c = z->l - m_test;
924
+ }
925
+ if (!(eq_s_b(z, 1, s_2))) return 0;
926
+ return 1;
927
+ }
928
+
929
+ static int r_H(struct SN_env * z) {
930
+ { int m_test = z->l - z->c; /* test, line 28 */
931
+ { int c = z->c - 2;
932
+ if (z->lb > c || c > z->l) return 0;
933
+ z->c = c; /* hop, line 28 */
934
+ }
935
+ z->c = z->l - m_test;
936
+ }
937
+ { int m = z->l - z->c; (void) m; /* or, line 28 */
938
+ if (!(eq_s_b(z, 1, s_3))) goto lab1;
939
+ goto lab0;
940
+ lab1:
941
+ z->c = z->l - m;
942
+ if (!(eq_s_b(z, 2, s_4))) return 0;
943
+ }
944
+ lab0:
945
+ return 1;
946
+ }
947
+
948
+ static int r_I(struct SN_env * z) {
949
+ { int m_test = z->l - z->c; /* test, line 29 */
950
+ { int c = z->c - 2;
951
+ if (z->lb > c || c > z->l) return 0;
952
+ z->c = c; /* hop, line 29 */
953
+ }
954
+ z->c = z->l - m_test;
955
+ }
956
+ { int m = z->l - z->c; (void) m; /* not, line 29 */
957
+ if (!(eq_s_b(z, 1, s_5))) goto lab0;
958
+ return 0;
959
+ lab0:
960
+ z->c = z->l - m;
961
+ }
962
+ { int m = z->l - z->c; (void) m; /* not, line 29 */
963
+ if (!(eq_s_b(z, 1, s_6))) goto lab1;
964
+ return 0;
965
+ lab1:
966
+ z->c = z->l - m;
967
+ }
968
+ return 1;
969
+ }
970
+
971
+ static int r_J(struct SN_env * z) {
972
+ { int m_test = z->l - z->c; /* test, line 30 */
973
+ { int c = z->c - 2;
974
+ if (z->lb > c || c > z->l) return 0;
975
+ z->c = c; /* hop, line 30 */
976
+ }
977
+ z->c = z->l - m_test;
978
+ }
979
+ { int m = z->l - z->c; (void) m; /* not, line 30 */
980
+ if (!(eq_s_b(z, 1, s_7))) goto lab0;
981
+ return 0;
982
+ lab0:
983
+ z->c = z->l - m;
984
+ }
985
+ { int m = z->l - z->c; (void) m; /* not, line 30 */
986
+ if (!(eq_s_b(z, 1, s_8))) goto lab1;
987
+ return 0;
988
+ lab1:
989
+ z->c = z->l - m;
990
+ }
991
+ return 1;
992
+ }
993
+
994
+ static int r_K(struct SN_env * z) {
995
+ { int m_test = z->l - z->c; /* test, line 31 */
996
+ { int c = z->c - 3;
997
+ if (z->lb > c || c > z->l) return 0;
998
+ z->c = c; /* hop, line 31 */
999
+ }
1000
+ z->c = z->l - m_test;
1001
+ }
1002
+ { int m = z->l - z->c; (void) m; /* or, line 31 */
1003
+ if (!(eq_s_b(z, 1, s_9))) goto lab1;
1004
+ goto lab0;
1005
+ lab1:
1006
+ z->c = z->l - m;
1007
+ if (!(eq_s_b(z, 1, s_10))) goto lab2;
1008
+ goto lab0;
1009
+ lab2:
1010
+ z->c = z->l - m;
1011
+ if (!(eq_s_b(z, 1, s_11))) return 0;
1012
+ if (z->c <= z->lb) return 0;
1013
+ z->c--; /* next, line 31 */
1014
+ if (!(eq_s_b(z, 1, s_12))) return 0;
1015
+ }
1016
+ lab0:
1017
+ return 1;
1018
+ }
1019
+
1020
+ static int r_L(struct SN_env * z) {
1021
+ { int m_test = z->l - z->c; /* test, line 32 */
1022
+ { int c = z->c - 2;
1023
+ if (z->lb > c || c > z->l) return 0;
1024
+ z->c = c; /* hop, line 32 */
1025
+ }
1026
+ z->c = z->l - m_test;
1027
+ }
1028
+ { int m = z->l - z->c; (void) m; /* not, line 32 */
1029
+ if (!(eq_s_b(z, 1, s_13))) goto lab0;
1030
+ return 0;
1031
+ lab0:
1032
+ z->c = z->l - m;
1033
+ }
1034
+ { int m = z->l - z->c; (void) m; /* not, line 32 */
1035
+ if (!(eq_s_b(z, 1, s_14))) goto lab1;
1036
+ return 0;
1037
+ lab1:
1038
+ z->c = z->l - m;
1039
+ }
1040
+ { int m = z->l - z->c; (void) m; /* not, line 32 */
1041
+ if (!(eq_s_b(z, 1, s_15))) goto lab2;
1042
+ { int m = z->l - z->c; (void) m; /* not, line 32 */
1043
+ if (!(eq_s_b(z, 1, s_16))) goto lab3;
1044
+ goto lab2;
1045
+ lab3:
1046
+ z->c = z->l - m;
1047
+ }
1048
+ return 0;
1049
+ lab2:
1050
+ z->c = z->l - m;
1051
+ }
1052
+ return 1;
1053
+ }
1054
+
1055
+ static int r_M(struct SN_env * z) {
1056
+ { int m_test = z->l - z->c; /* test, line 33 */
1057
+ { int c = z->c - 2;
1058
+ if (z->lb > c || c > z->l) return 0;
1059
+ z->c = c; /* hop, line 33 */
1060
+ }
1061
+ z->c = z->l - m_test;
1062
+ }
1063
+ { int m = z->l - z->c; (void) m; /* not, line 33 */
1064
+ if (!(eq_s_b(z, 1, s_17))) goto lab0;
1065
+ return 0;
1066
+ lab0:
1067
+ z->c = z->l - m;
1068
+ }
1069
+ { int m = z->l - z->c; (void) m; /* not, line 33 */
1070
+ if (!(eq_s_b(z, 1, s_18))) goto lab1;
1071
+ return 0;
1072
+ lab1:
1073
+ z->c = z->l - m;
1074
+ }
1075
+ { int m = z->l - z->c; (void) m; /* not, line 33 */
1076
+ if (!(eq_s_b(z, 1, s_19))) goto lab2;
1077
+ return 0;
1078
+ lab2:
1079
+ z->c = z->l - m;
1080
+ }
1081
+ { int m = z->l - z->c; (void) m; /* not, line 33 */
1082
+ if (!(eq_s_b(z, 1, s_20))) goto lab3;
1083
+ return 0;
1084
+ lab3:
1085
+ z->c = z->l - m;
1086
+ }
1087
+ return 1;
1088
+ }
1089
+
1090
+ static int r_N(struct SN_env * z) {
1091
+ { int m_test = z->l - z->c; /* test, line 34 */
1092
+ { int c = z->c - 3;
1093
+ if (z->lb > c || c > z->l) return 0;
1094
+ z->c = c; /* hop, line 34 */
1095
+ }
1096
+ z->c = z->l - m_test;
1097
+ }
1098
+ { int c = z->c - 2;
1099
+ if (z->lb > c || c > z->l) return 0;
1100
+ z->c = c; /* hop, line 34 */
1101
+ }
1102
+ { int m = z->l - z->c; (void) m; /* or, line 34 */
1103
+ { int m = z->l - z->c; (void) m; /* not, line 34 */
1104
+ if (!(eq_s_b(z, 1, s_21))) goto lab2;
1105
+ goto lab1;
1106
+ lab2:
1107
+ z->c = z->l - m;
1108
+ }
1109
+ goto lab0;
1110
+ lab1:
1111
+ z->c = z->l - m;
1112
+ { int c = z->c - 2;
1113
+ if (z->lb > c || c > z->l) return 0;
1114
+ z->c = c; /* hop, line 34 */
1115
+ }
1116
+ }
1117
+ lab0:
1118
+ return 1;
1119
+ }
1120
+
1121
+ static int r_O(struct SN_env * z) {
1122
+ { int m_test = z->l - z->c; /* test, line 35 */
1123
+ { int c = z->c - 2;
1124
+ if (z->lb > c || c > z->l) return 0;
1125
+ z->c = c; /* hop, line 35 */
1126
+ }
1127
+ z->c = z->l - m_test;
1128
+ }
1129
+ { int m = z->l - z->c; (void) m; /* or, line 35 */
1130
+ if (!(eq_s_b(z, 1, s_22))) goto lab1;
1131
+ goto lab0;
1132
+ lab1:
1133
+ z->c = z->l - m;
1134
+ if (!(eq_s_b(z, 1, s_23))) return 0;
1135
+ }
1136
+ lab0:
1137
+ return 1;
1138
+ }
1139
+
1140
+ static int r_P(struct SN_env * z) {
1141
+ { int m_test = z->l - z->c; /* test, line 36 */
1142
+ { int c = z->c - 2;
1143
+ if (z->lb > c || c > z->l) return 0;
1144
+ z->c = c; /* hop, line 36 */
1145
+ }
1146
+ z->c = z->l - m_test;
1147
+ }
1148
+ { int m = z->l - z->c; (void) m; /* not, line 36 */
1149
+ if (!(eq_s_b(z, 1, s_24))) goto lab0;
1150
+ return 0;
1151
+ lab0:
1152
+ z->c = z->l - m;
1153
+ }
1154
+ return 1;
1155
+ }
1156
+
1157
+ static int r_Q(struct SN_env * z) {
1158
+ { int m_test = z->l - z->c; /* test, line 37 */
1159
+ { int c = z->c - 2;
1160
+ if (z->lb > c || c > z->l) return 0;
1161
+ z->c = c; /* hop, line 37 */
1162
+ }
1163
+ z->c = z->l - m_test;
1164
+ }
1165
+ { int m_test = z->l - z->c; /* test, line 37 */
1166
+ { int c = z->c - 3;
1167
+ if (z->lb > c || c > z->l) return 0;
1168
+ z->c = c; /* hop, line 37 */
1169
+ }
1170
+ z->c = z->l - m_test;
1171
+ }
1172
+ { int m = z->l - z->c; (void) m; /* not, line 37 */
1173
+ if (!(eq_s_b(z, 1, s_25))) goto lab0;
1174
+ return 0;
1175
+ lab0:
1176
+ z->c = z->l - m;
1177
+ }
1178
+ { int m = z->l - z->c; (void) m; /* not, line 37 */
1179
+ if (!(eq_s_b(z, 1, s_26))) goto lab1;
1180
+ return 0;
1181
+ lab1:
1182
+ z->c = z->l - m;
1183
+ }
1184
+ return 1;
1185
+ }
1186
+
1187
+ static int r_R(struct SN_env * z) {
1188
+ { int m_test = z->l - z->c; /* test, line 38 */
1189
+ { int c = z->c - 2;
1190
+ if (z->lb > c || c > z->l) return 0;
1191
+ z->c = c; /* hop, line 38 */
1192
+ }
1193
+ z->c = z->l - m_test;
1194
+ }
1195
+ { int m = z->l - z->c; (void) m; /* or, line 38 */
1196
+ if (!(eq_s_b(z, 1, s_27))) goto lab1;
1197
+ goto lab0;
1198
+ lab1:
1199
+ z->c = z->l - m;
1200
+ if (!(eq_s_b(z, 1, s_28))) return 0;
1201
+ }
1202
+ lab0:
1203
+ return 1;
1204
+ }
1205
+
1206
+ static int r_S(struct SN_env * z) {
1207
+ { int m_test = z->l - z->c; /* test, line 39 */
1208
+ { int c = z->c - 2;
1209
+ if (z->lb > c || c > z->l) return 0;
1210
+ z->c = c; /* hop, line 39 */
1211
+ }
1212
+ z->c = z->l - m_test;
1213
+ }
1214
+ { int m = z->l - z->c; (void) m; /* or, line 39 */
1215
+ if (!(eq_s_b(z, 2, s_29))) goto lab1;
1216
+ goto lab0;
1217
+ lab1:
1218
+ z->c = z->l - m;
1219
+ if (!(eq_s_b(z, 1, s_30))) return 0;
1220
+ { int m = z->l - z->c; (void) m; /* not, line 39 */
1221
+ if (!(eq_s_b(z, 1, s_31))) goto lab2;
1222
+ return 0;
1223
+ lab2:
1224
+ z->c = z->l - m;
1225
+ }
1226
+ }
1227
+ lab0:
1228
+ return 1;
1229
+ }
1230
+
1231
+ static int r_T(struct SN_env * z) {
1232
+ { int m_test = z->l - z->c; /* test, line 40 */
1233
+ { int c = z->c - 2;
1234
+ if (z->lb > c || c > z->l) return 0;
1235
+ z->c = c; /* hop, line 40 */
1236
+ }
1237
+ z->c = z->l - m_test;
1238
+ }
1239
+ { int m = z->l - z->c; (void) m; /* or, line 40 */
1240
+ if (!(eq_s_b(z, 1, s_32))) goto lab1;
1241
+ goto lab0;
1242
+ lab1:
1243
+ z->c = z->l - m;
1244
+ if (!(eq_s_b(z, 1, s_33))) return 0;
1245
+ { int m = z->l - z->c; (void) m; /* not, line 40 */
1246
+ if (!(eq_s_b(z, 1, s_34))) goto lab2;
1247
+ return 0;
1248
+ lab2:
1249
+ z->c = z->l - m;
1250
+ }
1251
+ }
1252
+ lab0:
1253
+ return 1;
1254
+ }
1255
+
1256
+ static int r_U(struct SN_env * z) {
1257
+ { int m_test = z->l - z->c; /* test, line 41 */
1258
+ { int c = z->c - 2;
1259
+ if (z->lb > c || c > z->l) return 0;
1260
+ z->c = c; /* hop, line 41 */
1261
+ }
1262
+ z->c = z->l - m_test;
1263
+ }
1264
+ { int m = z->l - z->c; (void) m; /* or, line 41 */
1265
+ if (!(eq_s_b(z, 1, s_35))) goto lab1;
1266
+ goto lab0;
1267
+ lab1:
1268
+ z->c = z->l - m;
1269
+ if (!(eq_s_b(z, 1, s_36))) goto lab2;
1270
+ goto lab0;
1271
+ lab2:
1272
+ z->c = z->l - m;
1273
+ if (!(eq_s_b(z, 1, s_37))) goto lab3;
1274
+ goto lab0;
1275
+ lab3:
1276
+ z->c = z->l - m;
1277
+ if (!(eq_s_b(z, 1, s_38))) return 0;
1278
+ }
1279
+ lab0:
1280
+ return 1;
1281
+ }
1282
+
1283
+ static int r_V(struct SN_env * z) {
1284
+ { int m_test = z->l - z->c; /* test, line 42 */
1285
+ { int c = z->c - 2;
1286
+ if (z->lb > c || c > z->l) return 0;
1287
+ z->c = c; /* hop, line 42 */
1288
+ }
1289
+ z->c = z->l - m_test;
1290
+ }
1291
+ if (!(eq_s_b(z, 1, s_39))) return 0;
1292
+ return 1;
1293
+ }
1294
+
1295
+ static int r_W(struct SN_env * z) {
1296
+ { int m_test = z->l - z->c; /* test, line 43 */
1297
+ { int c = z->c - 2;
1298
+ if (z->lb > c || c > z->l) return 0;
1299
+ z->c = c; /* hop, line 43 */
1300
+ }
1301
+ z->c = z->l - m_test;
1302
+ }
1303
+ { int m = z->l - z->c; (void) m; /* not, line 43 */
1304
+ if (!(eq_s_b(z, 1, s_40))) goto lab0;
1305
+ return 0;
1306
+ lab0:
1307
+ z->c = z->l - m;
1308
+ }
1309
+ { int m = z->l - z->c; (void) m; /* not, line 43 */
1310
+ if (!(eq_s_b(z, 1, s_41))) goto lab1;
1311
+ return 0;
1312
+ lab1:
1313
+ z->c = z->l - m;
1314
+ }
1315
+ return 1;
1316
+ }
1317
+
1318
+ static int r_X(struct SN_env * z) {
1319
+ { int m_test = z->l - z->c; /* test, line 44 */
1320
+ { int c = z->c - 2;
1321
+ if (z->lb > c || c > z->l) return 0;
1322
+ z->c = c; /* hop, line 44 */
1323
+ }
1324
+ z->c = z->l - m_test;
1325
+ }
1326
+ { int m = z->l - z->c; (void) m; /* or, line 44 */
1327
+ if (!(eq_s_b(z, 1, s_42))) goto lab1;
1328
+ goto lab0;
1329
+ lab1:
1330
+ z->c = z->l - m;
1331
+ if (!(eq_s_b(z, 1, s_43))) goto lab2;
1332
+ goto lab0;
1333
+ lab2:
1334
+ z->c = z->l - m;
1335
+ if (!(eq_s_b(z, 1, s_44))) return 0;
1336
+ if (z->c <= z->lb) return 0;
1337
+ z->c--; /* next, line 44 */
1338
+ if (!(eq_s_b(z, 1, s_45))) return 0;
1339
+ }
1340
+ lab0:
1341
+ return 1;
1342
+ }
1343
+
1344
+ static int r_Y(struct SN_env * z) {
1345
+ { int m_test = z->l - z->c; /* test, line 45 */
1346
+ { int c = z->c - 2;
1347
+ if (z->lb > c || c > z->l) return 0;
1348
+ z->c = c; /* hop, line 45 */
1349
+ }
1350
+ z->c = z->l - m_test;
1351
+ }
1352
+ if (!(eq_s_b(z, 2, s_46))) return 0;
1353
+ return 1;
1354
+ }
1355
+
1356
+ static int r_Z(struct SN_env * z) {
1357
+ { int m_test = z->l - z->c; /* test, line 46 */
1358
+ { int c = z->c - 2;
1359
+ if (z->lb > c || c > z->l) return 0;
1360
+ z->c = c; /* hop, line 46 */
1361
+ }
1362
+ z->c = z->l - m_test;
1363
+ }
1364
+ { int m = z->l - z->c; (void) m; /* not, line 46 */
1365
+ if (!(eq_s_b(z, 1, s_47))) goto lab0;
1366
+ return 0;
1367
+ lab0:
1368
+ z->c = z->l - m;
1369
+ }
1370
+ return 1;
1371
+ }
1372
+
1373
+ static int r_AA(struct SN_env * z) {
1374
+ { int m_test = z->l - z->c; /* test, line 47 */
1375
+ { int c = z->c - 2;
1376
+ if (z->lb > c || c > z->l) return 0;
1377
+ z->c = c; /* hop, line 47 */
1378
+ }
1379
+ z->c = z->l - m_test;
1380
+ }
1381
+ if (!(find_among_b(z, a_0, 9))) return 0; /* among, line 47 */
1382
+ return 1;
1383
+ }
1384
+
1385
+ static int r_BB(struct SN_env * z) {
1386
+ { int m_test = z->l - z->c; /* test, line 49 */
1387
+ { int c = z->c - 3;
1388
+ if (z->lb > c || c > z->l) return 0;
1389
+ z->c = c; /* hop, line 49 */
1390
+ }
1391
+ z->c = z->l - m_test;
1392
+ }
1393
+ { int m = z->l - z->c; (void) m; /* not, line 49 */
1394
+ if (!(eq_s_b(z, 3, s_48))) goto lab0;
1395
+ return 0;
1396
+ lab0:
1397
+ z->c = z->l - m;
1398
+ }
1399
+ { int m = z->l - z->c; (void) m; /* not, line 49 */
1400
+ if (!(eq_s_b(z, 4, s_49))) goto lab1;
1401
+ return 0;
1402
+ lab1:
1403
+ z->c = z->l - m;
1404
+ }
1405
+ return 1;
1406
+ }
1407
+
1408
+ static int r_CC(struct SN_env * z) {
1409
+ { int m_test = z->l - z->c; /* test, line 50 */
1410
+ { int c = z->c - 2;
1411
+ if (z->lb > c || c > z->l) return 0;
1412
+ z->c = c; /* hop, line 50 */
1413
+ }
1414
+ z->c = z->l - m_test;
1415
+ }
1416
+ if (!(eq_s_b(z, 1, s_50))) return 0;
1417
+ return 1;
1418
+ }
1419
+
1420
+ static int r_endings(struct SN_env * z) {
1421
+ int among_var;
1422
+ z->ket = z->c; /* [, line 56 */
1423
+ among_var = find_among_b(z, a_1, 294); /* substring, line 56 */
1424
+ if (!(among_var)) return 0;
1425
+ z->bra = z->c; /* ], line 56 */
1426
+ switch(among_var) {
1427
+ case 0: return 0;
1428
+ case 1:
1429
+ { int ret;
1430
+ ret = slice_del(z); /* delete, line 145 */
1431
+ if (ret < 0) return ret;
1432
+ }
1433
+ break;
1434
+ }
1435
+ return 1;
1436
+ }
1437
+
1438
+ static int r_undouble(struct SN_env * z) {
1439
+ { int m_test = z->l - z->c; /* test, line 152 */
1440
+ if (!(find_among_b(z, a_2, 10))) return 0; /* substring, line 152 */
1441
+ z->c = z->l - m_test;
1442
+ }
1443
+ z->ket = z->c; /* [, line 154 */
1444
+ if (z->c <= z->lb) return 0;
1445
+ z->c--; /* next, line 154 */
1446
+ z->bra = z->c; /* ], line 154 */
1447
+ { int ret;
1448
+ ret = slice_del(z); /* delete, line 154 */
1449
+ if (ret < 0) return ret;
1450
+ }
1451
+ return 1;
1452
+ }
1453
+
1454
+ static int r_respell(struct SN_env * z) {
1455
+ int among_var;
1456
+ z->ket = z->c; /* [, line 160 */
1457
+ among_var = find_among_b(z, a_3, 34); /* substring, line 160 */
1458
+ if (!(among_var)) return 0;
1459
+ z->bra = z->c; /* ], line 160 */
1460
+ switch(among_var) {
1461
+ case 0: return 0;
1462
+ case 1:
1463
+ { int ret;
1464
+ ret = slice_from_s(z, 3, s_51); /* <-, line 161 */
1465
+ if (ret < 0) return ret;
1466
+ }
1467
+ break;
1468
+ case 2:
1469
+ { int ret;
1470
+ ret = slice_from_s(z, 2, s_52); /* <-, line 162 */
1471
+ if (ret < 0) return ret;
1472
+ }
1473
+ break;
1474
+ case 3:
1475
+ { int ret;
1476
+ ret = slice_from_s(z, 2, s_53); /* <-, line 163 */
1477
+ if (ret < 0) return ret;
1478
+ }
1479
+ break;
1480
+ case 4:
1481
+ { int ret;
1482
+ ret = slice_from_s(z, 2, s_54); /* <-, line 164 */
1483
+ if (ret < 0) return ret;
1484
+ }
1485
+ break;
1486
+ case 5:
1487
+ { int ret;
1488
+ ret = slice_from_s(z, 2, s_55); /* <-, line 165 */
1489
+ if (ret < 0) return ret;
1490
+ }
1491
+ break;
1492
+ case 6:
1493
+ { int ret;
1494
+ ret = slice_from_s(z, 5, s_56); /* <-, line 166 */
1495
+ if (ret < 0) return ret;
1496
+ }
1497
+ break;
1498
+ case 7:
1499
+ { int ret;
1500
+ ret = slice_from_s(z, 5, s_57); /* <-, line 167 */
1501
+ if (ret < 0) return ret;
1502
+ }
1503
+ break;
1504
+ case 8:
1505
+ { int ret;
1506
+ ret = slice_from_s(z, 4, s_58); /* <-, line 168 */
1507
+ if (ret < 0) return ret;
1508
+ }
1509
+ break;
1510
+ case 9:
1511
+ { int m = z->l - z->c; (void) m; /* not, line 169 */
1512
+ if (!(eq_s_b(z, 1, s_59))) goto lab0;
1513
+ return 0;
1514
+ lab0:
1515
+ z->c = z->l - m;
1516
+ }
1517
+ { int m = z->l - z->c; (void) m; /* not, line 169 */
1518
+ if (!(eq_s_b(z, 1, s_60))) goto lab1;
1519
+ return 0;
1520
+ lab1:
1521
+ z->c = z->l - m;
1522
+ }
1523
+ { int m = z->l - z->c; (void) m; /* not, line 169 */
1524
+ if (!(eq_s_b(z, 1, s_61))) goto lab2;
1525
+ return 0;
1526
+ lab2:
1527
+ z->c = z->l - m;
1528
+ }
1529
+ { int ret;
1530
+ ret = slice_from_s(z, 1, s_62); /* <-, line 169 */
1531
+ if (ret < 0) return ret;
1532
+ }
1533
+ break;
1534
+ case 10:
1535
+ { int ret;
1536
+ ret = slice_from_s(z, 3, s_63); /* <-, line 170 */
1537
+ if (ret < 0) return ret;
1538
+ }
1539
+ break;
1540
+ case 11:
1541
+ { int ret;
1542
+ ret = slice_from_s(z, 3, s_64); /* <-, line 171 */
1543
+ if (ret < 0) return ret;
1544
+ }
1545
+ break;
1546
+ case 12:
1547
+ { int ret;
1548
+ ret = slice_from_s(z, 3, s_65); /* <-, line 172 */
1549
+ if (ret < 0) return ret;
1550
+ }
1551
+ break;
1552
+ case 13:
1553
+ { int ret;
1554
+ ret = slice_from_s(z, 3, s_66); /* <-, line 173 */
1555
+ if (ret < 0) return ret;
1556
+ }
1557
+ break;
1558
+ case 14:
1559
+ { int ret;
1560
+ ret = slice_from_s(z, 2, s_67); /* <-, line 174 */
1561
+ if (ret < 0) return ret;
1562
+ }
1563
+ break;
1564
+ case 15:
1565
+ { int ret;
1566
+ ret = slice_from_s(z, 2, s_68); /* <-, line 175 */
1567
+ if (ret < 0) return ret;
1568
+ }
1569
+ break;
1570
+ case 16:
1571
+ { int ret;
1572
+ ret = slice_from_s(z, 2, s_69); /* <-, line 176 */
1573
+ if (ret < 0) return ret;
1574
+ }
1575
+ break;
1576
+ case 17:
1577
+ { int ret;
1578
+ ret = slice_from_s(z, 3, s_70); /* <-, line 177 */
1579
+ if (ret < 0) return ret;
1580
+ }
1581
+ break;
1582
+ case 18:
1583
+ { int ret;
1584
+ ret = slice_from_s(z, 3, s_71); /* <-, line 178 */
1585
+ if (ret < 0) return ret;
1586
+ }
1587
+ break;
1588
+ case 19:
1589
+ { int ret;
1590
+ ret = slice_from_s(z, 3, s_72); /* <-, line 179 */
1591
+ if (ret < 0) return ret;
1592
+ }
1593
+ break;
1594
+ case 20:
1595
+ { int ret;
1596
+ ret = slice_from_s(z, 3, s_73); /* <-, line 180 */
1597
+ if (ret < 0) return ret;
1598
+ }
1599
+ break;
1600
+ case 21:
1601
+ { int ret;
1602
+ ret = slice_from_s(z, 3, s_74); /* <-, line 181 */
1603
+ if (ret < 0) return ret;
1604
+ }
1605
+ break;
1606
+ case 22:
1607
+ { int ret;
1608
+ ret = slice_from_s(z, 4, s_75); /* <-, line 182 */
1609
+ if (ret < 0) return ret;
1610
+ }
1611
+ break;
1612
+ case 23:
1613
+ { int ret;
1614
+ ret = slice_from_s(z, 4, s_76); /* <-, line 183 */
1615
+ if (ret < 0) return ret;
1616
+ }
1617
+ break;
1618
+ case 24:
1619
+ { int m = z->l - z->c; (void) m; /* not, line 184 */
1620
+ if (!(eq_s_b(z, 1, s_77))) goto lab3;
1621
+ return 0;
1622
+ lab3:
1623
+ z->c = z->l - m;
1624
+ }
1625
+ { int ret;
1626
+ ret = slice_from_s(z, 3, s_78); /* <-, line 184 */
1627
+ if (ret < 0) return ret;
1628
+ }
1629
+ break;
1630
+ case 25:
1631
+ { int ret;
1632
+ ret = slice_from_s(z, 3, s_79); /* <-, line 185 */
1633
+ if (ret < 0) return ret;
1634
+ }
1635
+ break;
1636
+ case 26:
1637
+ { int ret;
1638
+ ret = slice_from_s(z, 3, s_80); /* <-, line 186 */
1639
+ if (ret < 0) return ret;
1640
+ }
1641
+ break;
1642
+ case 27:
1643
+ { int ret;
1644
+ ret = slice_from_s(z, 3, s_81); /* <-, line 187 */
1645
+ if (ret < 0) return ret;
1646
+ }
1647
+ break;
1648
+ case 28:
1649
+ { int m = z->l - z->c; (void) m; /* not, line 188 */
1650
+ if (!(eq_s_b(z, 1, s_82))) goto lab4;
1651
+ return 0;
1652
+ lab4:
1653
+ z->c = z->l - m;
1654
+ }
1655
+ { int m = z->l - z->c; (void) m; /* not, line 188 */
1656
+ if (!(eq_s_b(z, 1, s_83))) goto lab5;
1657
+ return 0;
1658
+ lab5:
1659
+ z->c = z->l - m;
1660
+ }
1661
+ { int ret;
1662
+ ret = slice_from_s(z, 3, s_84); /* <-, line 188 */
1663
+ if (ret < 0) return ret;
1664
+ }
1665
+ break;
1666
+ case 29:
1667
+ { int ret;
1668
+ ret = slice_from_s(z, 3, s_85); /* <-, line 189 */
1669
+ if (ret < 0) return ret;
1670
+ }
1671
+ break;
1672
+ case 30:
1673
+ { int m = z->l - z->c; (void) m; /* not, line 190 */
1674
+ if (!(eq_s_b(z, 1, s_86))) goto lab6;
1675
+ return 0;
1676
+ lab6:
1677
+ z->c = z->l - m;
1678
+ }
1679
+ { int ret;
1680
+ ret = slice_from_s(z, 3, s_87); /* <-, line 190 */
1681
+ if (ret < 0) return ret;
1682
+ }
1683
+ break;
1684
+ case 31:
1685
+ { int ret;
1686
+ ret = slice_from_s(z, 3, s_88); /* <-, line 192 */
1687
+ if (ret < 0) return ret;
1688
+ }
1689
+ break;
1690
+ case 32:
1691
+ { int m = z->l - z->c; (void) m; /* not, line 193 */
1692
+ if (!(eq_s_b(z, 1, s_89))) goto lab7;
1693
+ return 0;
1694
+ lab7:
1695
+ z->c = z->l - m;
1696
+ }
1697
+ { int ret;
1698
+ ret = slice_from_s(z, 2, s_90); /* <-, line 193 */
1699
+ if (ret < 0) return ret;
1700
+ }
1701
+ break;
1702
+ case 33:
1703
+ { int ret;
1704
+ ret = slice_from_s(z, 2, s_91); /* <-, line 194 */
1705
+ if (ret < 0) return ret;
1706
+ }
1707
+ break;
1708
+ case 34:
1709
+ { int ret;
1710
+ ret = slice_from_s(z, 2, s_92); /* <-, line 195 */
1711
+ if (ret < 0) return ret;
1712
+ }
1713
+ break;
1714
+ }
1715
+ return 1;
1716
+ }
1717
+
1718
+ extern int lovins_stem(struct SN_env * z) {
1719
+ z->lb = z->c; z->c = z->l; /* backwards, line 202 */
1720
+
1721
+ { int m = z->l - z->c; (void) m; /* do, line 203 */
1722
+ { int ret = r_endings(z);
1723
+ if (ret == 0) goto lab0; /* call endings, line 203 */
1724
+ if (ret < 0) return ret;
1725
+ }
1726
+ lab0:
1727
+ z->c = z->l - m;
1728
+ }
1729
+ { int m = z->l - z->c; (void) m; /* do, line 204 */
1730
+ { int ret = r_undouble(z);
1731
+ if (ret == 0) goto lab1; /* call undouble, line 204 */
1732
+ if (ret < 0) return ret;
1733
+ }
1734
+ lab1:
1735
+ z->c = z->l - m;
1736
+ }
1737
+ { int m = z->l - z->c; (void) m; /* do, line 205 */
1738
+ { int ret = r_respell(z);
1739
+ if (ret == 0) goto lab2; /* call respell, line 205 */
1740
+ if (ret < 0) return ret;
1741
+ }
1742
+ lab2:
1743
+ z->c = z->l - m;
1744
+ }
1745
+ z->c = z->lb;
1746
+ return 1;
1747
+ }
1748
+
1749
+ extern struct SN_env * lovins_create_env(void) { return SN_create_env(0, 0, 0); }
1750
+
1751
+ extern void lovins_close_env(struct SN_env * z) { SN_close_env(z); }
1752
+