Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3494 lines
124 KiB

  1. /* Copyright (C) Boris Nikolaus, Germany, 1996-1997. All rights reserved. */
  2. /* Copyright (C) Microsoft Corporation, 1997-1998. All rights reserved. */
  3. #include "precomp.h"
  4. /* A lexical scanner generated by flex */
  5. /* Scanner skeleton version:
  6. * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $
  7. */
  8. #define FLEX_SCANNER
  9. #define YY_FLEX_MAJOR_VERSION 2
  10. #define YY_FLEX_MINOR_VERSION 5
  11. #include <stdio.h>
  12. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  13. #ifdef c_plusplus
  14. #ifndef __cplusplus
  15. #define __cplusplus
  16. #endif
  17. #endif
  18. #ifdef __cplusplus
  19. #include <stdlib.h>
  20. #include <unistd.h>
  21. /* Use prototypes in function declarations. */
  22. #define YY_USE_PROTOS
  23. /* The "const" storage-class-modifier is valid. */
  24. #define YY_USE_CONST
  25. #else /* ! __cplusplus */
  26. #if __STDC__
  27. #define YY_USE_PROTOS
  28. #define YY_USE_CONST
  29. #endif /* __STDC__ */
  30. #endif /* ! __cplusplus */
  31. #ifdef __TURBOC__
  32. #pragma warn -rch
  33. #pragma warn -use
  34. #include <io.h>
  35. #include <stdlib.h>
  36. #define YY_USE_CONST
  37. #define YY_USE_PROTOS
  38. #endif
  39. #ifdef YY_USE_CONST
  40. #define yyconst const
  41. #else
  42. #define yyconst
  43. #endif
  44. #ifdef YY_USE_PROTOS
  45. #define YY_PROTO(proto) proto
  46. #else
  47. #define YY_PROTO(proto) ()
  48. #endif
  49. #include "hackdir.h"
  50. /* Returned upon end-of-file. */
  51. #define YY_NULL 0
  52. /* Promotes a possibly negative, possibly signed char to an unsigned
  53. * integer for use as an array index. If the signed char is negative,
  54. * we want to instead treat it as an 8-bit unsigned char, hence the
  55. * double cast.
  56. */
  57. #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
  58. /* Enter a start condition. This macro really ought to take a parameter,
  59. * but we do it the disgusting crufty way forced on us by the ()-less
  60. * definition of BEGIN.
  61. */
  62. #define BEGIN yy_start = 1 + 2 *
  63. /* Translate the current start state into a value that can be later handed
  64. * to BEGIN to return to the state. The YYSTATE alias is for lex
  65. * compatibility.
  66. */
  67. #define YY_START ((yy_start - 1) / 2)
  68. #define YYSTATE YY_START
  69. /* Action number for EOF rule of a given start state. */
  70. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  71. /* Special action meaning "start processing a new file". */
  72. #define YY_NEW_FILE yyrestart( yyin )
  73. #define YY_END_OF_BUFFER_CHAR 0
  74. /* Size of default input buffer. */
  75. #define YY_BUF_SIZE 16384
  76. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  77. extern int yyleng;
  78. extern FILE *yyin, *yyout;
  79. #define EOB_ACT_CONTINUE_SCAN 0
  80. #define EOB_ACT_END_OF_FILE 1
  81. #define EOB_ACT_LAST_MATCH 2
  82. /* The funky do-while in the following #define is used to turn the definition
  83. * int a single C statement (which needs a semi-colon terminator). This
  84. * avoids problems with code like:
  85. *
  86. * if ( condition_holds )
  87. * yyless( 5 );
  88. * else
  89. * do_something_else();
  90. *
  91. * Prior to using the do-while the compiler would get upset at the
  92. * "else" because it interpreted the "if" statement as being all
  93. * done when it reached the ';' after the yyless() call.
  94. */
  95. /* Return all but the first 'n' matched characters back to the input stream. */
  96. #define yyless(n) \
  97. do \
  98. { \
  99. /* Undo effects of setting up yytext. */ \
  100. *yy_cp = yy_hold_char; \
  101. yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
  102. YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  103. } \
  104. while ( 0 )
  105. #define unput(c) yyunput( c, yytext_ptr )
  106. /* The following is because we cannot portably get our hands on size_t
  107. * (without autoconf's help, which isn't available because we want
  108. * flex-generated scanners to compile on their own).
  109. */
  110. typedef unsigned int yy_size_t;
  111. struct yy_buffer_state
  112. {
  113. FILE *yy_input_file;
  114. char *yy_ch_buf; /* input buffer */
  115. char *yy_buf_pos; /* current position in input buffer */
  116. /* Size of input buffer in bytes, not including room for EOB
  117. * characters.
  118. */
  119. yy_size_t yy_buf_size;
  120. /* Number of characters read into yy_ch_buf, not including EOB
  121. * characters.
  122. */
  123. int yy_n_chars;
  124. /* Whether we "own" the buffer - i.e., we know we created it,
  125. * and can realloc() it to grow it, and should free() it to
  126. * delete it.
  127. */
  128. int yy_is_our_buffer;
  129. /* Whether this is an "interactive" input source; if so, and
  130. * if we're using stdio for input, then we want to use getc()
  131. * instead of fread(), to make sure we stop fetching input after
  132. * each newline.
  133. */
  134. int yy_is_interactive;
  135. /* Whether we're considered to be at the beginning of a line.
  136. * If so, '^' rules will be active on the next match, otherwise
  137. * not.
  138. */
  139. int yy_at_bol;
  140. /* Whether to try to fill the input buffer when we reach the
  141. * end of it.
  142. */
  143. int yy_fill_buffer;
  144. int yy_buffer_status;
  145. #define YY_BUFFER_NEW 0
  146. #define YY_BUFFER_NORMAL 1
  147. /* When an EOF's been seen but there's still some text to process
  148. * then we mark the buffer as YY_EOF_PENDING, to indicate that we
  149. * shouldn't try reading from the input source any more. We might
  150. * still have a bunch of tokens to match, though, because of
  151. * possible backing-up.
  152. *
  153. * When we actually see the EOF, we change the status to "new"
  154. * (via yyrestart()), so that the user can continue scanning by
  155. * just pointing yyin at a new input file.
  156. */
  157. #define YY_BUFFER_EOF_PENDING 2
  158. };
  159. static YY_BUFFER_STATE yy_current_buffer = 0;
  160. /* We provide macros for accessing buffer states in case in the
  161. * future we want to put the buffer states in a more general
  162. * "scanner state".
  163. */
  164. #define YY_CURRENT_BUFFER yy_current_buffer
  165. /* yy_hold_char holds the character lost when yytext is formed. */
  166. static char yy_hold_char;
  167. static int yy_n_chars; /* number of characters read into yy_ch_buf */
  168. int yyleng;
  169. /* Points to current character in buffer. */
  170. static char *yy_c_buf_p = (char *) 0;
  171. static int yy_init = 1; /* whether we need to initialize */
  172. static int yy_start = 0; /* start state number */
  173. /* Flag which is used to allow yywrap()'s to do buffer switches
  174. * instead of setting up a fresh yyin. A bit of a hack ...
  175. */
  176. static int yy_did_buffer_switch_on_eof;
  177. void yyrestart YY_PROTO(( FILE *input_file ));
  178. void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
  179. void yy_load_buffer_state YY_PROTO(( void ));
  180. YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
  181. void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  182. void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
  183. void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  184. #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
  185. YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
  186. YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
  187. YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
  188. static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
  189. static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
  190. static void yy_flex_free YY_PROTO(( void * ));
  191. #define yy_new_buffer yy_create_buffer
  192. #define yy_set_interactive(is_interactive) \
  193. { \
  194. if ( ! yy_current_buffer ) \
  195. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  196. yy_current_buffer->yy_is_interactive = is_interactive; \
  197. }
  198. #define yy_set_bol(at_bol) \
  199. { \
  200. if ( ! yy_current_buffer ) \
  201. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  202. yy_current_buffer->yy_at_bol = at_bol; \
  203. }
  204. #define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
  205. typedef unsigned char YY_CHAR;
  206. FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
  207. typedef int yy_state_type;
  208. extern char *yytext;
  209. #define yytext_ptr yytext
  210. static yy_state_type yy_get_previous_state YY_PROTO(( void ));
  211. static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
  212. static int yy_get_next_buffer YY_PROTO(( void ));
  213. static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
  214. /* Done after the current pattern has been matched and before the
  215. * corresponding action - sets up yytext.
  216. */
  217. #define YY_DO_BEFORE_ACTION \
  218. yytext_ptr = yy_bp; \
  219. yyleng = (int) (yy_cp - yy_bp); \
  220. yy_hold_char = *yy_cp; \
  221. *yy_cp = '\0'; \
  222. yy_c_buf_p = yy_cp;
  223. #define YY_NUM_RULES 126
  224. #define YY_END_OF_BUFFER 127
  225. static yyconst short int yy_accept[722] =
  226. { 0,
  227. 0, 0, 0, 0, 127, 125, 123, 123, 124, 89,
  228. 96, 125, 125, 89, 89, 93, 93, 89, 97, 97,
  229. 97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
  230. 97, 97, 97, 97, 97, 97, 97, 100, 100, 100,
  231. 100, 100, 100, 100, 121, 120, 105, 126, 121, 121,
  232. 121, 121, 117, 121, 121, 123, 102, 101, 0, 0,
  233. 0, 122, 92, 93, 0, 0, 98, 97, 97, 97,
  234. 97, 97, 97, 99, 97, 97, 97, 97, 11, 97,
  235. 97, 97, 97, 97, 97, 97, 97, 97, 99, 99,
  236. 97, 97, 97, 97, 97, 97, 97, 97, 97, 99,
  237. 97, 97, 58, 97, 99, 97, 97, 97, 99, 97,
  238. 97, 97, 97, 97, 98, 97, 97, 97, 99, 97,
  239. 97, 99, 97, 99, 97, 0, 100, 100, 100, 100,
  240. 100, 100, 100, 121, 120, 104, 121, 121, 107, 121,
  241. 121, 113, 121, 119, 121, 121, 121, 121, 115, 0,
  242. 102, 0, 101, 94, 95, 0, 103, 91, 90, 0,
  243. 97, 3, 4, 97, 97, 0, 97, 8, 97, 97,
  244. 97, 97, 97, 97, 97, 97, 97, 23, 97, 97,
  245. 97, 97, 97, 97, 99, 99, 98, 97, 97, 97,
  246. 97, 97, 97, 97, 48, 49, 97, 97, 99, 97,
  247. 97, 97, 99, 60, 97, 97, 97, 99, 97, 97,
  248. 67, 97, 97, 97, 98, 97, 97, 97, 99, 97,
  249. 97, 97, 99, 97, 99, 99, 97, 100, 100, 100,
  250. 100, 100, 100, 111, 121, 121, 121, 0, 121, 121,
  251. 109, 121, 97, 97, 97, 97, 97, 97, 97, 97,
  252. 97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
  253. 97, 97, 97, 31, 99, 99, 98, 97, 97, 97,
  254. 97, 97, 97, 98, 97, 97, 97, 52, 99, 97,
  255. 97, 97, 99, 97, 97, 97, 99, 65, 97, 68,
  256. 97, 97, 98, 73, 75, 76, 99, 97, 97, 97,
  257. 97, 98, 99, 97, 99, 99, 88, 100, 100, 100,
  258. 100, 77, 100, 121, 121, 121, 0, 121, 121, 121,
  259. 97, 97, 97, 97, 7, 99, 97, 97, 97, 14,
  260. 97, 97, 97, 97, 97, 97, 97, 97, 97, 97,
  261. 97, 30, 99, 99, 99, 97, 97, 97, 97, 97,
  262. 97, 97, 98, 47, 97, 97, 99, 97, 57, 97,
  263. 99, 0, 97, 97, 99, 97, 97, 97, 99, 0,
  264. 99, 78, 97, 97, 99, 98, 99, 84, 99, 99,
  265. 22, 100, 100, 100, 85, 121, 121, 121, 0, 121,
  266. 121, 0, 1, 97, 97, 97, 99, 97, 97, 13,
  267. 97, 97, 97, 97, 97, 97, 97, 25, 97, 97,
  268. 97, 97, 99, 99, 99, 97, 97, 97, 97, 97,
  269. 97, 97, 97, 98, 0, 97, 99, 55, 97, 99,
  270. 97, 97, 97, 99, 97, 69, 71, 99, 97, 99,
  271. 79, 97, 99, 99, 99, 99, 99, 100, 53, 70,
  272. 121, 0, 121, 0, 121, 121, 0, 97, 97, 97,
  273. 99, 10, 97, 97, 97, 18, 19, 97, 97, 97,
  274. 97, 27, 97, 97, 99, 99, 99, 97, 97, 40,
  275. 41, 97, 97, 44, 97, 98, 97, 97, 99, 97,
  276. 99, 97, 62, 64, 99, 97, 99, 97, 99, 97,
  277. 82, 99, 99, 99, 99, 100, 0, 0, 0, 0,
  278. 116, 0, 0, 97, 97, 97, 99, 97, 97, 97,
  279. 97, 21, 97, 26, 97, 29, 99, 99, 99, 99,
  280. 97, 39, 42, 43, 97, 99, 97, 51, 99, 59,
  281. 99, 97, 99, 66, 99, 97, 99, 97, 99, 99,
  282. 99, 99, 100, 0, 0, 0, 0, 0, 0, 0,
  283. 97, 6, 9, 12, 15, 97, 97, 97, 97, 99,
  284. 99, 99, 35, 97, 97, 99, 97, 99, 99, 97,
  285. 99, 72, 97, 99, 80, 99, 99, 99, 99, 100,
  286. 0, 0, 0, 0, 0, 0, 97, 97, 16, 97,
  287. 97, 24, 97, 99, 99, 99, 37, 97, 99, 97,
  288. 99, 99, 97, 99, 97, 99, 83, 99, 99, 99,
  289. 38, 0, 0, 0, 118, 0, 0, 97, 5, 17,
  290. 20, 97, 99, 99, 99, 97, 99, 97, 99, 99,
  291. 97, 99, 97, 99, 99, 99, 99, 0, 106, 0,
  292. 0, 0, 97, 97, 99, 99, 99, 45, 46, 97,
  293. 99, 99, 97, 99, 97, 99, 99, 99, 99, 0,
  294. 0, 0, 0, 97, 28, 33, 99, 34, 97, 54,
  295. 99, 61, 99, 97, 74, 99, 99, 87, 0, 0,
  296. 0, 0, 97, 99, 50, 99, 99, 97, 99, 86,
  297. 0, 112, 0, 0, 2, 32, 99, 63, 36, 81,
  298. 0, 0, 114, 56, 0, 0, 0, 0, 110, 108,
  299. 0
  300. } ;
  301. static yyconst int yy_ec[256] =
  302. { 0,
  303. 1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
  304. 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
  305. 1, 1, 1, 1, 1, 4, 1, 1, 1, 1,
  306. 1, 2, 5, 6, 1, 7, 1, 8, 9, 10,
  307. 11, 1, 1, 12, 13, 14, 1, 15, 16, 17,
  308. 17, 18, 19, 20, 17, 21, 17, 22, 23, 24,
  309. 25, 26, 1, 27, 28, 29, 30, 31, 32, 33,
  310. 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
  311. 44, 45, 46, 47, 48, 49, 50, 51, 52, 53,
  312. 54, 1, 55, 56, 1, 1, 57, 58, 59, 60,
  313. 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
  314. 71, 72, 73, 74, 75, 76, 77, 78, 73, 79,
  315. 80, 81, 82, 83, 84, 1, 1, 1, 1, 1,
  316. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  317. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  318. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  319. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  320. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  321. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  322. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  323. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  324. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  325. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  326. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  327. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  328. 1, 1, 1, 1, 1
  329. } ;
  330. static yyconst int yy_meta[85] =
  331. { 0,
  332. 1, 2, 2, 1, 1, 1, 1, 1, 2, 1,
  333. 1, 1, 3, 1, 4, 4, 4, 4, 4, 4,
  334. 4, 1, 1, 1, 1, 1, 1, 4, 4, 4,
  335. 4, 4, 4, 5, 5, 5, 5, 5, 5, 5,
  336. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  337. 5, 5, 5, 1, 1, 1, 5, 5, 5, 5,
  338. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  339. 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
  340. 5, 1, 1, 1
  341. } ;
  342. static yyconst short int yy_base[729] =
  343. { 0,
  344. 0, 0, 83, 97, 1486, 3743, 85, 87, 3743, 3743,
  345. 3743, 151, 89, 1471, 1469, 3743, 96, 1449, 220, 89,
  346. 273, 281, 294, 310, 311, 113, 334, 328, 349, 365,
  347. 371, 386, 392, 418, 421, 444, 445, 1457, 80, 84,
  348. 89, 94, 88, 81, 0, 121, 0, 1456, 35, 62,
  349. 63, 68, 1397, 82, 87, 171, 1454, 1451, 302, 91,
  350. 1445, 1446, 1437, 479, 1424, 472, 508, 475, 483, 533,
  351. 534, 549, 555, 1434, 566, 572, 583, 594, 600, 616,
  352. 622, 633, 646, 649, 662, 670, 673, 686, 164, 149,
  353. 701, 704, 712, 727, 738, 753, 759, 770, 781, 234,
  354. 794, 797, 810, 818, 109, 821, 834, 842, 95, 858,
  355. 864, 875, 881, 892, 1429, 898, 909, 915, 262, 926,
  356. 942, 261, 939, 306, 950, 1431, 1430, 133, 318, 263,
  357. 232, 296, 315, 0, 334, 3743, 1372, 1362, 0, 1353,
  358. 1360, 0, 1415, 0, 1357, 1351, 1347, 1339, 0, 1398,
  359. 1396, 1392, 1391, 3743, 3743, 1363, 3743, 3743, 3743, 0,
  360. 963, 974, 980, 991, 1002, 1383, 1013, 1019, 1030, 1036,
  361. 1051, 1052, 1068, 1069, 1084, 1090, 1105, 1106, 1121, 1127,
  362. 1138, 1144, 1155, 1166, 328, 312, 1348, 1179, 1182, 1190,
  363. 1203, 1216, 1227, 1224, 1242, 1245, 1248, 1263, 335, 1266,
  364. 1281, 1287, 348, 1298, 1304, 1315, 1326, 331, 1337, 1343,
  365. 1354, 1360, 1371, 1377, 1344, 1388, 1394, 1409, 380, 1417,
  366. 1433, 1434, 229, 1449, 390, 334, 1450, 373, 347, 374,
  367. 357, 392, 330, 0, 1330, 1326, 1318, 1307, 1307, 1310,
  368. 0, 1300, 1465, 1466, 1481, 1487, 1502, 1503, 1520, 1519,
  369. 1535, 1541, 1552, 1563, 1574, 1580, 1595, 1598, 1606, 1619,
  370. 1627, 1635, 1650, 1656, 429, 407, 1294, 1667, 1680, 1688,
  371. 1691, 1709, 1706, 1350, 1717, 1732, 1738, 1753, 443, 1754,
  372. 1769, 1780, 417, 1786, 1801, 1807, 430, 1818, 1824, 1835,
  373. 1841, 1857, 1288, 1858, 1873, 1879, 452, 1890, 1896, 1911,
  374. 1912, 1316, 441, 1932, 439, 424, 1933, 163, 454, 464,
  375. 435, 1347, 506, 1291, 1297, 1277, 1280, 1273, 1280, 1329,
  376. 1949, 1965, 1971, 1987, 1988, 494, 2004, 2010, 2025, 2026,
  377. 2041, 2042, 2057, 2063, 2078, 2079, 2094, 2109, 2115, 2126,
  378. 2132, 2147, 398, 462, 495, 2148, 2168, 2165, 2186, 2185,
  379. 2203, 2202, 1320, 2218, 2224, 2235, 467, 2241, 2252, 2258,
  380. 551, 2269, 2275, 2286, 476, 2297, 2303, 2314, 558, 2320,
  381. 522, 2331, 2337, 2348, 465, 1262, 566, 2359, 552, 553,
  382. 1323, 591, 572, 567, 1321, 1252, 1318, 1261, 1256, 1258,
  383. 1238, 1241, 2365, 2380, 2383, 2386, 595, 2401, 2407, 2418,
  384. 2424, 2440, 2446, 2461, 2467, 2484, 2483, 2499, 2500, 2515,
  385. 2516, 2537, 557, 593, 603, 2538, 2553, 2559, 2570, 2576,
  386. 2591, 2597, 2612, 1269, 2618, 2629, 621, 2635, 2651, 586,
  387. 2652, 2667, 2680, 580, 2688, 2691, 2704, 641, 2715, 574,
  388. 2712, 2728, 605, 597, 656, 634, 671, 636, 1299, 1295,
  389. 1290, 1244, 1287, 1229, 1223, 1281, 1221, 2736, 2739, 2752,
  390. 654, 2760, 2773, 2781, 2789, 2797, 2805, 2813, 2826, 2829,
  391. 2842, 2853, 2859, 2870, 673, 691, 669, 2876, 2887, 2898,
  392. 2904, 2915, 2921, 2936, 2937, 1204, 2952, 2953, 713, 2968,
  393. 710, 2969, 2984, 2985, 694, 3002, 695, 3008, 741, 3024,
  394. 1266, 670, 733, 735, 745, 750, 1210, 1199, 1190, 1185,
  395. 0, 1192, 1184, 3025, 3040, 3041, 709, 3056, 3064, 3067,
  396. 3080, 3088, 3101, 3109, 3117, 3125, 751, 765, 756, 771,
  397. 3138, 3146, 3149, 3162, 3170, 780, 3173, 3186, 772, 3194,
  398. 737, 3202, 782, 3210, 792, 3218, 776, 3226, 806, 748,
  399. 784, 808, 795, 1189, 1178, 1178, 1182, 1176, 1171, 3234,
  400. 3242, 3250, 1226, 3258, 3266, 3279, 3287, 3290, 3303, 793,
  401. 828, 875, 1224, 3311, 3319, 763, 3332, 879, 866, 3335,
  402. 867, 1223, 3343, 885, 3356, 882, 896, 923, 887, 902,
  403. 1165, 1177, 1163, 1152, 1147, 1151, 3359, 3367, 3380, 3383,
  404. 3391, 3404, 3412, 878, 812, 921, 3415, 3428, 881, 3436,
  405. 947, 934, 3444, 951, 3452, 953, 1202, 957, 964, 960,
  406. 1200, 1145, 1130, 1134, 3743, 1135, 1130, 3460, 3468, 3476,
  407. 3484, 3492, 981, 855, 983, 3505, 992, 3513, 987, 971,
  408. 3516, 994, 3529, 1013, 1011, 975, 1016, 1132, 3743, 1115,
  409. 1128, 1131, 3537, 3540, 1001, 1022, 1003, 3557, 1169, 3560,
  410. 1057, 1033, 3573, 1024, 3581, 1059, 1050, 1034, 1061, 1114,
  411. 1111, 1098, 1079, 3598, 3599, 1139, 1088, 1130, 3614, 1129,
  412. 1089, 3615, 1069, 3632, 988, 1093, 1108, 917, 906, 843,
  413. 883, 742, 3631, 1090, 3647, 1128, 1115, 3648, 1127, 683,
  414. 609, 3743, 523, 529, 3663, 477, 1123, 445, 3669, 423,
  415. 262, 181, 3743, 231, 132, 96, 60, 58, 3743, 3743,
  416. 3743, 3717, 3721, 3723, 3728, 3731, 3734, 3737
  417. } ;
  418. static yyconst short int yy_def[729] =
  419. { 0,
  420. 721, 1, 722, 722, 721, 721, 721, 721, 721, 721,
  421. 721, 721, 723, 721, 721, 721, 721, 721, 721, 19,
  422. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  423. 19, 19, 19, 19, 19, 19, 19, 724, 724, 724,
  424. 724, 724, 724, 724, 725, 725, 725, 721, 725, 725,
  425. 725, 725, 725, 725, 725, 721, 726, 727, 723, 721,
  426. 723, 721, 721, 721, 721, 19, 19, 19, 19, 19,
  427. 19, 19, 19, 728, 19, 19, 19, 19, 19, 19,
  428. 19, 19, 19, 19, 19, 19, 19, 19, 728, 728,
  429. 19, 19, 19, 19, 19, 19, 19, 19, 19, 728,
  430. 19, 19, 19, 19, 728, 19, 19, 19, 728, 19,
  431. 19, 19, 19, 19, 67, 19, 19, 19, 728, 19,
  432. 19, 728, 19, 728, 19, 724, 724, 724, 724, 724,
  433. 724, 724, 724, 725, 725, 721, 725, 725, 725, 725,
  434. 725, 725, 725, 725, 725, 725, 725, 725, 725, 726,
  435. 726, 727, 727, 721, 721, 721, 721, 721, 721, 67,
  436. 19, 19, 19, 19, 19, 728, 19, 19, 19, 19,
  437. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  438. 19, 19, 19, 19, 728, 728, 67, 19, 19, 19,
  439. 19, 19, 19, 19, 19, 19, 19, 19, 728, 19,
  440. 19, 19, 728, 19, 19, 19, 19, 728, 19, 19,
  441. 19, 19, 19, 19, 67, 19, 19, 19, 728, 19,
  442. 19, 19, 728, 19, 728, 728, 19, 724, 724, 724,
  443. 724, 724, 724, 725, 725, 725, 725, 721, 725, 725,
  444. 725, 725, 19, 19, 19, 19, 19, 19, 19, 19,
  445. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  446. 19, 19, 19, 19, 728, 728, 67, 19, 19, 19,
  447. 19, 19, 19, 67, 19, 19, 19, 19, 728, 19,
  448. 19, 19, 728, 19, 19, 19, 728, 19, 19, 19,
  449. 19, 19, 67, 19, 19, 19, 728, 19, 19, 19,
  450. 19, 67, 728, 19, 728, 728, 19, 724, 724, 724,
  451. 724, 724, 724, 725, 725, 725, 721, 725, 725, 725,
  452. 19, 19, 19, 19, 19, 728, 19, 19, 19, 19,
  453. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  454. 19, 19, 728, 728, 728, 19, 19, 19, 19, 19,
  455. 19, 19, 67, 19, 19, 19, 728, 19, 19, 19,
  456. 728, 19, 19, 19, 728, 19, 19, 19, 728, 19,
  457. 728, 19, 19, 19, 728, 67, 728, 19, 728, 728,
  458. 724, 724, 724, 724, 724, 725, 725, 725, 721, 725,
  459. 725, 721, 19, 19, 19, 19, 728, 19, 19, 19,
  460. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  461. 19, 19, 728, 728, 728, 19, 19, 19, 19, 19,
  462. 19, 19, 19, 67, 19, 19, 728, 19, 19, 728,
  463. 19, 19, 19, 728, 19, 19, 19, 728, 19, 728,
  464. 19, 19, 728, 728, 728, 728, 728, 724, 724, 724,
  465. 725, 721, 725, 721, 725, 725, 721, 19, 19, 19,
  466. 728, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  467. 19, 19, 19, 19, 728, 728, 728, 19, 19, 19,
  468. 19, 19, 19, 19, 19, 67, 19, 19, 728, 19,
  469. 728, 19, 19, 19, 728, 19, 728, 19, 728, 19,
  470. 728, 728, 728, 728, 728, 724, 721, 721, 721, 721,
  471. 725, 721, 721, 19, 19, 19, 728, 19, 19, 19,
  472. 19, 19, 19, 19, 19, 19, 728, 728, 728, 728,
  473. 19, 19, 19, 19, 19, 728, 19, 19, 728, 19,
  474. 728, 19, 728, 19, 728, 19, 728, 19, 728, 728,
  475. 728, 728, 724, 721, 721, 721, 721, 721, 721, 19,
  476. 19, 19, 728, 19, 19, 19, 19, 19, 19, 728,
  477. 728, 728, 728, 19, 19, 728, 19, 728, 728, 19,
  478. 728, 728, 19, 728, 19, 728, 728, 728, 728, 724,
  479. 721, 721, 721, 721, 721, 721, 19, 19, 19, 19,
  480. 19, 19, 19, 728, 728, 728, 19, 19, 728, 19,
  481. 728, 728, 19, 728, 19, 728, 728, 728, 728, 728,
  482. 724, 721, 721, 721, 721, 721, 721, 19, 19, 19,
  483. 19, 19, 728, 728, 728, 19, 728, 19, 728, 728,
  484. 19, 728, 19, 728, 728, 728, 728, 721, 721, 721,
  485. 721, 721, 19, 19, 728, 728, 728, 19, 728, 19,
  486. 728, 728, 19, 728, 19, 728, 728, 728, 728, 721,
  487. 721, 721, 721, 19, 19, 728, 728, 728, 19, 728,
  488. 728, 19, 728, 19, 728, 728, 728, 728, 721, 721,
  489. 721, 721, 19, 728, 19, 728, 728, 19, 728, 728,
  490. 721, 721, 721, 721, 19, 728, 728, 728, 19, 728,
  491. 721, 721, 721, 728, 721, 721, 721, 721, 721, 721,
  492. 0, 721, 721, 721, 721, 721, 721, 721
  493. } ;
  494. static yyconst short int yy_nxt[3828] =
  495. { 0,
  496. 6, 7, 8, 9, 10, 11, 6, 12, 13, 10,
  497. 10, 10, 14, 15, 16, 17, 17, 17, 17, 17,
  498. 17, 18, 10, 10, 6, 10, 10, 19, 20, 21,
  499. 22, 23, 24, 25, 26, 27, 26, 26, 26, 28,
  500. 29, 30, 31, 26, 32, 33, 34, 35, 36, 37,
  501. 26, 26, 26, 10, 10, 10, 38, 38, 38, 38,
  502. 39, 38, 38, 38, 40, 38, 38, 38, 38, 41,
  503. 38, 38, 38, 38, 42, 43, 38, 44, 38, 38,
  504. 38, 10, 10, 10, 46, 47, 56, 56, 56, 56,
  505. 59, 59, 126, 126, 46, 48, 126, 60, 46, 47,
  506. 126, 126, 137, 59, 59, 138, 126, 166, 46, 48,
  507. 64, 64, 64, 64, 64, 64, 64, 68, 139, 154,
  508. 75, 166, 135, 141, 76, 155, 140, 68, 77, 68,
  509. 78, 68, 135, 720, 142, 719, 68, 133, 143, 144,
  510. 79, 68, 49, 129, 50, 126, 146, 148, 128, 147,
  511. 51, 68, 52, 68, 53, 68, 49, 54, 50, 208,
  512. 68, 166, 149, 55, 51, 130, 52, 132, 53, 131,
  513. 718, 54, 56, 56, 203, 126, 166, 55, 57, 57,
  514. 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
  515. 57, 57, 57, 57, 57, 57, 57, 57, 57, 57,
  516. 57, 57, 57, 57, 228, 186, 717, 58, 58, 58,
  517. 58, 58, 58, 58, 58, 58, 58, 58, 58, 58,
  518. 58, 58, 58, 58, 58, 58, 58, 58, 58, 58,
  519. 58, 58, 66, 185, 67, 67, 67, 67, 67, 67,
  520. 67, 166, 381, 166, 126, 716, 166, 68, 69, 68,
  521. 68, 68, 68, 68, 68, 68, 68, 68, 70, 68,
  522. 71, 68, 72, 68, 68, 68, 68, 73, 68, 68,
  523. 68, 68, 68, 166, 166, 126, 74, 74, 74, 74,
  524. 74, 74, 74, 74, 74, 74, 74, 74, 74, 74,
  525. 74, 74, 74, 74, 74, 74, 74, 74, 74, 74,
  526. 74, 68, 199, 59, 59, 231, 303, 80, 126, 68,
  527. 60, 81, 83, 68, 82, 68, 59, 59, 166, 68,
  528. 68, 68, 68, 68, 166, 223, 715, 126, 68, 219,
  529. 126, 230, 68, 84, 85, 135, 68, 87, 68, 68,
  530. 166, 68, 126, 166, 86, 135, 166, 166, 68, 68,
  531. 68, 68, 68, 68, 88, 96, 68, 68, 68, 126,
  532. 166, 91, 68, 97, 92, 225, 68, 232, 68, 126,
  533. 68, 89, 68, 93, 94, 68, 68, 68, 229, 95,
  534. 226, 68, 233, 266, 90, 126, 126, 68, 265, 68,
  535. 98, 68, 166, 101, 102, 279, 99, 103, 306, 68,
  536. 287, 106, 166, 68, 126, 68, 313, 104, 283, 107,
  537. 166, 68, 68, 68, 68, 108, 309, 110, 68, 166,
  538. 68, 311, 105, 111, 68, 100, 68, 112, 68, 166,
  539. 68, 310, 68, 68, 68, 166, 166, 115, 113, 68,
  540. 297, 166, 166, 114, 109, 116, 68, 126, 308, 68,
  541. 305, 166, 312, 166, 413, 166, 68, 166, 68, 68,
  542. 68, 120, 117, 68, 166, 68, 126, 121, 68, 118,
  543. 344, 123, 68, 68, 166, 361, 126, 166, 119, 166,
  544. 125, 380, 68, 68, 68, 68, 68, 68, 166, 166,
  545. 122, 68, 68, 64, 64, 64, 64, 64, 64, 64,
  546. 68, 377, 343, 68, 384, 365, 166, 166, 124, 379,
  547. 68, 68, 68, 68, 68, 68, 357, 68, 126, 68,
  548. 160, 68, 68, 68, 383, 68, 414, 371, 161, 382,
  549. 68, 427, 434, 443, 166, 67, 67, 67, 67, 67,
  550. 67, 67, 67, 67, 67, 67, 67, 67, 67, 67,
  551. 67, 67, 67, 67, 67, 67, 67, 67, 67, 67,
  552. 67, 68, 68, 166, 166, 166, 385, 397, 415, 166,
  553. 166, 162, 68, 68, 68, 68, 68, 68, 166, 126,
  554. 68, 68, 440, 68, 126, 163, 166, 68, 713, 68,
  555. 712, 164, 166, 68, 68, 68, 68, 68, 166, 167,
  556. 68, 165, 68, 126, 68, 166, 68, 166, 68, 166,
  557. 68, 68, 68, 68, 68, 166, 491, 166, 168, 68,
  558. 447, 68, 68, 68, 475, 169, 430, 446, 68, 450,
  559. 68, 438, 68, 166, 68, 170, 68, 495, 68, 445,
  560. 68, 68, 68, 171, 68, 449, 166, 68, 126, 173,
  561. 68, 476, 499, 166, 68, 448, 68, 172, 68, 461,
  562. 68, 68, 68, 68, 68, 501, 166, 477, 166, 68,
  563. 502, 68, 174, 175, 68, 68, 711, 177, 176, 489,
  564. 68, 166, 166, 166, 68, 166, 68, 68, 68, 68,
  565. 68, 68, 178, 68, 504, 166, 68, 506, 68, 180,
  566. 68, 68, 68, 166, 68, 497, 166, 166, 68, 179,
  567. 68, 183, 181, 68, 68, 68, 182, 68, 527, 187,
  568. 68, 166, 166, 517, 68, 166, 68, 184, 68, 68,
  569. 503, 505, 68, 68, 549, 188, 529, 528, 530, 68,
  570. 68, 68, 68, 68, 68, 166, 68, 166, 68, 166,
  571. 68, 68, 68, 166, 189, 68, 190, 166, 539, 68,
  572. 166, 543, 126, 166, 545, 68, 68, 68, 166, 68,
  573. 541, 563, 191, 192, 68, 166, 68, 166, 68, 193,
  574. 68, 68, 194, 166, 166, 68, 547, 68, 166, 550,
  575. 552, 68, 166, 68, 166, 68, 166, 68, 68, 196,
  576. 68, 68, 704, 195, 166, 166, 68, 126, 68, 68,
  577. 68, 579, 68, 551, 553, 587, 197, 68, 166, 198,
  578. 166, 68, 68, 68, 166, 68, 570, 609, 68, 588,
  579. 200, 572, 68, 573, 68, 68, 68, 68, 68, 68,
  580. 166, 68, 581, 201, 68, 571, 68, 578, 68, 68,
  581. 68, 584, 68, 576, 582, 590, 68, 68, 68, 68,
  582. 68, 68, 68, 68, 202, 68, 604, 166, 68, 204,
  583. 68, 634, 68, 206, 68, 586, 68, 207, 166, 166,
  584. 68, 205, 68, 589, 68, 209, 68, 166, 605, 68,
  585. 166, 166, 68, 166, 166, 703, 68, 166, 68, 166,
  586. 68, 656, 68, 68, 68, 68, 68, 210, 166, 68,
  587. 211, 68, 614, 68, 126, 68, 702, 68, 701, 68,
  588. 68, 68, 68, 68, 612, 213, 68, 212, 68, 166,
  589. 68, 216, 214, 166, 68, 166, 68, 68, 68, 68,
  590. 68, 618, 633, 68, 617, 68, 166, 68, 606, 68,
  591. 637, 68, 611, 68, 68, 68, 217, 218, 616, 166,
  592. 620, 220, 68, 166, 68, 166, 68, 68, 68, 166,
  593. 68, 221, 166, 68, 222, 621, 166, 224, 68, 68,
  594. 68, 68, 68, 166, 68, 635, 68, 166, 68, 68,
  595. 68, 68, 68, 166, 243, 166, 227, 68, 619, 166,
  596. 166, 68, 68, 68, 166, 68, 166, 640, 68, 244,
  597. 68, 639, 68, 166, 68, 166, 68, 644, 68, 68,
  598. 68, 68, 68, 166, 647, 166, 642, 68, 166, 245,
  599. 68, 68, 645, 68, 166, 662, 166, 646, 68, 668,
  600. 68, 68, 68, 246, 68, 166, 166, 68, 247, 68,
  601. 655, 68, 657, 68, 659, 68, 661, 68, 68, 68,
  602. 68, 68, 166, 676, 68, 678, 68, 664, 68, 166,
  603. 68, 166, 68, 166, 249, 248, 68, 68, 68, 68,
  604. 68, 166, 666, 68, 667, 669, 677, 251, 683, 68,
  605. 68, 68, 68, 68, 68, 250, 68, 68, 68, 68,
  606. 166, 166, 166, 687, 681, 166, 68, 68, 68, 68,
  607. 68, 253, 68, 252, 686, 68, 68, 255, 68, 680,
  608. 166, 685, 68, 688, 68, 256, 68, 166, 68, 254,
  609. 68, 68, 68, 68, 68, 166, 257, 68, 697, 166,
  610. 166, 166, 166, 68, 68, 68, 68, 68, 68, 68,
  611. 706, 166, 68, 68, 692, 68, 694, 691, 259, 68,
  612. 258, 68, 699, 68, 696, 68, 68, 68, 68, 68,
  613. 700, 690, 68, 689, 68, 262, 260, 708, 68, 261,
  614. 68, 166, 68, 68, 68, 68, 68, 673, 672, 710,
  615. 671, 68, 670, 68, 68, 68, 714, 68, 707, 652,
  616. 263, 651, 68, 650, 68, 264, 68, 68, 68, 649,
  617. 68, 648, 126, 68, 166, 627, 626, 68, 68, 268,
  618. 269, 68, 68, 270, 68, 625, 68, 624, 271, 68,
  619. 68, 68, 68, 623, 622, 166, 166, 68, 166, 596,
  620. 595, 68, 594, 68, 68, 68, 274, 273, 593, 272,
  621. 68, 592, 68, 591, 68, 68, 68, 559, 68, 558,
  622. 557, 556, 68, 68, 68, 68, 68, 68, 275, 68,
  623. 68, 68, 555, 68, 68, 277, 68, 554, 166, 536,
  624. 68, 513, 68, 68, 68, 68, 68, 68, 68, 68,
  625. 68, 68, 276, 512, 68, 68, 511, 280, 510, 509,
  626. 508, 278, 507, 68, 68, 68, 68, 126, 68, 68,
  627. 68, 126, 281, 68, 486, 68, 457, 456, 455, 68,
  628. 454, 68, 282, 68, 453, 68, 68, 68, 68, 68,
  629. 452, 451, 68, 126, 68, 126, 68, 444, 68, 424,
  630. 68, 392, 68, 68, 68, 68, 68, 391, 390, 284,
  631. 389, 68, 388, 68, 68, 68, 387, 68, 386, 126,
  632. 285, 376, 68, 369, 68, 68, 68, 353, 68, 345,
  633. 320, 68, 319, 68, 286, 288, 318, 68, 317, 68,
  634. 316, 68, 68, 68, 68, 68, 315, 314, 68, 293,
  635. 289, 290, 68, 267, 68, 166, 68, 155, 68, 68,
  636. 68, 68, 68, 152, 152, 68, 291, 68, 150, 68,
  637. 150, 68, 242, 68, 241, 68, 68, 68, 68, 68,
  638. 240, 239, 68, 292, 68, 295, 68, 238, 68, 237,
  639. 68, 236, 68, 294, 68, 68, 68, 68, 235, 234,
  640. 296, 68, 126, 126, 215, 68, 166, 68, 159, 68,
  641. 158, 68, 157, 156, 302, 68, 68, 68, 298, 68,
  642. 299, 68, 68, 152, 68, 300, 150, 145, 136, 126,
  643. 65, 68, 68, 68, 68, 68, 68, 68, 68, 301,
  644. 68, 68, 63, 62, 307, 721, 721, 68, 68, 68,
  645. 68, 68, 68, 68, 68, 721, 304, 68, 721, 721,
  646. 721, 721, 721, 68, 68, 321, 68, 68, 68, 68,
  647. 322, 721, 68, 68, 721, 68, 323, 721, 721, 68,
  648. 721, 68, 721, 68, 721, 68, 324, 68, 68, 68,
  649. 68, 68, 721, 721, 68, 721, 721, 721, 721, 721,
  650. 68, 68, 325, 68, 68, 68, 328, 68, 68, 68,
  651. 68, 327, 721, 721, 721, 721, 721, 68, 68, 68,
  652. 68, 68, 68, 68, 329, 721, 68, 68, 721, 68,
  653. 721, 721, 721, 68, 721, 68, 721, 68, 326, 68,
  654. 68, 68, 68, 68, 721, 721, 330, 721, 68, 721,
  655. 68, 68, 68, 331, 68, 721, 721, 721, 721, 68,
  656. 721, 68, 68, 68, 721, 68, 721, 721, 68, 332,
  657. 68, 721, 68, 721, 68, 721, 68, 721, 68, 721,
  658. 334, 333, 68, 68, 721, 335, 68, 68, 721, 336,
  659. 721, 721, 721, 68, 68, 68, 68, 68, 68, 721,
  660. 68, 721, 68, 721, 68, 68, 68, 68, 337, 721,
  661. 721, 721, 721, 68, 338, 68, 721, 68, 721, 68,
  662. 721, 68, 721, 68, 721, 68, 68, 68, 721, 68,
  663. 721, 339, 721, 68, 68, 340, 721, 68, 68, 341,
  664. 721, 342, 68, 721, 68, 721, 721, 721, 68, 721,
  665. 68, 721, 68, 721, 68, 68, 68, 68, 68, 721,
  666. 721, 721, 721, 68, 721, 68, 721, 68, 68, 68,
  667. 721, 721, 721, 346, 68, 347, 68, 721, 68, 68,
  668. 68, 721, 68, 721, 721, 721, 68, 68, 68, 68,
  669. 68, 68, 348, 68, 68, 68, 350, 68, 349, 351,
  670. 721, 721, 721, 721, 68, 68, 68, 68, 68, 68,
  671. 352, 68, 721, 68, 721, 68, 68, 68, 354, 68,
  672. 68, 721, 721, 721, 68, 721, 68, 721, 721, 721,
  673. 68, 721, 68, 721, 68, 721, 68, 355, 68, 68,
  674. 68, 68, 68, 358, 356, 68, 721, 721, 721, 721,
  675. 721, 68, 68, 68, 68, 68, 68, 68, 362, 721,
  676. 68, 68, 721, 721, 721, 721, 721, 68, 68, 68,
  677. 721, 68, 721, 721, 68, 359, 68, 721, 68, 721,
  678. 68, 360, 68, 721, 68, 721, 68, 68, 68, 68,
  679. 721, 721, 363, 68, 364, 68, 721, 721, 721, 68,
  680. 721, 68, 721, 68, 721, 68, 68, 68, 68, 68,
  681. 721, 721, 68, 721, 68, 366, 68, 721, 68, 721,
  682. 68, 721, 68, 68, 68, 68, 68, 721, 721, 68,
  683. 721, 68, 721, 68, 721, 68, 721, 68, 721, 68,
  684. 721, 367, 68, 68, 368, 68, 68, 721, 68, 721,
  685. 721, 370, 721, 721, 721, 68, 68, 68, 68, 68,
  686. 68, 68, 721, 721, 68, 68, 721, 68, 721, 721,
  687. 721, 68, 721, 68, 721, 68, 721, 68, 68, 68,
  688. 68, 68, 721, 721, 68, 721, 68, 721, 68, 721,
  689. 372, 721, 68, 721, 68, 721, 68, 68, 68, 68,
  690. 68, 721, 374, 373, 721, 721, 721, 721, 721, 68,
  691. 68, 68, 68, 68, 68, 721, 721, 721, 68, 68,
  692. 68, 68, 721, 378, 721, 721, 721, 721, 721, 721,
  693. 68, 68, 68, 68, 68, 68, 375, 68, 721, 68,
  694. 68, 721, 721, 721, 721, 721, 721, 68, 721, 68,
  695. 721, 68, 394, 68, 721, 393, 68, 721, 721, 68,
  696. 395, 721, 721, 68, 721, 68, 721, 68, 721, 68,
  697. 721, 68, 68, 68, 396, 68, 68, 721, 68, 721,
  698. 721, 721, 721, 721, 721, 68, 68, 68, 68, 68,
  699. 68, 398, 68, 721, 68, 68, 721, 721, 68, 399,
  700. 721, 721, 68, 721, 68, 721, 68, 721, 68, 721,
  701. 68, 68, 68, 68, 68, 721, 400, 68, 721, 721,
  702. 721, 721, 721, 68, 68, 68, 68, 68, 68, 68,
  703. 68, 721, 68, 68, 721, 721, 721, 721, 721, 68,
  704. 68, 401, 68, 68, 68, 68, 402, 721, 68, 68,
  705. 721, 68, 721, 721, 404, 403, 721, 68, 405, 68,
  706. 721, 68, 721, 68, 68, 68, 68, 68, 406, 721,
  707. 68, 721, 721, 721, 721, 721, 68, 68, 68, 68,
  708. 68, 68, 68, 407, 721, 68, 68, 721, 721, 721,
  709. 721, 721, 68, 721, 68, 721, 68, 68, 409, 721,
  710. 408, 68, 721, 68, 721, 721, 721, 68, 721, 68,
  711. 721, 68, 721, 68, 68, 68, 68, 68, 721, 721,
  712. 68, 410, 68, 721, 68, 721, 68, 721, 68, 721,
  713. 68, 411, 412, 68, 68, 68, 68, 721, 721, 68,
  714. 721, 721, 721, 416, 721, 68, 68, 68, 68, 68,
  715. 68, 721, 721, 68, 68, 68, 68, 417, 721, 418,
  716. 721, 721, 721, 68, 721, 68, 68, 68, 68, 721,
  717. 68, 419, 68, 68, 68, 68, 420, 721, 721, 721,
  718. 721, 721, 721, 68, 68, 421, 68, 68, 68, 721,
  719. 68, 68, 68, 68, 422, 721, 425, 721, 721, 721,
  720. 68, 68, 68, 68, 68, 68, 68, 423, 721, 68,
  721. 68, 721, 68, 721, 721, 721, 68, 721, 68, 721,
  722. 68, 721, 68, 68, 68, 68, 68, 721, 721, 68,
  723. 426, 68, 721, 68, 721, 68, 721, 68, 721, 68,
  724. 68, 68, 68, 68, 721, 721, 68, 428, 68, 721,
  725. 68, 721, 68, 721, 68, 721, 68, 68, 429, 68,
  726. 68, 721, 721, 68, 431, 68, 721, 68, 721, 68,
  727. 721, 68, 721, 68, 68, 432, 68, 68, 721, 721,
  728. 721, 721, 68, 721, 68, 68, 68, 721, 68, 721,
  729. 721, 68, 433, 68, 721, 68, 436, 435, 721, 68,
  730. 721, 68, 68, 68, 68, 68, 721, 721, 68, 721,
  731. 68, 721, 68, 721, 68, 439, 68, 721, 68, 68,
  732. 68, 68, 68, 721, 437, 68, 721, 68, 441, 68,
  733. 721, 68, 721, 68, 721, 68, 68, 68, 68, 68,
  734. 721, 721, 721, 721, 68, 721, 68, 68, 68, 721,
  735. 68, 721, 442, 68, 721, 68, 721, 68, 721, 68,
  736. 721, 68, 721, 68, 721, 68, 68, 68, 68, 458,
  737. 459, 68, 68, 721, 68, 721, 721, 721, 68, 721,
  738. 68, 68, 68, 68, 68, 68, 68, 68, 68, 68,
  739. 68, 721, 460, 68, 721, 68, 721, 721, 721, 68,
  740. 721, 462, 721, 68, 721, 68, 68, 68, 68, 68,
  741. 721, 721, 68, 463, 68, 464, 68, 721, 68, 721,
  742. 68, 721, 68, 721, 68, 68, 68, 465, 68, 721,
  743. 721, 68, 721, 721, 68, 721, 721, 721, 68, 721,
  744. 68, 721, 68, 721, 68, 721, 68, 68, 68, 68,
  745. 721, 467, 466, 68, 721, 68, 721, 721, 721, 68,
  746. 721, 68, 721, 68, 721, 68, 721, 68, 68, 68,
  747. 470, 68, 68, 468, 68, 469, 721, 721, 721, 721,
  748. 721, 68, 68, 68, 68, 68, 68, 68, 68, 721,
  749. 68, 68, 721, 721, 721, 471, 721, 68, 68, 68,
  750. 68, 68, 68, 68, 68, 721, 68, 68, 721, 721,
  751. 721, 473, 721, 68, 68, 68, 68, 68, 68, 721,
  752. 472, 721, 68, 68, 474, 68, 68, 721, 721, 721,
  753. 478, 721, 721, 721, 721, 68, 68, 68, 68, 68,
  754. 68, 68, 721, 721, 68, 68, 721, 68, 479, 480,
  755. 721, 68, 721, 68, 721, 68, 721, 68, 68, 68,
  756. 68, 68, 721, 721, 68, 721, 68, 482, 68, 721,
  757. 68, 721, 68, 721, 68, 481, 68, 68, 68, 68,
  758. 483, 721, 721, 68, 721, 68, 721, 721, 721, 68,
  759. 721, 68, 721, 68, 721, 68, 721, 68, 68, 68,
  760. 68, 484, 721, 485, 68, 721, 68, 721, 721, 721,
  761. 68, 721, 68, 487, 68, 721, 68, 68, 68, 68,
  762. 68, 721, 721, 68, 721, 68, 721, 68, 721, 68,
  763. 488, 68, 721, 68, 721, 68, 68, 68, 490, 68,
  764. 68, 721, 68, 721, 721, 721, 721, 721, 721, 68,
  765. 68, 68, 492, 68, 68, 68, 721, 721, 68, 68,
  766. 721, 721, 721, 721, 721, 68, 721, 68, 68, 68,
  767. 721, 494, 721, 493, 68, 721, 68, 496, 68, 68,
  768. 68, 721, 68, 721, 721, 721, 68, 68, 68, 68,
  769. 68, 68, 68, 68, 721, 68, 721, 721, 68, 721,
  770. 68, 721, 68, 68, 68, 498, 68, 721, 721, 721,
  771. 68, 68, 68, 68, 68, 68, 68, 68, 721, 68,
  772. 721, 721, 68, 721, 68, 721, 68, 68, 68, 721,
  773. 68, 721, 721, 500, 68, 68, 68, 68, 68, 68,
  774. 68, 68, 514, 68, 721, 515, 68, 516, 68, 721,
  775. 68, 721, 68, 721, 68, 721, 721, 721, 68, 68,
  776. 68, 68, 68, 721, 518, 721, 721, 68, 721, 68,
  777. 721, 68, 721, 68, 721, 68, 721, 68, 721, 68,
  778. 68, 519, 721, 68, 520, 68, 721, 68, 68, 68,
  779. 721, 68, 721, 68, 721, 68, 68, 68, 721, 68,
  780. 721, 68, 721, 68, 68, 68, 721, 68, 521, 721,
  781. 721, 68, 68, 68, 68, 68, 522, 68, 721, 721,
  782. 68, 721, 721, 721, 68, 721, 68, 68, 68, 68,
  783. 68, 68, 721, 68, 721, 523, 68, 721, 721, 721,
  784. 68, 68, 68, 721, 68, 721, 721, 525, 524, 68,
  785. 721, 68, 721, 68, 721, 68, 721, 68, 68, 68,
  786. 68, 68, 721, 721, 68, 721, 68, 721, 526, 721,
  787. 68, 531, 68, 721, 68, 68, 68, 68, 68, 721,
  788. 721, 721, 721, 68, 721, 68, 68, 68, 721, 68,
  789. 721, 721, 68, 532, 68, 721, 68, 721, 68, 721,
  790. 68, 721, 68, 68, 68, 68, 68, 721, 721, 68,
  791. 721, 68, 534, 68, 721, 68, 721, 68, 721, 68,
  792. 533, 68, 68, 68, 68, 68, 535, 721, 68, 721,
  793. 721, 721, 721, 721, 68, 68, 68, 68, 68, 68,
  794. 68, 68, 721, 68, 68, 721, 721, 721, 721, 721,
  795. 68, 68, 537, 538, 68, 68, 68, 68, 721, 68,
  796. 68, 542, 721, 721, 721, 721, 540, 68, 68, 68,
  797. 68, 68, 68, 68, 721, 68, 68, 721, 721, 721,
  798. 721, 721, 68, 68, 68, 68, 68, 68, 721, 721,
  799. 68, 68, 68, 544, 721, 721, 68, 560, 721, 546,
  800. 68, 721, 68, 721, 68, 721, 68, 721, 68, 68,
  801. 68, 548, 68, 68, 721, 68, 721, 721, 721, 721,
  802. 721, 721, 68, 68, 68, 68, 68, 68, 68, 68,
  803. 562, 68, 68, 721, 721, 561, 721, 721, 68, 68,
  804. 68, 68, 68, 68, 68, 721, 721, 68, 68, 721,
  805. 721, 721, 68, 721, 68, 68, 68, 721, 68, 721,
  806. 564, 721, 68, 68, 68, 68, 68, 566, 68, 68,
  807. 565, 68, 721, 721, 68, 721, 68, 721, 68, 721,
  808. 68, 567, 68, 721, 721, 721, 68, 68, 68, 68,
  809. 68, 721, 568, 721, 721, 68, 721, 68, 721, 68,
  810. 721, 68, 721, 68, 721, 68, 721, 68, 68, 68,
  811. 721, 68, 569, 68, 721, 68, 68, 68, 721, 68,
  812. 721, 721, 721, 68, 68, 68, 68, 68, 721, 574,
  813. 721, 721, 68, 721, 68, 721, 68, 68, 68, 721,
  814. 68, 721, 721, 721, 68, 68, 68, 68, 68, 68,
  815. 68, 68, 721, 68, 721, 721, 68, 721, 68, 721,
  816. 68, 68, 68, 721, 68, 577, 721, 721, 68, 68,
  817. 68, 68, 68, 68, 68, 68, 575, 68, 721, 721,
  818. 68, 721, 68, 721, 68, 721, 68, 721, 68, 721,
  819. 68, 721, 68, 68, 68, 721, 68, 580, 68, 721,
  820. 68, 68, 68, 721, 68, 721, 68, 721, 68, 68,
  821. 68, 721, 68, 721, 68, 721, 68, 68, 583, 721,
  822. 68, 721, 68, 721, 585, 68, 68, 721, 68, 721,
  823. 68, 721, 68, 68, 68, 721, 68, 721, 68, 597,
  824. 68, 68, 68, 598, 68, 721, 68, 721, 68, 68,
  825. 68, 721, 68, 721, 68, 721, 68, 68, 68, 721,
  826. 68, 721, 721, 721, 68, 68, 68, 68, 68, 721,
  827. 600, 599, 721, 68, 721, 68, 721, 68, 68, 68,
  828. 602, 68, 721, 721, 721, 68, 68, 601, 68, 68,
  829. 68, 68, 68, 721, 68, 721, 721, 68, 721, 68,
  830. 721, 603, 721, 68, 721, 68, 721, 68, 721, 68,
  831. 68, 68, 721, 68, 608, 607, 721, 68, 68, 68,
  832. 68, 68, 721, 68, 721, 721, 68, 610, 721, 721,
  833. 68, 68, 68, 68, 68, 613, 721, 68, 721, 68,
  834. 721, 68, 68, 68, 68, 68, 721, 68, 721, 615,
  835. 68, 721, 721, 721, 68, 68, 68, 68, 68, 68,
  836. 721, 68, 721, 68, 721, 68, 68, 629, 68, 68,
  837. 628, 68, 721, 630, 68, 721, 721, 721, 68, 68,
  838. 68, 68, 68, 68, 721, 68, 721, 68, 721, 68,
  839. 68, 68, 68, 68, 721, 721, 631, 721, 68, 721,
  840. 68, 721, 68, 68, 68, 721, 68, 632, 721, 721,
  841. 68, 68, 68, 68, 68, 68, 68, 68, 721, 68,
  842. 721, 721, 68, 721, 68, 721, 68, 721, 68, 636,
  843. 68, 721, 68, 721, 68, 68, 638, 721, 68, 641,
  844. 68, 721, 68, 68, 68, 721, 68, 643, 68, 721,
  845. 68, 68, 68, 721, 68, 721, 68, 721, 68, 68,
  846. 653, 721, 68, 721, 68, 721, 68, 68, 68, 721,
  847. 68, 721, 68, 721, 68, 68, 68, 721, 68, 721,
  848. 68, 721, 68, 68, 68, 721, 68, 721, 721, 721,
  849. 68, 68, 68, 68, 68, 721, 721, 721, 654, 68,
  850. 721, 68, 721, 68, 68, 658, 721, 68, 660, 721,
  851. 721, 68, 68, 68, 68, 68, 68, 68, 68, 721,
  852. 68, 665, 663, 68, 721, 68, 721, 68, 68, 68,
  853. 721, 68, 721, 721, 721, 68, 68, 68, 68, 68,
  854. 68, 721, 68, 674, 68, 68, 721, 68, 68, 721,
  855. 721, 675, 721, 721, 721, 68, 721, 68, 68, 68,
  856. 68, 68, 68, 721, 68, 721, 679, 68, 721, 68,
  857. 721, 68, 721, 68, 721, 68, 684, 721, 721, 68,
  858. 68, 68, 721, 68, 682, 693, 68, 68, 68, 721,
  859. 721, 721, 721, 721, 721, 721, 68, 68, 68, 68,
  860. 68, 68, 68, 68, 721, 68, 68, 721, 721, 721,
  861. 721, 721, 68, 68, 68, 68, 68, 68, 721, 68,
  862. 68, 68, 68, 698, 721, 695, 721, 721, 721, 68,
  863. 68, 68, 68, 68, 68, 68, 68, 721, 68, 68,
  864. 721, 705, 721, 721, 721, 68, 68, 68, 68, 68,
  865. 68, 68, 709, 721, 68, 68, 721, 68, 721, 721,
  866. 721, 68, 721, 68, 721, 68, 721, 68, 721, 68,
  867. 68, 68, 721, 721, 721, 721, 68, 45, 45, 45,
  868. 45, 45, 61, 721, 61, 127, 127, 127, 134, 134,
  869. 721, 134, 134, 151, 151, 151, 153, 153, 153, 74,
  870. 74, 74, 5, 721, 721, 721, 721, 721, 721, 721,
  871. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  872. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  873. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  874. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  875. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  876. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  877. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  878. 721, 721, 721, 721, 721, 721, 721
  879. } ;
  880. static yyconst short int yy_chk[3828] =
  881. { 0,
  882. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  883. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  884. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  885. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  886. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  887. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  888. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  889. 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
  890. 1, 1, 1, 1, 3, 3, 7, 7, 8, 8,
  891. 13, 13, 39, 44, 3, 3, 40, 13, 4, 4,
  892. 43, 41, 49, 13, 13, 49, 42, 109, 4, 4,
  893. 17, 17, 17, 17, 17, 17, 17, 20, 50, 60,
  894. 20, 105, 46, 51, 20, 60, 50, 20, 20, 20,
  895. 20, 20, 46, 718, 51, 717, 20, 44, 52, 52,
  896. 20, 26, 3, 40, 3, 128, 54, 55, 39, 54,
  897. 3, 26, 3, 26, 3, 26, 4, 3, 4, 109,
  898. 26, 90, 55, 3, 4, 41, 4, 43, 4, 42,
  899. 716, 4, 56, 56, 105, 308, 89, 4, 12, 12,
  900. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  901. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  902. 12, 12, 12, 12, 128, 90, 715, 12, 12, 12,
  903. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  904. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  905. 12, 12, 19, 89, 19, 19, 19, 19, 19, 19,
  906. 19, 223, 308, 714, 131, 712, 100, 19, 19, 19,
  907. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  908. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  909. 19, 19, 19, 122, 119, 130, 19, 19, 19, 19,
  910. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  911. 19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
  912. 19, 21, 100, 59, 59, 131, 223, 21, 132, 22,
  913. 59, 21, 22, 21, 21, 21, 59, 59, 124, 22,
  914. 21, 22, 23, 22, 186, 122, 711, 133, 22, 119,
  915. 129, 130, 23, 23, 23, 135, 23, 24, 24, 25,
  916. 185, 23, 233, 208, 23, 135, 226, 199, 24, 25,
  917. 24, 25, 24, 25, 24, 28, 28, 24, 25, 229,
  918. 203, 27, 27, 28, 27, 124, 28, 132, 28, 231,
  919. 28, 25, 27, 27, 27, 28, 27, 29, 129, 27,
  920. 124, 27, 133, 186, 25, 228, 230, 29, 185, 29,
  921. 29, 29, 219, 30, 30, 199, 29, 30, 226, 31,
  922. 208, 31, 225, 30, 232, 30, 233, 30, 203, 31,
  923. 343, 31, 30, 31, 32, 31, 229, 32, 31, 266,
  924. 33, 231, 30, 33, 32, 29, 32, 33, 32, 283,
  925. 33, 230, 33, 32, 33, 710, 306, 34, 33, 33,
  926. 219, 265, 287, 33, 31, 34, 34, 311, 228, 35,
  927. 225, 305, 232, 303, 343, 279, 34, 708, 34, 35,
  928. 34, 35, 34, 35, 297, 34, 309, 35, 35, 34,
  929. 266, 36, 36, 37, 344, 283, 310, 375, 34, 357,
  930. 37, 306, 36, 37, 36, 37, 36, 37, 365, 706,
  931. 35, 36, 37, 64, 64, 64, 64, 64, 64, 64,
  932. 66, 303, 265, 68, 311, 287, 326, 345, 36, 305,
  933. 66, 69, 66, 68, 66, 68, 279, 68, 313, 66,
  934. 67, 69, 68, 69, 310, 69, 344, 297, 69, 309,
  935. 69, 357, 365, 375, 371, 67, 67, 67, 67, 67,
  936. 67, 67, 67, 67, 67, 67, 67, 67, 67, 67,
  937. 67, 67, 67, 67, 67, 67, 67, 67, 67, 67,
  938. 67, 70, 71, 361, 379, 380, 313, 326, 345, 413,
  939. 369, 70, 71, 70, 71, 70, 71, 72, 377, 384,
  940. 70, 71, 371, 73, 383, 71, 440, 72, 704, 72,
  941. 703, 72, 434, 73, 75, 73, 72, 73, 430, 75,
  942. 76, 73, 73, 382, 75, 414, 75, 397, 75, 444,
  943. 76, 77, 76, 75, 76, 415, 430, 443, 76, 76,
  944. 380, 77, 78, 77, 413, 77, 361, 379, 79, 384,
  945. 77, 369, 78, 427, 78, 78, 78, 434, 79, 377,
  946. 79, 78, 79, 80, 80, 383, 446, 79, 448, 81,
  947. 81, 414, 440, 438, 80, 382, 80, 80, 80, 397,
  948. 81, 82, 81, 80, 81, 443, 461, 415, 445, 81,
  949. 444, 82, 82, 82, 83, 82, 701, 84, 83, 427,
  950. 82, 477, 502, 447, 83, 475, 83, 84, 83, 84,
  951. 85, 84, 85, 83, 446, 700, 84, 448, 86, 86,
  952. 85, 87, 85, 476, 85, 438, 495, 497, 86, 85,
  953. 86, 87, 86, 87, 88, 87, 86, 86, 475, 91,
  954. 87, 517, 491, 461, 88, 489, 88, 88, 88, 91,
  955. 445, 447, 92, 88, 502, 92, 476, 475, 477, 91,
  956. 93, 91, 92, 91, 92, 503, 92, 504, 91, 541,
  957. 93, 92, 93, 499, 93, 94, 94, 505, 489, 93,
  958. 550, 495, 506, 527, 497, 94, 95, 94, 529, 94,
  959. 491, 517, 94, 94, 94, 576, 95, 528, 95, 95,
  960. 95, 96, 96, 530, 539, 95, 499, 97, 547, 503,
  961. 505, 96, 536, 96, 543, 96, 551, 97, 98, 97,
  962. 96, 97, 692, 96, 545, 570, 97, 553, 98, 99,
  963. 98, 541, 98, 504, 506, 550, 98, 98, 549, 99,
  964. 552, 99, 101, 99, 605, 102, 527, 576, 99, 551,
  965. 101, 529, 101, 530, 101, 102, 101, 102, 103, 102,
  966. 571, 101, 543, 102, 102, 528, 104, 539, 103, 106,
  967. 103, 547, 103, 536, 545, 553, 104, 103, 104, 106,
  968. 104, 106, 107, 106, 104, 104, 570, 634, 106, 106,
  969. 108, 605, 107, 108, 107, 549, 107, 108, 579, 581,
  970. 108, 107, 108, 552, 108, 110, 110, 572, 571, 108,
  971. 604, 578, 111, 609, 586, 691, 110, 584, 110, 589,
  972. 110, 634, 111, 112, 111, 110, 111, 111, 587, 113,
  973. 111, 111, 581, 112, 590, 112, 690, 112, 689, 113,
  974. 114, 113, 112, 113, 579, 113, 116, 112, 113, 688,
  975. 114, 116, 114, 606, 114, 588, 116, 117, 116, 114,
  976. 116, 587, 604, 118, 586, 116, 612, 117, 572, 117,
  977. 609, 117, 578, 118, 120, 118, 117, 118, 584, 611,
  978. 589, 120, 118, 614, 120, 616, 120, 123, 120, 618,
  979. 121, 121, 620, 120, 121, 590, 619, 123, 125, 123,
  980. 121, 123, 121, 640, 121, 606, 123, 646, 125, 121,
  981. 125, 161, 125, 633, 161, 635, 125, 125, 588, 639,
  982. 685, 161, 162, 161, 637, 161, 642, 612, 163, 161,
  983. 161, 611, 162, 655, 162, 657, 162, 616, 163, 164,
  984. 163, 162, 163, 645, 620, 644, 614, 163, 647, 164,
  985. 165, 164, 618, 164, 656, 640, 664, 619, 164, 646,
  986. 165, 167, 165, 165, 165, 662, 668, 168, 167, 165,
  987. 633, 167, 635, 167, 637, 167, 639, 168, 169, 168,
  988. 167, 168, 667, 655, 170, 657, 168, 642, 169, 661,
  989. 169, 666, 169, 669, 170, 169, 170, 169, 170, 171,
  990. 172, 683, 644, 170, 645, 647, 656, 172, 664, 171,
  991. 172, 171, 172, 171, 172, 171, 173, 174, 171, 172,
  992. 677, 681, 694, 668, 662, 686, 173, 174, 173, 174,
  993. 173, 174, 175, 173, 667, 173, 174, 176, 176, 661,
  994. 687, 666, 175, 669, 175, 176, 175, 697, 176, 175,
  995. 176, 175, 176, 177, 178, 707, 177, 176, 683, 699,
  996. 696, 680, 678, 177, 178, 177, 178, 177, 178, 179,
  997. 694, 676, 177, 178, 673, 180, 677, 672, 180, 179,
  998. 179, 179, 686, 179, 681, 180, 181, 180, 179, 180,
  999. 687, 671, 182, 670, 180, 182, 181, 697, 181, 181,
  1000. 181, 659, 182, 183, 182, 181, 182, 652, 651, 699,
  1001. 650, 182, 648, 183, 184, 183, 707, 183, 696, 627,
  1002. 183, 626, 183, 624, 184, 184, 184, 188, 184, 623,
  1003. 189, 622, 621, 184, 617, 596, 595, 188, 190, 188,
  1004. 189, 188, 189, 189, 189, 594, 188, 593, 190, 189,
  1005. 190, 191, 190, 592, 591, 582, 573, 190, 563, 559,
  1006. 558, 191, 557, 191, 192, 191, 193, 192, 556, 191,
  1007. 191, 555, 194, 554, 192, 193, 192, 513, 192, 512,
  1008. 510, 509, 194, 192, 194, 193, 194, 193, 194, 193,
  1009. 195, 194, 508, 196, 193, 197, 197, 507, 501, 486,
  1010. 195, 457, 195, 196, 195, 196, 197, 196, 197, 195,
  1011. 197, 198, 196, 456, 200, 197, 455, 200, 454, 453,
  1012. 452, 198, 451, 198, 200, 198, 200, 450, 200, 201,
  1013. 198, 449, 201, 200, 424, 202, 392, 391, 390, 201,
  1014. 389, 201, 202, 201, 388, 202, 204, 202, 201, 202,
  1015. 387, 386, 205, 385, 202, 381, 204, 376, 204, 353,
  1016. 204, 320, 205, 206, 205, 204, 205, 319, 318, 205,
  1017. 317, 205, 316, 206, 207, 206, 315, 206, 314, 312,
  1018. 206, 302, 206, 293, 207, 209, 207, 274, 207, 267,
  1019. 242, 210, 240, 207, 207, 209, 239, 209, 238, 209,
  1020. 237, 210, 211, 210, 209, 210, 236, 235, 212, 215,
  1021. 210, 212, 211, 187, 211, 166, 211, 156, 212, 213,
  1022. 212, 211, 212, 153, 152, 214, 213, 212, 151, 213,
  1023. 150, 213, 148, 213, 147, 214, 216, 214, 213, 214,
  1024. 146, 145, 217, 214, 214, 217, 216, 143, 216, 141,
  1025. 216, 140, 217, 216, 217, 216, 217, 218, 138, 137,
  1026. 218, 217, 127, 126, 115, 220, 74, 218, 65, 218,
  1027. 63, 218, 62, 61, 222, 220, 218, 220, 220, 220,
  1028. 220, 221, 222, 58, 220, 220, 57, 53, 48, 38,
  1029. 18, 221, 222, 221, 222, 221, 222, 224, 227, 221,
  1030. 221, 222, 15, 14, 227, 5, 0, 224, 227, 224,
  1031. 227, 224, 227, 243, 244, 0, 224, 227, 0, 0,
  1032. 0, 0, 0, 243, 244, 243, 244, 243, 244, 245,
  1033. 244, 0, 243, 244, 0, 246, 245, 0, 0, 245,
  1034. 0, 245, 0, 245, 0, 246, 246, 246, 245, 246,
  1035. 247, 248, 0, 0, 246, 0, 0, 0, 0, 0,
  1036. 247, 248, 247, 248, 247, 248, 250, 250, 249, 247,
  1037. 248, 249, 0, 0, 0, 0, 0, 250, 249, 250,
  1038. 249, 250, 249, 251, 251, 0, 250, 249, 0, 252,
  1039. 0, 0, 0, 251, 0, 251, 0, 251, 248, 252,
  1040. 253, 252, 251, 252, 0, 0, 252, 0, 252, 0,
  1041. 253, 254, 253, 253, 253, 0, 0, 0, 0, 253,
  1042. 0, 254, 255, 254, 0, 254, 0, 0, 256, 254,
  1043. 254, 0, 255, 0, 255, 0, 255, 0, 256, 0,
  1044. 256, 255, 256, 257, 0, 257, 258, 256, 0, 258,
  1045. 0, 0, 0, 257, 259, 257, 258, 257, 258, 0,
  1046. 258, 0, 257, 0, 259, 258, 259, 260, 259, 0,
  1047. 0, 0, 0, 259, 260, 261, 0, 260, 0, 260,
  1048. 0, 260, 0, 262, 0, 261, 260, 261, 0, 261,
  1049. 0, 261, 0, 262, 261, 262, 0, 262, 263, 262,
  1050. 0, 263, 262, 0, 264, 0, 0, 0, 263, 0,
  1051. 263, 0, 263, 0, 264, 268, 264, 263, 264, 0,
  1052. 0, 0, 0, 264, 0, 268, 0, 268, 269, 268,
  1053. 0, 0, 0, 268, 268, 269, 270, 0, 269, 271,
  1054. 269, 0, 269, 0, 0, 0, 270, 269, 270, 271,
  1055. 270, 271, 270, 271, 273, 270, 272, 272, 271, 273,
  1056. 0, 0, 0, 0, 273, 275, 273, 272, 273, 272,
  1057. 273, 272, 0, 273, 0, 275, 272, 275, 275, 275,
  1058. 276, 0, 0, 0, 275, 0, 277, 0, 0, 0,
  1059. 276, 0, 276, 0, 276, 0, 277, 276, 277, 276,
  1060. 277, 278, 280, 280, 277, 277, 0, 0, 0, 0,
  1061. 0, 278, 280, 278, 280, 278, 280, 281, 284, 0,
  1062. 278, 280, 0, 0, 0, 0, 0, 281, 282, 281,
  1063. 0, 281, 0, 0, 284, 281, 281, 0, 282, 0,
  1064. 282, 282, 282, 0, 284, 0, 284, 282, 284, 285,
  1065. 0, 0, 285, 284, 286, 286, 0, 0, 0, 285,
  1066. 0, 285, 0, 285, 0, 286, 288, 286, 285, 286,
  1067. 0, 0, 289, 0, 286, 289, 288, 0, 288, 0,
  1068. 288, 0, 289, 290, 289, 288, 289, 0, 0, 291,
  1069. 0, 289, 0, 290, 0, 290, 0, 290, 0, 291,
  1070. 0, 291, 290, 291, 292, 292, 294, 0, 291, 0,
  1071. 0, 296, 0, 0, 0, 292, 294, 292, 294, 292,
  1072. 294, 295, 0, 0, 292, 294, 0, 296, 0, 0,
  1073. 0, 295, 0, 295, 0, 295, 0, 296, 298, 296,
  1074. 295, 296, 0, 0, 299, 0, 296, 0, 298, 0,
  1075. 298, 0, 298, 0, 299, 0, 299, 298, 299, 300,
  1076. 301, 0, 300, 299, 0, 0, 0, 0, 0, 300,
  1077. 301, 300, 301, 300, 301, 0, 0, 0, 300, 301,
  1078. 304, 307, 0, 304, 0, 0, 0, 0, 0, 0,
  1079. 304, 307, 304, 307, 304, 307, 301, 321, 0, 304,
  1080. 307, 0, 0, 0, 0, 0, 0, 321, 0, 321,
  1081. 0, 321, 322, 322, 0, 321, 321, 0, 0, 323,
  1082. 323, 0, 0, 322, 0, 322, 0, 322, 0, 323,
  1083. 0, 323, 322, 323, 324, 324, 325, 0, 323, 0,
  1084. 0, 0, 0, 0, 0, 324, 325, 324, 325, 324,
  1085. 325, 327, 327, 0, 324, 325, 0, 0, 328, 328,
  1086. 0, 0, 327, 0, 327, 0, 327, 0, 328, 0,
  1087. 328, 327, 328, 329, 330, 0, 329, 328, 0, 0,
  1088. 0, 0, 0, 329, 330, 329, 330, 329, 330, 331,
  1089. 332, 0, 329, 330, 0, 0, 0, 0, 0, 331,
  1090. 332, 331, 332, 331, 332, 333, 332, 0, 331, 332,
  1091. 0, 334, 0, 0, 334, 333, 0, 333, 334, 333,
  1092. 0, 334, 0, 334, 333, 334, 335, 336, 335, 0,
  1093. 334, 0, 0, 0, 0, 0, 335, 336, 335, 336,
  1094. 335, 336, 337, 336, 0, 335, 336, 0, 0, 0,
  1095. 0, 0, 337, 0, 337, 0, 337, 338, 338, 0,
  1096. 337, 337, 0, 339, 0, 0, 0, 338, 0, 338,
  1097. 0, 338, 0, 339, 340, 339, 338, 339, 0, 0,
  1098. 341, 339, 339, 0, 340, 0, 340, 0, 340, 0,
  1099. 341, 340, 341, 340, 341, 342, 346, 0, 0, 341,
  1100. 0, 0, 0, 346, 0, 342, 346, 342, 346, 342,
  1101. 346, 0, 0, 348, 342, 346, 347, 347, 0, 347,
  1102. 0, 0, 0, 348, 0, 348, 347, 348, 347, 0,
  1103. 347, 348, 348, 350, 349, 347, 349, 0, 0, 0,
  1104. 0, 0, 0, 350, 349, 350, 349, 350, 349, 0,
  1105. 352, 351, 350, 349, 351, 0, 355, 0, 0, 0,
  1106. 352, 351, 352, 351, 352, 351, 354, 352, 0, 352,
  1107. 351, 0, 355, 0, 0, 0, 354, 0, 354, 0,
  1108. 354, 0, 355, 356, 355, 354, 355, 0, 0, 358,
  1109. 356, 355, 0, 356, 0, 356, 0, 356, 0, 358,
  1110. 359, 358, 356, 358, 0, 0, 360, 358, 358, 0,
  1111. 359, 0, 359, 0, 359, 0, 360, 362, 360, 359,
  1112. 360, 0, 0, 363, 362, 360, 0, 362, 0, 362,
  1113. 0, 362, 0, 363, 364, 363, 362, 363, 0, 0,
  1114. 0, 0, 363, 0, 364, 366, 364, 0, 364, 0,
  1115. 0, 367, 364, 364, 0, 366, 367, 366, 0, 366,
  1116. 0, 367, 368, 367, 366, 367, 0, 0, 370, 0,
  1117. 367, 0, 368, 0, 368, 370, 368, 0, 370, 372,
  1118. 370, 368, 370, 0, 368, 373, 0, 370, 373, 372,
  1119. 0, 372, 0, 372, 0, 373, 374, 373, 372, 373,
  1120. 0, 0, 0, 0, 373, 0, 374, 378, 374, 0,
  1121. 374, 0, 374, 393, 0, 374, 0, 378, 0, 378,
  1122. 0, 378, 0, 393, 0, 393, 378, 393, 394, 394,
  1123. 395, 395, 393, 0, 396, 0, 0, 0, 394, 0,
  1124. 394, 395, 394, 395, 396, 395, 396, 394, 396, 398,
  1125. 395, 0, 396, 396, 0, 399, 0, 0, 0, 398,
  1126. 0, 398, 0, 398, 0, 399, 400, 399, 398, 399,
  1127. 0, 0, 401, 399, 399, 401, 400, 0, 400, 0,
  1128. 400, 0, 401, 0, 401, 400, 401, 402, 402, 0,
  1129. 0, 401, 0, 0, 403, 0, 0, 0, 402, 0,
  1130. 402, 0, 402, 0, 403, 0, 403, 402, 403, 404,
  1131. 0, 404, 403, 403, 0, 405, 0, 0, 0, 404,
  1132. 0, 404, 0, 404, 0, 405, 0, 405, 404, 405,
  1133. 407, 407, 406, 405, 405, 406, 0, 0, 0, 0,
  1134. 0, 407, 406, 407, 406, 407, 406, 408, 409, 0,
  1135. 407, 406, 0, 0, 0, 409, 0, 408, 409, 408,
  1136. 409, 408, 409, 410, 411, 0, 408, 409, 0, 0,
  1137. 0, 411, 0, 410, 411, 410, 411, 410, 411, 0,
  1138. 410, 0, 410, 411, 412, 412, 416, 0, 0, 0,
  1139. 416, 0, 0, 0, 0, 412, 416, 412, 416, 412,
  1140. 416, 417, 0, 0, 412, 416, 0, 418, 417, 418,
  1141. 0, 417, 0, 417, 0, 417, 0, 418, 419, 418,
  1142. 417, 418, 0, 0, 420, 0, 418, 420, 419, 0,
  1143. 419, 0, 419, 0, 420, 419, 420, 419, 420, 421,
  1144. 421, 0, 0, 420, 0, 422, 0, 0, 0, 421,
  1145. 0, 421, 0, 421, 0, 422, 0, 422, 421, 422,
  1146. 423, 422, 0, 423, 422, 0, 425, 0, 0, 0,
  1147. 423, 0, 423, 425, 423, 0, 425, 426, 425, 423,
  1148. 425, 0, 0, 428, 0, 425, 0, 426, 0, 426,
  1149. 426, 426, 0, 428, 0, 428, 426, 428, 429, 429,
  1150. 431, 0, 428, 0, 0, 0, 0, 0, 0, 429,
  1151. 431, 429, 431, 429, 431, 432, 0, 0, 429, 431,
  1152. 0, 0, 0, 0, 0, 432, 0, 432, 433, 432,
  1153. 0, 433, 0, 432, 432, 0, 435, 435, 433, 436,
  1154. 433, 0, 433, 0, 0, 0, 435, 433, 435, 436,
  1155. 435, 436, 437, 436, 0, 435, 0, 0, 436, 0,
  1156. 441, 0, 437, 439, 437, 439, 437, 0, 0, 0,
  1157. 441, 437, 441, 439, 441, 439, 442, 439, 0, 441,
  1158. 0, 0, 439, 0, 458, 0, 442, 459, 442, 0,
  1159. 442, 0, 0, 442, 458, 442, 458, 459, 458, 459,
  1160. 460, 459, 458, 458, 0, 459, 459, 460, 462, 0,
  1161. 460, 0, 460, 0, 460, 0, 0, 0, 462, 460,
  1162. 462, 463, 462, 0, 463, 0, 0, 462, 0, 464,
  1163. 0, 463, 0, 463, 0, 463, 0, 465, 0, 464,
  1164. 463, 464, 0, 464, 465, 466, 0, 465, 464, 465,
  1165. 0, 465, 0, 467, 0, 466, 465, 466, 0, 466,
  1166. 0, 468, 0, 467, 466, 467, 0, 467, 468, 0,
  1167. 0, 468, 467, 468, 469, 468, 469, 470, 0, 0,
  1168. 468, 0, 0, 0, 469, 0, 469, 470, 469, 470,
  1169. 471, 470, 0, 469, 0, 470, 470, 0, 0, 0,
  1170. 471, 472, 471, 0, 471, 0, 0, 473, 471, 471,
  1171. 0, 472, 0, 472, 0, 472, 0, 473, 474, 473,
  1172. 472, 473, 0, 0, 478, 0, 473, 0, 474, 0,
  1173. 474, 478, 474, 0, 478, 479, 478, 474, 478, 0,
  1174. 0, 0, 0, 478, 0, 479, 480, 479, 0, 479,
  1175. 0, 0, 481, 479, 479, 0, 480, 0, 480, 0,
  1176. 480, 0, 481, 482, 481, 480, 481, 0, 0, 483,
  1177. 0, 481, 483, 482, 0, 482, 0, 482, 0, 483,
  1178. 482, 483, 482, 483, 484, 485, 485, 0, 483, 0,
  1179. 0, 0, 0, 0, 484, 485, 484, 485, 484, 485,
  1180. 487, 488, 0, 484, 485, 0, 0, 0, 0, 0,
  1181. 487, 488, 487, 488, 487, 488, 490, 492, 0, 487,
  1182. 488, 492, 0, 0, 0, 0, 490, 492, 490, 492,
  1183. 490, 492, 493, 494, 0, 490, 492, 0, 0, 0,
  1184. 0, 0, 493, 494, 493, 494, 493, 494, 0, 0,
  1185. 496, 493, 494, 496, 0, 0, 498, 514, 0, 498,
  1186. 496, 0, 496, 0, 496, 0, 498, 0, 498, 496,
  1187. 498, 500, 500, 514, 0, 498, 0, 0, 0, 0,
  1188. 0, 0, 500, 514, 500, 514, 500, 514, 515, 516,
  1189. 516, 500, 514, 0, 0, 515, 0, 0, 515, 516,
  1190. 515, 516, 515, 516, 518, 0, 0, 515, 516, 0,
  1191. 0, 0, 519, 0, 518, 520, 518, 0, 518, 0,
  1192. 518, 0, 519, 518, 519, 520, 519, 520, 521, 520,
  1193. 519, 519, 0, 0, 520, 0, 522, 0, 521, 0,
  1194. 521, 521, 521, 0, 0, 0, 522, 521, 522, 523,
  1195. 522, 0, 523, 0, 0, 522, 0, 524, 0, 523,
  1196. 0, 523, 0, 523, 0, 525, 0, 524, 523, 524,
  1197. 0, 524, 525, 526, 0, 525, 524, 525, 0, 525,
  1198. 0, 0, 0, 526, 525, 526, 531, 526, 0, 531,
  1199. 0, 0, 526, 0, 532, 0, 531, 533, 531, 0,
  1200. 531, 0, 0, 0, 532, 531, 532, 533, 532, 533,
  1201. 534, 533, 0, 532, 0, 0, 533, 0, 535, 0,
  1202. 534, 537, 534, 0, 534, 537, 0, 0, 535, 534,
  1203. 535, 537, 535, 537, 538, 537, 535, 535, 0, 0,
  1204. 537, 0, 540, 0, 538, 0, 538, 0, 538, 0,
  1205. 542, 0, 540, 538, 540, 0, 540, 542, 544, 0,
  1206. 542, 540, 542, 0, 542, 0, 546, 0, 544, 542,
  1207. 544, 0, 544, 0, 548, 0, 546, 544, 546, 0,
  1208. 546, 0, 560, 0, 548, 546, 548, 0, 548, 0,
  1209. 561, 0, 560, 548, 560, 0, 560, 0, 562, 560,
  1210. 561, 560, 561, 561, 561, 0, 564, 0, 562, 561,
  1211. 562, 0, 562, 0, 565, 0, 564, 562, 564, 0,
  1212. 564, 0, 0, 0, 565, 564, 565, 566, 565, 0,
  1213. 566, 565, 0, 565, 0, 567, 0, 566, 568, 566,
  1214. 568, 566, 0, 0, 0, 567, 566, 567, 568, 567,
  1215. 568, 569, 568, 0, 567, 0, 0, 568, 0, 574,
  1216. 0, 569, 0, 569, 0, 569, 0, 575, 0, 574,
  1217. 569, 574, 0, 574, 575, 574, 0, 575, 574, 575,
  1218. 577, 575, 0, 580, 0, 0, 575, 577, 0, 0,
  1219. 577, 583, 577, 580, 577, 580, 0, 580, 0, 577,
  1220. 0, 583, 580, 583, 585, 583, 0, 597, 0, 583,
  1221. 583, 0, 0, 0, 585, 598, 585, 597, 585, 597,
  1222. 0, 597, 0, 585, 0, 598, 597, 598, 599, 598,
  1223. 597, 600, 0, 600, 598, 0, 0, 0, 599, 601,
  1224. 599, 600, 599, 600, 0, 600, 0, 599, 0, 601,
  1225. 600, 601, 602, 601, 0, 0, 601, 0, 601, 0,
  1226. 603, 0, 602, 607, 602, 0, 602, 603, 0, 0,
  1227. 603, 602, 603, 607, 603, 607, 608, 607, 0, 603,
  1228. 0, 0, 607, 0, 610, 0, 608, 0, 608, 608,
  1229. 608, 0, 613, 0, 610, 608, 610, 0, 610, 613,
  1230. 615, 0, 613, 610, 613, 0, 613, 615, 628, 0,
  1231. 615, 613, 615, 0, 615, 0, 629, 0, 628, 615,
  1232. 628, 0, 628, 0, 630, 0, 629, 628, 629, 0,
  1233. 629, 0, 631, 0, 630, 629, 630, 0, 630, 0,
  1234. 632, 0, 631, 630, 631, 0, 631, 0, 0, 0,
  1235. 632, 631, 632, 636, 632, 0, 0, 0, 632, 632,
  1236. 0, 638, 0, 636, 641, 636, 0, 636, 638, 0,
  1237. 0, 638, 636, 638, 641, 638, 641, 643, 641, 0,
  1238. 638, 643, 641, 641, 0, 653, 0, 643, 654, 643,
  1239. 0, 643, 0, 0, 0, 653, 643, 653, 654, 653,
  1240. 654, 0, 654, 653, 653, 658, 0, 654, 660, 0,
  1241. 0, 654, 0, 0, 0, 658, 0, 658, 660, 658,
  1242. 660, 663, 660, 0, 658, 0, 660, 660, 0, 665,
  1243. 0, 663, 0, 663, 0, 663, 665, 0, 0, 665,
  1244. 663, 665, 0, 665, 663, 674, 674, 675, 665, 0,
  1245. 0, 0, 0, 0, 0, 0, 674, 675, 674, 675,
  1246. 674, 675, 679, 682, 0, 674, 675, 0, 0, 0,
  1247. 0, 0, 679, 682, 679, 682, 679, 682, 0, 693,
  1248. 684, 679, 682, 684, 0, 679, 0, 0, 0, 693,
  1249. 684, 693, 684, 693, 684, 695, 698, 0, 693, 684,
  1250. 0, 693, 0, 0, 0, 695, 698, 695, 698, 695,
  1251. 698, 705, 698, 0, 695, 698, 0, 709, 0, 0,
  1252. 0, 705, 0, 705, 0, 705, 0, 709, 0, 709,
  1253. 705, 709, 0, 0, 0, 0, 709, 722, 722, 722,
  1254. 722, 722, 723, 0, 723, 724, 724, 724, 725, 725,
  1255. 0, 725, 725, 726, 726, 726, 727, 727, 727, 728,
  1256. 728, 728, 721, 721, 721, 721, 721, 721, 721, 721,
  1257. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  1258. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  1259. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  1260. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  1261. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  1262. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  1263. 721, 721, 721, 721, 721, 721, 721, 721, 721, 721,
  1264. 721, 721, 721, 721, 721, 721, 721
  1265. } ;
  1266. static yy_state_type yy_last_accepting_state;
  1267. static char *yy_last_accepting_cpos;
  1268. /* The intent behind this definition is that it'll catch
  1269. * any uses of REJECT which flex missed.
  1270. */
  1271. #define REJECT reject_used_but_not_detected
  1272. #define yymore() yymore_used_but_not_detected
  1273. #define YY_MORE_ADJ 0
  1274. char *yytext;
  1275. #define INITIAL 0
  1276. /* Copyright (C) Boris Nikolaus, Germany, 1996-1997. All rights reserved. */
  1277. #include <stdarg.h>
  1278. #include <stdlib.h>
  1279. #include <string.h>
  1280. #include <ctype.h>
  1281. #include "defs.h"
  1282. #include "parser.h"
  1283. #include "error.h"
  1284. #define T_NOTOKEN 9999
  1285. static LLPOS current_pos;
  1286. static LLPOS last_pos;
  1287. #undef YY_INPUT
  1288. #define YY_INPUT(buf,result,max_size) {\
  1289. if (!filelen) { result = YY_NULL;\
  1290. } else { while (currentfilepos >= allfilestarts[currentfile+1]) currentfile++;\
  1291. buf[0] = *currentfilepos++; filelen--;\
  1292. last_pos = current_pos;\
  1293. if (buf[0] == '\n') { current_pos.line++; current_pos.column = 1; }\
  1294. else { current_pos.column++; }\
  1295. current_pos.file = allfilenames[currentfile];\
  1296. result = 1;\
  1297. }}
  1298. LLSTYPE yylval;
  1299. char *file = NULL;
  1300. int filelen = 0;
  1301. char *currentfilepos = NULL;
  1302. char **allfilenames;
  1303. char **allfilestarts;
  1304. int currentfile;
  1305. #define DIRECTIVE 1
  1306. /* Macros after this point can all be overridden by user definitions in
  1307. * section 1.
  1308. */
  1309. #ifndef YY_SKIP_YYWRAP
  1310. #ifdef __cplusplus
  1311. extern "C" int yywrap YY_PROTO(( void ));
  1312. #else
  1313. extern int yywrap YY_PROTO(( void ));
  1314. #endif
  1315. #endif
  1316. #ifndef YY_NO_UNPUT
  1317. static void yyunput YY_PROTO(( int c, char *buf_ptr ));
  1318. #endif
  1319. #ifndef yytext_ptr
  1320. static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
  1321. #endif
  1322. #ifndef YY_NO_INPUT
  1323. #ifdef __cplusplus
  1324. static int yyinput YY_PROTO(( void ));
  1325. #else
  1326. static int input YY_PROTO(( void ));
  1327. #endif
  1328. #endif
  1329. #if YY_STACK_USED
  1330. static int yy_start_stack_ptr = 0;
  1331. static int yy_start_stack_depth = 0;
  1332. static int *yy_start_stack = 0;
  1333. #ifndef YY_NO_PUSH_STATE
  1334. static void yy_push_state YY_PROTO(( int new_state ));
  1335. #endif
  1336. #ifndef YY_NO_POP_STATE
  1337. static void yy_pop_state YY_PROTO(( void ));
  1338. #endif
  1339. #ifndef YY_NO_TOP_STATE
  1340. static int yy_top_state YY_PROTO(( void ));
  1341. #endif
  1342. #else
  1343. #define YY_NO_PUSH_STATE 1
  1344. #define YY_NO_POP_STATE 1
  1345. #define YY_NO_TOP_STATE 1
  1346. #endif
  1347. #ifdef YY_MALLOC_DECL
  1348. YY_MALLOC_DECL
  1349. #else
  1350. #if __STDC__
  1351. #ifndef __cplusplus
  1352. #include <stdlib.h>
  1353. #endif
  1354. #else
  1355. /* Just try to get by without declaring the routines. This will fail
  1356. * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
  1357. * or sizeof(void*) != sizeof(int).
  1358. */
  1359. #endif
  1360. #endif
  1361. /* Amount of stuff to slurp up with each read. */
  1362. #ifndef YY_READ_BUF_SIZE
  1363. #define YY_READ_BUF_SIZE 8192
  1364. #endif
  1365. /* Copy whatever the last rule matched to the standard output. */
  1366. #ifndef ECHO
  1367. /* This used to be an fputs(), but since the string might contain NUL's,
  1368. * we now use fwrite().
  1369. */
  1370. #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
  1371. #endif
  1372. /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
  1373. * is returned in "result".
  1374. */
  1375. #ifndef YY_INPUT
  1376. #define YY_INPUT(buf,result,max_size) \
  1377. if ( yy_current_buffer->yy_is_interactive ) \
  1378. { \
  1379. int c = '*', n; \
  1380. for ( n = 0; n < max_size && \
  1381. (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
  1382. buf[n] = (char) c; \
  1383. if ( c == '\n' ) \
  1384. buf[n++] = (char) c; \
  1385. if ( c == EOF && ferror( yyin ) ) \
  1386. YY_FATAL_ERROR( "input in flex scanner failed" ); \
  1387. result = n; \
  1388. } \
  1389. else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
  1390. && ferror( yyin ) ) \
  1391. YY_FATAL_ERROR( "input in flex scanner failed" );
  1392. #endif
  1393. /* No semi-colon after return; correct usage is to write "yyterminate();" -
  1394. * we don't want an extra ';' after the "return" because that will cause
  1395. * some compilers to complain about unreachable statements.
  1396. */
  1397. #ifndef yyterminate
  1398. #define yyterminate() return YY_NULL
  1399. #endif
  1400. /* Number of entries by which start-condition stack grows. */
  1401. #ifndef YY_START_STACK_INCR
  1402. #define YY_START_STACK_INCR 25
  1403. #endif
  1404. /* Report a fatal error. */
  1405. #ifndef YY_FATAL_ERROR
  1406. #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
  1407. #endif
  1408. /* Default declaration of generated scanner - a define so the user can
  1409. * easily add parameters.
  1410. */
  1411. #ifndef YY_DECL
  1412. #define YY_DECL int yylex YY_PROTO(( void ))
  1413. #endif
  1414. /* Code executed at the beginning of each rule, after yytext and yyleng
  1415. * have been set up.
  1416. */
  1417. #ifndef YY_USER_ACTION
  1418. #define YY_USER_ACTION
  1419. #endif
  1420. /* Code executed at the end of each rule. */
  1421. #ifndef YY_BREAK
  1422. #define YY_BREAK break;
  1423. #endif
  1424. #define YY_RULE_SETUP \
  1425. YY_USER_ACTION
  1426. YY_DECL
  1427. {
  1428. register yy_state_type yy_current_state;
  1429. register char *yy_cp, *yy_bp;
  1430. register int yy_act;
  1431. if ( yy_init )
  1432. {
  1433. yy_init = 0;
  1434. #ifdef YY_USER_INIT
  1435. YY_USER_INIT;
  1436. #endif
  1437. if ( ! yy_start )
  1438. yy_start = 1; /* first start state */
  1439. if ( ! yyin )
  1440. yyin = stdin;
  1441. if ( ! yyout )
  1442. yyout = stdout;
  1443. if ( ! yy_current_buffer )
  1444. yy_current_buffer =
  1445. yy_create_buffer( yyin, YY_BUF_SIZE );
  1446. yy_load_buffer_state();
  1447. }
  1448. while ( 1 ) /* loops until end-of-file is reached */
  1449. {
  1450. yy_cp = yy_c_buf_p;
  1451. /* Support of yytext. */
  1452. *yy_cp = yy_hold_char;
  1453. /* yy_bp points to the position in yy_ch_buf of the start of
  1454. * the current run.
  1455. */
  1456. yy_bp = yy_cp;
  1457. yy_current_state = yy_start;
  1458. yy_match:
  1459. do
  1460. {
  1461. register YY_CHAR yy_c = (YY_CHAR)yy_ec[YY_SC_TO_UI(*yy_cp)];
  1462. if ( yy_accept[yy_current_state] )
  1463. {
  1464. yy_last_accepting_state = yy_current_state;
  1465. yy_last_accepting_cpos = yy_cp;
  1466. }
  1467. while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1468. {
  1469. yy_current_state = (int) yy_def[yy_current_state];
  1470. if ( yy_current_state >= 722 )
  1471. yy_c = (YY_CHAR)yy_meta[(unsigned int) yy_c];
  1472. }
  1473. yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  1474. ++yy_cp;
  1475. }
  1476. while ( yy_base[yy_current_state] != 3743 );
  1477. yy_find_action:
  1478. yy_act = yy_accept[yy_current_state];
  1479. if ( yy_act == 0 )
  1480. { /* have to back up */
  1481. yy_cp = yy_last_accepting_cpos;
  1482. yy_current_state = yy_last_accepting_state;
  1483. yy_act = yy_accept[yy_current_state];
  1484. }
  1485. YY_DO_BEFORE_ACTION;
  1486. do_action: /* This label is used only to access EOF actions. */
  1487. switch ( yy_act )
  1488. { /* beginning of action switch */
  1489. case 0: /* must back up */
  1490. /* undo the effects of YY_DO_BEFORE_ACTION */
  1491. *yy_cp = yy_hold_char;
  1492. yy_cp = yy_last_accepting_cpos;
  1493. yy_current_state = yy_last_accepting_state;
  1494. goto yy_find_action;
  1495. case 1:
  1496. YY_RULE_SETUP
  1497. return T_ABSENT;
  1498. YY_BREAK
  1499. case 2:
  1500. YY_RULE_SETUP
  1501. return T_ABSTRACT_SYNTAX;
  1502. YY_BREAK
  1503. case 3:
  1504. YY_RULE_SETUP
  1505. return T_ALL;
  1506. YY_BREAK
  1507. case 4:
  1508. YY_RULE_SETUP
  1509. return T_ANY;
  1510. YY_BREAK
  1511. case 5:
  1512. YY_RULE_SETUP
  1513. return T_APPLICATION;
  1514. YY_BREAK
  1515. case 6:
  1516. YY_RULE_SETUP
  1517. return T_AUTOMATIC;
  1518. YY_BREAK
  1519. case 7:
  1520. YY_RULE_SETUP
  1521. return T_BEGIN;
  1522. YY_BREAK
  1523. case 8:
  1524. YY_RULE_SETUP
  1525. return T_BIT;
  1526. YY_BREAK
  1527. case 9:
  1528. YY_RULE_SETUP
  1529. return T_BMPString;
  1530. YY_BREAK
  1531. case 10:
  1532. YY_RULE_SETUP
  1533. return T_BOOLEAN;
  1534. YY_BREAK
  1535. case 11:
  1536. YY_RULE_SETUP
  1537. return T_BY;
  1538. YY_BREAK
  1539. case 12:
  1540. YY_RULE_SETUP
  1541. return T_CHARACTER;
  1542. YY_BREAK
  1543. case 13:
  1544. YY_RULE_SETUP
  1545. return T_CHOICE;
  1546. YY_BREAK
  1547. case 14:
  1548. YY_RULE_SETUP
  1549. return T_CLASS;
  1550. YY_BREAK
  1551. case 15:
  1552. YY_RULE_SETUP
  1553. return T_COMPONENT;
  1554. YY_BREAK
  1555. case 16:
  1556. YY_RULE_SETUP
  1557. return T_COMPONENTS;
  1558. YY_BREAK
  1559. case 17:
  1560. YY_RULE_SETUP
  1561. return T_CONSTRAINED;
  1562. YY_BREAK
  1563. case 18:
  1564. YY_RULE_SETUP
  1565. return T_DEFAULT;
  1566. YY_BREAK
  1567. case 19:
  1568. YY_RULE_SETUP
  1569. return T_DEFINED;
  1570. YY_BREAK
  1571. case 20:
  1572. YY_RULE_SETUP
  1573. return T_DEFINITIONS;
  1574. YY_BREAK
  1575. case 21:
  1576. YY_RULE_SETUP
  1577. return T_EMBEDDED;
  1578. YY_BREAK
  1579. case 22:
  1580. YY_RULE_SETUP
  1581. return T_empty;
  1582. YY_BREAK
  1583. case 23:
  1584. YY_RULE_SETUP
  1585. return T_END;
  1586. YY_BREAK
  1587. case 24:
  1588. YY_RULE_SETUP
  1589. return T_ENUMERATED;
  1590. YY_BREAK
  1591. case 25:
  1592. YY_RULE_SETUP
  1593. return T_EXCEPT;
  1594. YY_BREAK
  1595. case 26:
  1596. YY_RULE_SETUP
  1597. return T_EXPLICIT;
  1598. YY_BREAK
  1599. case 27:
  1600. YY_RULE_SETUP
  1601. return T_EXPORTS;
  1602. YY_BREAK
  1603. case 28:
  1604. YY_RULE_SETUP
  1605. return T_EXTENSIBILITY;
  1606. YY_BREAK
  1607. case 29:
  1608. YY_RULE_SETUP
  1609. return T_EXTERNAL;
  1610. YY_BREAK
  1611. case 30:
  1612. YY_RULE_SETUP
  1613. return T_FALSE;
  1614. YY_BREAK
  1615. case 31:
  1616. YY_RULE_SETUP
  1617. return T_FROM;
  1618. YY_BREAK
  1619. case 32:
  1620. YY_RULE_SETUP
  1621. return T_GeneralizedTime;
  1622. YY_BREAK
  1623. case 33:
  1624. YY_RULE_SETUP
  1625. return T_GeneralString;
  1626. YY_BREAK
  1627. case 34:
  1628. YY_RULE_SETUP
  1629. return T_GraphicString;
  1630. YY_BREAK
  1631. case 35:
  1632. YY_RULE_SETUP
  1633. return T_IA5String;
  1634. YY_BREAK
  1635. case 36:
  1636. YY_RULE_SETUP
  1637. return T_TYPE_IDENTIFIER;
  1638. YY_BREAK
  1639. case 37:
  1640. YY_RULE_SETUP
  1641. return T_IDENTIFIER;
  1642. YY_BREAK
  1643. case 38:
  1644. YY_RULE_SETUP
  1645. return T_identifier;
  1646. YY_BREAK
  1647. case 39:
  1648. YY_RULE_SETUP
  1649. return T_IMPLICIT;
  1650. YY_BREAK
  1651. case 40:
  1652. YY_RULE_SETUP
  1653. return T_IMPLIED;
  1654. YY_BREAK
  1655. case 41:
  1656. YY_RULE_SETUP
  1657. return T_IMPORTS;
  1658. YY_BREAK
  1659. case 42:
  1660. YY_RULE_SETUP
  1661. return T_INCLUDES;
  1662. YY_BREAK
  1663. case 43:
  1664. YY_RULE_SETUP
  1665. return T_INSTANCE;
  1666. YY_BREAK
  1667. case 44:
  1668. YY_RULE_SETUP
  1669. return T_INTEGER;
  1670. YY_BREAK
  1671. case 45:
  1672. YY_RULE_SETUP
  1673. return T_INTERSECTION;
  1674. YY_BREAK
  1675. case 46:
  1676. YY_RULE_SETUP
  1677. return T_ISO646String;
  1678. YY_BREAK
  1679. case 47:
  1680. YY_RULE_SETUP
  1681. return T_MACRO;
  1682. YY_BREAK
  1683. case 48:
  1684. YY_RULE_SETUP
  1685. return T_MAX;
  1686. YY_BREAK
  1687. case 49:
  1688. YY_RULE_SETUP
  1689. return T_MIN;
  1690. YY_BREAK
  1691. case 50:
  1692. YY_RULE_SETUP
  1693. return T_MINUS_INFINITY;
  1694. YY_BREAK
  1695. case 51:
  1696. YY_RULE_SETUP
  1697. return T_NOTATION;
  1698. YY_BREAK
  1699. case 52:
  1700. YY_RULE_SETUP
  1701. return T_NULL;
  1702. YY_BREAK
  1703. case 53:
  1704. YY_RULE_SETUP
  1705. return T_Number;
  1706. YY_BREAK
  1707. case 54:
  1708. YY_RULE_SETUP
  1709. return T_NumericString;
  1710. YY_BREAK
  1711. case 55:
  1712. YY_RULE_SETUP
  1713. return T_OBJECT;
  1714. YY_BREAK
  1715. case 56:
  1716. YY_RULE_SETUP
  1717. return T_ObjectDescriptor;
  1718. YY_BREAK
  1719. case 57:
  1720. YY_RULE_SETUP
  1721. return T_OCTET;
  1722. YY_BREAK
  1723. case 58:
  1724. YY_RULE_SETUP
  1725. return T_OF;
  1726. YY_BREAK
  1727. case 59:
  1728. YY_RULE_SETUP
  1729. return T_OPTIONAL;
  1730. YY_BREAK
  1731. case 60:
  1732. YY_RULE_SETUP
  1733. return T_PDV;
  1734. YY_BREAK
  1735. case 61:
  1736. YY_RULE_SETUP
  1737. return T_PLUS_INFINITY;
  1738. YY_BREAK
  1739. case 62:
  1740. YY_RULE_SETUP
  1741. return T_PRESENT;
  1742. YY_BREAK
  1743. case 63:
  1744. YY_RULE_SETUP
  1745. return T_PrintableString;
  1746. YY_BREAK
  1747. case 64:
  1748. YY_RULE_SETUP
  1749. return T_PRIVATE;
  1750. YY_BREAK
  1751. case 65:
  1752. YY_RULE_SETUP
  1753. return T_REAL;
  1754. YY_BREAK
  1755. case 66:
  1756. YY_RULE_SETUP
  1757. return T_SEQUENCE;
  1758. YY_BREAK
  1759. case 67:
  1760. YY_RULE_SETUP
  1761. return T_SET;
  1762. YY_BREAK
  1763. case 68:
  1764. YY_RULE_SETUP
  1765. return T_SIZE;
  1766. YY_BREAK
  1767. case 69:
  1768. YY_RULE_SETUP
  1769. return T_STRING;
  1770. YY_BREAK
  1771. case 70:
  1772. YY_RULE_SETUP
  1773. return T_string;
  1774. YY_BREAK
  1775. case 71:
  1776. YY_RULE_SETUP
  1777. return T_SYNTAX;
  1778. YY_BREAK
  1779. case 72:
  1780. YY_RULE_SETUP
  1781. return T_T61String;
  1782. YY_BREAK
  1783. case 73:
  1784. YY_RULE_SETUP
  1785. return T_TAGS;
  1786. YY_BREAK
  1787. case 74:
  1788. YY_RULE_SETUP
  1789. return T_TeletexString;
  1790. YY_BREAK
  1791. case 75:
  1792. YY_RULE_SETUP
  1793. return T_TRUE;
  1794. YY_BREAK
  1795. case 76:
  1796. YY_RULE_SETUP
  1797. return T_TYPE;
  1798. YY_BREAK
  1799. case 77:
  1800. YY_RULE_SETUP
  1801. return T_type;
  1802. YY_BREAK
  1803. case 78:
  1804. YY_RULE_SETUP
  1805. return T_UNION;
  1806. YY_BREAK
  1807. case 79:
  1808. YY_RULE_SETUP
  1809. return T_UNIQUE;
  1810. YY_BREAK
  1811. case 80:
  1812. YY_RULE_SETUP
  1813. return T_UNIVERSAL;
  1814. YY_BREAK
  1815. case 81:
  1816. YY_RULE_SETUP
  1817. return T_UniversalString;
  1818. YY_BREAK
  1819. case 82:
  1820. YY_RULE_SETUP
  1821. return T_UTCTime;
  1822. YY_BREAK
  1823. case 83:
  1824. YY_RULE_SETUP
  1825. return T_UTF8String;
  1826. YY_BREAK
  1827. case 84:
  1828. YY_RULE_SETUP
  1829. return T_VALUE;
  1830. YY_BREAK
  1831. case 85:
  1832. YY_RULE_SETUP
  1833. return T_value;
  1834. YY_BREAK
  1835. case 86:
  1836. YY_RULE_SETUP
  1837. return T_VideotexString;
  1838. YY_BREAK
  1839. case 87:
  1840. YY_RULE_SETUP
  1841. return T_VisibleString;
  1842. YY_BREAK
  1843. case 88:
  1844. YY_RULE_SETUP
  1845. return T_WITH;
  1846. YY_BREAK
  1847. case 89:
  1848. YY_RULE_SETUP
  1849. return *yytext;
  1850. YY_BREAK
  1851. case 90:
  1852. YY_RULE_SETUP
  1853. return T_DEF;
  1854. YY_BREAK
  1855. case 91:
  1856. YY_RULE_SETUP
  1857. return T_TDOT;
  1858. YY_BREAK
  1859. case 92:
  1860. YY_RULE_SETUP
  1861. return T_DDOT;
  1862. YY_BREAK
  1863. case 93:
  1864. YY_RULE_SETUP
  1865. { int i;
  1866. intx_t h;
  1867. intx_setuint32(&yylval._XNumber, 0);
  1868. for (i = 0; i < yyleng; i++) {
  1869. intx_muloctet(&h, &yylval._XNumber,
  1870. 10);
  1871. intx_addoctet(&yylval._XNumber, &h,
  1872. (octet_t)(yytext[i] - '0'));
  1873. }
  1874. return T_number;
  1875. }
  1876. YY_BREAK
  1877. case 94:
  1878. YY_RULE_SETUP
  1879. { char *p, *q;
  1880. q = yylval._XString =
  1881. (char *)malloc(yyleng - 2);
  1882. for (p = yytext + 1; *p != '\''; p++)
  1883. if (*p == '0' || *p == '1')
  1884. *q++ = *p;
  1885. *q = 0;
  1886. return T_bstring;
  1887. }
  1888. YY_BREAK
  1889. case 95:
  1890. YY_RULE_SETUP
  1891. { char *p, *q;
  1892. q = yylval._XString =
  1893. (char *)malloc(yyleng - 2);
  1894. for (p = yytext + 1; *p != '\''; p++)
  1895. if (isxdigit(*p))
  1896. *q++ = *p;
  1897. *q = 0;
  1898. return T_hstring;
  1899. }
  1900. YY_BREAK
  1901. case 96:
  1902. YY_RULE_SETUP
  1903. { int s, l = 0, c;
  1904. LLPOS start_pos;
  1905. yylval._XString32 =
  1906. (char32_t *)malloc(
  1907. (s = 32) * sizeof(char32_t));
  1908. start_pos = last_pos;
  1909. for (;;) {
  1910. c = input();
  1911. if (!c || c == EOF) {
  1912. error(E_unterminated_string,
  1913. &start_pos);
  1914. /*NOTREACHED*/
  1915. }
  1916. if (c == '\n') {
  1917. while (l > 0 && is32space(
  1918. yylval._XString32[l - 1]))
  1919. l--;
  1920. while (c = input()) {
  1921. if (!isspace(c))
  1922. break;
  1923. }
  1924. }
  1925. if (c == '\"') {
  1926. c = input();
  1927. if (c != '\"') {
  1928. unput(c);
  1929. yylval._XString32[l] = 0;
  1930. return T_cstring;
  1931. }
  1932. }
  1933. if (l + 1 >= s) {
  1934. yylval._XString32 = (char32_t *)
  1935. realloc(yylval._XString32,
  1936. (s *= 2) *
  1937. sizeof(char32_t));
  1938. }
  1939. yylval._XString32[l++] = c;
  1940. }
  1941. }
  1942. YY_BREAK
  1943. case 97:
  1944. YY_RULE_SETUP
  1945. {
  1946. yylval._XString =
  1947. (char *)malloc(yyleng + 1);
  1948. strcpy(yylval._XString, yytext);
  1949. return T_only_uppercase_symbol;
  1950. }
  1951. YY_BREAK
  1952. case 98:
  1953. YY_RULE_SETUP
  1954. {
  1955. yylval._XString =
  1956. (char *)malloc(yyleng + 1);
  1957. strcpy(yylval._XString, yytext);
  1958. return T_only_uppercase_digits_symbol;
  1959. }
  1960. YY_BREAK
  1961. case 99:
  1962. YY_RULE_SETUP
  1963. {
  1964. yylval._XString =
  1965. (char *)malloc(yyleng + 1);
  1966. strcpy(yylval._XString, yytext);
  1967. return T_uppercase_symbol;
  1968. }
  1969. YY_BREAK
  1970. case 100:
  1971. YY_RULE_SETUP
  1972. {
  1973. yylval._XString =
  1974. (char *)malloc(yyleng + 1);
  1975. strcpy(yylval._XString, yytext);
  1976. return T_lcsymbol;
  1977. }
  1978. YY_BREAK
  1979. case 101:
  1980. YY_RULE_SETUP
  1981. {
  1982. yylval._XString =
  1983. (char *)malloc(yyleng + 1);
  1984. strcpy(yylval._XString, yytext);
  1985. return T_amplcsymbol;
  1986. }
  1987. YY_BREAK
  1988. case 102:
  1989. YY_RULE_SETUP
  1990. {
  1991. yylval._XString =
  1992. (char *)malloc(yyleng + 1);
  1993. strcpy(yylval._XString, yytext);
  1994. return T_ampucsymbol;
  1995. }
  1996. YY_BREAK
  1997. case 103:
  1998. YY_RULE_SETUP
  1999. { BEGIN DIRECTIVE;
  2000. }
  2001. YY_BREAK
  2002. case 104:
  2003. YY_RULE_SETUP
  2004. { BEGIN INITIAL;
  2005. }
  2006. YY_BREAK
  2007. case 105:
  2008. YY_RULE_SETUP
  2009. { BEGIN INITIAL;
  2010. }
  2011. YY_BREAK
  2012. case 106:
  2013. case 107:
  2014. YY_RULE_SETUP
  2015. { return T_FIXED_ARRAY;
  2016. }
  2017. YY_BREAK
  2018. case 108:
  2019. case 109:
  2020. YY_RULE_SETUP
  2021. { return T_SINGLY_LINKED_LIST;
  2022. }
  2023. YY_BREAK
  2024. case 110:
  2025. case 111:
  2026. YY_RULE_SETUP
  2027. { return T_DOUBLY_LINKED_LIST;
  2028. }
  2029. YY_BREAK
  2030. case 112:
  2031. case 113:
  2032. YY_RULE_SETUP
  2033. { return T_LENGTH_POINTER;
  2034. }
  2035. YY_BREAK
  2036. case 114:
  2037. case 115:
  2038. YY_RULE_SETUP
  2039. { return T_ZERO_TERMINATED;
  2040. }
  2041. YY_BREAK
  2042. case 116:
  2043. case 117:
  2044. YY_RULE_SETUP
  2045. { return T_POINTER;
  2046. }
  2047. YY_BREAK
  2048. case 118:
  2049. case 119:
  2050. YY_RULE_SETUP
  2051. { return T_NO_POINTER;
  2052. }
  2053. YY_BREAK
  2054. case 120:
  2055. YY_RULE_SETUP
  2056. { /* ignore */
  2057. }
  2058. YY_BREAK
  2059. case 121:
  2060. YY_RULE_SETUP
  2061. { fprintf(stderr,
  2062. "Bad directive %s (ignored)\n",
  2063. yytext);
  2064. }
  2065. YY_BREAK
  2066. case 122:
  2067. YY_RULE_SETUP
  2068. { int c;
  2069. for (;;) {
  2070. c = input();
  2071. if (c == 0 || c == EOF)
  2072. break;
  2073. if (c == '\n')
  2074. break;
  2075. #ifdef MS_DIRECTIVE
  2076. if (c == g_chDirectiveBegin)
  2077. {
  2078. c = input();
  2079. GetPrivateDirective(&c);
  2080. }
  2081. #endif // MS_DIRECTIVE
  2082. if (c != '-')
  2083. continue;
  2084. c = input();
  2085. if (c == 0 || c == EOF)
  2086. break;
  2087. if (c == '\n')
  2088. break;
  2089. if (c != '-')
  2090. continue;
  2091. break;
  2092. }
  2093. return T_NOTOKEN;
  2094. }
  2095. YY_BREAK
  2096. case 123:
  2097. YY_RULE_SETUP
  2098. return T_NOTOKEN;
  2099. YY_BREAK
  2100. case 124:
  2101. YY_RULE_SETUP
  2102. return EOF;
  2103. YY_BREAK
  2104. case 125:
  2105. YY_RULE_SETUP
  2106. { error(E_bad_character, &last_pos);
  2107. }
  2108. YY_BREAK
  2109. case 126:
  2110. YY_RULE_SETUP
  2111. ECHO;
  2112. YY_BREAK
  2113. case YY_STATE_EOF(INITIAL):
  2114. case YY_STATE_EOF(DIRECTIVE):
  2115. yyterminate();
  2116. case YY_END_OF_BUFFER:
  2117. {
  2118. /* Amount of text matched not including the EOB char. */
  2119. int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;
  2120. /* Undo the effects of YY_DO_BEFORE_ACTION. */
  2121. *yy_cp = yy_hold_char;
  2122. if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
  2123. {
  2124. /* We're scanning a new file or input source. It's
  2125. * possible that this happened because the user
  2126. * just pointed yyin at a new source and called
  2127. * yylex(). If so, then we have to assure
  2128. * consistency between yy_current_buffer and our
  2129. * globals. Here is the right place to do so, because
  2130. * this is the first action (other than possibly a
  2131. * back-up) that will match for the new input source.
  2132. */
  2133. yy_n_chars = yy_current_buffer->yy_n_chars;
  2134. yy_current_buffer->yy_input_file = yyin;
  2135. yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
  2136. }
  2137. /* Note that here we test for yy_c_buf_p "<=" to the position
  2138. * of the first EOB in the buffer, since yy_c_buf_p will
  2139. * already have been incremented past the NUL character
  2140. * (since all states make transitions on EOB to the
  2141. * end-of-buffer state). Contrast this with the test
  2142. * in input().
  2143. */
  2144. if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  2145. { /* This was really a NUL. */
  2146. yy_state_type yy_next_state;
  2147. yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;
  2148. yy_current_state = yy_get_previous_state();
  2149. /* Okay, we're now positioned to make the NUL
  2150. * transition. We couldn't have
  2151. * yy_get_previous_state() go ahead and do it
  2152. * for us because it doesn't know how to deal
  2153. * with the possibility of jamming (and we don't
  2154. * want to build jamming into it because then it
  2155. * will run more slowly).
  2156. */
  2157. yy_next_state = yy_try_NUL_trans( yy_current_state );
  2158. yy_bp = yytext_ptr + YY_MORE_ADJ;
  2159. if ( yy_next_state )
  2160. {
  2161. /* Consume the NUL. */
  2162. yy_cp = ++yy_c_buf_p;
  2163. yy_current_state = yy_next_state;
  2164. goto yy_match;
  2165. }
  2166. else
  2167. {
  2168. yy_cp = yy_c_buf_p;
  2169. goto yy_find_action;
  2170. }
  2171. }
  2172. else switch ( yy_get_next_buffer() )
  2173. {
  2174. case EOB_ACT_END_OF_FILE:
  2175. {
  2176. yy_did_buffer_switch_on_eof = 0;
  2177. if ( yywrap() )
  2178. {
  2179. /* Note: because we've taken care in
  2180. * yy_get_next_buffer() to have set up
  2181. * yytext, we can now set up
  2182. * yy_c_buf_p so that if some total
  2183. * hoser (like flex itself) wants to
  2184. * call the scanner after we return the
  2185. * YY_NULL, it'll still work - another
  2186. * YY_NULL will get returned.
  2187. */
  2188. yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
  2189. yy_act = YY_STATE_EOF(YY_START);
  2190. goto do_action;
  2191. }
  2192. else
  2193. {
  2194. if ( ! yy_did_buffer_switch_on_eof )
  2195. YY_NEW_FILE;
  2196. }
  2197. break;
  2198. }
  2199. case EOB_ACT_CONTINUE_SCAN:
  2200. yy_c_buf_p =
  2201. yytext_ptr + yy_amount_of_matched_text;
  2202. yy_current_state = yy_get_previous_state();
  2203. yy_cp = yy_c_buf_p;
  2204. yy_bp = yytext_ptr + YY_MORE_ADJ;
  2205. goto yy_match;
  2206. case EOB_ACT_LAST_MATCH:
  2207. yy_c_buf_p =
  2208. &yy_current_buffer->yy_ch_buf[yy_n_chars];
  2209. yy_current_state = yy_get_previous_state();
  2210. yy_cp = yy_c_buf_p;
  2211. yy_bp = yytext_ptr + YY_MORE_ADJ;
  2212. goto yy_find_action;
  2213. }
  2214. break;
  2215. }
  2216. default:
  2217. YY_FATAL_ERROR(
  2218. "fatal flex scanner internal error--no action found" );
  2219. } /* end of action switch */
  2220. } /* end of scanning one token */
  2221. } /* end of yylex */
  2222. /* yy_get_next_buffer - try to read in a new buffer
  2223. *
  2224. * Returns a code representing an action:
  2225. * EOB_ACT_LAST_MATCH -
  2226. * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  2227. * EOB_ACT_END_OF_FILE - end of file
  2228. */
  2229. static int yy_get_next_buffer()
  2230. {
  2231. register char *dest = yy_current_buffer->yy_ch_buf;
  2232. register char *source = yytext_ptr;
  2233. register int number_to_move, i;
  2234. int ret_val;
  2235. if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  2236. YY_FATAL_ERROR(
  2237. "fatal flex scanner internal error--end of buffer missed" );
  2238. if ( yy_current_buffer->yy_fill_buffer == 0 )
  2239. { /* Don't try to fill the buffer, so this is an EOF. */
  2240. if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
  2241. {
  2242. /* We matched a single character, the EOB, so
  2243. * treat this as a final EOF.
  2244. */
  2245. return EOB_ACT_END_OF_FILE;
  2246. }
  2247. else
  2248. {
  2249. /* We matched some text prior to the EOB, first
  2250. * process it.
  2251. */
  2252. return EOB_ACT_LAST_MATCH;
  2253. }
  2254. }
  2255. /* Try to read more data. */
  2256. /* First move last chars to start of buffer. */
  2257. number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;
  2258. for ( i = 0; i < number_to_move; ++i )
  2259. *(dest++) = *(source++);
  2260. if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  2261. /* don't do the read, it's not guaranteed to return an EOF,
  2262. * just force an EOF
  2263. */
  2264. yy_n_chars = 0;
  2265. else
  2266. {
  2267. int num_to_read =
  2268. yy_current_buffer->yy_buf_size - number_to_move - 1;
  2269. while ( num_to_read <= 0 )
  2270. { /* Not enough room in the buffer - grow it. */
  2271. #ifdef YY_USES_REJECT
  2272. YY_FATAL_ERROR(
  2273. "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
  2274. #else
  2275. /* just a shorter name for the current buffer */
  2276. YY_BUFFER_STATE b = yy_current_buffer;
  2277. int yy_c_buf_p_offset =
  2278. (int) (yy_c_buf_p - b->yy_ch_buf);
  2279. if ( b->yy_is_our_buffer )
  2280. {
  2281. int new_size = b->yy_buf_size * 2;
  2282. if ( new_size <= 0 )
  2283. b->yy_buf_size += b->yy_buf_size / 8;
  2284. else
  2285. b->yy_buf_size *= 2;
  2286. b->yy_ch_buf = (char *)
  2287. /* Include room in for 2 EOB chars. */
  2288. yy_flex_realloc( (void *) b->yy_ch_buf,
  2289. b->yy_buf_size + 2 );
  2290. }
  2291. else
  2292. /* Can't grow it, we don't own it. */
  2293. b->yy_ch_buf = 0;
  2294. if ( ! b->yy_ch_buf )
  2295. YY_FATAL_ERROR(
  2296. "fatal error - scanner input buffer overflow" );
  2297. yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
  2298. num_to_read = yy_current_buffer->yy_buf_size -
  2299. number_to_move - 1;
  2300. #endif
  2301. }
  2302. if ( num_to_read > YY_READ_BUF_SIZE )
  2303. num_to_read = YY_READ_BUF_SIZE;
  2304. /* Read in more data. */
  2305. YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  2306. yy_n_chars, num_to_read );
  2307. }
  2308. if ( yy_n_chars == 0 )
  2309. {
  2310. if ( number_to_move == YY_MORE_ADJ )
  2311. {
  2312. ret_val = EOB_ACT_END_OF_FILE;
  2313. yyrestart( yyin );
  2314. }
  2315. else
  2316. {
  2317. ret_val = EOB_ACT_LAST_MATCH;
  2318. yy_current_buffer->yy_buffer_status =
  2319. YY_BUFFER_EOF_PENDING;
  2320. }
  2321. }
  2322. else
  2323. ret_val = EOB_ACT_CONTINUE_SCAN;
  2324. yy_n_chars += number_to_move;
  2325. yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
  2326. yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
  2327. yytext_ptr = &yy_current_buffer->yy_ch_buf[0];
  2328. return ret_val;
  2329. }
  2330. /* yy_get_previous_state - get the state just before the EOB char was reached */
  2331. static yy_state_type yy_get_previous_state()
  2332. {
  2333. register yy_state_type yy_current_state;
  2334. register char *yy_cp;
  2335. yy_current_state = yy_start;
  2336. for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
  2337. {
  2338. register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  2339. if ( yy_accept[yy_current_state] )
  2340. {
  2341. yy_last_accepting_state = yy_current_state;
  2342. yy_last_accepting_cpos = yy_cp;
  2343. }
  2344. while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  2345. {
  2346. yy_current_state = (int) yy_def[yy_current_state];
  2347. if ( yy_current_state >= 722 )
  2348. yy_c = (YY_CHAR)yy_meta[(unsigned int) yy_c];
  2349. }
  2350. yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  2351. }
  2352. return yy_current_state;
  2353. }
  2354. /* yy_try_NUL_trans - try to make a transition on the NUL character
  2355. *
  2356. * synopsis
  2357. * next_state = yy_try_NUL_trans( current_state );
  2358. */
  2359. #ifdef YY_USE_PROTOS
  2360. static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )
  2361. #else
  2362. static yy_state_type yy_try_NUL_trans( yy_current_state )
  2363. yy_state_type yy_current_state;
  2364. #endif
  2365. {
  2366. register int yy_is_jam;
  2367. register char *yy_cp = yy_c_buf_p;
  2368. register YY_CHAR yy_c = 1;
  2369. if ( yy_accept[yy_current_state] )
  2370. {
  2371. yy_last_accepting_state = yy_current_state;
  2372. yy_last_accepting_cpos = yy_cp;
  2373. }
  2374. while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  2375. {
  2376. yy_current_state = (int) yy_def[yy_current_state];
  2377. if ( yy_current_state >= 722 )
  2378. yy_c = (YY_CHAR)yy_meta[(unsigned int) yy_c];
  2379. }
  2380. yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  2381. yy_is_jam = (yy_current_state == 721);
  2382. return yy_is_jam ? 0 : yy_current_state;
  2383. }
  2384. #ifndef YY_NO_UNPUT
  2385. #ifdef YY_USE_PROTOS
  2386. static void yyunput( int c, register char *yy_bp )
  2387. #else
  2388. static void yyunput( c, yy_bp )
  2389. int c;
  2390. register char *yy_bp;
  2391. #endif
  2392. {
  2393. register char *yy_cp = yy_c_buf_p;
  2394. /* undo effects of setting up yytext */
  2395. *yy_cp = yy_hold_char;
  2396. if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  2397. { /* need to shift things up to make room */
  2398. /* +2 for EOB chars. */
  2399. register int number_to_move = yy_n_chars + 2;
  2400. register char *dest = &yy_current_buffer->yy_ch_buf[
  2401. yy_current_buffer->yy_buf_size + 2];
  2402. register char *source =
  2403. &yy_current_buffer->yy_ch_buf[number_to_move];
  2404. while ( source > yy_current_buffer->yy_ch_buf )
  2405. *--dest = *--source;
  2406. yy_cp += (int) (dest - source);
  2407. yy_bp += (int) (dest - source);
  2408. yy_n_chars = yy_current_buffer->yy_buf_size;
  2409. if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  2410. YY_FATAL_ERROR( "flex scanner push-back overflow" );
  2411. }
  2412. *--yy_cp = (char) c;
  2413. yytext_ptr = yy_bp;
  2414. yy_hold_char = *yy_cp;
  2415. yy_c_buf_p = yy_cp;
  2416. }
  2417. #endif /* ifndef YY_NO_UNPUT */
  2418. #ifdef __cplusplus
  2419. static int yyinput()
  2420. #else
  2421. static int input()
  2422. #endif
  2423. {
  2424. int c;
  2425. *yy_c_buf_p = yy_hold_char;
  2426. if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  2427. {
  2428. /* yy_c_buf_p now points to the character we want to return.
  2429. * If this occurs *before* the EOB characters, then it's a
  2430. * valid NUL; if not, then we've hit the end of the buffer.
  2431. */
  2432. if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  2433. /* This was really a NUL. */
  2434. *yy_c_buf_p = '\0';
  2435. else
  2436. { /* need more input */
  2437. yytext_ptr = yy_c_buf_p;
  2438. ++yy_c_buf_p;
  2439. switch ( yy_get_next_buffer() )
  2440. {
  2441. case EOB_ACT_END_OF_FILE:
  2442. {
  2443. if ( yywrap() )
  2444. {
  2445. yy_c_buf_p =
  2446. yytext_ptr + YY_MORE_ADJ;
  2447. return EOF;
  2448. }
  2449. if ( ! yy_did_buffer_switch_on_eof )
  2450. YY_NEW_FILE;
  2451. #ifdef __cplusplus
  2452. return yyinput();
  2453. #else
  2454. return input();
  2455. #endif
  2456. }
  2457. case EOB_ACT_CONTINUE_SCAN:
  2458. yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
  2459. break;
  2460. case EOB_ACT_LAST_MATCH:
  2461. #ifdef __cplusplus
  2462. YY_FATAL_ERROR(
  2463. "unexpected last match in yyinput()" );
  2464. #else
  2465. YY_FATAL_ERROR(
  2466. "unexpected last match in input()" );
  2467. #endif
  2468. }
  2469. }
  2470. }
  2471. c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */
  2472. *yy_c_buf_p = '\0'; /* preserve yytext */
  2473. yy_hold_char = *++yy_c_buf_p;
  2474. return c;
  2475. }
  2476. #ifdef YY_USE_PROTOS
  2477. void yyrestart( FILE *input_file )
  2478. #else
  2479. void yyrestart( input_file )
  2480. FILE *input_file;
  2481. #endif
  2482. {
  2483. if ( ! yy_current_buffer )
  2484. yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
  2485. yy_init_buffer( yy_current_buffer, input_file );
  2486. yy_load_buffer_state();
  2487. }
  2488. #ifdef YY_USE_PROTOS
  2489. void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
  2490. #else
  2491. void yy_switch_to_buffer( new_buffer )
  2492. YY_BUFFER_STATE new_buffer;
  2493. #endif
  2494. {
  2495. if ( yy_current_buffer == new_buffer )
  2496. return;
  2497. if ( yy_current_buffer )
  2498. {
  2499. /* Flush out information for old buffer. */
  2500. *yy_c_buf_p = yy_hold_char;
  2501. yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  2502. yy_current_buffer->yy_n_chars = yy_n_chars;
  2503. }
  2504. yy_current_buffer = new_buffer;
  2505. yy_load_buffer_state();
  2506. /* We don't actually know whether we did this switch during
  2507. * EOF (yywrap()) processing, but the only time this flag
  2508. * is looked at is after yywrap() is called, so it's safe
  2509. * to go ahead and always set it.
  2510. */
  2511. yy_did_buffer_switch_on_eof = 1;
  2512. }
  2513. #ifdef YY_USE_PROTOS
  2514. void yy_load_buffer_state( void )
  2515. #else
  2516. void yy_load_buffer_state()
  2517. #endif
  2518. {
  2519. yy_n_chars = yy_current_buffer->yy_n_chars;
  2520. yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  2521. yyin = yy_current_buffer->yy_input_file;
  2522. yy_hold_char = *yy_c_buf_p;
  2523. }
  2524. #ifdef YY_USE_PROTOS
  2525. YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
  2526. #else
  2527. YY_BUFFER_STATE yy_create_buffer( file, size )
  2528. FILE *file;
  2529. int size;
  2530. #endif
  2531. {
  2532. YY_BUFFER_STATE b;
  2533. b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  2534. if ( ! b )
  2535. YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  2536. b->yy_buf_size = size;
  2537. /* yy_ch_buf has to be 2 characters longer than the size given because
  2538. * we need to put in 2 end-of-buffer characters.
  2539. */
  2540. b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
  2541. if ( ! b->yy_ch_buf )
  2542. YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  2543. b->yy_is_our_buffer = 1;
  2544. yy_init_buffer( b, file );
  2545. return b;
  2546. }
  2547. #ifdef YY_USE_PROTOS
  2548. void yy_delete_buffer( YY_BUFFER_STATE b )
  2549. #else
  2550. void yy_delete_buffer( b )
  2551. YY_BUFFER_STATE b;
  2552. #endif
  2553. {
  2554. if ( ! b )
  2555. return;
  2556. if ( b == yy_current_buffer )
  2557. yy_current_buffer = (YY_BUFFER_STATE) 0;
  2558. if ( b->yy_is_our_buffer )
  2559. yy_flex_free( (void *) b->yy_ch_buf );
  2560. yy_flex_free( (void *) b );
  2561. }
  2562. #ifndef YY_ALWAYS_INTERACTIVE
  2563. #ifndef YY_NEVER_INTERACTIVE
  2564. extern int __cdecl isatty YY_PROTO(( int ));
  2565. #endif
  2566. #endif
  2567. #ifdef YY_USE_PROTOS
  2568. void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
  2569. #else
  2570. void yy_init_buffer( b, file )
  2571. YY_BUFFER_STATE b;
  2572. FILE *file;
  2573. #endif
  2574. {
  2575. yy_flush_buffer( b );
  2576. b->yy_input_file = file;
  2577. b->yy_fill_buffer = 1;
  2578. #if YY_ALWAYS_INTERACTIVE
  2579. b->yy_is_interactive = 1;
  2580. #else
  2581. #if YY_NEVER_INTERACTIVE
  2582. b->yy_is_interactive = 0;
  2583. #else
  2584. b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
  2585. #endif
  2586. #endif
  2587. }
  2588. #ifdef YY_USE_PROTOS
  2589. void yy_flush_buffer( YY_BUFFER_STATE b )
  2590. #else
  2591. void yy_flush_buffer( b )
  2592. YY_BUFFER_STATE b;
  2593. #endif
  2594. {
  2595. b->yy_n_chars = 0;
  2596. /* We always need two end-of-buffer characters. The first causes
  2597. * a transition to the end-of-buffer state. The second causes
  2598. * a jam in that state.
  2599. */
  2600. b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
  2601. b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  2602. b->yy_buf_pos = &b->yy_ch_buf[0];
  2603. b->yy_at_bol = 1;
  2604. b->yy_buffer_status = YY_BUFFER_NEW;
  2605. if ( b == yy_current_buffer )
  2606. yy_load_buffer_state();
  2607. }
  2608. #ifndef YY_NO_SCAN_BUFFER
  2609. #ifdef YY_USE_PROTOS
  2610. YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )
  2611. #else
  2612. YY_BUFFER_STATE yy_scan_buffer( base, size )
  2613. char *base;
  2614. yy_size_t size;
  2615. #endif
  2616. {
  2617. YY_BUFFER_STATE b;
  2618. if ( size < 2 ||
  2619. base[size-2] != YY_END_OF_BUFFER_CHAR ||
  2620. base[size-1] != YY_END_OF_BUFFER_CHAR )
  2621. /* They forgot to leave room for the EOB's. */
  2622. return 0;
  2623. b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  2624. if ( ! b )
  2625. YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
  2626. b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
  2627. b->yy_buf_pos = b->yy_ch_buf = base;
  2628. b->yy_is_our_buffer = 0;
  2629. b->yy_input_file = 0;
  2630. b->yy_n_chars = b->yy_buf_size;
  2631. b->yy_is_interactive = 0;
  2632. b->yy_at_bol = 1;
  2633. b->yy_fill_buffer = 0;
  2634. b->yy_buffer_status = YY_BUFFER_NEW;
  2635. yy_switch_to_buffer( b );
  2636. return b;
  2637. }
  2638. #endif
  2639. #ifndef YY_NO_SCAN_STRING
  2640. #ifdef YY_USE_PROTOS
  2641. YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )
  2642. #else
  2643. YY_BUFFER_STATE yy_scan_string( yy_str )
  2644. yyconst char *yy_str;
  2645. #endif
  2646. {
  2647. int len;
  2648. for ( len = 0; yy_str[len]; ++len )
  2649. ;
  2650. return yy_scan_bytes( yy_str, len );
  2651. }
  2652. #endif
  2653. #ifndef YY_NO_SCAN_BYTES
  2654. #ifdef YY_USE_PROTOS
  2655. YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )
  2656. #else
  2657. YY_BUFFER_STATE yy_scan_bytes( bytes, len )
  2658. yyconst char *bytes;
  2659. int len;
  2660. #endif
  2661. {
  2662. YY_BUFFER_STATE b;
  2663. char *buf;
  2664. yy_size_t n;
  2665. int i;
  2666. /* Get memory for full buffer, including space for trailing EOB's. */
  2667. n = len + 2;
  2668. buf = (char *) yy_flex_alloc( n );
  2669. if ( ! buf )
  2670. YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
  2671. for ( i = 0; i < len; ++i )
  2672. buf[i] = bytes[i];
  2673. buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;
  2674. b = yy_scan_buffer( buf, n );
  2675. if ( ! b )
  2676. YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
  2677. /* It's okay to grow etc. this buffer, and we should throw it
  2678. * away when we're done.
  2679. */
  2680. b->yy_is_our_buffer = 1;
  2681. return b;
  2682. }
  2683. #endif
  2684. #ifndef YY_NO_PUSH_STATE
  2685. #ifdef YY_USE_PROTOS
  2686. static void yy_push_state( int new_state )
  2687. #else
  2688. static void yy_push_state( new_state )
  2689. int new_state;
  2690. #endif
  2691. {
  2692. if ( yy_start_stack_ptr >= yy_start_stack_depth )
  2693. {
  2694. yy_size_t new_size;
  2695. yy_start_stack_depth += YY_START_STACK_INCR;
  2696. new_size = yy_start_stack_depth * sizeof( int );
  2697. if ( ! yy_start_stack )
  2698. yy_start_stack = (int *) yy_flex_alloc( new_size );
  2699. else
  2700. yy_start_stack = (int *) yy_flex_realloc(
  2701. (void *) yy_start_stack, new_size );
  2702. if ( ! yy_start_stack )
  2703. YY_FATAL_ERROR(
  2704. "out of memory expanding start-condition stack" );
  2705. }
  2706. yy_start_stack[yy_start_stack_ptr++] = YY_START;
  2707. BEGIN(new_state);
  2708. }
  2709. #endif
  2710. #ifndef YY_NO_POP_STATE
  2711. static void yy_pop_state()
  2712. {
  2713. if ( --yy_start_stack_ptr < 0 )
  2714. YY_FATAL_ERROR( "start-condition stack underflow" );
  2715. BEGIN(yy_start_stack[yy_start_stack_ptr]);
  2716. }
  2717. #endif
  2718. #ifndef YY_NO_TOP_STATE
  2719. static int yy_top_state()
  2720. {
  2721. return yy_start_stack[yy_start_stack_ptr - 1];
  2722. }
  2723. #endif
  2724. #ifndef YY_EXIT_FAILURE
  2725. #define YY_EXIT_FAILURE 2
  2726. #endif
  2727. #ifdef YY_USE_PROTOS
  2728. static void yy_fatal_error( yyconst char msg[] )
  2729. #else
  2730. static void yy_fatal_error( msg )
  2731. char msg[];
  2732. #endif
  2733. {
  2734. (void) fprintf( stderr, "%s\n", msg );
  2735. MyExit( YY_EXIT_FAILURE );
  2736. }
  2737. /* Redefine yyless() so it works in section 3 code. */
  2738. #undef yyless
  2739. #define yyless(n) \
  2740. do \
  2741. { \
  2742. /* Undo effects of setting up yytext. */ \
  2743. yytext[yyleng] = yy_hold_char; \
  2744. yy_c_buf_p = yytext + n - YY_MORE_ADJ; \
  2745. yy_hold_char = *yy_c_buf_p; \
  2746. *yy_c_buf_p = '\0'; \
  2747. yyleng = n; \
  2748. } \
  2749. while ( 0 )
  2750. /* Internal utility routines. */
  2751. #ifndef yytext_ptr
  2752. #ifdef YY_USE_PROTOS
  2753. static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )
  2754. #else
  2755. static void yy_flex_strncpy( s1, s2, n )
  2756. char *s1;
  2757. yyconst char *s2;
  2758. int n;
  2759. #endif
  2760. {
  2761. register int i;
  2762. for ( i = 0; i < n; ++i )
  2763. s1[i] = s2[i];
  2764. }
  2765. #endif
  2766. #ifdef YY_USE_PROTOS
  2767. static void *yy_flex_alloc( yy_size_t size )
  2768. #else
  2769. static void *yy_flex_alloc( size )
  2770. yy_size_t size;
  2771. #endif
  2772. {
  2773. return (void *) malloc( size );
  2774. }
  2775. #ifdef YY_USE_PROTOS
  2776. static void *yy_flex_realloc( void *ptr, yy_size_t size )
  2777. #else
  2778. static void *yy_flex_realloc( ptr, size )
  2779. void *ptr;
  2780. yy_size_t size;
  2781. #endif
  2782. {
  2783. /* The cast to (char *) in the following accommodates both
  2784. * implementations that use char* generic pointers, and those
  2785. * that use void* generic pointers. It works with the latter
  2786. * because both ANSI C and C++ allow castless assignment from
  2787. * any pointer type to void*, and deal with argument conversions
  2788. * as though doing an assignment.
  2789. */
  2790. return (void *) realloc( (char *) ptr, size );
  2791. }
  2792. #ifdef YY_USE_PROTOS
  2793. static void yy_flex_free( void *ptr )
  2794. #else
  2795. static void yy_flex_free( ptr )
  2796. void *ptr;
  2797. #endif
  2798. {
  2799. free( ptr );
  2800. }
  2801. #if YY_MAIN
  2802. int main()
  2803. {
  2804. yylex();
  2805. return 0;
  2806. }
  2807. #endif
  2808. int llgettoken(int *token, LLSTYPE *lval, LLPOS *pos)
  2809. {
  2810. for (;;) {
  2811. #ifdef MS_DIRECTIVE
  2812. // Ordering of hack directives
  2813. // PrivateDir_Huge PrivateDir_Unbounded PrivateDir_Array PrivateDir_NoCopy PrivateDir_PDU
  2814. // PrivateDir_ObjectIdEncoded PrivateDir_ObjectIdFixedSize
  2815. // PrivateDir_Type PrivateDir_Field PrivateDir_Value PrivateDir_Linked
  2816. if (g_fPrivateDir_Intx)
  2817. {
  2818. g_fPrivateDir_Intx = 0;
  2819. yylval._XString = "PrivateDir_Intx";
  2820. *lval = yylval;
  2821. *token = T_PrivateDir_Intx;
  2822. return 1;
  2823. }
  2824. if (g_fPrivateDir_LenPtr)
  2825. {
  2826. g_fPrivateDir_LenPtr = 0;
  2827. yylval._XString = "PrivateDir_LenPtr";
  2828. *lval = yylval;
  2829. *token = T_PrivateDir_LenPtr;
  2830. return 1;
  2831. }
  2832. if (g_fPrivateDir_Pointer)
  2833. {
  2834. g_fPrivateDir_Pointer = 0;
  2835. yylval._XString = "PrivateDir_Pointer";
  2836. *lval = yylval;
  2837. *token = T_PrivateDir_Pointer;
  2838. return 1;
  2839. }
  2840. if (g_fPrivateDir_Array)
  2841. {
  2842. g_fPrivateDir_Array = 0;
  2843. yylval._XString = "PrivateDir_Array";
  2844. *lval = yylval;
  2845. *token = T_PrivateDir_Array;
  2846. return 1;
  2847. }
  2848. if (g_fPrivateDir_NoCode)
  2849. {
  2850. g_fPrivateDir_NoCode = 0;
  2851. yylval._XString = "PrivateDir_NoCode";
  2852. *lval = yylval;
  2853. *token = T_PrivateDir_NoCode;
  2854. return 1;
  2855. }
  2856. if (g_fPrivateDir_NoMemCopy)
  2857. {
  2858. g_fPrivateDir_NoMemCopy = 0;
  2859. yylval._XString = "PrivateDir_NoMemCopy";
  2860. *lval = yylval;
  2861. *token = T_PrivateDir_NoMemCopy;
  2862. return 1;
  2863. }
  2864. if (g_fPrivateDir_Public)
  2865. {
  2866. g_fPrivateDir_Public = 0;
  2867. yylval._XString = "PrivateDir_Public";
  2868. *lval = yylval;
  2869. *token = T_PrivateDir_Public;
  2870. return 1;
  2871. }
  2872. if (g_fPrivateDir_OidPacked)
  2873. {
  2874. g_fPrivateDir_OidPacked = 0;
  2875. yylval._XString = "PrivateDir_OidPacked";
  2876. *lval = yylval;
  2877. *token = T_PrivateDir_OidPacked;
  2878. return 1;
  2879. }
  2880. if (g_fPrivateDir_OidArray)
  2881. {
  2882. g_fPrivateDir_OidArray = 0;
  2883. yylval._XString = "PrivateDir_OidArray";
  2884. *lval = yylval;
  2885. *token = T_PrivateDir_OidArray;
  2886. return 1;
  2887. }
  2888. if (g_szPrivateDirectedTypeName[0])
  2889. {
  2890. if (g_fPrivateDir_TypeNameToken)
  2891. {
  2892. yylval._XString = strdup(&g_szPrivateDirectedTypeName[0]);
  2893. g_szPrivateDirectedTypeName[0] = '\0';
  2894. *lval = yylval;
  2895. *token = T_lcsymbol;
  2896. }
  2897. else
  2898. {
  2899. g_fPrivateDir_TypeNameToken = 1;
  2900. yylval._XString = "PrivateDir_TypeName";
  2901. *lval = yylval;
  2902. *token = T_PrivateDir_TypeName;
  2903. }
  2904. return 1;
  2905. }
  2906. if (g_szPrivateDirectedFieldName[0])
  2907. {
  2908. if (g_fPrivateDir_FieldNameToken)
  2909. {
  2910. yylval._XString = strdup(&g_szPrivateDirectedFieldName[0]);
  2911. g_szPrivateDirectedFieldName[0] = '\0';
  2912. *lval = yylval;
  2913. *token = T_lcsymbol;
  2914. }
  2915. else
  2916. {
  2917. g_fPrivateDir_FieldNameToken = 1;
  2918. yylval._XString = "PrivateDir_FieldName";
  2919. *lval = yylval;
  2920. *token = T_PrivateDir_FieldName;
  2921. }
  2922. return 1;
  2923. }
  2924. if (g_szPrivateDirectedValueName[0])
  2925. {
  2926. if (g_fPrivateDir_ValueNameToken)
  2927. {
  2928. yylval._XString = strdup(&g_szPrivateDirectedValueName[0]);
  2929. g_szPrivateDirectedValueName[0] = '\0';
  2930. *lval = yylval;
  2931. *token = T_lcsymbol;
  2932. }
  2933. else
  2934. {
  2935. g_fPrivateDir_ValueNameToken = 1;
  2936. yylval._XString = "PrivateDir_ValueName";
  2937. *lval = yylval;
  2938. *token = T_PrivateDir_ValueName;
  2939. }
  2940. return 1;
  2941. }
  2942. if (g_fPrivateDir_SLinked)
  2943. {
  2944. g_fPrivateDir_SLinked = 0;
  2945. yylval._XString = "PrivateDir_SLinked";
  2946. *lval = yylval;
  2947. *token = T_PrivateDir_SLinked;
  2948. return 1;
  2949. }
  2950. if (g_fPrivateDir_DLinked)
  2951. {
  2952. g_fPrivateDir_DLinked = 0;
  2953. yylval._XString = "PrivateDir_DLinked";
  2954. *lval = yylval;
  2955. *token = T_PrivateDir_DLinked;
  2956. return 1;
  2957. }
  2958. #endif // MS_DIRECTIVE
  2959. if (yy_hold_char == YY_END_OF_BUFFER_CHAR) {
  2960. *pos = current_pos;
  2961. } else {
  2962. *pos = last_pos;
  2963. }
  2964. *token = yylex();
  2965. if (*token == 0 || *token == EOF)
  2966. return 0;
  2967. if (*token == T_NOTOKEN)
  2968. continue;
  2969. *lval = yylval;
  2970. return 1;
  2971. }
  2972. }
  2973. void readfiles(char **filenames)
  2974. {
  2975. FILE *fin;
  2976. long len;
  2977. int i, nfiles, j;
  2978. for (nfiles = 0; filenames[nfiles]; nfiles++) {}
  2979. allfilenames = filenames;
  2980. allfilestarts = (char **)malloc((nfiles + 1) * sizeof(char *));
  2981. filelen = 0;
  2982. for (i = 0; i < nfiles; i++) {
  2983. fin = fopen(filenames[i], "r");
  2984. if (!fin) {
  2985. perror(filenames[i]);
  2986. MyExit(1);
  2987. }
  2988. fseek(fin, 0, SEEK_END);
  2989. filelen += ftell(fin);
  2990. fclose(fin);
  2991. }
  2992. currentfilepos = file = (char *)malloc(filelen);
  2993. for (i = 0; i < nfiles; i++) {
  2994. fin = fopen(filenames[i], "r");
  2995. if (!fin) {
  2996. perror(filenames[i]);
  2997. MyExit(1);
  2998. }
  2999. fseek(fin, 0, SEEK_END);
  3000. len = ftell(fin);
  3001. fseek(fin, 0, SEEK_SET);
  3002. allfilestarts[i] = currentfilepos;
  3003. len = fread(currentfilepos, 1, len, fin);
  3004. currentfilepos += len;
  3005. fclose(fin);
  3006. }
  3007. filelen = currentfilepos - file;
  3008. allfilestarts[i] = currentfilepos;
  3009. // set up the first file's info
  3010. currentfilepos = file;
  3011. current_pos.line = 1;
  3012. current_pos.column = 1;
  3013. current_pos.file = filenames[0];
  3014. last_pos = current_pos;
  3015. // mask out all the directives prior to the body
  3016. for (i = 0; i < nfiles; i++)
  3017. {
  3018. char *psz = allfilestarts[i];
  3019. while (isspace(*psz))
  3020. psz++;
  3021. while ('-' == *psz && '-' == *(psz+1))
  3022. {
  3023. psz += 2;
  3024. // mask out directives if needed
  3025. if (g_chDirectiveBegin == *psz)
  3026. *psz++ = ' ';
  3027. SetDirective(psz);
  3028. // locate the closing '--'
  3029. while ('\n' != *psz)
  3030. {
  3031. if ('-' == *psz && '-' == *(psz+1))
  3032. {
  3033. psz++;
  3034. break;
  3035. }
  3036. psz++;
  3037. }
  3038. psz++; // skip over '\n' or the second '-'
  3039. // skip over white spaces
  3040. while (isspace(*psz))
  3041. psz++;
  3042. }
  3043. // associate ghost files with ghost modules
  3044. for (j = 0; j < g_cGhostFiles; j++)
  3045. {
  3046. if (! strcmp(g_aGhostFiles[j].pszFileName, filenames[i]))
  3047. {
  3048. int ch_idx;
  3049. char szModuleName[128];
  3050. // get the module identifier
  3051. while (! isalpha(*psz))
  3052. psz++;
  3053. for (ch_idx = 0; isalnum(*psz) || *psz == '-'; )
  3054. {
  3055. szModuleName[ch_idx++] = *psz++;
  3056. }
  3057. szModuleName[ch_idx] = '\0'; // null terminator
  3058. ASSERT(! g_aGhostFiles[j].pszModuleName);
  3059. g_aGhostFiles[j].pszModuleName = strdup(szModuleName);
  3060. }
  3061. }
  3062. }
  3063. }
  3064. void
  3065. llprinttoken(LLTERM *term, char *identifier, FILE *f)
  3066. {
  3067. char32_t *p;
  3068. switch (term->token) {
  3069. case T_number:
  3070. fprintf(f, "%s(%u)", identifier, intx2uint32(&term->lval._XNumber));
  3071. break;
  3072. case T_bstring:
  3073. case T_hstring:
  3074. case T_only_uppercase_symbol:
  3075. case T_only_uppercase_digits_symbol:
  3076. case T_uppercase_symbol:
  3077. case T_lcsymbol:
  3078. case T_ampucsymbol:
  3079. case T_amplcsymbol:
  3080. fprintf(f, "%s(%s)", identifier, term->lval._XString);
  3081. break;
  3082. case T_cstring:
  3083. fprintf(f, "%s(", identifier);
  3084. for (p = term->lval._XString32; *p; p++)
  3085. putc(*p, f);
  3086. putc(')', f);
  3087. break;
  3088. default:
  3089. fprintf(f, "%s", identifier);
  3090. }
  3091. }
  3092. #ifdef MS_DIRECTIVE
  3093. int PrivateDirectives_Input ( void )
  3094. {
  3095. return input();
  3096. }
  3097. #endif // MS_DIRECTIVE