diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-09-24 19:56:07 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-09-24 19:56:07 -0700 |
commit | b2c4389575185b5526370d3fb682c6ac06367b87 (patch) | |
tree | 2db46427cbbc9595479b32dd7e20e710acfc83f4 | |
parent | 781cf1d35e83f75cf5278205cd34f63fb1284213 (diff) | |
download | txr-b2c4389575185b5526370d3fb682c6ac06367b87.tar.gz txr-b2c4389575185b5526370d3fb682c6ac06367b87.tar.bz2 txr-b2c4389575185b5526370d3fb682c6ac06367b87.zip |
parser: commit Bison-2.5-generated code.
* Makefile (BS_LIC_FROM, BS_LIC_TO): Variables removed.
(y.tab.c): Remove all filtering hacks. Don't remove the
license from y.tab.c. Don't remove yyparse declaration from
y.tab.h. Provide a pattern rule for producing any missing
file X from X.shipped. That's how y.tab.c and y.tab.h
get produced from y.tab.c.shipped and y.tab.h.shipped,
respectively, in user mode.
* y.tab.c.shipped, y.tab.h.shipped: New files, generated
using Bison 2.5.
-rw-r--r-- | Makefile | 19 | ||||
-rw-r--r-- | lex.yy.c.shipped | 6805 | ||||
-rw-r--r-- | y.tab.c.shipped | 7366 | ||||
-rw-r--r-- | y.tab.h.shipped | 174 |
4 files changed, 14353 insertions, 11 deletions
@@ -265,9 +265,6 @@ $(eval $(foreach item,lex.yy.o txr.o match.o parser.o,\ $(eval $(foreach item,y.tab.c y.tab.h lex.yy.c,\ $(call DEP,$(item),config.make config.h))) -BS_LIC_FROM := ^[/][*] Bison impl -BS_LIC_TO := Bison. [*][/] - lex.yy.c: $(top_srcdir)parser.l $(call ABBREV,LEX) $(call SH,rm -f $@) @@ -297,14 +294,7 @@ y.tab.c: $(top_srcdir)parser.y $(call SH,rm -f y.tab.c) $(call SH, \ if $(TXR_YACC) $(YACC_FLAGS) -v -d $< ; then \ - grep -qs '$(BS_LIC_FROM)' y.tab.c && \ - grep -qs '$(BS_LIC_TO)' y.tab.c && \ - sed -e '/$(BS_LIC_FROM)/$(CM)/$(BS_LIC_TO)/d' \ - < y.tab.c > y.tab.c.tmp && \ - mv y.tab.c.tmp y.tab.c ; \ chmod a-w y.tab.c ; \ - sed -e '/yyparse/d' < y.tab.h > y.tab.h.tmp && \ - mv y.tab.h.tmp y.tab.h ; \ if cmp -s y.tab.h y.tab.h.old ; then \ mv y.tab.h.old y.tab.h ; \ fi ; \ @@ -313,6 +303,13 @@ y.tab.c: $(top_srcdir)parser.y false ; \ fi) +else + +%: $(top_srcdir)%.shipped + $(call ABBREV,COPY) + $(call SH,rm -f $@) + $(call SH,cp $< $@) + endif # Suppress useless sccs id array and unused label warning in byacc otuput. @@ -348,7 +345,7 @@ rebuild clean repatch: notconfigured distclean: $(V)echo "executing generic cleanup for non-configured directory" rm -f txr txr.exe txr-dbg txr-dbg.exe txr-win.exe txr-win-dbg.exe - rm -rf y.tab.c lex.yy.c y.tab.h y.output + rm -f y.tab.c lex.yy.c y.tab.h y.output rm -rf config opt dbg share/txr/stdlib/*.tlo* run.sh rm -f config.* reconfigure rm -rf mpi-1.?.? diff --git a/lex.yy.c.shipped b/lex.yy.c.shipped new file mode 100644 index 00000000..d2b24a1c --- /dev/null +++ b/lex.yy.c.shipped @@ -0,0 +1,6805 @@ + +#line 3 "lex.yy.c" + +#define YY_INT_ALIGNED short int + +/* A lexical scanner generated by flex */ + +#define FLEX_SCANNER +#define YY_FLEX_MAJOR_VERSION 2 +#define YY_FLEX_MINOR_VERSION 6 +#define YY_FLEX_SUBMINOR_VERSION 4 +#if YY_FLEX_SUBMINOR_VERSION > 0 +#define FLEX_BETA +#endif + +#ifdef yyget_lval +#define yyget_lval_ALREADY_DEFINED +#else +#define yyget_lval yyget_lval +#endif + +#ifdef yyset_lval +#define yyset_lval_ALREADY_DEFINED +#else +#define yyset_lval yyset_lval +#endif + +/* First, we deal with platform-specific or compiler-specific issues. */ + +/* begin standard C headers. */ +#include <stdio.h> +#include <string.h> +#include <errno.h> +#include <stdlib.h> + +/* end standard C headers. */ + +/* flex integer type definitions */ + +#ifndef FLEXINT_H +#define FLEXINT_H + +/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */ + +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + +/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, + * if you want the limit (max/min) macros for int types. + */ +#ifndef __STDC_LIMIT_MACROS +#define __STDC_LIMIT_MACROS 1 +#endif + +#include <inttypes.h> +typedef int8_t flex_int8_t; +typedef uint8_t flex_uint8_t; +typedef int16_t flex_int16_t; +typedef uint16_t flex_uint16_t; +typedef int32_t flex_int32_t; +typedef uint32_t flex_uint32_t; +#else +typedef signed char flex_int8_t; +typedef short int flex_int16_t; +typedef int flex_int32_t; +typedef unsigned char flex_uint8_t; +typedef unsigned short int flex_uint16_t; +typedef unsigned int flex_uint32_t; + +/* Limits of integral types. */ +#ifndef INT8_MIN +#define INT8_MIN (-128) +#endif +#ifndef INT16_MIN +#define INT16_MIN (-32767-1) +#endif +#ifndef INT32_MIN +#define INT32_MIN (-2147483647-1) +#endif +#ifndef INT8_MAX +#define INT8_MAX (127) +#endif +#ifndef INT16_MAX +#define INT16_MAX (32767) +#endif +#ifndef INT32_MAX +#define INT32_MAX (2147483647) +#endif +#ifndef UINT8_MAX +#define UINT8_MAX (255U) +#endif +#ifndef UINT16_MAX +#define UINT16_MAX (65535U) +#endif +#ifndef UINT32_MAX +#define UINT32_MAX (4294967295U) +#endif + +#ifndef SIZE_MAX +#define SIZE_MAX (~(size_t)0) +#endif + +#endif /* ! C99 */ + +#endif /* ! FLEXINT_H */ + +/* begin standard C++ headers. */ + +/* TODO: this is always defined, so inline it */ +#define yyconst const + +#if defined(__GNUC__) && __GNUC__ >= 3 +#define yynoreturn __attribute__((__noreturn__)) +#else +#define yynoreturn +#endif + +/* Returned upon end-of-file. */ +#define YY_NULL 0 + +/* Promotes a possibly negative, possibly signed char to an + * integer in range [0..255] for use as an array index. + */ +#define YY_SC_TO_UI(c) ((YY_CHAR) (c)) + +/* An opaque pointer. */ +#ifndef YY_TYPEDEF_YY_SCANNER_T +#define YY_TYPEDEF_YY_SCANNER_T +typedef void* yyscan_t; +#endif + +/* For convenience, these vars (plus the bison vars far below) + are macros in the reentrant scanner. */ +#define yyin yyg->yyin_r +#define yyout yyg->yyout_r +#define yyextra yyg->yyextra_r +#define yyleng yyg->yyleng_r +#define yytext yyg->yytext_r +#define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) +#define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column) +#define yy_flex_debug yyg->yy_flex_debug_r + +/* Enter a start condition. This macro really ought to take a parameter, + * but we do it the disgusting crufty way forced on us by the ()-less + * definition of BEGIN. + */ +#define BEGIN yyg->yy_start = 1 + 2 * +/* Translate the current start state into a value that can be later handed + * to BEGIN to return to the state. The YYSTATE alias is for lex + * compatibility. + */ +#define YY_START ((yyg->yy_start - 1) / 2) +#define YYSTATE YY_START +/* Action number for EOF rule of a given start state. */ +#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) +/* Special action meaning "start processing a new file". */ +#define YY_NEW_FILE yyrestart( yyin , yyscanner ) +#define YY_END_OF_BUFFER_CHAR 0 + +/* Size of default input buffer. */ +#ifndef YY_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k. + * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. + * Ditto for the __ia64__ case accordingly. + */ +#define YY_BUF_SIZE 32768 +#else +#define YY_BUF_SIZE 16384 +#endif /* __ia64__ */ +#endif + +/* The state buf must be large enough to hold one state per character in the main buffer. + */ +#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) + +#ifndef YY_TYPEDEF_YY_BUFFER_STATE +#define YY_TYPEDEF_YY_BUFFER_STATE +typedef struct yy_buffer_state *YY_BUFFER_STATE; +#endif + +#ifndef YY_TYPEDEF_YY_SIZE_T +#define YY_TYPEDEF_YY_SIZE_T +typedef size_t yy_size_t; +#endif + +#define EOB_ACT_CONTINUE_SCAN 0 +#define EOB_ACT_END_OF_FILE 1 +#define EOB_ACT_LAST_MATCH 2 + + #define YY_LESS_LINENO(n) + #define YY_LINENO_REWIND_TO(ptr) + +/* Return all but the first "n" matched characters back to the input stream. */ +#define yyless(n) \ + do \ + { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + *yy_cp = yyg->yy_hold_char; \ + YY_RESTORE_YY_MORE_OFFSET \ + yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ + YY_DO_BEFORE_ACTION; /* set up yytext again */ \ + } \ + while ( 0 ) +#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner ) + +#ifndef YY_STRUCT_YY_BUFFER_STATE +#define YY_STRUCT_YY_BUFFER_STATE +struct yy_buffer_state + { + FILE *yy_input_file; + + char *yy_ch_buf; /* input buffer */ + char *yy_buf_pos; /* current position in input buffer */ + + /* Size of input buffer in bytes, not including room for EOB + * characters. + */ + int yy_buf_size; + + /* Number of characters read into yy_ch_buf, not including EOB + * characters. + */ + int yy_n_chars; + + /* Whether we "own" the buffer - i.e., we know we created it, + * and can realloc() it to grow it, and should free() it to + * delete it. + */ + int yy_is_our_buffer; + + /* Whether this is an "interactive" input source; if so, and + * if we're using stdio for input, then we want to use getc() + * instead of fread(), to make sure we stop fetching input after + * each newline. + */ + int yy_is_interactive; + + /* Whether we're considered to be at the beginning of a line. + * If so, '^' rules will be active on the next match, otherwise + * not. + */ + int yy_at_bol; + + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ + + /* Whether to try to fill the input buffer when we reach the + * end of it. + */ + int yy_fill_buffer; + + int yy_buffer_status; + +#define YY_BUFFER_NEW 0 +#define YY_BUFFER_NORMAL 1 + /* When an EOF's been seen but there's still some text to process + * then we mark the buffer as YY_EOF_PENDING, to indicate that we + * shouldn't try reading from the input source any more. We might + * still have a bunch of tokens to match, though, because of + * possible backing-up. + * + * When we actually see the EOF, we change the status to "new" + * (via yyrestart()), so that the user can continue scanning by + * just pointing yyin at a new input file. + */ +#define YY_BUFFER_EOF_PENDING 2 + + }; +#endif /* !YY_STRUCT_YY_BUFFER_STATE */ + +/* We provide macros for accessing buffer states in case in the + * future we want to put the buffer states in a more general + * "scanner state". + * + * Returns the top of the stack, or NULL. + */ +#define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \ + ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \ + : NULL) +/* Same as previous macro, but useful when we know that the buffer stack is not + * NULL or when we need an lvalue. For internal use only. + */ +#define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] + +void yyrestart ( FILE *input_file , yyscan_t yyscanner ); +void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); +void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +void yypop_buffer_state ( yyscan_t yyscanner ); + +static void yyensure_buffer_stack ( yyscan_t yyscanner ); +static void yy_load_buffer_state ( yyscan_t yyscanner ); +static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file , yyscan_t yyscanner ); +#define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER , yyscanner) + +YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); + +void *yyalloc ( yy_size_t , yyscan_t yyscanner ); +void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); +void yyfree ( void * , yyscan_t yyscanner ); + +#define yy_new_buffer yy_create_buffer +#define yy_set_interactive(is_interactive) \ + { \ + if ( ! YY_CURRENT_BUFFER ){ \ + yyensure_buffer_stack (yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ + } +#define yy_set_bol(at_bol) \ + { \ + if ( ! YY_CURRENT_BUFFER ){\ + yyensure_buffer_stack (yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ + } +#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) + +/* Begin user sect3 */ +typedef flex_uint8_t YY_CHAR; + +typedef int yy_state_type; + +#define yytext_ptr yytext_r + +static yy_state_type yy_get_previous_state ( yyscan_t yyscanner ); +static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner); +static int yy_get_next_buffer ( yyscan_t yyscanner ); +static void yynoreturn yy_fatal_error ( const char* msg , yyscan_t yyscanner ); + +/* Done after the current pattern has been matched and before the + * corresponding action - sets up yytext. + */ +#define YY_DO_BEFORE_ACTION \ + yyg->yytext_ptr = yy_bp; \ + yyleng = (int) (yy_cp - yy_bp); \ + yyg->yy_hold_char = *yy_cp; \ + *yy_cp = '\0'; \ + yyg->yy_c_buf_p = yy_cp; +#define YY_NUM_RULES 144 +#define YY_END_OF_BUFFER 145 +/* This struct is not used in this scanner, + but its presence is necessary. */ +struct yy_trans_info + { + flex_int32_t yy_verify; + flex_int32_t yy_nxt; + }; +static const flex_int16_t yy_acclist[1524] = + { 0, + 62, 62, 62, 62, 62, 62, 62, 62, 136, 136, + 136, 136, 140, 140, 145, 113, 144, 114, 144, 114, + 144, 112, 144, 116, 144, 113, 144, 113, 144, 113, + 144, 116, 144, 96, 97, 144, 62, 96, 97, 144, + 83, 144, 83, 96, 97, 144, 63, 96, 97, 144, + 96, 97, 144, 55, 96, 97, 144, 61, 96, 97, + 144, 96, 97, 144, 88, 96, 97, 144, 84, 96, + 97, 144, 1, 19, 96, 97, 144,16400, 95, 96, + 97, 144, 82, 96, 97, 144, 19, 96, 97, 144, + 16400, 55, 96, 97, 144, 96, 97, 144, 67, 96, + + 97, 144, 54, 96, 97, 144, 97, 144, 97, 144, + 97, 144, 97, 144, 62, 96, 97, 144, 20, 96, + 97, 144,16401, 72, 96, 97, 144, 58, 96, 97, + 144, 20, 96, 97, 144,16401, 58, 96, 97, 144, + 88, 96, 97, 144, 1, 20, 96, 97, 144,16401, + 20, 96, 97, 144,16401, 56, 96, 97, 144, 20, + 96, 97, 144,16401, 59, 96, 97, 144, 97, 144, + 97, 144, 97, 144, 62, 96, 97, 144, 21, 96, + 97, 144,16402, 72, 96, 97, 144, 21, 96, 97, + 144,16402, 88, 96, 97, 144, 1, 21, 96, 97, + + 144,16402, 21, 96, 97, 144,16402, 56, 96, 97, + 144, 21, 96, 97, 144,16402, 97, 144, 97, 144, + 97, 144, 109, 111, 144, 109, 111, 144, 103, 144, + 103, 109, 111, 144, 105, 109, 111, 144, 98, 105, + 109, 111, 144, 108, 109, 111, 144, 111, 144, 111, + 144, 111, 144, 111, 144, 109, 110, 144, 109, 110, + 144, 104, 144, 104, 109, 110, 144, 105, 109, 110, + 144, 98, 105, 109, 110, 144, 108, 109, 110, 144, + 110, 144, 110, 144, 110, 144, 110, 144, 137, 143, + 144, 137, 143, 144, 130, 144, 130, 137, 143, 144, + + 119, 137, 143, 144, 137, 143, 144, 143, 144, 143, + 144, 143, 144, 143, 144, 129, 137, 143, 144, 131, + 144, 131, 137, 143, 144, 128, 129, 137, 143, 144, + 128, 129, 137, 143, 144, 128, 129, 137, 143, 144, + 129, 143, 144, 129, 143, 144, 129, 143, 144, 129, + 143, 144, 132, 144, 132, 137, 143, 144, 135, 137, + 143, 144, 137, 143, 144, 120, 137, 143, 144, 62, + 96, 97, 144, 96, 97, 144, 96, 97, 144, 88, + 96, 97, 144, 1, 10, 19, 96, 97, 144,16400, + 56, 96, 97, 144, 96, 97, 144, 136, 137, 143, + + 144, 133, 144, 133, 137, 143, 144, 137, 143, 144, + 137, 143, 144, 142, 144, 140, 142, 144, 141, 144, + 141, 142, 144, 139, 142, 144, 138, 142, 144, 113, + 113, 113, 113, 114, 112, 118, 115, 113, 113, 113, + 118, 62, 87, 83, 68, 66, 64, 70, 1, 86, + 4, 89, 1, 19,16400, 19,16400, 19,16400, 95, + 94, 91, 91, 94, 92, 94, 93, 94, 94, 96, + 62, 87, 20, 22,16401, 20,16401, 20, 22,16401, + 20,16401, 20,16401, 78, 73, 76, 75, 74, 77, + 1, 20, 22,16401, 57, 4, 20, 22,16401, 20, + + 22,16401, 20,16401, 22, 20,16401, 20,16401, 20, + 16401, 9, 20,16401, 91, 20, 96,16401, 62, 87, + 21, 23,16402, 21,16402, 21, 23,16402, 21,16402, + 21,16402, 1, 21, 23,16402, 81, 4, 21, 23, + 16402, 21, 23,16402, 21,16402, 23, 21,16402, 21, + 16402, 21,16402, 9, 21,16402, 21, 96,16402, 103, + 107, 102, 102, 107, 99, 107, 106, 107, 100, 107, + 101, 107, 107, 109, 104, 130, 126, 123, 124, 123, + 124, 126, 121, 126, 125, 126, 126, 137, 131, 128, + 127, 128, 127, 128, 132, 134, 9, 134, 134, 122, + + 126, 62, 87, 1, 10, 1, 10, 19,16400, 136, + 133, 124, 124, 126, 140, 141, 118, 113, 118, 117, + 117, 118, 85, 90, 69, 71, 65, 2, 2, 2, + 60, 4, 5, 5, 5, 8, 4, 5, 8, 8208, + 5, 8, 5, 8, 4, 19,16400, 8208, 91, 93, + 93, 93, 20, 22,16401, 20, 22,16401, 20, 22, + 16401, 20, 22,16401, 8209, 20, 22,16401, 20, 22, + 16401, 20, 22,16401, 22, 22, 80, 79, 20, 22, + 16401, 20,16401, 20,16401, 4, 8209, 1, 20, 22, + 16401, 20, 22,16401, 6, 4, 6, 6, 6, 6, + + 8, 8, 4, 6, 8, 8209, 6, 8, 8, 6, + 8, 8, 8, 8, 20, 22,16401, 4, 20, 22, + 16401, 20, 22,16401, 20, 22,16401, 22, 20, 22, + 16401, 22, 20, 22,16401, 20,16401, 20,16401, 9, + 20, 22,16401, 21, 23,16402, 21, 23,16402, 21, + 23,16402, 21, 23,16402, 8210, 21, 23,16402, 21, + 23,16402, 21, 23,16402, 23, 23, 21, 23,16402, + 21,16402, 21,16402, 4, 8210, 1, 21, 23,16402, + 21, 23,16402, 7, 4, 7, 7, 7, 7, 8, + 8, 4, 7, 8, 8210, 7, 8, 8, 7, 8, + + 8, 8, 8, 21, 23,16402, 4, 21, 23,16402, + 21, 23,16402, 21, 23,16402, 23, 21, 23,16402, + 23, 21, 23,16402, 21,16402, 21,16402, 9, 21, + 23,16402, 102, 102, 100, 100, 100, 123, 124, 123, + 124, 125, 125, 125, 9, 2, 14, 2, 12, 8, + 8208, 124, 124, 117, 5, 4, 2, 3, 3, 2, + 3, 2, 3, 51, 51, 51, 51, 51, 51, 33, + 4, 5, 8, 4, 5, 4, 5, 8208, 4, 5, + 4, 5, 19,16400, 5, 19,16400, 6, 4, 20, + 22,16401, 20, 22,16401, 20, 22,16401, 20, 22, + + 16401, 20, 22,16401, 20, 22,16401, 22, 22, 22, + 22, 20, 22,16401, 20, 22,16401, 20, 22,16401, + 4, 6, 8209, 6, 6, 6, 6, 6, 4, 6, + 6, 6, 6, 6, 6, 4, 6, 4, 6, 8209, + 6, 4, 6, 6, 20, 22,16401, 20, 22,16401, + 4, 6, 20, 22,16401, 6, 20, 22,16401, 22, + 20, 22,16401, 20, 22,16401, 20, 22,16401, 9, + 20, 22,16401, 7, 4, 21, 23,16402, 21, 23, + 16402, 21, 23,16402, 21, 23,16402, 21, 23,16402, + 21, 23,16402, 23, 23, 23, 23, 21, 23,16402, + + 21, 23,16402, 21, 23,16402, 4, 7, 8210, 7, + 7, 7, 7, 7, 4, 7, 7, 7, 7, 7, + 7, 4, 7, 4, 7, 8210, 7, 4, 7, 7, + 21, 23,16402, 21, 23,16402, 4, 7, 21, 23, + 16402, 7, 21, 23,16402, 23, 21, 23,16402, 21, + 23,16402, 21, 23,16402, 15, 13, 11, 9, 21, + 23,16402, 2, 3, 14, 2, 3, 12, 24, 32, + 34, 45, 45, 45, 45, 45, 45, 40, 40, 40, + 40, 40, 40, 48, 4, 5, 8208, 4, 6, 20, + 22,16401, 20, 22,16401, 20, 22,16401, 22, 6, + + 6, 6, 6, 6, 4, 6, 4, 6, 6, 20, + 22,16401, 6, 20, 22,16401, 6, 20, 22,16401, + 6, 20, 22,16401, 6, 20, 22,16401, 6, 8209, + 6, 20, 22,16401, 6, 20, 22,16401, 4, 6, + 20, 22,16401, 6, 20, 22,16401, 6, 20, 22, + 16401, 6, 20, 22,16401, 6, 20, 22,16401, 6, + 22, 6, 22, 4, 7, 21, 23,16402, 21, 23, + 16402, 21, 23,16402, 23, 7, 7, 7, 7, 7, + 4, 7, 4, 7, 7, 21, 23,16402, 7, 21, + 23,16402, 7, 21, 23,16402, 7, 21, 23,16402, + + 7, 21, 23,16402, 7, 8210, 7, 21, 23,16402, + 7, 21, 23,16402, 4, 7, 21, 23,16402, 7, + 21, 23,16402, 7, 21, 23,16402, 7, 21, 23, + 16402, 7, 21, 23,16402, 7, 23, 7, 23, 36, + 36, 36, 36, 36, 36, 52, 52, 52, 52, 52, + 52, 53, 43, 43, 43, 43, 43, 43, 26, 25, + 25, 25, 25, 25, 25, 6, 20, 22,16401, 6, + 20, 22,16401, 6, 20, 22,16401, 6, 20, 22, + 16401, 6, 20, 22,16401, 6, 20, 22,16401, 6, + 8209, 6, 20, 22,16401, 6, 20, 22,16401, 6, + + 20, 22,16401, 6, 20, 22,16401, 6, 20, 22, + 16401, 6, 20, 22,16401, 6, 22, 6, 22, 6, + 22, 6, 22, 7, 21, 23,16402, 7, 21, 23, + 16402, 7, 21, 23,16402, 7, 21, 23,16402, 7, + 21, 23,16402, 7, 21, 23,16402, 7, 8210, 7, + 21, 23,16402, 7, 21, 23,16402, 7, 21, 23, + 16402, 7, 21, 23,16402, 7, 21, 23,16402, 7, + 21, 23,16402, 7, 23, 7, 23, 7, 23, 7, + 23, 29, 29, 29, 29, 29, 29, 28, 49, 49, + 49, 49, 49, 49, 44, 42, 27, 37, 37, 37, + + 37, 37, 37, 6, 20, 22,16401, 6, 20, 22, + 16401, 6, 20, 22,16401, 6, 20, 22,16401, 6, + 20, 22,16401, 6, 20, 22,16401, 6, 20, 22, + 16401, 6, 20, 22,16401, 6, 20, 22,16401, 6, + 22, 7, 21, 23,16402, 7, 21, 23,16402, 7, + 21, 23,16402, 7, 21, 23,16402, 7, 21, 23, + 16402, 7, 21, 23,16402, 7, 21, 23,16402, 7, + 21, 23,16402, 7, 21, 23,16402, 7, 23, 30, + 30, 30, 30, 30, 30, 47, 47, 47, 47, 47, + 47, 31, 31, 31, 31, 31, 31, 38, 38, 38, + + 38, 38, 38, 39, 39, 39, 39, 39, 39, 41, + 35, 35, 35, 35, 35, 35, 50, 46, 46, 46, + 46, 46, 46 + } ; + +static const flex_int16_t yy_accept[1586] = + { 0, + 1, 1, 1, 2, 3, 4, 5, 6, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, + 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, + 22, 24, 26, 28, 30, 32, 34, 37, 41, 43, + 47, 51, 54, 58, 62, 65, 69, 73, 79, 83, + 87, 92, 96, 99, 103, 107, 109, 111, 113, 115, + 119, 124, 128, 132, 137, 141, 145, 151, 156, 160, + 165, 169, 171, 173, 175, 179, 184, 188, 193, 197, + 203, 208, 212, 217, 219, 221, 223, 226, 229, 231, + 235, 239, 244, 248, 250, 252, 254, 256, 259, 262, + + 264, 268, 272, 277, 281, 283, 285, 287, 289, 292, + 295, 297, 301, 305, 308, 310, 312, 314, 316, 320, + 322, 326, 331, 336, 341, 344, 347, 350, 353, 355, + 359, 363, 366, 370, 374, 377, 380, 384, 391, 395, + 398, 402, 404, 408, 411, 414, 416, 419, 421, 424, + 427, 430, 431, 432, 433, 434, 435, 436, 436, 437, + 438, 439, 440, 441, 441, 442, 443, 443, 444, 444, + 445, 446, 446, 447, 448, 449, 449, 449, 449, 449, + 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, + 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, + + 449, 449, 449, 450, 451, 452, 453, 453, 456, 458, + 460, 461, 461, 462, 463, 465, 467, 469, 470, 471, + 471, 471, 472, 472, 473, 473, 476, 478, 478, 481, + 481, 483, 483, 483, 483, 483, 485, 486, 487, 488, + 489, 490, 491, 491, 495, 496, 497, 497, 500, 503, + 505, 506, 508, 508, 508, 508, 510, 510, 512, 515, + 515, 515, 515, 516, 519, 519, 519, 520, 520, 521, + 521, 524, 526, 526, 529, 529, 531, 531, 531, 531, + 533, 533, 537, 538, 539, 539, 542, 545, 547, 548, + 550, 550, 550, 550, 552, 552, 554, 557, 557, 557, + + 557, 560, 560, 560, 560, 560, 561, 562, 563, 565, + 567, 569, 571, 573, 574, 575, 575, 575, 576, 576, + 576, 577, 578, 580, 583, 585, 587, 588, 589, 589, + 589, 590, 591, 593, 595, 596, 596, 597, 597, 599, + 600, 602, 603, 604, 604, 604, 606, 606, 610, 610, + 611, 611, 612, 613, 615, 616, 617, 618, 619, 620, + 621, 623, 624, 625, 625, 625, 626, 627, 628, 628, + 629, 629, 630, 630, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 632, 632, 632, 634, 635, 636, 637, 641, 643, + 645, 645, 648, 649, 650, 651, 652, 653, 653, 653, + 653, 653, 656, 659, 662, 665, 665, 665, 665, 666, + 669, 672, 675, 675, 675, 675, 676, 676, 677, 677, + 677, 677, 677, 677, 678, 679, 682, 684, 686, 686, + 686, 686, 688, 692, 695, 696, 696, 696, 698, 699, + 699, 700, 700, 700, 700, 702, 703, 707, 709, 710, + 712, 713, 714, 715, 718, 722, 725, 728, 729, 732, + + 732, 732, 732, 733, 733, 733, 733, 733, 733, 736, + 738, 740, 740, 740, 740, 744, 744, 744, 744, 744, + 744, 744, 747, 750, 753, 756, 756, 756, 756, 757, + 760, 763, 766, 766, 766, 766, 767, 767, 768, 768, + 768, 768, 768, 768, 771, 773, 775, 775, 775, 775, + 777, 781, 784, 785, 785, 785, 787, 788, 788, 789, + 789, 789, 789, 791, 792, 796, 798, 799, 801, 802, + 803, 804, 807, 811, 814, 817, 818, 821, 821, 821, + 821, 822, 822, 822, 822, 822, 822, 825, 827, 829, + 829, 829, 829, 829, 829, 829, 833, 833, 833, 833, + + 834, 835, 836, 837, 838, 838, 840, 842, 843, 844, + 845, 845, 846, 846, 848, 848, 850, 850, 852, 853, + 854, 855, 856, 857, 859, 860, 862, 864, 864, 864, + 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, + 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, + 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, + 864, 864, 864, 864, 864, 864, 864, 864, 864, 865, + 866, 867, 868, 869, 870, 870, 870, 870, 870, 870, + 871, 871, 871, 871, 871, 871, 871, 871, 874, 874, + 876, 879, 881, 881, 885, 888, 889, 889, 890, 893, + + 896, 899, 899, 899, 899, 899, 899, 902, 905, 908, + 908, 908, 908, 908, 908, 909, 910, 911, 911, 911, + 911, 912, 912, 912, 912, 912, 912, 912, 915, 918, + 921, 921, 921, 921, 921, 921, 924, 925, 926, 926, + 926, 926, 927, 928, 929, 931, 932, 933, 933, 933, + 933, 934, 934, 934, 934, 935, 935, 935, 935, 936, + 938, 938, 938, 941, 942, 944, 948, 951, 951, 956, + 960, 960, 960, 960, 960, 961, 961, 961, 961, 961, + 961, 961, 961, 961, 964, 967, 970, 970, 970, 970, + 970, 970, 974, 974, 975, 975, 976, 979, 982, 985, + + 985, 985, 985, 985, 985, 988, 991, 994, 994, 994, + 994, 994, 994, 995, 996, 997, 997, 997, 997, 998, + 998, 998, 998, 998, 998, 998, 1001, 1004, 1007, 1007, + 1007, 1007, 1007, 1007, 1010, 1011, 1012, 1012, 1012, 1012, + 1013, 1014, 1015, 1017, 1018, 1019, 1019, 1019, 1019, 1020, + 1020, 1020, 1020, 1021, 1021, 1021, 1021, 1022, 1024, 1024, + 1024, 1027, 1028, 1030, 1034, 1037, 1037, 1042, 1046, 1046, + 1046, 1046, 1046, 1047, 1047, 1047, 1047, 1047, 1047, 1047, + 1047, 1047, 1050, 1053, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1057, 1057, 1058, 1058, 1059, 1063, 1063, 1066, 1069, + + 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, + 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, + 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1070, 1070, 1071, + 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, + 1072, 1072, 1072, 1072, 1072, 1072, 1073, 1074, 1075, 1075, + 1076, 1077, 1078, 1078, 1078, 1079, 1080, 1081, 1081, 1082, + 1083, 1084, 1084, 1084, 1084, 1085, 1085, 1086, 1088, 1090, + 1093, 1096, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, + 1099, 1099, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, + 1100, 1100, 1100, 1100, 1101, 1101, 1101, 1101, 1101, 1101, + + 1102, 1102, 1102, 1102, 1103, 1103, 1103, 1103, 1103, 1103, + 1103, 1103, 1104, 1105, 1105, 1105, 1105, 1105, 1105, 1107, + 1107, 1109, 1113, 1117, 1121, 1125, 1125, 1125, 1125, 1129, + 1131, 1135, 1139, 1144, 1148, 1148, 1148, 1148, 1152, 1156, + 1160, 1160, 1160, 1160, 1162, 1162, 1164, 1164, 1164, 1164, + 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1166, + 1169, 1172, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, + 1175, 1175, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, + 1176, 1176, 1176, 1176, 1177, 1177, 1177, 1177, 1177, 1177, + 1178, 1178, 1178, 1178, 1179, 1179, 1179, 1179, 1179, 1179, + + 1179, 1179, 1180, 1181, 1181, 1181, 1181, 1181, 1181, 1183, + 1183, 1185, 1189, 1193, 1197, 1201, 1201, 1201, 1201, 1205, + 1207, 1211, 1215, 1220, 1224, 1224, 1224, 1224, 1228, 1232, + 1236, 1236, 1236, 1236, 1238, 1238, 1240, 1240, 1240, 1240, + 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, + 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, + 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, + 1240, 1240, 1240, 1240, 1241, 1242, 1243, 1243, 1244, 1245, + 1246, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1252, 1253, + 1253, 1253, 1253, 1253, 1254, 1255, 1256, 1257, 1258, 1259, + + 1259, 1259, 1259, 1260, 1260, 1260, 1260, 1261, 1262, 1263, + 1264, 1265, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, + 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, + 1266, 1266, 1266, 1266, 1266, 1270, 1274, 1278, 1278, 1278, + 1278, 1278, 1278, 1282, 1286, 1290, 1290, 1290, 1290, 1292, + 1296, 1300, 1304, 1304, 1304, 1304, 1304, 1304, 1308, 1312, + 1316, 1316, 1316, 1316, 1316, 1316, 1318, 1320, 1322, 1322, + 1322, 1322, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, + 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, + 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, + + 1324, 1324, 1328, 1332, 1336, 1336, 1336, 1336, 1336, 1336, + 1340, 1344, 1348, 1348, 1348, 1348, 1350, 1354, 1358, 1362, + 1362, 1362, 1362, 1362, 1362, 1366, 1370, 1374, 1374, 1374, + 1374, 1374, 1374, 1376, 1378, 1380, 1380, 1380, 1380, 1382, + 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, + 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, + 1382, 1382, 1382, 1382, 1383, 1384, 1385, 1386, 1387, 1388, + 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1395, 1395, + 1395, 1395, 1396, 1396, 1396, 1397, 1397, 1397, 1398, 1398, + 1398, 1398, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1404, + + 1404, 1404, 1404, 1404, 1404, 1408, 1412, 1416, 1416, 1416, + 1416, 1416, 1416, 1416, 1420, 1424, 1428, 1428, 1428, 1428, + 1428, 1428, 1432, 1436, 1440, 1440, 1440, 1440, 1440, 1440, + 1440, 1440, 1440, 1440, 1442, 1442, 1442, 1442, 1442, 1442, + 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1446, + 1450, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1458, 1462, + 1466, 1466, 1466, 1466, 1466, 1466, 1470, 1474, 1478, 1478, + 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1480, 1480, + 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, + 1480, 1480, 1480, 1480, 1480, 1480, 1481, 1482, 1483, 1484, + + 1485, 1486, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1492, + 1493, 1494, 1495, 1496, 1497, 1498, 1498, 1499, 1500, 1501, + 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1510, + 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, + 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, + 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, + 1511, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1517, 1518, + 1519, 1520, 1521, 1522, 1523, 1524, 1524, 1524, 1524, 1524, + 1524, 1524, 1524, 1524, 1524 + } ; + +static const YY_CHAR yy_ec[256] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, + 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 5, 6, 7, 8, 6, 9, 9, 10, 11, + 12, 13, 14, 15, 14, 16, 17, 18, 18, 19, + 19, 19, 19, 19, 19, 20, 20, 21, 22, 6, + 23, 6, 24, 25, 26, 26, 26, 27, 28, 26, + 29, 30, 29, 29, 29, 29, 29, 31, 29, 29, + 29, 32, 33, 34, 29, 29, 35, 29, 29, 29, + 36, 37, 38, 39, 29, 40, 41, 42, 43, 44, + + 45, 46, 47, 48, 49, 29, 50, 51, 52, 53, + 54, 55, 29, 56, 57, 58, 59, 60, 35, 61, + 62, 29, 63, 64, 65, 9, 1, 66, 66, 66, + 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, + 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, + 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, + 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, + 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, + 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, + 66, 67, 67, 68, 68, 68, 68, 68, 68, 68, + + 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, + 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, + 68, 68, 68, 69, 69, 69, 69, 69, 69, 69, + 69, 69, 69, 69, 69, 69, 69, 69, 69, 70, + 70, 70, 70, 70, 67, 67, 67, 67, 67, 67, + 67, 67, 67, 67, 67 + } ; + +static const YY_CHAR yy_meta[71] = + { 0, + 1, 2, 3, 4, 5, 6, 1, 7, 6, 8, + 8, 2, 6, 9, 8, 10, 11, 12, 12, 12, + 13, 14, 6, 6, 15, 12, 12, 12, 16, 16, + 16, 16, 16, 16, 16, 8, 6, 1, 17, 1, + 12, 12, 12, 12, 18, 12, 16, 16, 16, 16, + 19, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 8, 1, 1, 1, 1, 20, 20, 20 + } ; + +static const flex_int16_t yy_base[1816] = + { 0, + 0, 3, 73, 0, 143, 0, 213, 0, 282, 351, + 420, 489, 558, 627, 697, 0, 766, 835, 904, 0, + 942, 1011, 1080, 1149, 1218, 1263, 4907, 220,10320, 4903, + 4900, 7, 234, 239, 244, 8,10320, 17,10320, 4901, + 10320, 527, 1308, 4887, 22, 41,10320, 312, 0,10320, + 4886,10320, 1376,10320,10320,10320, 4835, 4832, 4822, 319, + 358, 1431,10320, 1485, 4871, 29, 11, 370, 382, 443, + 10320, 4815, 4801, 4800, 462, 503, 4844, 1548, 513, 299, + 568, 452, 532, 4797, 4796, 4795,10320, 21,10320, 4854, + 10320,10320, 1618,10320, 4790, 4789, 4788,10320, 321,10320, + + 4836,10320,10320, 0,10320, 4770, 4768, 4752,10320, 340, + 10320, 4811,10320, 1686,10320, 4731, 4730, 4729,10320,10320, + 4784, 0, 26, 1730,10320, 4712, 4702, 4700,10320, 4761, + 1769, 1830,10320, 48, 561, 351, 380, 392, 4754, 14, + 379,10320, 4758, 369, 48,10320, 9,10320, 4751,10320, + 10320, 337, 477, 517, 536,10320, 4748, 637, 0,10320, + 373, 542, 548, 638, 51, 647, 637, 666, 756,10320, + 10320, 17,10320,10320,10320, 435, 48, 4738, 0, 427, + 1851, 756, 759, 800, 774, 794, 781, 857, 612, 866, + 896, 862, 797, 907, 918, 892, 887, 4683, 4682, 4663, + + 489, 572, 769, 320, 866,10320, 1910, 962, 4711, 656, + 0, 601,10320, 463, 472,10320, 578, 0,10320, 4660, + 4659, 1015, 763, 659, 976, 1020, 774, 669, 1030, 930, + 780, 4658, 4657, 4656, 872, 1087,10320,10320,10320,10320, + 10320,10320, 793, 1973,10320, 2036, 2106, 1042, 1093, 1103, + 789, 1162, 4652, 4648, 4647, 1172, 4691, 2169, 0, 4645, + 4637, 4636, 536, 1006, 4635, 4634, 1111, 1024, 1047, 1149, + 1187, 1377, 950, 1388, 1065, 1451, 4633, 4628, 4623, 1458, + 965, 2232,10320, 2295, 2365, 1256, 1461, 1473, 933, 1524, + 4621, 4615, 4607, 1536, 338, 2428, 0, 4602, 4600, 4596, + + 1691, 4592, 4585, 512, 313,10320,10320, 575, 871,10320, + 10320, 786,10320, 0,10320, 4573, 4572,10320, 815, 410, + 10320,10320, 577, 894,10320, 1035, 0,10320, 4567, 4566, + 10320, 0, 436, 2481,10320, 462,10320, 1056, 1073, 0, + 10320, 1105, 969, 940, 4616, 1120, 1125, 1180, 4583, 1177, + 644,10320, 639, 1202, 1025,10320, 0, 1181, 688,10320, + 819, 1045,10320, 1267, 1215,10320,10320,10320, 4606, 4605, + 870, 987, 0, 2510, 1250, 4555, 4553, 4547, 283, 4559, + 1334, 4554, 1107, 4548, 4555, 4549, 4552, 458, 4537, 1038, + 4545, 243, 4528, 4529, 1466, 1303, 1371, 1490, 1516, 1529, + + 1544, 1439, 1541, 1685, 1742, 1745, 2556, 1749, 1731, 1699, + 1775, 1998, 1783, 1761, 1961, 1757, 1964, 1967, 4510, 4504, + 1172, 2626, 0, 1563, 0, 1234,10320, 1717, 0, 1274, + 1259, 1280, 1371, 1179, 1191,10320, 4547, 4502, 1381, 2689, + 1392, 2175, 2194, 2197, 2260, 4498, 4497, 4493, 1495, 2266, + 2434, 2444, 4492, 4490, 4489, 1978, 4533, 1508, 4481, 4476, + 4475, 4473, 4472,10320,10320, 2450, 2697, 2703, 4471, 4469, + 4468, 2766, 2829, 1840, 1981, 4512, 2003, 2892, 1532, 2019, + 2210, 4464, 4453, 4450, 2024, 4494, 2955, 1632, 2226, 2472, + 4448, 4440, 4438, 1861, 3018, 2729, 2739, 1640, 2754, 4436, + + 4433, 4427, 1645, 4425, 4419, 4407, 4406, 4405, 2794, 2857, + 2864, 4404, 4397, 4390, 3081, 4389, 4385, 4384, 1699, 3144, + 1772, 2920, 2927, 2977, 2983, 4379, 4377, 4376, 1802, 2993, + 3056, 3059, 4375, 4373, 4372, 2285, 4416, 1793, 4370, 4364, + 4363, 4362, 4358, 3114, 3152, 3171, 4356, 4355, 4354, 3234, + 3297, 2460, 2032, 4389, 2818, 3360, 1796, 2276, 2529, 4327, + 4325, 4323, 2157, 4366, 3423, 1927, 2464, 2937, 4319, 4315, + 4306, 2058, 3486, 3177, 3259, 1936, 3262, 4304, 4303, 4301, + 1939, 4299, 4292, 4291, 4283, 4280, 3269, 3325, 3332, 4279, + 4276, 4271, 329, 1297, 4322, 3549, 4268, 4265, 4257, 1222, + + 1328, 1365,10320, 4300, 4253, 1421, 1403, 1676,10320, 4293, + 4242, 2002, 1104, 1157, 0, 3602, 0, 2040, 1428, 1473, + 10320, 2065, 2179, 4285, 0, 1284, 3631, 4231, 4218, 4231, + 4237, 4226, 1357, 4220, 4222, 4223, 605, 4213, 4223, 1446, + 4207, 0, 4203, 4196, 4210, 4200, 1834, 4187, 4188, 4189, + 4188, 4177, 4176, 2854, 3064, 3135, 3223, 3349, 3401, 3444, + 3452, 3477, 3514, 3522, 3527, 3611, 3666, 3539,10320, 3680, + 3710, 4166, 4165, 4164, 3707, 3703, 3777, 3789, 1845,10320, + 3806, 3876, 3802, 3861, 3888, 3905, 4162, 2684, 2077, 2323, + 2707, 2342, 2290, 2270, 4210, 3089, 2161, 3585, 3897, 3912, + + 3939, 4159, 4153, 4151, 4145, 4139, 3963, 3975, 3978, 4138, + 4137, 4133, 4132, 4128, 3075, 3365, 2186, 4127, 4125, 4124, + 2249, 4123, 4116, 4111, 4110, 4108, 4107, 3985, 3997, 4013, + 4106, 4104, 4103, 4102, 4099, 4076, 2447, 2257, 4085, 4084, + 4083, 2263, 2514, 2518, 4139, 2279, 3406, 4075, 4073, 4071, + 2282, 4068, 4062, 4060, 3594, 4054, 4042, 4032, 2720, 2785, + 4025, 4020, 2419, 3188, 2873, 4048, 4054, 4111, 4202, 4117, + 2748, 4019, 4014, 4011, 2393, 4008, 4006, 3997, 3995, 3994, + 3991, 3985, 3984, 4127, 4167, 4208, 3974, 3969, 3959, 3957, + 3954, 4271, 3949, 3557, 2526, 4230, 4236, 4286, 4293, 3946, + + 3945, 3938, 3932, 3929, 4305, 4308, 4327, 3926, 3923, 3919, + 3911, 3910, 3782, 4020, 2505, 3906, 3904, 3903, 2521, 3902, + 3897, 3896, 3895, 3887, 3884, 4343, 4363, 4378, 3882, 3872, + 3869, 3866, 3859, 4441, 2541, 2532, 3857, 3853, 3845, 2535, + 2544, 2548, 4504, 2538, 3620, 3842, 3838, 3837, 2662, 3836, + 3833, 3830, 4132, 3829, 3828, 3823, 3390, 3093, 3819, 3803, + 2809, 4093, 3254, 4384, 4419, 4476, 4567, 4482, 2960, 3802, + 3801, 3799, 2772, 3798, 3796, 3790, 3789, 3788, 3787, 3782, + 3773, 4492, 4532, 4573, 3772, 3771, 3770, 3769, 3767, 3814, + 3813, 1401, 1424, 0, 0, 4636, 3764, 1436, 4689, 3760, + + 2011, 2199, 3782, 3779, 3777, 3758, 3758, 3757, 3759, 3755, + 3728, 2204, 3742, 3717, 3722, 3702, 3716, 3696, 3701, 3689, + 3688, 3682, 3677, 2230, 3665, 2452,10320, 2482,10320, 2990, + 2837, 3023, 3047, 4735, 3196, 4805, 4037, 2951, 2741,10320, + 3275, 2846, 2909, 4875, 3290,10320, 3328, 4905, 3440, 3645, + 3641, 3640, 4413, 3494,10320, 3368, 0, 3662, 3636, 3634, + 3632, 3648, 4964, 2937,10320, 3670, 3181, 3211, 5027, 4595, + 4601, 4651, 3630, 3629, 3627, 3620, 3618, 3604, 3595, 3594, + 3590, 2783, 3576, 3565, 3558, 3548, 3546, 3545, 3528, 3523, + 3520, 3519, 3515, 2801, 3513, 3506, 3500, 3495, 3492, 2980, + + 3486, 3484, 3483, 2986, 3476, 3471, 3470, 3452, 3451, 3434, + 3430, 4497, 4610, 3424, 3414, 3412, 3411, 3406, 5090, 3401, + 3156, 4985, 5000, 5051, 5063, 3400, 3397, 3387, 5066, 4194, + 5078, 5129, 5192, 5136, 3386, 3384, 3381, 5155, 5170, 5211, + 3379, 3374, 3366, 4720, 3402, 3164, 3355, 3346, 3341, 3325, + 3324, 3321, 3311, 3309, 3308, 3306, 3303, 3297, 5274, 5233, + 5248, 5289, 3290, 3281, 3268, 3258, 3257, 3248, 3246, 3244, + 3243, 3168, 3240, 3229, 3223, 3222, 3220, 3215, 3210, 3205, + 3203, 3197, 3195, 3251, 3194, 3185, 3182, 3177, 3160, 3314, + 3158, 3157, 3153, 3346, 3152, 3149, 3145, 3129, 3120, 3115, + + 3114, 4755, 4825, 3105, 3104, 3101, 3100, 3095, 5352, 3089, + 3465, 5311, 5314, 5330, 5380, 3088, 3082, 3080, 5386, 4458, + 5402, 5408, 5471, 5436, 3076, 3075, 3070, 5443, 5477, 5493, + 3065, 3057, 3053, 4914, 3097, 3418, 3039, 3028, 3024, 3016, + 3013, 3012, 3008, 3007, 3004, 2999, 2976, 2975, 2985, 2976, + 2983, 2970, 2972, 2962, 0, 3295, 2950, 2959, 2945, 2947, + 0, 2942, 2945, 3350, 2925, 2941, 2919, 0, 2918, 5563, + 5633, 5703, 3528,10320, 3526, 5733, 3817, 2901, 2899, 2898, + 3692,10320, 3708, 0, 2884, 2872, 2863, 3922,10320, 3947, + 4025, 3985, 4098,10320, 4014, 0, 2855, 2853, 2843, 4066, + + 4281, 4097,10320, 4254, 4348, 4283,10320, 4315, 0, 2836, + 2829, 2810, 5792, 2794, 2780, 2778, 2755, 2746, 2730, 235, + 245, 263, 275, 295, 310, 327, 332, 364, 369, 403, + 413, 417, 419, 444, 5512, 5802, 5808, 464, 488, 500, + 504, 509, 5827, 5859, 5865, 528, 533, 543, 4559, 5884, + 5891, 5916, 547, 557, 569, 603, 607, 5923, 5942, 5948, + 707, 712, 720, 750, 765, 5054, 5104, 3530, 789, 795, + 805, 3567, 811, 813, 815, 827, 834, 844, 867, 876, + 887, 897, 907, 923, 925, 931, 953, 957, 966, 971, + 973, 998, 1002, 1006, 1030, 1036, 1038, 1040, 1049, 1071, + + 1075, 5958, 5974, 5980, 1098, 1100, 1119, 1136, 1140, 5999, + 6014, 6038, 1173, 1177, 1192, 4627, 6049, 6064, 6070, 1203, + 1214, 1231, 1257, 1278, 6089, 6104, 6128, 1280, 1282, 1308, + 1320, 1331, 5175, 5207, 3597, 1337, 1341, 1362, 3657, 1369, + 1404, 1414, 1418, 1425, 1429, 1450, 1452, 0, 4378, 0, + 1477, 1480, 1480, 4396, 1482, 4402, 1482, 4414, 1482, 1488, + 1493, 1526, 0,10320, 4462, 0, 1506, 1508, 1522, 4463, + 10320,10320, 4602, 0, 1523, 1529, 1537, 6198, 4686, 6268, + 4603,10320, 4648, 4672,10320, 6338, 4680,10320, 4753, 6408, + 6478, 4681,10320, 4765, 0, 1541, 1549, 1626, 1631, 1637, + + 1645, 1655, 1656, 1658, 6488, 6494, 6513, 1659, 1668, 1672, + 1674, 1675, 1685, 6545, 6551, 6570, 1698, 1699, 1715, 1719, + 1731, 6577, 6602, 6609, 1736, 1741, 1757, 1758, 1772, 1776, + 1803, 1807, 1808, 3673, 1812, 1816, 1818, 1821, 1833, 1835, + 1860, 1917, 1918, 1921, 1924, 1949, 1972, 1973, 6628, 6634, + 6644, 1996, 1997, 1999, 2003, 2004, 2009, 6660, 6666, 6685, + 2014, 2016, 2024, 2025, 2032, 6700, 6724, 6735, 2033, 2056, + 2116, 2118, 2120, 2126, 2137, 2141, 2146, 3727, 2151, 2154, + 2155, 2157, 2175, 2180, 2183, 2192, 0, 2201, 0, 2199, + 0, 2211, 0, 0, 4767,10320, 4779, 0, 2204, 2206, + + 2207, 6805,10320, 4780, 0, 2209, 2217, 2226, 4781,10320, + 4817, 0, 2232, 2241, 2246, 6875,10320, 4826, 0, 2255, + 2256, 2272,10320, 4830, 0, 2291, 2293, 2315, 4835,10320, + 2374, 2375, 2377, 2379, 2385, 2390, 2404, 2411, 2415, 2416, + 2429, 2440, 2444, 2445, 2455, 2465, 2504, 2510, 2513, 2514, + 2519, 2527, 2549, 2576, 2633, 2635, 2640, 2649, 0, 4846, + 0,10320, 4847, 0, 2650, 2654, 2667, 4848,10320,10320, + 4887, 0, 2678, 2682, 2683, 2685, 2695, 2697, 2710, 2711, + 2714, 2715, 2717,10320, 6945, 6965, 6985, 7005, 7025, 7045, + 7056, 7075, 7095, 7110, 7125, 7140, 7155, 7170, 7185, 7205, + + 7214, 7227, 7246, 7266, 2783, 7281, 7292, 2788, 7306, 7321, + 7336, 7351, 7366, 7381, 7396, 7411, 7426, 7441, 7456, 7471, + 7486, 7501, 7516, 7531, 7546, 7561, 7576, 2802, 2813, 7585, + 7593, 2872, 7612, 7623, 7642, 7662, 7682, 7691, 7699, 2820, + 7713, 7724, 2865, 7738, 7753, 7768, 7783, 7798, 7813, 7828, + 7843, 7858, 7873, 7888, 7903, 7918, 7933, 7948, 7963, 7978, + 7993, 8008, 8023, 8038, 8053, 8068, 8083, 8098, 8113, 8128, + 8143, 8158, 8173, 8188, 8203, 8218, 8233, 8248, 8263, 8278, + 8293, 2935, 3176, 3485, 8302, 2843, 8321, 8333, 8352, 8371, + 8382, 8396, 8411, 8426, 8441, 8456, 8471, 8486, 8501, 8516, + + 8531, 8546, 8561, 8576, 8591, 8606, 8621, 8636, 8651, 8666, + 8681, 8696, 8711, 8726, 8741, 8756, 8771, 8786, 8801, 8816, + 8831, 8846, 8861, 8876, 8891, 8906, 8921, 8936, 8951, 8966, + 8981, 8996, 9011, 9026, 9041, 2928, 9050, 9069, 9089, 9104, + 9115, 9129, 9144, 9159, 9174, 9189, 9204, 9219, 9234, 9249, + 9264, 9279, 9294, 9309, 9324, 9339, 9354, 9369, 9384, 9399, + 9414, 9429, 9444, 9459, 9474, 9489, 9504, 9519, 9534, 9549, + 9564, 9579, 9594, 9609, 9624, 9644, 9664, 9684, 9704, 9724, + 9739, 9754, 9769, 9784, 9799, 9814, 9829, 9844, 9859, 9874, + 9889, 9904, 9919, 9934, 9949, 9964, 9979, 9994,10009,10024, + + 10039,10054,10074,10094,10114,10129,10144,10159,10179,10199, + 10219,10239,10259,10279,10299 + } ; + +static const flex_int16_t yy_def[1816] = + { 0, + 1585, 1585, 1584, 3, 1584, 5, 1584, 7, 1586, 1586, + 1587, 1587, 1588, 1588, 1584, 15, 1588, 1588, 3, 19, + 1588, 1588, 1588, 1588, 1589, 1589, 1584, 1590, 1584, 1584, + 1584, 1584, 1590, 1590, 1590, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1591, 1592, 1584, + 1591, 1584, 1593, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1594, 1584, 1584, 1594, 1584, 1584, 64, 1595, 1596, 64, + 1584, 1584, 1584, 1584, 1584, 1597, 62, 1597, 1584, 78, + 1598, 1599, 78, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + + 1584, 1584, 1584, 93, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1600, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1601, 1601, 1601, 1584, 1584, 1584, 1584, 1584, 1584, + 1602, 1600, 1584, 1584, 1584, 1584, 1584, 1591, 1584, 1584, + 1584, 1584, 1584, 132, 132, 1584, 1584, 1584, 1584, 1584, + 1584, 1590, 1590, 1590, 1590, 1584, 1584, 1584, 1603, 1584, + 1590, 1590, 1590, 1584, 1604, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1605, 43, 1606, + 1584, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, + 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1584, 1584, 1584, + + 1584, 1584, 1584, 1584, 1607, 1584, 1584, 1591, 1591, 1591, + 1592, 1584, 1584, 1584, 1584, 1584, 1584, 1608, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1609, 64, 1584, 1610, 1611, + 64, 1584, 1584, 1584, 1584, 1612, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1609, 1584, 1613, 1584, 244, 1614, 1615, + 1616, 1615, 1584, 1584, 1584, 1617, 1584, 1617, 258, 1584, + 1584, 1584, 1584, 64, 1584, 1584, 1584, 1584, 1584, 1584, + 1618, 1619, 1584, 1620, 1621, 1619, 1584, 1584, 1584, 1622, + 1584, 1618, 1584, 1623, 1584, 282, 1624, 1625, 1626, 1625, + 1584, 1584, 1584, 1627, 1584, 1627, 296, 1584, 1584, 1584, + + 1619, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1628, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1629, 1584, 1584, 1584, + 1584, 1630, 1630, 1630, 1584, 1584, 1584, 1584, 1631, 1631, + 1584, 1584, 1584, 1584, 1632, 1584, 1633, 1634, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1635, 1636, 1637, 1584, + 1637, 1584, 1584, 1638, 1584, 1584, 1584, 1584, 1584, 1639, + 1584, 1639, 1640, 1639, 1641, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1641, 1641, 1641, 1641, 1641, 1641, + + 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, + 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1584, 1584, + 1584, 1584, 1638, 1638, 1638, 1638, 1584, 1638, 1638, 1638, + 1584, 1642, 1584, 1584, 1584, 1584, 1643, 1584, 1584, 1644, + 1584, 1645, 1645, 1646, 1645, 1584, 1584, 1584, 1584, 1647, + 1648, 1648, 1584, 1584, 1584, 1649, 1584, 1650, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1651, 1652, 1652, 1584, 1584, + 1584, 1644, 1645, 473, 1653, 1584, 1644, 1654, 1655, 1656, + 1653, 1584, 1584, 1584, 1653, 1584, 1654, 1655, 1656, 1653, + 1584, 1584, 1584, 473, 1657, 1658, 1658, 1659, 1658, 1584, + + 1584, 1584, 1660, 1584, 1584, 1584, 1584, 1584, 1661, 1662, + 1662, 1584, 1584, 1584, 1661, 1584, 1584, 1584, 1584, 1663, + 1584, 1664, 1664, 1665, 1664, 1584, 1584, 1584, 1584, 1666, + 1667, 1667, 1584, 1584, 1584, 1668, 1584, 1669, 1584, 1584, + 1584, 1584, 1584, 1670, 1671, 1671, 1584, 1584, 1584, 1663, + 1664, 551, 1672, 1584, 1663, 1673, 1674, 1675, 1672, 1584, + 1584, 1584, 1672, 1584, 1673, 1674, 1675, 1672, 1584, 1584, + 1584, 551, 1676, 1677, 1677, 1678, 1677, 1584, 1584, 1584, + 1679, 1584, 1584, 1584, 1584, 1584, 1680, 1681, 1681, 1584, + 1584, 1584, 1584, 1584, 1682, 1680, 1584, 1584, 1584, 1584, + + 1584, 1584, 1584, 1683, 1584, 1584, 1584, 1584, 1584, 1684, + 1584, 1584, 1584, 1685, 1686, 1685, 1687, 1584, 1584, 1584, + 1584, 1688, 1688, 1685, 1685, 1685, 1685, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1689, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1690, 1690, 1690, 1690, 1690, 1690, 1690, + 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1584, 1690, + 1584, 1584, 1584, 1584, 1690, 1690, 1690, 1690, 1584, 1584, + 1690, 1690, 1690, 1690, 1690, 1690, 1584, 1688, 1584, 1688, + 1688, 1688, 1688, 1691, 1691, 1692, 1584, 1693, 1694, 1695, + + 1695, 1584, 1584, 1584, 1584, 1584, 1696, 1696, 1696, 1584, + 1584, 1584, 1584, 1584, 1697, 1697, 1698, 1584, 1584, 1584, + 1699, 1584, 1584, 1584, 1584, 1584, 1584, 1700, 1700, 1700, + 1584, 1584, 1584, 1584, 1584, 1701, 1692, 1702, 1584, 1584, + 1584, 1703, 1692, 1692, 1701, 1704, 1692, 1584, 1584, 1584, + 1705, 1584, 1584, 1584, 1706, 1584, 1584, 1584, 1692, 745, + 1584, 1584, 745, 1692, 745, 1707, 1708, 1693, 1709, 1710, + 1711, 1584, 1584, 1584, 1712, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1713, 1713, 1713, 1584, 1584, 1584, 1584, + 1584, 1713, 1584, 1714, 1584, 1715, 1716, 1717, 1717, 1584, + + 1584, 1584, 1584, 1584, 1718, 1718, 1718, 1584, 1584, 1584, + 1584, 1584, 1719, 1719, 1720, 1584, 1584, 1584, 1721, 1584, + 1584, 1584, 1584, 1584, 1584, 1722, 1722, 1722, 1584, 1584, + 1584, 1584, 1584, 1723, 1714, 1724, 1584, 1584, 1584, 1725, + 1714, 1714, 1723, 1726, 1714, 1584, 1584, 1584, 1727, 1584, + 1584, 1584, 1728, 1584, 1584, 1584, 1714, 843, 1584, 1584, + 843, 1714, 843, 1729, 1730, 1715, 1731, 1732, 1733, 1584, + 1584, 1584, 1734, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1735, 1735, 1735, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1736, 1736, 1735, 1584, 1737, 1737, 1584, + + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1738, 1584, 1584, + 1739, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1740, + 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1584, 1584, + 1740, 1740, 1740, 1740, 1740, 1584, 1740, 1584, 1740, 1584, + 1584, 1584, 1740, 1740, 1584, 1740, 948, 1740, 1584, 1584, + 1584, 1740, 1740, 1584, 1584, 1740, 1741, 1741, 1742, 1743, + 1743, 1743, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1744, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1745, 1584, 1584, 1584, 1584, 1584, 1746, + + 1584, 1584, 1584, 1747, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1748, 1748, 1584, 1584, 1584, 1584, 1584, 1742, 1584, + 1019, 1749, 1749, 1750, 1749, 1584, 1584, 1584, 1751, 1752, + 1749, 1749, 1753, 1754, 1584, 1584, 1584, 1755, 1756, 1756, + 1584, 1584, 1584, 1757, 1584, 1758, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1759, 1760, + 1760, 1760, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1761, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1762, 1584, 1584, 1584, 1584, 1584, 1763, + 1584, 1584, 1584, 1764, 1584, 1584, 1584, 1584, 1584, 1584, + + 1584, 1765, 1765, 1584, 1584, 1584, 1584, 1584, 1759, 1584, + 1109, 1766, 1766, 1767, 1766, 1584, 1584, 1584, 1768, 1769, + 1766, 1766, 1770, 1771, 1584, 1584, 1584, 1772, 1773, 1773, + 1584, 1584, 1584, 1774, 1584, 1775, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1776, 1584, 1777, 1584, 1584, 1584, 1584, 1584, + 1778, 1584, 1584, 1584, 1584, 1584, 1584, 1779, 1584, 1780, + 1780, 1780, 1171, 1584, 1171, 1584, 1171, 1584, 1584, 1584, + 1171, 1584, 1171, 1176, 1584, 1584, 1584, 1584, 1584, 1171, + 1171, 1171, 1171, 1584, 1171, 1176, 1584, 1584, 1584, 1171, + + 1171, 1584, 1584, 1171, 1171, 1171, 1584, 1171, 1176, 1584, + 1584, 1584, 1171, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1781, 1782, 1782, 1584, 1584, 1584, + 1584, 1584, 1783, 1784, 1784, 1584, 1584, 1584, 1785, 1786, + 1787, 1787, 1584, 1584, 1584, 1584, 1584, 1788, 1788, 1788, + 1584, 1584, 1584, 1584, 1584, 1789, 1789, 1790, 1584, 1584, + 1584, 1791, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + + 1584, 1792, 1793, 1793, 1584, 1584, 1584, 1584, 1584, 1794, + 1795, 1795, 1584, 1584, 1584, 1796, 1797, 1798, 1798, 1584, + 1584, 1584, 1584, 1584, 1799, 1799, 1799, 1584, 1584, 1584, + 1584, 1584, 1800, 1800, 1801, 1584, 1584, 1584, 1802, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1803, 1584, 1804, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1805, 1584, 1171, 1176, 1584, 1584, 1584, 1584, + 1584, 1584, 1171, 1176, 1584, 1584, 1584, 1171, 1171, 1171, + 1584, 1584, 1171, 1584, 1584, 1171, 1584, 1584, 1171, 1171, + 1171, 1171, 1584, 1171, 1176, 1584, 1584, 1584, 1584, 1584, + + 1584, 1584, 1584, 1584, 1806, 1806, 1806, 1584, 1584, 1584, + 1584, 1584, 1584, 1807, 1807, 1807, 1584, 1584, 1584, 1584, + 1584, 1808, 1808, 1808, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1790, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1792, 1792, + 1792, 1584, 1584, 1584, 1584, 1584, 1584, 1794, 1794, 1794, + 1584, 1584, 1584, 1584, 1584, 1797, 1797, 1797, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1801, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1809, 1584, 1810, 1584, + 1811, 1584, 1812, 1813, 1584, 1584, 1171, 1176, 1584, 1584, + + 1584, 1171, 1584, 1171, 1176, 1584, 1584, 1584, 1171, 1584, + 1171, 1176, 1584, 1584, 1584, 1171, 1584, 1171, 1176, 1584, + 1584, 1584, 1584, 1171, 1176, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1814, 1584, + 1815, 1584, 1171, 1176, 1584, 1584, 1584, 1584, 1584, 1584, + 1171, 1176, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 0, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584 + } ; + +static const flex_int16_t yy_nxt[10391] = + { 0, + 1584, 1584, 29, 30, 31, 29, 30, 31, 158, 164, + 355, 158, 164, 355, 159, 165, 214, 263, 166, 160, + 160, 166, 304, 366, 32, 304, 247, 36, 159, 165, + 167, 1584, 168, 1584, 169, 169, 169, 202, 248, 203, + 203, 203, 204, 333, 333, 204, 246, 246, 246, 342, + 353, 354, 342, 360, 361, 248, 367, 305, 205, 205, + 205, 371, 1584, 343, 206, 372, 372, 33, 34, 35, + 33, 34, 35, 37, 38, 39, 40, 38, 37, 41, + 42, 37, 37, 43, 44, 37, 45, 37, 46, 47, + 48, 48, 48, 37, 49, 37, 37, 50, 51, 51, + + 51, 51, 51, 51, 51, 51, 51, 51, 52, 53, + 44, 37, 54, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 55, 37, 37, 56, 56, + 57, 58, 59, 37, 60, 39, 40, 60, 61, 41, + 62, 61, 63, 52, 37, 61, 64, 65, 66, 47, + 67, 67, 67, 68, 49, 61, 61, 69, 61, 61, + 61, 61, 61, 61, 61, 61, 61, 61, 52, 70, + 37, 63, 54, 61, 61, 61, 61, 61, 61, 61, + 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, + + 61, 61, 61, 61, 61, 37, 37, 71, 56, 56, + 72, 73, 74, 37, 75, 39, 40, 75, 76, 41, + 77, 76, 63, 52, 44, 76, 78, 65, 79, 76, + 80, 80, 80, 81, 49, 76, 76, 82, 76, 76, + 76, 76, 76, 76, 76, 76, 76, 76, 52, 83, + 44, 63, 54, 76, 76, 76, 76, 76, 76, 76, + 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, + 76, 76, 76, 76, 76, 37, 37, 37, 56, 56, + 84, 85, 86, 88, 89, 90, 88, 153, 154, 155, + 91, 650, 91, 91, 91, 91, 651, 91, 92, 161, + + 715, 153, 154, 155, 162, 91, 153, 154, 155, 163, + 721, 153, 154, 155, 285, 308, 600, 91, 93, 91, + 222, 204, 304, 222, 204, 304, 286, 207, 728, 208, + 208, 208, 223, 630, 224, 631, 225, 225, 225, 210, + 994, 319, 890, 286, 319, 91, 891, 94, 94, 95, + 96, 97, 88, 89, 90, 88, 210, 305, 280, 91, + 1401, 91, 91, 91, 91, 227, 91, 92, 346, 346, + 346, 353, 354, 228, 91, 737, 320, 250, 229, 593, + 350, 204, 230, 350, 204, 228, 91, 93, 91, 257, + 251, 594, 1000, 322, 230, 258, 231, 1402, 595, 259, + + 259, 259, 236, 206, 153, 154, 155, 347, 252, 348, + 348, 348, 323, 606, 91, 351, 94, 94, 95, 96, + 97, 99, 100, 101, 99, 232, 233, 234, 102, 1004, + 102, 102, 102, 102, 1403, 102, 103, 253, 254, 255, + 153, 154, 155, 102, 368, 214, 263, 181, 369, 260, + 261, 262, 370, 333, 333, 102, 104, 102, 228, 295, + 226, 226, 226, 267, 434, 296, 267, 434, 743, 297, + 297, 297, 280, 434, 214, 268, 434, 269, 751, 270, + 270, 270, 1012, 102, 1404, 105, 105, 106, 107, 108, + 99, 100, 101, 99, 376, 377, 378, 102, 644, 102, + + 102, 102, 102, 593, 102, 103, 421, 421, 421, 755, + 272, 645, 102, 304, 204, 594, 304, 204, 273, 298, + 299, 300, 595, 274, 102, 104, 102, 275, 283, 1235, + 284, 284, 284, 171, 214, 263, 206, 434, 214, 172, + 434, 276, 161, 173, 153, 154, 155, 273, 305, 271, + 271, 271, 102, 1411, 105, 105, 106, 107, 108, 110, + 111, 112, 110, 174, 113, 1412, 175, 171, 176, 1022, + 277, 278, 279, 172, 1413, 288, 601, 173, 607, 601, + 177, 607, 162, 273, 153, 154, 155, 178, 289, 205, + 205, 205, 275, 1243, 114, 435, 435, 174, 1420, 436, + + 175, 163, 176, 153, 154, 155, 290, 161, 1421, 153, + 154, 155, 1250, 358, 344, 153, 154, 155, 433, 433, + 433, 345, 1428, 115, 115, 116, 117, 118, 110, 111, + 112, 110, 181, 113, 1429, 291, 292, 293, 158, 164, + 620, 158, 164, 620, 159, 165, 353, 619, 166, 160, + 160, 166, 202, 909, 169, 169, 169, 407, 159, 165, + 167, 910, 168, 114, 169, 169, 169, 362, 1031, 431, + 362, 212, 1430, 432, 432, 432, 246, 246, 246, 376, + 377, 378, 363, 205, 205, 205, 449, 449, 449, 363, + 360, 361, 115, 115, 116, 117, 118, 119, 109, 120, + + 121, 109, 119, 119, 119, 119, 119, 119, 119, 119, + 119, 119, 119, 119, 122, 122, 122, 119, 119, 119, + 119, 119, 122, 122, 122, 122, 122, 122, 122, 122, + 122, 122, 119, 119, 119, 119, 119, 122, 122, 122, + 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, + 123, 122, 122, 122, 122, 122, 122, 124, 122, 119, + 119, 119, 125, 125, 126, 127, 128, 110, 129, 130, + 110, 364, 1258, 169, 169, 169, 181, 1431, 439, 181, + 225, 225, 225, 365, 422, 1432, 203, 203, 203, 228, + 131, 226, 226, 226, 181, 228, 365, 226, 226, 226, + + 365, 181, 132, 602, 602, 133, 395, 603, 396, 397, + 472, 472, 472, 365, 181, 1038, 319, 181, 401, 319, + 181, 621, 361, 376, 377, 378, 376, 377, 378, 405, + 1433, 115, 115, 116, 117, 118, 110, 129, 130, 110, + 398, 376, 377, 378, 402, 403, 404, 399, 376, 377, + 378, 320, 412, 400, 1266, 413, 504, 505, 506, 131, + 1438, 376, 377, 378, 376, 377, 378, 376, 377, 378, + 1439, 132, 601, 308, 133, 601, 1272, 181, 1440, 464, + 1441, 423, 181, 424, 424, 424, 181, 372, 372, 235, + 235, 235, 1044, 426, 465, 607, 323, 406, 607, 1442, + + 115, 115, 116, 117, 118, 134, 408, 181, 134, 766, + 426, 135, 181, 63, 52, 411, 181, 136, 65, 137, + 37, 138, 138, 138, 376, 377, 378, 181, 139, 376, + 377, 378, 775, 376, 377, 378, 409, 457, 181, 418, + 140, 784, 63, 141, 142, 143, 141, 417, 113, 410, + 458, 414, 1060, 613, 376, 377, 378, 614, 614, 376, + 377, 378, 1443, 376, 377, 378, 415, 529, 529, 529, + 362, 416, 797, 362, 376, 377, 378, 207, 144, 208, + 208, 208, 550, 550, 550, 376, 377, 378, 805, 210, + 1072, 440, 363, 225, 225, 225, 1444, 459, 460, 461, + + 582, 583, 584, 441, 626, 626, 210, 115, 115, 116, + 117, 118, 141, 142, 143, 141, 222, 113, 813, 222, + 441, 228, 819, 226, 226, 226, 355, 443, 223, 355, + 224, 826, 225, 225, 225, 228, 1084, 451, 1445, 519, + 444, 270, 270, 270, 230, 228, 362, 144, 362, 362, + 251, 362, 608, 608, 230, 494, 609, 228, 445, 495, + 495, 495, 283, 835, 284, 284, 284, 1090, 452, 442, + 363, 1446, 537, 612, 612, 612, 115, 115, 116, 117, + 118, 141, 142, 143, 141, 538, 442, 446, 447, 448, + 339, 339, 339, 647, 467, 1094, 648, 453, 454, 455, + + 497, 1447, 228, 841, 131, 849, 342, 251, 228, 342, + 250, 230, 267, 498, 1102, 267, 145, 230, 228, 133, + 343, 614, 614, 251, 268, 468, 269, 230, 270, 270, + 270, 499, 539, 540, 541, 617, 1448, 346, 346, 346, + 853, 252, 618, 618, 618, 115, 115, 116, 117, 118, + 141, 142, 143, 141, 469, 470, 471, 637, 638, 639, + 500, 501, 502, 1302, 520, 1455, 270, 270, 270, 250, + 253, 254, 255, 131, 898, 898, 521, 228, 350, 510, + 434, 350, 251, 434, 1456, 145, 230, 228, 133, 421, + 421, 421, 229, 521, 523, 347, 230, 348, 348, 348, + + 252, 1112, 273, 620, 353, 1457, 620, 524, 435, 435, + 511, 275, 436, 351, 115, 115, 116, 117, 118, 147, + 148, 149, 147, 601, 308, 525, 601, 150, 431, 253, + 254, 255, 623, 623, 623, 151, 151, 151, 1310, 512, + 513, 514, 1464, 151, 151, 151, 161, 689, 153, 154, + 155, 690, 690, 690, 526, 527, 528, 1465, 151, 151, + 151, 151, 151, 151, 147, 148, 149, 147, 1317, 572, + 181, 273, 150, 573, 573, 573, 623, 623, 623, 1472, + 151, 151, 151, 522, 424, 424, 424, 431, 151, 151, + 151, 692, 692, 692, 622, 693, 1473, 694, 694, 694, + + 522, 626, 626, 151, 151, 151, 151, 151, 151, 179, + 892, 622, 179, 180, 893, 893, 180, 376, 377, 378, + 180, 180, 1121, 181, 180, 180, 180, 180, 181, 601, + 180, 180, 601, 180, 180, 180, 180, 180, 180, 180, + 180, 180, 180, 1474, 180, 1325, 655, 1475, 182, 183, + 184, 185, 186, 187, 188, 180, 189, 180, 190, 191, + 192, 193, 180, 194, 195, 196, 197, 180, 180, 180, + 376, 377, 378, 1476, 633, 198, 199, 200, 214, 215, + 216, 634, 602, 602, 272, 1128, 603, 635, 433, 433, + 433, 181, 273, 217, 217, 531, 1477, 274, 246, 246, + + 246, 275, 1333, 273, 607, 697, 1482, 607, 289, 698, + 698, 698, 275, 904, 905, 276, 216, 216, 893, 893, + 216, 216, 607, 323, 656, 607, 532, 1483, 216, 620, + 353, 216, 620, 216, 1339, 216, 218, 171, 376, 377, + 378, 893, 893, 172, 277, 278, 279, 173, 235, 235, + 235, 236, 237, 898, 898, 533, 534, 535, 272, 181, + 238, 239, 240, 241, 242, 545, 273, 174, 575, 1484, + 175, 274, 176, 273, 620, 275, 273, 620, 289, 1485, + 288, 576, 275, 1134, 177, 275, 181, 662, 273, 276, + 1486, 178, 227, 289, 864, 663, 546, 275, 913, 577, + + 243, 914, 244, 244, 244, 229, 376, 377, 378, 230, + 181, 290, 449, 449, 449, 873, 654, 882, 277, 278, + 279, 1487, 1488, 231, 1489, 547, 548, 549, 578, 579, + 580, 288, 1490, 376, 377, 378, 181, 1491, 1492, 273, + 291, 292, 293, 588, 289, 1493, 657, 658, 275, 181, + 1494, 273, 232, 233, 234, 272, 274, 376, 377, 378, + 275, 181, 290, 281, 181, 282, 282, 282, 274, 659, + 1495, 375, 275, 628, 589, 722, 723, 724, 423, 660, + 424, 424, 424, 376, 377, 378, 276, 629, 375, 661, + 426, 291, 292, 293, 628, 664, 376, 377, 378, 752, + + 753, 754, 629, 590, 591, 592, 375, 426, 376, 377, + 378, 376, 377, 378, 628, 277, 278, 279, 307, 307, + 308, 309, 310, 307, 307, 307, 311, 307, 311, 311, + 311, 311, 307, 311, 311, 312, 312, 307, 307, 307, + 307, 311, 307, 307, 313, 307, 307, 307, 307, 307, + 313, 307, 313, 311, 310, 311, 307, 307, 310, 310, + 307, 313, 310, 310, 307, 307, 307, 307, 307, 307, + 310, 307, 307, 310, 313, 310, 307, 310, 314, 307, + 307, 311, 307, 307, 307, 307, 307, 307, 323, 324, + 325, 629, 325, 608, 608, 325, 970, 609, 272, 752, + + 753, 754, 982, 326, 326, 181, 273, 776, 777, 778, + 994, 274, 504, 505, 506, 275, 284, 284, 284, 181, + 1000, 1004, 325, 1012, 1405, 325, 325, 325, 665, 276, + 325, 325, 423, 1531, 691, 691, 691, 1532, 325, 1235, + 1533, 325, 677, 325, 426, 325, 327, 334, 334, 334, + 1022, 181, 376, 377, 378, 334, 334, 334, 277, 278, + 279, 426, 181, 1414, 1534, 181, 376, 377, 378, 181, + 334, 334, 334, 334, 334, 334, 336, 181, 337, 337, + 1535, 181, 338, 337, 1243, 795, 339, 339, 339, 796, + 796, 796, 676, 337, 666, 181, 1536, 667, 376, 377, + + 378, 1422, 668, 181, 337, 675, 1537, 337, 684, 376, + 377, 378, 376, 377, 378, 682, 376, 377, 378, 529, + 529, 529, 1538, 1250, 376, 377, 378, 678, 376, 377, + 378, 337, 323, 324, 325, 679, 325, 1539, 679, 325, + 681, 1031, 376, 377, 378, 680, 679, 326, 326, 679, + 376, 377, 378, 494, 341, 228, 680, 495, 495, 495, + 820, 821, 822, 850, 851, 852, 325, 442, 1258, 325, + 325, 325, 1540, 1038, 325, 325, 228, 1434, 495, 495, + 495, 1541, 325, 1542, 442, 325, 1266, 325, 442, 325, + 327, 379, 380, 381, 382, 383, 384, 385, 1543, 386, + + 1272, 387, 388, 389, 390, 442, 391, 392, 393, 394, + 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, + 427, 427, 427, 427, 427, 1544, 427, 428, 428, 428, + 427, 427, 427, 427, 427, 429, 429, 430, 429, 429, + 429, 429, 429, 429, 429, 427, 427, 427, 427, 427, + 429, 429, 429, 429, 430, 429, 429, 429, 429, 429, + 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, + 429, 429, 427, 427, 427, 427, 427, 427, 427, 427, + 443, 181, 1044, 1060, 181, 716, 1072, 181, 247, 1084, + 473, 473, 473, 444, 850, 851, 852, 230, 717, 679, + + 474, 738, 679, 874, 875, 876, 582, 583, 584, 680, + 476, 445, 926, 683, 1090, 926, 716, 474, 181, 612, + 612, 612, 927, 479, 686, 685, 476, 480, 376, 377, + 378, 376, 377, 378, 376, 377, 378, 1094, 1102, 742, + 446, 447, 448, 476, 738, 718, 719, 720, 739, 740, + 741, 477, 836, 478, 478, 478, 479, 433, 433, 433, + 480, 1449, 1545, 481, 1546, 376, 377, 378, 1302, 1547, + 482, 483, 484, 273, 1112, 573, 573, 573, 431, 1458, + 481, 1548, 692, 692, 692, 522, 756, 757, 758, 1549, + 1310, 739, 740, 741, 967, 967, 967, 1550, 1466, 837, + + 838, 839, 522, 482, 483, 484, 427, 427, 427, 427, + 427, 485, 427, 486, 485, 427, 427, 427, 485, 485, + 427, 1551, 427, 487, 487, 487, 488, 427, 485, 485, + 489, 485, 485, 490, 485, 485, 485, 485, 485, 485, + 485, 427, 485, 427, 427, 427, 485, 485, 485, 485, + 490, 485, 485, 485, 485, 485, 485, 485, 485, 485, + 485, 485, 485, 485, 485, 485, 485, 485, 427, 427, + 427, 427, 427, 491, 492, 493, 510, 836, 698, 698, + 698, 1552, 443, 1317, 228, 1553, 515, 515, 515, 229, + 228, 1121, 1584, 230, 423, 444, 692, 692, 692, 230, + + 928, 443, 1325, 928, 700, 939, 1554, 511, 939, 228, + 929, 1128, 228, 445, 444, 940, 1478, 251, 230, 1555, + 1556, 230, 1333, 759, 837, 838, 839, 760, 760, 760, + 738, 964, 445, 476, 964, 701, 512, 513, 514, 523, + 1557, 965, 446, 447, 448, 1339, 742, 285, 1558, 551, + 551, 551, 524, 983, 984, 985, 275, 1134, 1559, 552, + 1560, 446, 447, 448, 702, 703, 704, 443, 1561, 375, + 525, 628, 629, 708, 375, 228, 552, 739, 740, 741, + 444, 228, 628, 554, 230, 693, 498, 694, 694, 694, + 230, 629, 814, 756, 757, 758, 840, 375, 445, 526, + + 527, 528, 554, 1584, 709, 815, 628, 968, 968, 968, + 555, 629, 556, 556, 556, 557, 722, 723, 724, 558, + 375, 628, 559, 814, 995, 996, 997, 446, 447, 448, + 1001, 1002, 1003, 710, 711, 712, 1584, 629, 423, 559, + 690, 690, 690, 854, 855, 856, 1005, 1006, 1007, 752, + 753, 754, 816, 817, 818, 1584, 375, 423, 628, 692, + 692, 692, 560, 561, 562, 427, 427, 427, 427, 427, + 563, 427, 564, 563, 427, 427, 427, 563, 563, 427, + 629, 563, 565, 565, 565, 566, 427, 563, 563, 567, + 563, 563, 568, 563, 563, 563, 563, 563, 563, 563, + + 427, 563, 427, 427, 427, 563, 563, 563, 563, 568, + 563, 563, 563, 563, 563, 563, 563, 563, 563, 563, + 563, 563, 563, 563, 563, 563, 563, 427, 427, 427, + 427, 427, 569, 570, 571, 588, 763, 763, 763, 1405, + 1576, 451, 1235, 273, 1414, 596, 596, 596, 274, 228, + 1577, 451, 275, 926, 251, 1243, 926, 729, 230, 228, + 776, 777, 778, 927, 251, 228, 589, 738, 230, 1422, + 498, 554, 452, 572, 230, 273, 1578, 573, 573, 573, + 1250, 1258, 452, 928, 840, 764, 928, 522, 730, 765, + 765, 765, 738, 929, 1434, 590, 591, 592, 334, 334, + + 334, 453, 454, 455, 522, 1579, 334, 334, 334, 1266, + 1272, 453, 454, 455, 739, 740, 741, 731, 732, 733, + 1449, 334, 334, 334, 334, 334, 334, 627, 627, 627, + 1580, 854, 855, 856, 738, 627, 627, 627, 746, 739, + 740, 741, 857, 796, 796, 796, 858, 858, 858, 836, + 627, 627, 627, 627, 627, 627, 669, 669, 669, 669, + 669, 836, 669, 670, 836, 669, 669, 669, 844, 1302, + 669, 669, 1073, 1074, 1075, 1458, 671, 669, 1581, 1310, + 669, 739, 740, 741, 1466, 739, 740, 741, 820, 821, + 822, 669, 1582, 669, 670, 669, 837, 838, 839, 1085, + + 1086, 1087, 1091, 1092, 1093, 1095, 1096, 1097, 837, 838, + 839, 837, 838, 839, 1317, 837, 838, 839, 669, 669, + 669, 669, 669, 672, 673, 674, 427, 427, 427, 427, + 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, + 427, 1325, 427, 688, 688, 688, 427, 427, 427, 427, + 427, 429, 429, 430, 429, 429, 429, 429, 429, 429, + 429, 427, 427, 427, 427, 427, 429, 429, 429, 429, + 430, 429, 429, 429, 429, 429, 429, 429, 429, 429, + 429, 429, 429, 429, 429, 429, 429, 429, 427, 427, + 427, 427, 427, 427, 427, 427, 476, 1584, 1478, 423, + + 1583, 424, 424, 424, 467, 1333, 478, 478, 478, 479, + 467, 426, 228, 480, 1339, 375, 696, 251, 228, 628, + 1584, 230, 423, 251, 691, 691, 691, 230, 426, 850, + 851, 852, 629, 696, 426, 468, 497, 760, 760, 760, + 738, 468, 939, 375, 228, 939, 497, 628, 629, 498, + 1405, 426, 940, 230, 228, 1045, 482, 483, 484, 498, + 1414, 497, 1422, 230, 469, 470, 471, 499, 1046, 228, + 469, 470, 471, 476, 498, 1434, 1449, 499, 230, 1458, + 1466, 477, 1478, 736, 736, 736, 479, 739, 740, 741, + 480, 374, 499, 481, 374, 1400, 500, 501, 502, 437, + + 374, 785, 1019, 1019, 1019, 437, 500, 501, 502, 228, + 481, 982, 743, 604, 444, 1047, 1048, 1049, 230, 604, + 707, 500, 501, 502, 610, 554, 861, 861, 861, 743, + 610, 374, 786, 482, 483, 484, 443, 374, 557, 874, + 875, 876, 558, 699, 247, 1399, 473, 473, 473, 444, + 983, 984, 985, 230, 616, 926, 474, 181, 926, 970, + 616, 787, 788, 789, 510, 927, 181, 445, 995, 996, + 997, 510, 228, 474, 181, 629, 437, 229, 437, 228, + 616, 230, 437, 616, 229, 560, 561, 562, 230, 616, + 1021, 1021, 1021, 1171, 628, 511, 446, 447, 448, 744, + + 743, 375, 511, 1192, 376, 377, 378, 477, 629, 745, + 745, 745, 746, 376, 377, 378, 480, 743, 628, 747, + 375, 376, 377, 378, 512, 513, 514, 523, 629, 181, + 737, 512, 513, 514, 523, 273, 747, 628, 964, 895, + 524, 964, 273, 895, 275, 895, 895, 524, 965, 375, + 862, 275, 895, 1193, 863, 863, 863, 836, 525, 748, + 749, 750, 744, 629, 628, 525, 375, 1135, 1363, 1362, + 477, 181, 763, 763, 763, 746, 376, 377, 378, 480, + 1136, 1361, 747, 1360, 798, 1359, 1358, 526, 527, 528, + 523, 1357, 273, 737, 526, 527, 528, 289, 273, 747, + + 806, 275, 1356, 524, 837, 838, 839, 275, 273, 1355, + 181, 1354, 1190, 576, 1353, 799, 1352, 275, 376, 377, + 378, 525, 748, 749, 750, 767, 1351, 1137, 1138, 1139, + 1350, 807, 1349, 768, 1348, 769, 769, 769, 770, 1170, + 587, 1347, 771, 181, 800, 801, 802, 1001, 1002, 1003, + 526, 527, 528, 1005, 1006, 1007, 445, 376, 377, 378, + 808, 809, 810, 531, 882, 928, 531, 181, 928, 581, + 1172, 273, 574, 1346, 273, 929, 289, 873, 1345, 289, + 275, 864, 716, 275, 181, 772, 773, 774, 785, 1344, + 376, 377, 378, 1343, 532, 717, 228, 532, 792, 792, + + 792, 444, 764, 1173, 1134, 230, 765, 765, 765, 738, + 1109, 1109, 1109, 716, 376, 377, 378, 1136, 1332, 786, + 841, 827, 1331, 533, 534, 535, 533, 534, 535, 273, + 1128, 376, 377, 378, 576, 1324, 1584, 841, 275, 1584, + 1323, 1121, 718, 719, 720, 1309, 1584, 1308, 787, 788, + 789, 554, 828, 1112, 553, 181, 739, 740, 741, 545, + 1301, 556, 556, 556, 557, 853, 1300, 273, 558, 1299, + 1102, 794, 289, 1021, 1021, 1021, 275, 930, 545, 1298, + 849, 829, 830, 831, 575, 1297, 273, 604, 794, 604, + 546, 289, 273, 604, 841, 275, 423, 576, 690, 690, + + 690, 275, 376, 377, 378, 765, 765, 765, 738, 546, + 1296, 560, 561, 562, 1295, 577, 181, 1094, 1294, 547, + 548, 549, 1293, 1090, 1584, 1292, 1584, 1584, 968, 968, + 968, 1273, 1274, 1275, 1584, 1073, 1074, 1075, 547, 548, + 549, 554, 835, 181, 578, 579, 580, 1291, 1181, 555, + 1290, 834, 834, 834, 557, 739, 740, 741, 558, 1084, + 544, 559, 1289, 376, 377, 378, 575, 931, 826, 575, + 536, 1111, 1111, 1111, 273, 1288, 883, 273, 559, 576, + 819, 841, 576, 275, 273, 1287, 275, 813, 1286, 524, + 376, 377, 378, 275, 1285, 181, 1188, 577, 841, 1188, + + 577, 560, 561, 562, 523, 1072, 1189, 884, 530, 1284, + 181, 805, 285, 522, 551, 551, 551, 524, 1085, 1086, + 1087, 275, 1283, 797, 552, 1191, 578, 579, 580, 578, + 579, 580, 588, 1282, 1200, 525, 885, 886, 887, 588, + 273, 552, 376, 377, 378, 274, 1281, 273, 181, 275, + 1584, 1202, 274, 1584, 1202, 1060, 275, 376, 377, 378, + 1584, 1203, 509, 589, 526, 527, 528, 842, 1280, 181, + 589, 784, 716, 503, 496, 555, 1279, 843, 843, 843, + 844, 1091, 1092, 1093, 558, 717, 775, 845, 181, 1278, + 766, 932, 590, 591, 592, 376, 377, 378, 835, 590, + + 591, 592, 1584, 716, 845, 1584, 1277, 858, 858, 858, + 836, 1276, 1584, 1095, 1096, 1097, 376, 377, 378, 759, + 1044, 181, 1046, 760, 760, 760, 738, 846, 847, 848, + 842, 1265, 718, 719, 720, 376, 377, 378, 555, 1264, + 861, 861, 861, 844, 1038, 1584, 1257, 558, 1584, 1256, + 845, 1031, 1242, 1584, 933, 1584, 1584, 837, 838, 839, + 181, 835, 1241, 1584, 181, 1022, 475, 845, 376, 377, + 378, 1234, 181, 739, 740, 741, 755, 1233, 1584, 1232, + 1201, 1584, 1111, 1111, 1111, 1340, 1341, 1342, 1584, 1012, + 846, 847, 848, 865, 934, 1231, 610, 181, 610, 751, + + 935, 866, 610, 867, 867, 867, 868, 376, 377, 378, + 869, 376, 377, 378, 181, 1584, 1230, 743, 1584, 376, + 377, 378, 936, 1584, 525, 1584, 1584, 1584, 939, 1584, + 1584, 939, 1584, 1584, 181, 1229, 1228, 1584, 940, 1584, + 1584, 1004, 181, 1584, 376, 377, 378, 181, 1227, 1226, + 1584, 1000, 1204, 870, 871, 872, 883, 1225, 937, 181, + 737, 376, 377, 378, 273, 1224, 896, 896, 896, 524, + 862, 1223, 1378, 275, 863, 863, 863, 836, 994, 938, + 466, 376, 377, 378, 1222, 728, 943, 884, 456, 376, + 377, 378, 476, 1221, 376, 377, 378, 1435, 1436, 1437, + + 477, 1013, 969, 969, 969, 479, 376, 377, 378, 480, + 721, 1220, 1584, 715, 738, 1584, 885, 886, 887, 899, + 899, 899, 1584, 1219, 837, 838, 839, 899, 899, 899, + 1218, 181, 1013, 857, 1273, 1274, 1275, 858, 858, 858, + 836, 982, 899, 899, 899, 899, 899, 899, 627, 627, + 627, 941, 482, 483, 484, 450, 627, 627, 627, 1217, + 707, 1014, 1015, 1016, 1479, 1480, 1481, 1584, 181, 442, + 1584, 627, 627, 627, 627, 627, 627, 1584, 376, 377, + 378, 1584, 181, 1216, 1584, 699, 181, 837, 838, 839, + 181, 1584, 1215, 1584, 1214, 970, 1584, 629, 1206, 628, + + 181, 375, 1205, 1584, 1584, 629, 628, 1584, 1584, 1584, + 375, 1584, 1584, 1169, 1584, 376, 377, 378, 1584, 1584, + 1213, 1168, 942, 181, 1340, 1341, 1342, 181, 1167, 376, + 377, 378, 1166, 376, 377, 378, 1380, 376, 377, 378, + 1435, 1436, 1437, 1165, 945, 1164, 1163, 376, 377, 378, + 379, 380, 381, 382, 383, 384, 385, 1162, 386, 1161, + 387, 388, 389, 390, 944, 391, 392, 393, 394, 1160, + 376, 377, 378, 1159, 376, 377, 378, 946, 946, 946, + 946, 946, 1158, 946, 947, 1157, 946, 946, 946, 814, + 1584, 946, 946, 1584, 1479, 1480, 1481, 948, 946, 1156, + + 1584, 946, 815, 1584, 1155, 1154, 1584, 1584, 1153, 181, + 1584, 1152, 946, 1584, 946, 947, 946, 1584, 1584, 1151, + 814, 1584, 181, 1150, 1149, 375, 181, 949, 1584, 294, + 891, 891, 1148, 953, 587, 1147, 1146, 882, 287, 946, + 946, 946, 946, 946, 950, 951, 952, 1145, 962, 816, + 817, 818, 581, 1144, 574, 1143, 376, 377, 378, 1379, + 954, 1142, 1584, 873, 1141, 1584, 1140, 864, 1110, 376, + 377, 378, 1584, 376, 377, 378, 955, 955, 955, 955, + 955, 181, 955, 956, 553, 955, 955, 955, 1108, 964, + 955, 955, 964, 1107, 853, 1101, 957, 955, 1100, 965, + + 955, 849, 1099, 1098, 971, 963, 1584, 841, 181, 1584, + 1089, 955, 228, 955, 956, 955, 1584, 498, 1088, 700, + 958, 230, 835, 1188, 1083, 181, 1188, 228, 376, 377, + 378, 544, 251, 1189, 1082, 972, 230, 1081, 955, 955, + 955, 955, 955, 959, 960, 961, 700, 826, 1381, 271, + 701, 1381, 1080, 966, 228, 376, 377, 378, 1382, 251, + 536, 1079, 1078, 230, 973, 974, 975, 819, 1077, 1076, + 708, 813, 376, 377, 378, 1071, 530, 701, 228, 702, + 703, 704, 708, 498, 1070, 708, 1384, 230, 1069, 1384, + 228, 805, 729, 228, 1068, 498, 1385, 522, 498, 230, + + 228, 709, 230, 1067, 729, 498, 702, 703, 704, 230, + 1066, 797, 228, 709, 256, 1584, 709, 498, 1584, 1058, + 729, 230, 509, 730, 1057, 1584, 1584, 814, 228, 1584, + 710, 711, 712, 498, 1056, 730, 1584, 230, 1188, 784, + 815, 1188, 710, 711, 712, 710, 711, 712, 1189, 249, + 1055, 730, 731, 732, 733, 1023, 503, 181, 814, 1054, + 496, 443, 1053, 228, 731, 732, 733, 1387, 1024, 228, + 1387, 1052, 230, 775, 1029, 1383, 1051, 1388, 230, 1050, + 731, 732, 733, 744, 766, 1020, 1025, 816, 817, 818, + 475, 477, 445, 763, 763, 763, 746, 1018, 1202, 1584, + + 480, 1202, 1584, 747, 376, 377, 378, 1017, 1203, 1584, + 863, 863, 863, 836, 737, 1026, 1027, 1028, 476, 755, + 747, 446, 447, 448, 1039, 1011, 1584, 1010, 1030, 1030, + 1030, 479, 228, 751, 785, 480, 1009, 251, 1008, 1103, + 743, 230, 228, 748, 749, 750, 744, 444, 999, 998, + 737, 230, 836, 1386, 477, 1040, 745, 745, 745, 746, + 837, 838, 839, 480, 993, 786, 747, 466, 992, 991, + 1103, 728, 226, 990, 785, 456, 989, 737, 482, 483, + 484, 988, 228, 747, 1041, 1042, 1043, 444, 721, 987, + 986, 230, 715, 981, 787, 788, 789, 450, 980, 1104, + + 1105, 1106, 979, 707, 978, 786, 748, 749, 750, 1032, + 442, 1249, 1249, 1249, 738, 785, 977, 768, 976, 1033, + 1033, 1033, 1034, 228, 699, 212, 771, 180, 444, 629, + 628, 375, 230, 925, 787, 788, 789, 554, 924, 923, + 1025, 922, 921, 1061, 920, 555, 786, 1059, 1059, 1059, + 557, 273, 919, 918, 558, 1584, 576, 917, 1584, 916, + 275, 739, 740, 741, 915, 1584, 912, 911, 908, 1035, + 1036, 1037, 907, 906, 1062, 787, 788, 789, 785, 903, + 902, 901, 1584, 900, 1584, 1584, 228, 1584, 792, 792, + 792, 444, 1584, 798, 1584, 230, 375, 560, 561, 562, + + 798, 273, 624, 1063, 1064, 1065, 289, 328, 273, 786, + 275, 1390, 806, 289, 609, 806, 1584, 275, 315, 1584, + 273, 603, 301, 273, 799, 576, 1584, 1392, 576, 275, + 897, 799, 275, 294, 806, 894, 889, 1389, 787, 788, + 789, 888, 273, 807, 587, 881, 807, 576, 287, 1584, + 827, 275, 1584, 800, 801, 802, 880, 879, 273, 1584, + 800, 801, 802, 576, 581, 807, 878, 275, 877, 574, + 827, 860, 808, 809, 810, 808, 809, 810, 273, 1370, + 859, 828, 1370, 576, 553, 827, 840, 275, 860, 1371, + 859, 1113, 553, 273, 808, 809, 810, 1381, 576, 273, + + 1381, 828, 275, 1384, 1114, 1391, 1384, 1382, 275, 840, + 829, 830, 831, 1385, 1202, 1387, 828, 1202, 1387, 833, + 832, 544, 1115, 825, 1203, 1388, 523, 271, 824, 823, + 829, 830, 831, 181, 273, 536, 538, 812, 811, 1119, + 530, 804, 803, 275, 522, 829, 830, 831, 842, 264, + 793, 1116, 1117, 1118, 256, 791, 555, 525, 861, 861, + 861, 844, 790, 1584, 1370, 558, 1584, 1370, 845, 509, + 783, 249, 782, 1584, 1371, 1316, 1316, 1316, 836, 835, + 376, 377, 378, 554, 781, 845, 526, 527, 528, 1129, + 503, 1584, 780, 1120, 1120, 1120, 557, 273, 779, 883, + + 558, 496, 289, 762, 1013, 761, 275, 273, 846, 847, + 848, 842, 524, 475, 742, 762, 275, 738, 761, 555, + 1130, 843, 843, 843, 844, 837, 838, 839, 558, 475, + 884, 845, 742, 735, 734, 1013, 466, 727, 226, 883, + 726, 725, 835, 560, 561, 562, 456, 273, 845, 1131, + 1132, 1133, 524, 458, 714, 713, 275, 450, 706, 885, + 886, 887, 705, 442, 1014, 1015, 1016, 219, 436, 687, + 884, 846, 847, 848, 1122, 180, 1249, 1249, 1249, 738, + 883, 653, 866, 652, 1123, 1123, 1123, 1124, 273, 649, + 646, 869, 643, 524, 642, 641, 640, 275, 636, 885, + + 886, 887, 971, 1584, 1381, 1115, 1584, 1381, 971, 632, + 228, 884, 629, 1584, 1382, 498, 228, 1013, 628, 230, + 375, 498, 624, 370, 593, 230, 739, 740, 741, 615, + 738, 611, 328, 972, 1125, 1126, 1127, 605, 315, 972, + 885, 886, 887, 883, 1316, 1316, 1316, 836, 1013, 1584, + 599, 273, 1584, 896, 896, 896, 524, 301, 971, 1584, + 275, 598, 973, 974, 975, 597, 228, 294, 973, 974, + 975, 498, 586, 1384, 884, 230, 1384, 1014, 1015, 1016, + 585, 1387, 1529, 1385, 1387, 1529, 287, 1584, 543, 972, + 1584, 1388, 1530, 542, 837, 838, 839, 1584, 271, 518, + + 264, 517, 516, 885, 886, 887, 899, 899, 899, 1509, + 256, 236, 508, 507, 899, 899, 899, 249, 973, 974, + 975, 463, 462, 226, 438, 219, 212, 1267, 420, 899, + 899, 899, 899, 899, 899, 1174, 1174, 1174, 1174, 1174, + 1268, 1174, 1175, 1502, 1174, 1174, 1174, 419, 180, 1174, + 1174, 373, 157, 356, 1584, 1176, 1174, 1584, 1267, 1174, + 352, 349, 1103, 335, 1584, 330, 1584, 329, 1529, 1584, + 1174, 1529, 1174, 1175, 1174, 836, 1584, 328, 1530, 1177, + 1584, 1584, 1568, 1584, 1584, 1568, 331, 1269, 1270, 1271, + 1584, 1584, 1569, 1103, 330, 329, 328, 1174, 1174, 1174, + + 1174, 1174, 1178, 1179, 1180, 1182, 1182, 1182, 1182, 1182, + 1516, 1182, 1183, 321, 1182, 1182, 1182, 317, 1584, 1182, + 1182, 1584, 1104, 1105, 1106, 1184, 1182, 1584, 1584, 1182, + 1584, 1584, 1103, 316, 1584, 315, 1529, 1584, 318, 1529, + 1182, 1584, 1182, 1183, 1182, 836, 1530, 1568, 1584, 1568, + 1568, 1584, 1568, 317, 316, 315, 306, 1569, 1584, 1569, + 303, 302, 301, 1103, 280, 266, 265, 1182, 1182, 1182, + 1182, 1182, 1185, 1186, 1187, 1194, 1194, 1194, 1194, 1194, + 264, 1194, 1195, 245, 1194, 1194, 1194, 221, 1584, 1194, + 1194, 1584, 1104, 1105, 1106, 1196, 1194, 220, 1584, 1194, + + 219, 212, 201, 170, 157, 156, 1584, 1584, 1584, 1584, + 1194, 1584, 1194, 1195, 1194, 1584, 1584, 1584, 1584, 1584, + 1584, 1334, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1335, 1584, 1584, 1194, 1194, 1194, + 1194, 1194, 1197, 1198, 1199, 379, 380, 381, 382, 383, + 384, 385, 1334, 386, 1584, 387, 388, 389, 390, 1584, + 391, 392, 393, 394, 1207, 1207, 1207, 1207, 1207, 1584, + 1207, 1208, 1584, 1207, 1207, 1207, 1584, 1584, 1207, 1207, + 1584, 1336, 1337, 1338, 1209, 1207, 1584, 1584, 1207, 1584, + 1584, 1584, 1023, 1584, 1584, 1584, 1584, 1584, 1584, 1207, + + 228, 1207, 1208, 1207, 1584, 1024, 1584, 1023, 1584, 230, + 1584, 1584, 1584, 1584, 1584, 228, 1584, 1584, 1584, 1584, + 1024, 1584, 1584, 1025, 230, 1584, 1207, 1207, 1207, 1207, + 1207, 1210, 1211, 1212, 744, 1584, 1584, 1584, 1025, 1584, + 1584, 1584, 477, 1584, 1021, 1021, 1021, 746, 1584, 1584, + 1584, 480, 1026, 1027, 1028, 1584, 1584, 1584, 1236, 1584, + 1584, 1267, 1584, 1584, 1584, 737, 228, 1026, 1027, 1028, + 1023, 251, 1584, 1244, 1268, 230, 1584, 1584, 228, 1584, + 1584, 228, 1584, 1024, 1584, 1023, 251, 230, 1584, 1237, + 230, 1584, 1267, 228, 748, 749, 750, 744, 1024, 1584, + + 1584, 1025, 230, 1584, 1245, 477, 1584, 1019, 1019, 1019, + 746, 1267, 1584, 1584, 480, 1584, 1025, 1584, 1238, 1239, + 1240, 1269, 1270, 1271, 1268, 1584, 1584, 1584, 737, 1584, + 1026, 1027, 1028, 1246, 1247, 1248, 1023, 1584, 1584, 1584, + 1584, 1584, 1267, 1251, 228, 1026, 1027, 1028, 1584, 1034, + 1584, 228, 1584, 230, 1584, 1584, 251, 748, 749, 750, + 230, 1584, 1259, 1584, 1584, 1584, 1584, 1025, 1584, 1584, + 228, 1269, 1270, 1271, 1252, 498, 1584, 1039, 1584, 230, + 1584, 1584, 1334, 1584, 1584, 228, 1584, 1584, 1584, 1584, + 251, 1584, 1584, 1260, 230, 1335, 1026, 1027, 1028, 1032, + + 1584, 1584, 1584, 1253, 1254, 1255, 1584, 768, 1040, 1033, + 1033, 1033, 1034, 1334, 1334, 1584, 771, 1584, 1039, 1584, + 1584, 1584, 1261, 1262, 1263, 1584, 228, 1335, 1584, 1584, + 1025, 251, 1584, 1584, 1584, 230, 1584, 1041, 1042, 1043, + 1061, 1584, 1336, 1337, 1338, 1334, 1584, 1584, 273, 1040, + 1584, 1584, 1584, 576, 1584, 1061, 1584, 275, 1584, 1035, + 1036, 1037, 1584, 273, 1584, 1584, 1584, 1584, 576, 1584, + 1584, 1062, 275, 1584, 1336, 1337, 1338, 1584, 1041, 1042, + 1043, 842, 1584, 1584, 1584, 1584, 1062, 1584, 1584, 555, + 1584, 1111, 1111, 1111, 844, 1584, 1061, 1584, 558, 1584, + + 1063, 1064, 1065, 1584, 273, 1584, 1584, 1584, 1584, 576, + 1584, 1584, 835, 275, 1584, 1063, 1064, 1065, 1113, 1584, + 1584, 1113, 1584, 1584, 1584, 1584, 273, 1062, 1584, 273, + 1584, 1114, 1584, 1584, 1114, 275, 1584, 1303, 275, 1584, + 1584, 846, 847, 848, 1584, 273, 1584, 1584, 1584, 1115, + 289, 1584, 1115, 1584, 275, 1584, 1063, 1064, 1065, 842, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 555, 1304, 1109, + 1109, 1109, 844, 1584, 1584, 1584, 558, 1584, 1116, 1117, + 1118, 1116, 1117, 1118, 1584, 1584, 1584, 1113, 1584, 1584, + 835, 1584, 1584, 1311, 1584, 273, 1584, 1305, 1306, 1307, + + 1114, 273, 1584, 1584, 275, 1584, 289, 1584, 1584, 1113, + 275, 1584, 1584, 1584, 1584, 1113, 1584, 273, 1115, 846, + 847, 848, 1114, 273, 1312, 1584, 275, 1584, 1124, 1584, + 1584, 1584, 275, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1115, 1584, 1584, 1318, 1584, 1584, 1115, 1116, 1117, 1118, + 1326, 273, 1584, 1313, 1314, 1315, 289, 1584, 273, 1584, + 275, 1584, 1584, 576, 1584, 1584, 1584, 275, 1584, 1116, + 1117, 1118, 1584, 1584, 1319, 1116, 1117, 1118, 1122, 1584, + 1584, 1327, 1584, 1584, 1129, 1584, 866, 1584, 1123, 1123, + 1123, 1124, 273, 1584, 1584, 869, 1584, 289, 1584, 1584, + + 1129, 275, 1584, 1320, 1321, 1322, 1584, 1584, 273, 1115, + 1328, 1329, 1330, 289, 1584, 1130, 1584, 275, 1584, 1406, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 228, 1584, 1584, + 1584, 1130, 498, 1584, 1584, 1584, 230, 1584, 1125, 1126, + 1127, 1584, 1584, 1584, 1131, 1132, 1133, 1584, 1584, 1584, + 1407, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1131, 1132, 1133, 1364, 1364, 1364, 1364, 1364, 1584, 1364, + 1365, 1584, 1364, 1364, 1364, 1584, 1584, 1364, 1364, 1408, + 1409, 1410, 1584, 1366, 1364, 1584, 1584, 1364, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1364, 1584, + + 1364, 1365, 1364, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1364, 1364, 1364, 1364, 1364, + 1367, 1368, 1369, 1584, 1370, 1584, 1584, 1370, 1584, 1584, + 1584, 1584, 1584, 1584, 1371, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 181, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + + 376, 377, 378, 1372, 1372, 1372, 1372, 1372, 1584, 1372, + 1373, 1584, 1372, 1372, 1372, 1584, 1584, 1372, 1372, 1584, + 1584, 1584, 1584, 1374, 1372, 1584, 1584, 1372, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1372, 1584, + 1372, 1373, 1372, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1372, 1372, 1372, 1372, 1372, + 1375, 1376, 1377, 379, 380, 381, 382, 383, 384, 385, + 1584, 386, 1584, 387, 388, 389, 390, 1584, 391, 392, + 393, 394, 1393, 1393, 1393, 1393, 1393, 1584, 1393, 1394, + + 1584, 1393, 1393, 1393, 1584, 1584, 1393, 1393, 1584, 1236, + 1584, 1584, 1395, 1393, 1584, 1236, 1393, 228, 1584, 1584, + 1584, 1584, 251, 228, 1584, 1584, 230, 1393, 251, 1393, + 1394, 1393, 230, 1584, 1415, 1584, 1584, 1584, 1584, 1584, + 1237, 1584, 228, 1584, 1584, 1584, 1237, 498, 1584, 1584, + 1584, 230, 1584, 1584, 1393, 1393, 1393, 1393, 1393, 1396, + 1397, 1398, 1584, 1584, 1584, 1416, 1244, 1584, 1584, 1238, + 1239, 1240, 1244, 1584, 228, 1238, 1239, 1240, 1584, 251, + 228, 1584, 1584, 230, 1584, 251, 1584, 1584, 1584, 230, + 1584, 1423, 1584, 1584, 1417, 1418, 1419, 1245, 1251, 228, + + 1584, 1584, 1584, 1245, 498, 1584, 228, 1584, 230, 1584, + 1584, 251, 1584, 1584, 1584, 230, 1584, 1584, 1584, 1584, + 1584, 1584, 1424, 1251, 1584, 1584, 1246, 1247, 1248, 1252, + 1259, 228, 1246, 1247, 1248, 1584, 251, 1584, 228, 1584, + 230, 1584, 1584, 498, 1584, 1584, 1584, 230, 1584, 1259, + 1584, 1425, 1426, 1427, 1252, 1259, 1584, 228, 1253, 1254, + 1255, 1260, 498, 228, 1584, 1450, 230, 1584, 498, 1584, + 1584, 1584, 230, 273, 1584, 1584, 1584, 1584, 576, 1584, + 1260, 1303, 275, 1253, 1254, 1255, 1260, 1303, 1584, 273, + 1261, 1262, 1263, 1584, 289, 273, 1451, 1584, 275, 1584, + + 289, 1584, 1584, 1584, 275, 1584, 1459, 1584, 1584, 1261, + 1262, 1263, 1304, 1584, 273, 1261, 1262, 1263, 1304, 576, + 1584, 1311, 1584, 275, 1584, 1452, 1453, 1454, 1584, 273, + 1584, 1584, 1584, 1584, 289, 1584, 1584, 1460, 275, 1584, + 1584, 1305, 1306, 1307, 1584, 1311, 1584, 1305, 1306, 1307, + 1584, 1584, 1312, 273, 1584, 1584, 1467, 1584, 289, 1584, + 1584, 1584, 275, 1584, 273, 1584, 1461, 1462, 1463, 576, + 1584, 1318, 1584, 275, 1584, 1584, 1312, 1318, 1584, 273, + 1584, 1313, 1314, 1315, 289, 273, 1584, 1468, 275, 1584, + 289, 1584, 1584, 1584, 275, 1584, 1326, 1584, 1584, 1584, + + 1584, 1584, 1319, 1584, 273, 1313, 1314, 1315, 1319, 576, + 1584, 1326, 1584, 275, 1584, 1584, 1469, 1470, 1471, 273, + 1584, 1584, 1584, 1584, 576, 1584, 1584, 1327, 275, 1584, + 1584, 1320, 1321, 1322, 1584, 1326, 1584, 1320, 1321, 1322, + 1584, 1584, 1327, 273, 1584, 1584, 1584, 1584, 576, 1584, + 1584, 1584, 275, 1584, 1584, 1584, 1328, 1329, 1330, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1327, 1584, 1584, 1584, + 1584, 1328, 1329, 1330, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1328, 1329, 1330, 1496, 1496, + + 1496, 1496, 1496, 1584, 1496, 1497, 1584, 1496, 1496, 1496, + 1584, 1584, 1496, 1496, 1584, 1584, 1584, 1584, 1498, 1496, + 1584, 1584, 1496, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1496, 1584, 1496, 1497, 1496, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1496, 1496, 1496, 1496, 1496, 1499, 1500, 1501, 1503, 1503, + 1503, 1503, 1503, 1584, 1503, 1504, 1584, 1503, 1503, 1503, + 1584, 1584, 1503, 1503, 1584, 1584, 1584, 1584, 1505, 1503, + 1584, 1584, 1503, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + + 1584, 1584, 1584, 1503, 1584, 1503, 1504, 1503, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1503, 1503, 1503, 1503, 1503, 1506, 1507, 1508, 1510, 1510, + 1510, 1510, 1510, 1584, 1510, 1511, 1584, 1510, 1510, 1510, + 1584, 1584, 1510, 1510, 1584, 1584, 1584, 1584, 1512, 1510, + 1584, 1584, 1510, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1510, 1584, 1510, 1511, 1510, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + + 1510, 1510, 1510, 1510, 1510, 1513, 1514, 1515, 1517, 1517, + 1517, 1517, 1517, 1584, 1517, 1518, 1584, 1517, 1517, 1517, + 1584, 1584, 1517, 1517, 1584, 1584, 1584, 1584, 1519, 1517, + 1584, 1584, 1517, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1517, 1584, 1517, 1518, 1517, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1517, 1517, 1517, 1517, 1517, 1520, 1521, 1522, 1523, 1523, + 1523, 1523, 1523, 1584, 1523, 1524, 1584, 1523, 1523, 1523, + 1584, 1584, 1523, 1523, 1584, 1406, 1584, 1584, 1525, 1523, + + 1584, 1406, 1523, 228, 1584, 1584, 1584, 1584, 498, 228, + 1584, 1584, 230, 1523, 498, 1523, 1524, 1523, 230, 1584, + 1406, 1584, 1584, 1584, 1584, 1584, 1407, 1584, 228, 1584, + 1584, 1584, 1407, 498, 1584, 1584, 1584, 230, 1584, 1584, + 1523, 1523, 1523, 1523, 1523, 1526, 1527, 1528, 1584, 1584, + 1584, 1407, 1415, 1584, 1584, 1408, 1409, 1410, 1415, 1584, + 228, 1408, 1409, 1410, 1584, 498, 228, 1584, 1584, 230, + 1584, 498, 1584, 1584, 1584, 230, 1584, 1415, 1584, 1584, + 1408, 1409, 1410, 1416, 1423, 228, 1584, 1584, 1584, 1416, + 498, 1584, 228, 1584, 230, 1584, 1584, 498, 1584, 1584, + + 1584, 230, 1584, 1584, 1584, 1584, 1584, 1584, 1416, 1423, + 1584, 1584, 1417, 1418, 1419, 1424, 1423, 228, 1417, 1418, + 1419, 1584, 498, 1584, 228, 1584, 230, 1584, 1584, 498, + 1584, 1584, 1584, 230, 1584, 1450, 1584, 1417, 1418, 1419, + 1424, 1450, 1584, 273, 1425, 1426, 1427, 1424, 576, 273, + 1584, 1450, 275, 1584, 576, 1584, 1584, 1584, 275, 273, + 1584, 1584, 1584, 1584, 576, 1584, 1451, 1459, 275, 1425, + 1426, 1427, 1451, 1459, 1584, 273, 1425, 1426, 1427, 1584, + 576, 273, 1451, 1584, 275, 1584, 576, 1584, 1584, 1584, + 275, 1584, 1459, 1584, 1584, 1452, 1453, 1454, 1460, 1584, + + 273, 1452, 1453, 1454, 1460, 576, 1584, 1467, 1584, 275, + 1584, 1452, 1453, 1454, 1584, 273, 1584, 1584, 1584, 1584, + 576, 1584, 1584, 1460, 275, 1584, 1584, 1461, 1462, 1463, + 1584, 1467, 1584, 1461, 1462, 1463, 1584, 1584, 1468, 273, + 1584, 1584, 1467, 1584, 576, 1584, 1584, 1584, 275, 1584, + 273, 1584, 1461, 1462, 1463, 576, 1584, 1584, 1584, 275, + 1584, 1584, 1468, 1584, 1584, 1584, 1584, 1469, 1470, 1471, + 1584, 1584, 1584, 1468, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1469, 1470, 1471, 1584, 1584, 1584, 1584, 1584, 1584, + + 1584, 1584, 1469, 1470, 1471, 1562, 1562, 1562, 1562, 1562, + 1584, 1562, 1563, 1584, 1562, 1562, 1562, 1584, 1584, 1562, + 1562, 1584, 1584, 1584, 1584, 1564, 1562, 1584, 1584, 1562, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1562, 1584, 1562, 1563, 1562, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1562, 1562, 1562, + 1562, 1562, 1565, 1566, 1567, 1570, 1570, 1570, 1570, 1570, + 1584, 1570, 1571, 1584, 1570, 1570, 1570, 1584, 1584, 1570, + 1570, 1584, 1584, 1584, 1584, 1572, 1570, 1584, 1584, 1570, + + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1570, 1584, 1570, 1571, 1570, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1570, 1570, 1570, + 1570, 1570, 1573, 1574, 1575, 28, 28, 28, 28, 28, + 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, + 28, 28, 28, 28, 28, 87, 87, 87, 87, 87, + 87, 87, 87, 87, 87, 87, 87, 87, 87, 87, + 87, 87, 87, 87, 87, 98, 98, 98, 98, 98, + 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, + + 98, 98, 98, 98, 98, 109, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 146, 146, 146, 146, 146, + 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, + 146, 146, 146, 146, 146, 152, 152, 1584, 1584, 1584, + 152, 152, 152, 152, 152, 152, 152, 152, 152, 1584, + 152, 152, 152, 152, 152, 209, 1584, 209, 1584, 1584, + 1584, 209, 1584, 209, 209, 211, 211, 1584, 1584, 211, + 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, + 211, 211, 211, 211, 211, 213, 213, 213, 213, 213, + + 213, 213, 213, 213, 213, 213, 213, 213, 213, 213, + 213, 213, 213, 213, 213, 226, 226, 1584, 226, 226, + 1584, 226, 226, 1584, 226, 226, 226, 226, 226, 226, + 249, 249, 1584, 249, 249, 1584, 249, 249, 1584, 249, + 249, 249, 249, 249, 249, 256, 256, 1584, 256, 1584, + 1584, 256, 256, 1584, 1584, 256, 1584, 256, 256, 256, + 271, 271, 1584, 271, 271, 271, 271, 271, 1584, 271, + 271, 271, 271, 271, 271, 287, 287, 1584, 287, 287, + 287, 287, 287, 1584, 287, 287, 287, 287, 287, 287, + 294, 294, 1584, 294, 1584, 294, 294, 294, 1584, 1584, + + 294, 1584, 294, 294, 294, 322, 322, 322, 322, 322, + 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, + 322, 322, 322, 322, 322, 332, 1584, 1584, 1584, 332, + 1584, 332, 332, 340, 340, 340, 1584, 1584, 340, 1584, + 1584, 340, 340, 340, 340, 340, 357, 357, 1584, 357, + 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, + 357, 357, 357, 357, 357, 357, 359, 359, 359, 359, + 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, + 359, 359, 359, 359, 359, 359, 375, 375, 1584, 375, + 1584, 375, 375, 375, 1584, 1584, 375, 375, 375, 375, + + 375, 425, 1584, 425, 1584, 1584, 1584, 425, 1584, 425, + 425, 442, 442, 1584, 442, 442, 1584, 442, 442, 1584, + 442, 442, 442, 442, 442, 442, 450, 450, 1584, 450, + 450, 1584, 450, 450, 1584, 450, 450, 450, 450, 450, + 450, 456, 456, 1584, 456, 1584, 1584, 456, 456, 1584, + 1584, 456, 1584, 456, 456, 456, 466, 466, 1584, 466, + 466, 1584, 466, 466, 1584, 466, 466, 466, 466, 466, + 466, 475, 475, 1584, 475, 475, 1584, 475, 475, 1584, + 475, 475, 1584, 475, 475, 475, 496, 496, 1584, 496, + 496, 1584, 496, 496, 1584, 496, 496, 496, 496, 496, + + 496, 249, 249, 1584, 249, 249, 1584, 249, 249, 1584, + 249, 249, 249, 249, 249, 249, 503, 503, 1584, 503, + 1584, 1584, 503, 1584, 1584, 1584, 503, 503, 503, 503, + 503, 509, 509, 1584, 509, 509, 1584, 509, 509, 1584, + 509, 509, 509, 509, 509, 509, 522, 522, 1584, 522, + 522, 522, 522, 522, 1584, 522, 522, 522, 522, 522, + 522, 271, 271, 1584, 271, 271, 271, 271, 271, 1584, + 271, 271, 271, 271, 271, 271, 530, 530, 1584, 530, + 530, 530, 530, 530, 1584, 530, 530, 530, 530, 530, + 530, 536, 536, 1584, 536, 1584, 536, 536, 536, 1584, + + 1584, 536, 1584, 536, 536, 536, 544, 544, 1584, 544, + 544, 544, 544, 544, 1584, 544, 544, 544, 544, 544, + 544, 553, 553, 1584, 553, 553, 553, 553, 553, 1584, + 553, 553, 1584, 553, 553, 553, 574, 574, 1584, 574, + 574, 574, 574, 574, 1584, 574, 574, 574, 574, 574, + 574, 287, 287, 1584, 287, 287, 287, 287, 287, 1584, + 287, 287, 287, 287, 287, 287, 581, 581, 1584, 581, + 1584, 581, 581, 1584, 1584, 1584, 581, 581, 581, 581, + 581, 587, 587, 1584, 587, 587, 587, 587, 587, 1584, + 587, 587, 587, 587, 587, 587, 332, 1584, 1584, 1584, + + 332, 1584, 332, 332, 340, 1584, 1584, 1584, 340, 1584, + 340, 340, 427, 427, 427, 427, 427, 427, 427, 427, + 427, 1584, 427, 427, 427, 427, 427, 427, 427, 427, + 427, 427, 209, 1584, 209, 1584, 1584, 1584, 209, 1584, + 209, 209, 357, 357, 1584, 357, 357, 357, 357, 357, + 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, + 357, 357, 152, 152, 1584, 1584, 1584, 152, 152, 152, + 152, 152, 152, 152, 152, 152, 1584, 152, 152, 152, + 152, 152, 359, 359, 359, 359, 359, 359, 359, 359, + 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, + + 359, 359, 425, 1584, 1584, 1584, 425, 1584, 425, 425, + 625, 1584, 1584, 1584, 625, 1584, 625, 625, 375, 375, + 1584, 375, 1584, 375, 375, 375, 1584, 1584, 375, 375, + 375, 375, 375, 695, 1584, 695, 1584, 1584, 1584, 695, + 1584, 695, 695, 475, 475, 1584, 475, 1584, 1584, 475, + 475, 1584, 475, 475, 1584, 475, 475, 475, 442, 442, + 1584, 442, 442, 1584, 442, 442, 1584, 442, 442, 442, + 442, 442, 442, 699, 699, 1584, 699, 699, 1584, 699, + 699, 1584, 699, 699, 699, 699, 699, 699, 707, 707, + 1584, 707, 707, 1584, 707, 707, 1584, 707, 707, 707, + + 707, 707, 707, 450, 450, 1584, 450, 450, 1584, 450, + 450, 1584, 450, 450, 450, 450, 450, 450, 715, 715, + 1584, 715, 1584, 1584, 715, 715, 1584, 1584, 715, 715, + 715, 715, 715, 721, 721, 1584, 721, 1584, 1584, 721, + 1584, 1584, 1584, 721, 721, 721, 721, 721, 728, 728, + 1584, 728, 728, 1584, 728, 728, 1584, 728, 728, 728, + 728, 728, 728, 466, 466, 1584, 466, 466, 1584, 466, + 466, 1584, 466, 466, 466, 466, 466, 466, 737, 737, + 1584, 737, 1584, 1584, 737, 737, 1584, 1584, 737, 737, + 737, 737, 737, 743, 743, 1584, 743, 743, 1584, 743, + + 743, 1584, 743, 743, 743, 743, 743, 743, 751, 751, + 1584, 751, 1584, 1584, 751, 1584, 1584, 1584, 751, 751, + 751, 751, 751, 755, 755, 1584, 755, 1584, 1584, 755, + 755, 1584, 1584, 755, 1584, 755, 755, 755, 766, 766, + 1584, 766, 766, 1584, 766, 766, 1584, 766, 766, 766, + 766, 766, 766, 496, 496, 1584, 496, 496, 1584, 496, + 496, 1584, 496, 496, 496, 496, 496, 496, 775, 775, + 1584, 775, 1584, 1584, 775, 1584, 1584, 1584, 775, 775, + 775, 775, 775, 503, 503, 1584, 503, 1584, 1584, 503, + 1584, 1584, 1584, 503, 503, 503, 503, 503, 784, 784, + + 1584, 784, 784, 1584, 784, 784, 1584, 784, 784, 784, + 784, 784, 784, 509, 509, 1584, 509, 509, 1584, 509, + 509, 1584, 509, 509, 509, 509, 509, 509, 553, 553, + 1584, 553, 1584, 553, 553, 553, 1584, 553, 553, 1584, + 553, 553, 553, 522, 522, 1584, 522, 522, 522, 522, + 522, 1584, 522, 522, 522, 522, 522, 522, 797, 797, + 1584, 797, 797, 797, 797, 797, 1584, 797, 797, 797, + 797, 797, 797, 805, 805, 1584, 805, 805, 805, 805, + 805, 1584, 805, 805, 805, 805, 805, 805, 530, 530, + 1584, 530, 530, 530, 530, 530, 1584, 530, 530, 530, + + 530, 530, 530, 813, 813, 1584, 813, 1584, 813, 813, + 813, 1584, 1584, 813, 813, 813, 813, 813, 819, 819, + 1584, 819, 1584, 819, 819, 1584, 1584, 1584, 819, 819, + 819, 819, 819, 826, 826, 1584, 826, 826, 826, 826, + 826, 1584, 826, 826, 826, 826, 826, 826, 544, 544, + 1584, 544, 544, 544, 544, 544, 1584, 544, 544, 544, + 544, 544, 544, 835, 835, 1584, 835, 1584, 835, 835, + 835, 1584, 1584, 835, 835, 835, 835, 835, 841, 841, + 1584, 841, 841, 841, 841, 841, 1584, 841, 841, 841, + 841, 841, 841, 849, 849, 1584, 849, 1584, 849, 849, + + 1584, 1584, 1584, 849, 849, 849, 849, 849, 853, 853, + 1584, 853, 1584, 853, 853, 853, 1584, 1584, 853, 1584, + 853, 853, 853, 864, 864, 1584, 864, 864, 864, 864, + 864, 1584, 864, 864, 864, 864, 864, 864, 574, 574, + 1584, 574, 574, 574, 574, 574, 1584, 574, 574, 574, + 574, 574, 574, 873, 873, 1584, 873, 1584, 873, 873, + 1584, 1584, 1584, 873, 873, 873, 873, 873, 581, 581, + 1584, 581, 1584, 581, 581, 1584, 1584, 1584, 581, 581, + 581, 581, 581, 882, 882, 1584, 882, 882, 882, 882, + 882, 1584, 882, 882, 882, 882, 882, 882, 587, 587, + + 1584, 587, 587, 587, 587, 587, 1584, 587, 587, 587, + 587, 587, 587, 625, 1584, 1584, 1584, 625, 1584, 625, + 625, 427, 427, 427, 427, 427, 427, 427, 427, 427, + 1584, 427, 427, 427, 427, 427, 427, 427, 427, 427, + 427, 425, 1584, 1584, 425, 1584, 1584, 1584, 425, 1584, + 425, 425, 669, 669, 669, 669, 669, 1584, 669, 669, + 1584, 669, 1584, 1584, 669, 669, 669, 1584, 669, 1584, + 1584, 669, 375, 1584, 1584, 375, 375, 375, 1584, 375, + 1584, 375, 375, 375, 1584, 1584, 375, 375, 375, 375, + 375, 695, 1584, 695, 1584, 1584, 1584, 695, 1584, 695, + + 695, 737, 737, 1584, 737, 1584, 1584, 737, 737, 1584, + 1584, 737, 737, 737, 737, 737, 475, 475, 1584, 475, + 475, 1584, 475, 475, 1584, 475, 475, 1584, 475, 475, + 475, 970, 970, 1584, 970, 970, 1584, 970, 970, 1584, + 970, 970, 970, 970, 970, 970, 699, 699, 1584, 699, + 699, 1584, 699, 699, 1584, 699, 699, 699, 699, 699, + 699, 707, 707, 1584, 707, 707, 1584, 707, 707, 1584, + 707, 707, 707, 707, 707, 707, 715, 715, 1584, 715, + 1584, 1584, 715, 715, 1584, 1584, 715, 715, 715, 715, + 715, 982, 982, 1584, 982, 1584, 1584, 982, 1584, 1584, + + 1584, 982, 982, 982, 982, 982, 721, 721, 1584, 721, + 1584, 1584, 721, 1584, 1584, 1584, 721, 721, 721, 721, + 721, 728, 728, 1584, 728, 728, 1584, 728, 728, 1584, + 728, 728, 728, 728, 728, 728, 743, 743, 1584, 743, + 743, 1584, 743, 743, 1584, 743, 743, 743, 743, 743, + 743, 994, 994, 1584, 994, 1584, 1584, 994, 1584, 1584, + 1584, 994, 994, 994, 994, 994, 1000, 1000, 1584, 1000, + 1584, 1584, 1000, 1584, 1584, 1584, 1000, 1000, 1000, 1000, + 1000, 1004, 1004, 1584, 1004, 1584, 1584, 1004, 1584, 1584, + 1584, 1004, 1004, 1004, 1004, 1004, 751, 751, 1584, 751, + + 1584, 1584, 751, 1584, 1584, 1584, 751, 751, 751, 751, + 751, 1012, 1012, 1584, 1012, 1584, 1584, 1012, 1012, 1584, + 1584, 1012, 1012, 1012, 1012, 1012, 1022, 1022, 1584, 1022, + 1022, 1584, 1022, 1022, 1584, 1022, 1022, 1022, 1022, 1022, + 1022, 442, 442, 1584, 442, 442, 1584, 442, 442, 1584, + 442, 442, 442, 442, 442, 442, 1031, 1031, 1584, 1031, + 1031, 1584, 1031, 1031, 1584, 1031, 1031, 1031, 1031, 1031, + 1031, 1038, 1038, 1584, 1038, 1038, 1584, 1038, 1038, 1584, + 1038, 1038, 1038, 1038, 1038, 1038, 1044, 1044, 1584, 1044, + 1584, 1584, 1044, 1044, 1584, 1584, 1044, 1584, 1044, 1044, + + 1044, 775, 775, 1584, 775, 1584, 1584, 775, 1584, 1584, + 1584, 775, 775, 775, 775, 775, 784, 784, 1584, 784, + 784, 1584, 784, 784, 1584, 784, 784, 784, 784, 784, + 784, 835, 835, 1584, 835, 1584, 835, 835, 835, 1584, + 1584, 835, 835, 835, 835, 835, 553, 553, 1584, 553, + 553, 553, 553, 553, 1584, 553, 553, 1584, 553, 553, + 553, 1060, 1060, 1584, 1060, 1060, 1060, 1060, 1060, 1584, + 1060, 1060, 1060, 1060, 1060, 1060, 797, 797, 1584, 797, + 797, 797, 797, 797, 1584, 797, 797, 797, 797, 797, + 797, 805, 805, 1584, 805, 805, 805, 805, 805, 1584, + + 805, 805, 805, 805, 805, 805, 813, 813, 1584, 813, + 1584, 813, 813, 813, 1584, 1584, 813, 813, 813, 813, + 813, 1072, 1072, 1584, 1072, 1584, 1072, 1072, 1584, 1584, + 1584, 1072, 1072, 1072, 1072, 1072, 819, 819, 1584, 819, + 1584, 819, 819, 1584, 1584, 1584, 819, 819, 819, 819, + 819, 826, 826, 1584, 826, 826, 826, 826, 826, 1584, + 826, 826, 826, 826, 826, 826, 841, 841, 1584, 841, + 841, 841, 841, 841, 1584, 841, 841, 841, 841, 841, + 841, 1084, 1084, 1584, 1084, 1584, 1084, 1084, 1584, 1584, + 1584, 1084, 1084, 1084, 1084, 1084, 1090, 1090, 1584, 1090, + + 1584, 1090, 1090, 1584, 1584, 1584, 1090, 1090, 1090, 1090, + 1090, 1094, 1094, 1584, 1094, 1584, 1094, 1094, 1584, 1584, + 1584, 1094, 1094, 1094, 1094, 1094, 849, 849, 1584, 849, + 1584, 849, 849, 1584, 1584, 1584, 849, 849, 849, 849, + 849, 1102, 1102, 1584, 1102, 1584, 1102, 1102, 1102, 1584, + 1584, 1102, 1102, 1102, 1102, 1102, 1112, 1112, 1584, 1112, + 1112, 1112, 1112, 1112, 1584, 1112, 1112, 1112, 1112, 1112, + 1112, 522, 522, 1584, 522, 522, 522, 522, 522, 1584, + 522, 522, 522, 522, 522, 522, 1121, 1121, 1584, 1121, + 1121, 1121, 1121, 1121, 1584, 1121, 1121, 1121, 1121, 1121, + + 1121, 1128, 1128, 1584, 1128, 1128, 1128, 1128, 1128, 1584, + 1128, 1128, 1128, 1128, 1128, 1128, 1134, 1134, 1584, 1134, + 1584, 1134, 1134, 1134, 1584, 1584, 1134, 1584, 1134, 1134, + 1134, 873, 873, 1584, 873, 1584, 873, 873, 1584, 1584, + 1584, 873, 873, 873, 873, 873, 882, 882, 1584, 882, + 882, 882, 882, 882, 1584, 882, 882, 882, 882, 882, + 882, 625, 1584, 1584, 1584, 625, 1584, 625, 625, 946, + 946, 946, 946, 946, 1584, 946, 946, 1584, 946, 1584, + 1584, 946, 946, 946, 1584, 946, 1584, 946, 946, 955, + 955, 955, 955, 955, 1584, 955, 955, 1584, 955, 1584, + + 1584, 955, 955, 955, 1584, 955, 955, 1584, 955, 375, + 375, 1584, 375, 1584, 375, 375, 375, 1584, 1584, 375, + 375, 375, 375, 375, 425, 1584, 425, 1584, 1584, 1584, + 425, 1584, 425, 425, 743, 743, 1584, 743, 743, 1584, + 743, 743, 1584, 743, 743, 743, 743, 743, 743, 970, + 970, 1584, 970, 970, 1584, 970, 970, 1584, 970, 970, + 970, 970, 970, 970, 982, 982, 1584, 982, 1584, 1584, + 982, 1584, 1584, 1584, 982, 982, 982, 982, 982, 994, + 994, 1584, 994, 1584, 1584, 994, 1584, 1584, 1584, 994, + 994, 994, 994, 994, 1000, 1000, 1584, 1000, 1584, 1584, + + 1000, 1584, 1584, 1584, 1000, 1000, 1000, 1000, 1000, 1004, + 1004, 1584, 1004, 1584, 1584, 1004, 1584, 1584, 1584, 1004, + 1004, 1004, 1004, 1004, 1012, 1012, 1584, 1012, 1584, 1584, + 1012, 1012, 1584, 1584, 1012, 1012, 1012, 1012, 1012, 1022, + 1022, 1584, 1022, 1022, 1584, 1022, 1022, 1584, 1022, 1022, + 1022, 1022, 1022, 1022, 1235, 1235, 1584, 1235, 1235, 1584, + 1235, 1235, 1584, 1235, 1235, 1235, 1235, 1235, 1235, 1243, + 1243, 1584, 1243, 1243, 1584, 1243, 1243, 1584, 1243, 1243, + 1243, 1243, 1243, 1243, 737, 737, 1584, 737, 1584, 1584, + 737, 737, 1584, 1584, 737, 737, 737, 737, 737, 1031, + + 1031, 1584, 1031, 1031, 1584, 1031, 1031, 1584, 1031, 1031, + 1031, 1031, 1031, 1031, 1250, 1250, 1584, 1250, 1250, 1584, + 1250, 1250, 1584, 1250, 1250, 1250, 1250, 1250, 1250, 1258, + 1258, 1584, 1258, 1258, 1584, 1258, 1258, 1584, 1258, 1258, + 1258, 1258, 1258, 1258, 1038, 1038, 1584, 1038, 1038, 1584, + 1038, 1038, 1584, 1038, 1038, 1038, 1038, 1038, 1038, 1266, + 1266, 1584, 1266, 1584, 1584, 1266, 1266, 1584, 1584, 1266, + 1266, 1266, 1266, 1266, 1272, 1272, 1584, 1272, 1584, 1584, + 1272, 1584, 1584, 1584, 1272, 1272, 1272, 1272, 1272, 841, + 841, 1584, 841, 841, 841, 841, 841, 1584, 841, 841, + + 841, 841, 841, 841, 1060, 1060, 1584, 1060, 1060, 1060, + 1060, 1060, 1584, 1060, 1060, 1060, 1060, 1060, 1060, 1072, + 1072, 1584, 1072, 1584, 1072, 1072, 1584, 1584, 1584, 1072, + 1072, 1072, 1072, 1072, 1084, 1084, 1584, 1084, 1584, 1084, + 1084, 1584, 1584, 1584, 1084, 1084, 1084, 1084, 1084, 1090, + 1090, 1584, 1090, 1584, 1090, 1090, 1584, 1584, 1584, 1090, + 1090, 1090, 1090, 1090, 1094, 1094, 1584, 1094, 1584, 1094, + 1094, 1584, 1584, 1584, 1094, 1094, 1094, 1094, 1094, 1102, + 1102, 1584, 1102, 1584, 1102, 1102, 1102, 1584, 1584, 1102, + 1102, 1102, 1102, 1102, 1112, 1112, 1584, 1112, 1112, 1112, + + 1112, 1112, 1584, 1112, 1112, 1112, 1112, 1112, 1112, 1302, + 1302, 1584, 1302, 1302, 1302, 1302, 1302, 1584, 1302, 1302, + 1302, 1302, 1302, 1302, 1310, 1310, 1584, 1310, 1310, 1310, + 1310, 1310, 1584, 1310, 1310, 1310, 1310, 1310, 1310, 835, + 835, 1584, 835, 1584, 835, 835, 835, 1584, 1584, 835, + 835, 835, 835, 835, 1121, 1121, 1584, 1121, 1121, 1121, + 1121, 1121, 1584, 1121, 1121, 1121, 1121, 1121, 1121, 1317, + 1317, 1584, 1317, 1317, 1317, 1317, 1317, 1584, 1317, 1317, + 1317, 1317, 1317, 1317, 1325, 1325, 1584, 1325, 1325, 1325, + 1325, 1325, 1584, 1325, 1325, 1325, 1325, 1325, 1325, 1128, + + 1128, 1584, 1128, 1128, 1128, 1128, 1128, 1584, 1128, 1128, + 1128, 1128, 1128, 1128, 1333, 1333, 1584, 1333, 1584, 1333, + 1333, 1333, 1584, 1584, 1333, 1333, 1333, 1333, 1333, 1339, + 1339, 1584, 1339, 1584, 1339, 1339, 1584, 1584, 1584, 1339, + 1339, 1339, 1339, 1339, 1174, 1174, 1174, 1174, 1174, 1584, + 1174, 1174, 1584, 1174, 1584, 1584, 1174, 1174, 1174, 1584, + 1174, 1174, 1584, 1174, 1182, 1182, 1182, 1182, 1182, 1584, + 1182, 1182, 1584, 1182, 1584, 1584, 1182, 1182, 1182, 1584, + 1182, 1584, 1584, 1182, 1194, 1194, 1194, 1194, 1194, 1584, + 1194, 1194, 1584, 1194, 1584, 1584, 1194, 1194, 1194, 1584, + + 1194, 1584, 1584, 1194, 1207, 1207, 1207, 1207, 1207, 1584, + 1207, 1207, 1584, 1207, 1584, 1584, 1207, 1207, 1207, 1584, + 1207, 1584, 1584, 1207, 375, 375, 375, 375, 375, 375, + 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, + 375, 375, 375, 375, 1405, 1405, 1584, 1405, 1405, 1584, + 1405, 1405, 1584, 1405, 1405, 1405, 1405, 1405, 1405, 1235, + 1235, 1584, 1235, 1235, 1584, 1235, 1235, 1584, 1235, 1235, + 1235, 1235, 1235, 1235, 1414, 1414, 1584, 1414, 1414, 1584, + 1414, 1414, 1584, 1414, 1414, 1414, 1414, 1414, 1414, 1243, + 1243, 1584, 1243, 1243, 1584, 1243, 1243, 1584, 1243, 1243, + + 1243, 1243, 1243, 1243, 737, 737, 1584, 737, 1584, 1584, + 737, 737, 1584, 1584, 737, 737, 737, 737, 737, 1422, + 1422, 1584, 1422, 1422, 1584, 1422, 1422, 1584, 1422, 1422, + 1422, 1422, 1422, 1422, 1250, 1250, 1584, 1250, 1250, 1584, + 1250, 1250, 1584, 1250, 1250, 1250, 1250, 1250, 1250, 1258, + 1258, 1584, 1258, 1258, 1584, 1258, 1258, 1584, 1258, 1258, + 1258, 1258, 1258, 1258, 1266, 1266, 1584, 1266, 1584, 1584, + 1266, 1266, 1584, 1584, 1266, 1266, 1266, 1266, 1266, 1434, + 1434, 1584, 1434, 1584, 1584, 1434, 1584, 1584, 1584, 1434, + 1434, 1434, 1434, 1434, 1272, 1272, 1584, 1272, 1584, 1584, + + 1272, 1584, 1584, 1584, 1272, 1272, 1272, 1272, 1272, 1449, + 1449, 1584, 1449, 1449, 1449, 1449, 1449, 1584, 1449, 1449, + 1449, 1449, 1449, 1449, 1302, 1302, 1584, 1302, 1302, 1302, + 1302, 1302, 1584, 1302, 1302, 1302, 1302, 1302, 1302, 1458, + 1458, 1584, 1458, 1458, 1458, 1458, 1458, 1584, 1458, 1458, + 1458, 1458, 1458, 1458, 1310, 1310, 1584, 1310, 1310, 1310, + 1310, 1310, 1584, 1310, 1310, 1310, 1310, 1310, 1310, 835, + 835, 1584, 835, 1584, 835, 835, 835, 1584, 1584, 835, + 835, 835, 835, 835, 1466, 1466, 1584, 1466, 1466, 1466, + 1466, 1466, 1584, 1466, 1466, 1466, 1466, 1466, 1466, 1317, + + 1317, 1584, 1317, 1317, 1317, 1317, 1317, 1584, 1317, 1317, + 1317, 1317, 1317, 1317, 1325, 1325, 1584, 1325, 1325, 1325, + 1325, 1325, 1584, 1325, 1325, 1325, 1325, 1325, 1325, 1333, + 1333, 1584, 1333, 1584, 1333, 1333, 1333, 1584, 1584, 1333, + 1333, 1333, 1333, 1333, 1478, 1478, 1584, 1478, 1584, 1478, + 1478, 1584, 1584, 1584, 1478, 1478, 1478, 1478, 1478, 1339, + 1339, 1584, 1339, 1584, 1339, 1339, 1584, 1584, 1584, 1339, + 1339, 1339, 1339, 1339, 1364, 1364, 1364, 1364, 1364, 1584, + 1364, 1364, 1584, 1364, 1584, 1584, 1364, 1364, 1364, 1584, + 1364, 1584, 1584, 1364, 1372, 1372, 1372, 1372, 1372, 1584, + + 1372, 1372, 1584, 1372, 1584, 1584, 1372, 1372, 1372, 1584, + 1372, 1584, 1584, 1372, 1393, 1393, 1393, 1393, 1393, 1584, + 1393, 1393, 1584, 1393, 1584, 1584, 1393, 1393, 1393, 1584, + 1393, 1584, 1584, 1393, 1405, 1405, 1584, 1405, 1405, 1584, + 1405, 1405, 1584, 1405, 1405, 1405, 1405, 1405, 1405, 1414, + 1414, 1584, 1414, 1414, 1584, 1414, 1414, 1584, 1414, 1414, + 1414, 1414, 1414, 1414, 1422, 1422, 1584, 1422, 1422, 1584, + 1422, 1422, 1584, 1422, 1422, 1422, 1422, 1422, 1422, 1496, + 1496, 1496, 1496, 1496, 1584, 1496, 1496, 1584, 1496, 1584, + 1584, 1496, 1496, 1496, 1584, 1496, 1584, 1584, 1496, 1503, + + 1503, 1503, 1503, 1503, 1584, 1503, 1503, 1584, 1503, 1584, + 1584, 1503, 1503, 1503, 1584, 1503, 1584, 1584, 1503, 1510, + 1510, 1510, 1510, 1510, 1584, 1510, 1510, 1584, 1510, 1584, + 1584, 1510, 1510, 1510, 1584, 1510, 1584, 1584, 1510, 1517, + 1517, 1517, 1517, 1517, 1584, 1517, 1517, 1584, 1517, 1584, + 1584, 1517, 1517, 1517, 1584, 1517, 1584, 1584, 1517, 1523, + 1523, 1523, 1523, 1523, 1584, 1523, 1523, 1584, 1523, 1584, + 1584, 1523, 1523, 1523, 1584, 1523, 1584, 1584, 1523, 1562, + 1562, 1562, 1562, 1562, 1584, 1562, 1562, 1584, 1562, 1584, + 1584, 1562, 1562, 1562, 1584, 1562, 1584, 1584, 1562, 1570, + + 1570, 1570, 1570, 1570, 1584, 1570, 1570, 1584, 1570, 1584, + 1584, 1570, 1570, 1570, 1584, 1570, 1584, 1584, 1570, 27, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584 + } ; + +static const flex_int16_t yy_chk[10391] = + { 0, + 0, 0, 1, 1, 1, 2, 2, 2, 32, 36, + 147, 32, 36, 147, 32, 36, 140, 140, 38, 32, + 36, 38, 88, 172, 1, 88, 67, 2, 32, 36, + 38, 0, 38, 0, 38, 38, 38, 45, 67, 45, + 45, 45, 46, 123, 123, 46, 66, 66, 66, 134, + 145, 145, 134, 165, 165, 67, 172, 88, 46, 46, + 46, 177, 0, 134, 46, 177, 177, 1, 1, 1, + 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 9, 9, 9, 9, 28, 28, 28, + 9, 392, 9, 9, 9, 9, 392, 9, 9, 33, + + 1220, 33, 33, 33, 34, 9, 34, 34, 34, 35, + 1221, 35, 35, 35, 80, 305, 305, 9, 9, 9, + 60, 204, 99, 60, 204, 99, 80, 48, 1222, 48, + 48, 48, 60, 379, 60, 379, 60, 60, 60, 48, + 1223, 110, 593, 80, 110, 9, 593, 9, 9, 9, + 9, 9, 10, 10, 10, 10, 48, 99, 295, 10, + 1224, 10, 10, 10, 10, 61, 10, 10, 136, 136, + 136, 144, 144, 61, 10, 1225, 110, 68, 61, 295, + 141, 137, 61, 141, 137, 68, 10, 10, 10, 69, + 68, 295, 1226, 144, 68, 69, 61, 1227, 295, 69, + + 69, 69, 69, 137, 152, 152, 152, 138, 68, 138, + 138, 138, 320, 320, 10, 141, 10, 10, 10, 10, + 10, 11, 11, 11, 11, 61, 61, 61, 11, 1228, + 11, 11, 11, 11, 1229, 11, 11, 68, 68, 68, + 161, 161, 161, 11, 176, 70, 70, 180, 176, 69, + 69, 69, 176, 333, 333, 11, 11, 11, 70, 82, + 70, 70, 70, 75, 214, 82, 75, 214, 1230, 82, + 82, 82, 82, 215, 215, 75, 215, 75, 1231, 75, + 75, 75, 1232, 11, 1233, 11, 11, 11, 11, 11, + 12, 12, 12, 12, 180, 180, 180, 12, 388, 12, + + 12, 12, 12, 336, 12, 12, 201, 201, 201, 1234, + 76, 388, 12, 304, 79, 336, 304, 79, 76, 82, + 82, 82, 336, 76, 12, 12, 12, 76, 79, 1238, + 79, 79, 79, 42, 83, 83, 79, 263, 263, 42, + 263, 76, 153, 42, 153, 153, 153, 83, 304, 83, + 83, 83, 12, 1239, 12, 12, 12, 12, 12, 13, + 13, 13, 13, 42, 13, 1240, 42, 135, 42, 1241, + 76, 76, 76, 135, 1242, 81, 308, 135, 323, 308, + 42, 323, 154, 81, 154, 154, 154, 42, 81, 202, + 202, 202, 81, 1246, 13, 217, 217, 135, 1247, 217, + + 135, 155, 135, 155, 155, 155, 81, 162, 1248, 162, + 162, 162, 1253, 163, 135, 163, 163, 163, 212, 212, + 212, 135, 1254, 13, 13, 13, 13, 13, 14, 14, + 14, 14, 189, 14, 1255, 81, 81, 81, 158, 164, + 353, 158, 164, 353, 158, 164, 351, 351, 166, 158, + 164, 166, 167, 637, 167, 167, 167, 189, 158, 164, + 166, 637, 166, 14, 166, 166, 166, 168, 1256, 210, + 168, 210, 1257, 210, 210, 210, 224, 224, 224, 189, + 189, 189, 224, 168, 168, 168, 228, 228, 228, 168, + 359, 359, 14, 14, 14, 14, 14, 15, 15, 15, + + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 17, 17, 17, + 17, 169, 1261, 169, 169, 169, 182, 1262, 223, 183, + 223, 223, 223, 169, 203, 1263, 203, 203, 203, 227, + 17, 227, 227, 227, 185, 231, 203, 231, 231, 231, + + 169, 187, 17, 312, 312, 17, 182, 312, 182, 183, + 243, 243, 243, 203, 186, 1264, 319, 193, 185, 319, + 184, 361, 361, 182, 182, 182, 183, 183, 183, 187, + 1265, 17, 17, 17, 17, 17, 18, 18, 18, 18, + 184, 185, 185, 185, 186, 186, 186, 184, 187, 187, + 187, 319, 193, 184, 1269, 193, 251, 251, 251, 18, + 1270, 186, 186, 186, 193, 193, 193, 184, 184, 184, + 1271, 18, 309, 309, 18, 309, 1273, 188, 1274, 235, + 1275, 205, 192, 205, 205, 205, 190, 371, 371, 235, + 235, 235, 1276, 205, 235, 324, 324, 188, 324, 1277, + + 18, 18, 18, 18, 18, 19, 190, 197, 19, 1278, + 205, 19, 196, 19, 19, 192, 191, 19, 19, 19, + 19, 19, 19, 19, 188, 188, 188, 194, 19, 192, + 192, 192, 1279, 190, 190, 190, 191, 230, 195, 197, + 19, 1280, 19, 21, 21, 21, 21, 196, 21, 191, + 230, 194, 1281, 344, 197, 197, 197, 344, 344, 196, + 196, 196, 1282, 191, 191, 191, 195, 273, 273, 273, + 343, 195, 1283, 343, 194, 194, 194, 208, 21, 208, + 208, 208, 281, 281, 281, 195, 195, 195, 1284, 208, + 1285, 225, 343, 225, 225, 225, 1286, 230, 230, 230, + + 289, 289, 289, 225, 372, 372, 208, 21, 21, 21, + 21, 21, 22, 22, 22, 22, 222, 22, 1287, 222, + 225, 264, 1288, 264, 264, 264, 355, 226, 222, 355, + 222, 1289, 222, 222, 222, 226, 1290, 229, 1291, 268, + 226, 268, 268, 268, 226, 229, 362, 22, 269, 362, + 229, 269, 326, 326, 229, 248, 326, 248, 226, 248, + 248, 248, 269, 1292, 269, 269, 269, 1293, 229, 248, + 269, 1294, 275, 338, 338, 338, 22, 22, 22, 22, + 22, 23, 23, 23, 23, 275, 248, 226, 226, 226, + 339, 339, 339, 390, 236, 1295, 390, 229, 229, 229, + + 249, 1296, 236, 1297, 23, 1298, 342, 236, 249, 342, + 250, 236, 267, 249, 1299, 267, 23, 249, 250, 23, + 342, 613, 613, 250, 267, 236, 267, 250, 267, 267, + 267, 249, 275, 275, 275, 346, 1300, 346, 346, 346, + 1301, 250, 347, 347, 347, 23, 23, 23, 23, 23, + 24, 24, 24, 24, 236, 236, 236, 383, 383, 383, + 249, 249, 249, 1305, 270, 1306, 270, 270, 270, 252, + 250, 250, 250, 24, 614, 614, 270, 252, 350, 256, + 434, 350, 252, 434, 1307, 24, 252, 256, 24, 421, + 421, 421, 256, 270, 271, 348, 256, 348, 348, 348, + + 252, 1308, 271, 354, 354, 1309, 354, 271, 435, 435, + 256, 271, 435, 350, 24, 24, 24, 24, 24, 25, + 25, 25, 25, 600, 600, 271, 600, 25, 365, 252, + 252, 252, 365, 365, 365, 25, 25, 25, 1313, 256, + 256, 256, 1314, 25, 25, 25, 358, 426, 358, 358, + 358, 426, 426, 426, 271, 271, 271, 1315, 25, 25, + 25, 25, 25, 25, 26, 26, 26, 26, 1320, 286, + 375, 286, 26, 286, 286, 286, 431, 431, 431, 1321, + 26, 26, 26, 286, 364, 364, 364, 430, 26, 26, + 26, 430, 430, 430, 364, 432, 1322, 432, 432, 432, + + 286, 626, 626, 26, 26, 26, 26, 26, 26, 43, + 594, 364, 43, 43, 594, 594, 43, 375, 375, 375, + 43, 43, 1323, 396, 43, 43, 43, 43, 43, 601, + 43, 43, 601, 43, 43, 43, 43, 43, 43, 43, + 43, 43, 43, 1324, 43, 1328, 396, 1329, 43, 43, + 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, + 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, + 396, 396, 396, 1330, 381, 43, 43, 43, 53, 53, + 53, 381, 602, 602, 272, 1331, 602, 381, 433, 433, + 433, 397, 272, 53, 53, 274, 1332, 272, 439, 439, + + 439, 272, 1336, 274, 607, 441, 1337, 607, 274, 441, + 441, 441, 274, 633, 633, 272, 53, 53, 892, 892, + 53, 53, 606, 606, 397, 606, 274, 1338, 53, 619, + 619, 53, 619, 53, 1340, 53, 53, 62, 397, 397, + 397, 893, 893, 62, 272, 272, 272, 62, 62, 62, + 62, 62, 62, 898, 898, 274, 274, 274, 276, 402, + 62, 62, 62, 62, 62, 280, 276, 62, 287, 1341, + 62, 276, 62, 280, 620, 276, 287, 620, 280, 1342, + 288, 287, 280, 1343, 62, 287, 395, 402, 288, 276, + 1344, 62, 64, 288, 1345, 402, 280, 288, 640, 287, + + 64, 640, 64, 64, 64, 64, 402, 402, 402, 64, + 398, 288, 449, 449, 449, 1346, 395, 1347, 276, 276, + 276, 1351, 1352, 64, 1353, 280, 280, 280, 287, 287, + 287, 290, 1355, 395, 395, 395, 399, 1357, 1359, 290, + 288, 288, 288, 294, 290, 1360, 398, 398, 290, 400, + 1361, 294, 64, 64, 64, 78, 294, 398, 398, 398, + 294, 403, 290, 78, 401, 78, 78, 78, 78, 399, + 1362, 1367, 78, 1368, 294, 458, 458, 458, 424, 400, + 424, 424, 424, 399, 399, 399, 78, 1369, 1375, 401, + 424, 290, 290, 290, 1376, 403, 400, 400, 400, 479, + + 479, 479, 1377, 294, 294, 294, 1396, 424, 403, 403, + 403, 401, 401, 401, 1397, 78, 78, 78, 93, 93, + 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, + 93, 93, 93, 93, 93, 93, 93, 93, 114, 114, + 114, 1398, 114, 608, 608, 114, 1399, 608, 301, 488, + + 488, 488, 1400, 114, 114, 404, 301, 498, 498, 498, + 1401, 301, 503, 503, 503, 301, 519, 519, 519, 410, + 1402, 1403, 114, 1404, 1408, 114, 114, 114, 404, 301, + 114, 114, 428, 1409, 428, 428, 428, 1410, 114, 1411, + 1412, 114, 410, 114, 428, 114, 114, 124, 124, 124, + 1413, 409, 404, 404, 404, 124, 124, 124, 301, 301, + 301, 428, 405, 1417, 1418, 406, 410, 410, 410, 408, + 124, 124, 124, 124, 124, 124, 131, 416, 131, 131, + 1419, 414, 131, 131, 1420, 521, 131, 131, 131, 521, + 521, 521, 409, 131, 405, 411, 1421, 405, 409, 409, + + 409, 1425, 406, 413, 131, 408, 1426, 131, 416, 405, + 405, 405, 406, 406, 406, 414, 408, 408, 408, 529, + 529, 529, 1427, 1428, 416, 416, 416, 411, 414, 414, + 414, 131, 132, 132, 132, 647, 132, 1429, 647, 132, + 413, 1430, 411, 411, 411, 647, 679, 132, 132, 679, + 413, 413, 413, 474, 132, 474, 679, 474, 474, 474, + 538, 538, 538, 557, 557, 557, 132, 474, 1431, 132, + 132, 132, 1432, 1433, 132, 132, 494, 1435, 494, 494, + 494, 1436, 132, 1437, 474, 132, 1438, 132, 494, 132, + 132, 181, 181, 181, 181, 181, 181, 181, 1439, 181, + + 1440, 181, 181, 181, 181, 494, 181, 181, 181, 181, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 1441, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, + 244, 415, 1442, 1443, 417, 456, 1444, 418, 244, 1445, + 244, 244, 244, 244, 566, 566, 566, 244, 456, 412, + + 244, 475, 412, 576, 576, 576, 581, 581, 581, 412, + 477, 244, 901, 415, 1446, 901, 456, 244, 412, 612, + 612, 612, 901, 477, 418, 417, 480, 477, 415, 415, + 415, 417, 417, 417, 418, 418, 418, 1447, 1448, 480, + 244, 244, 244, 246, 485, 456, 456, 456, 475, 475, + 475, 246, 553, 246, 246, 246, 246, 618, 618, 618, + 246, 1452, 1453, 246, 1454, 412, 412, 412, 1455, 1456, + 477, 477, 477, 572, 1457, 572, 572, 572, 622, 1461, + 246, 1462, 622, 622, 622, 572, 480, 480, 480, 1463, + 1464, 485, 485, 485, 689, 689, 689, 1465, 1469, 553, + + 553, 553, 572, 246, 246, 246, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 1470, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, + 247, 247, 247, 247, 247, 247, 258, 563, 697, 697, + 697, 1471, 442, 1472, 258, 1473, 258, 258, 258, 258, + 442, 1474, 623, 258, 623, 442, 623, 623, 623, 442, + + 902, 443, 1475, 902, 444, 912, 1476, 258, 912, 443, + 902, 1477, 444, 442, 443, 912, 1479, 444, 443, 1480, + 1481, 444, 1482, 481, 563, 563, 563, 481, 481, 481, + 481, 924, 443, 489, 924, 444, 258, 258, 258, 282, + 1483, 924, 442, 442, 442, 1484, 489, 282, 1485, 282, + 282, 282, 282, 717, 717, 717, 282, 1486, 1488, 282, + 1490, 443, 443, 443, 444, 444, 444, 445, 1492, 1499, + 282, 1500, 1501, 450, 1506, 445, 282, 481, 481, 481, + 445, 450, 1507, 558, 445, 694, 450, 694, 694, 694, + 450, 1508, 536, 489, 489, 489, 558, 1513, 445, 282, + + 282, 282, 284, 693, 450, 536, 1514, 693, 693, 693, + 284, 1515, 284, 284, 284, 284, 721, 721, 721, 284, + 1520, 1521, 284, 536, 738, 738, 738, 445, 445, 445, + 742, 742, 742, 450, 450, 450, 690, 1522, 690, 284, + 690, 690, 690, 558, 558, 558, 746, 746, 746, 751, + 751, 751, 536, 536, 536, 692, 1526, 692, 1527, 692, + 692, 692, 284, 284, 284, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 1528, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 296, 763, 763, 763, 1531, + 1532, 451, 1533, 296, 1534, 296, 296, 296, 296, 451, + 1535, 452, 296, 926, 451, 1536, 926, 466, 451, 452, + 775, 775, 775, 926, 452, 466, 296, 737, 452, 1537, + 466, 567, 451, 552, 466, 552, 1538, 552, 552, 552, + 1539, 1540, 452, 928, 567, 490, 928, 552, 466, 490, + 490, 490, 490, 928, 1541, 296, 296, 296, 334, 334, + + 334, 451, 451, 451, 552, 1542, 334, 334, 334, 1543, + 1544, 452, 452, 452, 737, 737, 737, 466, 466, 466, + 1545, 334, 334, 334, 334, 334, 334, 374, 374, 374, + 1546, 567, 567, 567, 743, 374, 374, 374, 744, 490, + 490, 490, 559, 795, 795, 795, 559, 559, 559, 559, + 374, 374, 374, 374, 374, 374, 407, 407, 407, 407, + 407, 835, 407, 407, 841, 407, 407, 407, 842, 1547, + 407, 407, 815, 815, 815, 1548, 407, 407, 1549, 1550, + 407, 743, 743, 743, 1551, 744, 744, 744, 819, 819, + 819, 407, 1552, 407, 407, 407, 559, 559, 559, 836, + + 836, 836, 840, 840, 840, 844, 844, 844, 835, 835, + 835, 841, 841, 841, 1553, 842, 842, 842, 407, 407, + 407, 407, 407, 407, 407, 407, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, + 422, 1554, 422, 422, 422, 422, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 440, 688, 1555, 688, + + 1556, 688, 688, 688, 467, 1557, 440, 440, 440, 440, + 468, 688, 467, 440, 1558, 1565, 440, 467, 468, 1566, + 691, 467, 691, 468, 691, 691, 691, 468, 688, 849, + 849, 849, 1567, 440, 691, 467, 496, 759, 759, 759, + 759, 468, 939, 1573, 496, 939, 497, 1574, 1575, 496, + 1576, 691, 939, 496, 497, 771, 440, 440, 440, 497, + 1577, 499, 1578, 497, 467, 467, 467, 496, 771, 499, + 468, 468, 468, 472, 499, 1579, 1580, 497, 499, 1581, + 1582, 472, 1583, 472, 472, 472, 472, 759, 759, 759, + 472, 1605, 499, 472, 1605, 1219, 496, 496, 496, 1608, + + 1605, 509, 760, 760, 760, 1608, 497, 497, 497, 509, + 472, 1218, 760, 1628, 509, 771, 771, 771, 509, 1628, + 1217, 499, 499, 499, 1629, 555, 861, 861, 861, 760, + 1629, 1640, 509, 472, 472, 472, 473, 1640, 555, 873, + 873, 873, 555, 1216, 473, 1215, 473, 473, 473, 473, + 982, 982, 982, 473, 1686, 654, 473, 931, 654, 1214, + 1686, 509, 509, 509, 510, 654, 942, 473, 994, 994, + 994, 511, 510, 473, 654, 1212, 1643, 510, 1643, 511, + 1632, 510, 1643, 1632, 511, 555, 555, 555, 511, 1632, + 765, 765, 765, 931, 1211, 510, 473, 473, 473, 478, + + 765, 1210, 511, 942, 931, 931, 931, 478, 1199, 478, + 478, 478, 478, 942, 942, 942, 478, 765, 1198, 478, + 1197, 654, 654, 654, 510, 510, 510, 522, 1187, 943, + 478, 511, 511, 511, 523, 522, 478, 1186, 964, 1736, + 522, 964, 523, 1682, 522, 1736, 1682, 523, 964, 1185, + 568, 523, 1682, 943, 568, 568, 568, 568, 522, 478, + 478, 478, 487, 1180, 1179, 523, 1178, 869, 1169, 1167, + 487, 938, 487, 487, 487, 487, 943, 943, 943, 487, + 869, 1166, 487, 1165, 524, 1163, 1162, 522, 522, 522, + 525, 1160, 524, 487, 523, 523, 523, 524, 525, 487, + + 530, 524, 1159, 525, 568, 568, 568, 525, 530, 1158, + 930, 1157, 938, 530, 1154, 524, 1153, 530, 938, 938, + 938, 525, 487, 487, 487, 495, 1152, 869, 869, 869, + 1151, 530, 1150, 495, 1149, 495, 495, 495, 495, 930, + 1148, 1147, 495, 932, 524, 524, 524, 1000, 1000, 1000, + 525, 525, 525, 1004, 1004, 1004, 495, 930, 930, 930, + 530, 530, 530, 531, 1146, 655, 532, 933, 655, 1145, + 932, 531, 1144, 1143, 532, 655, 531, 1142, 1141, 532, + 531, 1140, 715, 532, 655, 495, 495, 495, 515, 1139, + 932, 932, 932, 1138, 531, 715, 515, 532, 515, 515, + + 515, 515, 696, 933, 1137, 515, 696, 696, 696, 696, + 858, 858, 858, 715, 933, 933, 933, 1135, 1133, 515, + 858, 544, 1132, 531, 531, 531, 532, 532, 532, 544, + 1131, 655, 655, 655, 544, 1127, 656, 858, 544, 656, + 1126, 1125, 715, 715, 715, 1118, 656, 1117, 515, 515, + 515, 520, 544, 1116, 1110, 656, 696, 696, 696, 545, + 1108, 520, 520, 520, 520, 1107, 1106, 545, 520, 1105, + 1104, 520, 545, 1021, 1021, 1021, 545, 656, 546, 1101, + 1100, 544, 544, 544, 574, 1099, 546, 1683, 520, 1683, + 545, 546, 574, 1683, 1098, 546, 967, 574, 967, 967, + + 967, 574, 656, 656, 656, 764, 764, 764, 764, 546, + 1097, 520, 520, 520, 1096, 574, 935, 1095, 1093, 545, + 545, 545, 1092, 1091, 657, 1089, 968, 657, 968, 968, + 968, 1046, 1046, 1046, 657, 1072, 1072, 1072, 546, 546, + 546, 550, 1088, 657, 574, 574, 574, 1087, 935, 550, + 1086, 550, 550, 550, 550, 764, 764, 764, 550, 1085, + 1083, 550, 1082, 935, 935, 935, 575, 657, 1081, 577, + 1080, 863, 863, 863, 575, 1079, 587, 577, 550, 575, + 1078, 863, 577, 575, 587, 1077, 577, 1076, 1075, 587, + 657, 657, 657, 587, 1074, 941, 1156, 575, 863, 1156, + + 577, 550, 550, 550, 551, 1073, 1156, 587, 1071, 1070, + 945, 1069, 551, 1068, 551, 551, 551, 551, 1084, 1084, + 1084, 551, 1067, 1066, 551, 941, 575, 575, 575, 577, + 577, 577, 588, 1065, 945, 551, 587, 587, 587, 589, + 588, 551, 941, 941, 941, 588, 1064, 589, 947, 588, + 658, 1164, 589, 658, 1164, 1063, 589, 945, 945, 945, + 658, 1164, 1058, 588, 551, 551, 551, 556, 1057, 658, + 589, 1056, 716, 1055, 1054, 556, 1053, 556, 556, 556, + 556, 1090, 1090, 1090, 556, 716, 1052, 556, 956, 1051, + 1050, 658, 588, 588, 588, 947, 947, 947, 556, 589, + + 589, 589, 659, 716, 556, 659, 1049, 857, 857, 857, + 857, 1048, 659, 1094, 1094, 1094, 658, 658, 658, 747, + 1047, 659, 1045, 747, 747, 747, 747, 556, 556, 556, + 565, 1043, 716, 716, 716, 956, 956, 956, 565, 1042, + 565, 565, 565, 565, 1041, 660, 1037, 565, 660, 1036, + 565, 1035, 1028, 661, 659, 660, 661, 857, 857, 857, + 949, 565, 1027, 661, 660, 1026, 1020, 565, 659, 659, + 659, 1018, 661, 747, 747, 747, 1017, 1016, 662, 1015, + 949, 662, 1111, 1111, 1111, 1136, 1136, 1136, 662, 1014, + 565, 565, 565, 573, 660, 1011, 1684, 662, 1684, 1010, + + 661, 573, 1684, 573, 573, 573, 573, 949, 949, 949, + 573, 660, 660, 660, 954, 663, 1009, 1008, 663, 661, + 661, 661, 662, 664, 573, 663, 664, 1175, 665, 1173, + 1175, 665, 1173, 664, 663, 1007, 1006, 1175, 665, 1173, + 668, 1005, 664, 668, 662, 662, 662, 665, 1003, 1002, + 668, 1001, 954, 573, 573, 573, 596, 999, 663, 668, + 998, 954, 954, 954, 596, 997, 596, 596, 596, 596, + 794, 996, 1173, 596, 794, 794, 794, 794, 995, 664, + 993, 663, 663, 663, 992, 991, 668, 596, 990, 664, + 664, 664, 698, 989, 665, 665, 665, 1268, 1268, 1268, + + 698, 755, 698, 698, 698, 698, 668, 668, 668, 698, + 988, 987, 666, 986, 755, 666, 596, 596, 596, 616, + 616, 616, 666, 985, 794, 794, 794, 616, 616, 616, + 984, 666, 755, 845, 1272, 1272, 1272, 845, 845, 845, + 845, 983, 616, 616, 616, 616, 616, 616, 627, 627, + 627, 666, 698, 698, 698, 981, 627, 627, 627, 980, + 979, 755, 755, 755, 1335, 1335, 1335, 667, 962, 978, + 667, 627, 627, 627, 627, 627, 627, 667, 666, 666, + 666, 670, 958, 977, 670, 976, 667, 845, 845, 845, + 966, 670, 975, 1181, 974, 973, 1181, 961, 962, 960, + + 670, 959, 958, 1181, 676, 952, 951, 676, 675, 1183, + 950, 675, 1183, 925, 676, 962, 962, 962, 675, 1183, + 966, 923, 667, 676, 1339, 1339, 1339, 675, 922, 958, + 958, 958, 921, 667, 667, 667, 1181, 966, 966, 966, + 1434, 1434, 1434, 920, 676, 919, 918, 670, 670, 670, + 671, 671, 671, 671, 671, 671, 671, 917, 671, 916, + 671, 671, 671, 671, 675, 671, 671, 671, 671, 915, + 676, 676, 676, 914, 675, 675, 675, 677, 677, 677, + 677, 677, 913, 677, 677, 911, 677, 677, 677, 813, + 678, 677, 677, 678, 1478, 1478, 1478, 677, 677, 910, + + 678, 677, 813, 683, 909, 908, 683, 681, 907, 678, + 681, 906, 677, 683, 677, 677, 677, 681, 1177, 905, + 813, 1177, 683, 904, 903, 900, 681, 677, 1177, 897, + 891, 890, 889, 678, 888, 887, 886, 885, 881, 677, + 677, 677, 677, 677, 677, 677, 677, 880, 683, 813, + 813, 813, 879, 878, 877, 876, 678, 678, 678, 1177, + 681, 875, 684, 874, 872, 684, 871, 870, 860, 683, + 683, 683, 684, 681, 681, 681, 682, 682, 682, 682, + 682, 684, 682, 682, 859, 682, 682, 682, 856, 685, + 682, 682, 685, 855, 854, 852, 682, 682, 851, 685, + + 682, 850, 848, 847, 699, 684, 686, 846, 685, 686, + 839, 682, 699, 682, 682, 682, 686, 699, 838, 700, + 682, 699, 837, 1188, 833, 686, 1188, 700, 684, 684, + 684, 832, 700, 1188, 831, 699, 700, 830, 682, 682, + 682, 682, 682, 682, 682, 682, 701, 829, 1190, 825, + 700, 1190, 824, 686, 701, 685, 685, 685, 1190, 701, + 823, 822, 821, 701, 699, 699, 699, 820, 818, 817, + 707, 816, 686, 686, 686, 812, 811, 701, 707, 700, + 700, 700, 708, 707, 810, 709, 1192, 707, 809, 1192, + 708, 808, 728, 709, 804, 708, 1192, 803, 709, 708, + + 728, 707, 709, 802, 729, 728, 701, 701, 701, 728, + 801, 800, 729, 708, 793, 1195, 709, 729, 1195, 791, + 730, 729, 790, 728, 789, 1195, 1191, 814, 730, 1191, + 707, 707, 707, 730, 788, 729, 1191, 730, 937, 787, + 814, 937, 708, 708, 708, 709, 709, 709, 937, 783, + 782, 730, 728, 728, 728, 766, 781, 937, 814, 780, + 779, 767, 778, 766, 729, 729, 729, 1200, 766, 767, + 1200, 777, 766, 776, 767, 1191, 774, 1200, 767, 773, + 730, 730, 730, 736, 772, 762, 766, 814, 814, 814, + 761, 736, 767, 736, 736, 736, 736, 758, 1202, 1193, + + 736, 1202, 1193, 736, 937, 937, 937, 757, 1202, 1193, + 862, 862, 862, 862, 736, 766, 766, 766, 768, 756, + 736, 767, 767, 767, 770, 754, 768, 753, 768, 768, + 768, 768, 770, 752, 784, 768, 750, 770, 749, 853, + 748, 770, 784, 736, 736, 736, 745, 784, 741, 740, + 739, 784, 853, 1193, 745, 770, 745, 745, 745, 745, + 862, 862, 862, 745, 735, 784, 745, 734, 733, 732, + 853, 731, 727, 726, 785, 725, 724, 745, 768, 768, + 768, 723, 785, 745, 770, 770, 770, 785, 722, 720, + 719, 785, 718, 714, 784, 784, 784, 713, 712, 853, + + 853, 853, 711, 710, 706, 785, 745, 745, 745, 769, + 705, 1030, 1030, 1030, 1030, 786, 704, 769, 703, 769, + 769, 769, 769, 786, 702, 695, 769, 687, 786, 674, + 673, 672, 786, 653, 785, 785, 785, 796, 652, 651, + 769, 650, 649, 797, 648, 796, 786, 796, 796, 796, + 796, 797, 646, 645, 796, 1204, 797, 644, 1204, 643, + 797, 1030, 1030, 1030, 641, 1204, 639, 638, 636, 769, + 769, 769, 635, 634, 797, 786, 786, 786, 792, 632, + 631, 630, 1201, 629, 1206, 1201, 792, 1206, 792, 792, + 792, 792, 1201, 798, 1206, 792, 628, 796, 796, 796, + + 799, 798, 624, 797, 797, 797, 798, 611, 799, 792, + 798, 1204, 805, 799, 610, 806, 1208, 799, 605, 1208, + 805, 604, 599, 806, 798, 805, 1208, 1206, 806, 805, + 598, 799, 806, 597, 807, 595, 592, 1201, 792, 792, + 792, 591, 807, 805, 590, 586, 806, 807, 585, 1205, + 826, 807, 1205, 798, 798, 798, 584, 583, 826, 1205, + 799, 799, 799, 826, 582, 807, 580, 826, 579, 578, + 827, 571, 805, 805, 805, 806, 806, 806, 827, 1349, + 570, 826, 1349, 827, 569, 828, 564, 827, 562, 1349, + 561, 864, 560, 828, 807, 807, 807, 1354, 828, 864, + + 1354, 827, 828, 1356, 864, 1205, 1356, 1354, 864, 554, + 826, 826, 826, 1356, 953, 1358, 828, 953, 1358, 549, + 548, 547, 864, 543, 953, 1358, 865, 542, 541, 540, + 827, 827, 827, 953, 865, 539, 537, 535, 534, 865, + 533, 528, 527, 865, 526, 828, 828, 828, 834, 518, + 517, 864, 864, 864, 516, 514, 834, 865, 834, 834, + 834, 834, 513, 1365, 1370, 834, 1365, 1370, 834, 512, + 508, 507, 506, 1365, 1370, 1120, 1120, 1120, 1120, 834, + 953, 953, 953, 866, 505, 834, 865, 865, 865, 868, + 504, 866, 502, 866, 866, 866, 866, 868, 501, 882, + + 866, 500, 868, 493, 1012, 492, 868, 882, 834, 834, + 834, 843, 882, 491, 486, 484, 882, 1012, 483, 843, + 868, 843, 843, 843, 843, 1120, 1120, 1120, 843, 482, + 882, 843, 476, 471, 470, 1012, 469, 463, 462, 883, + 461, 460, 843, 866, 866, 866, 459, 883, 843, 868, + 868, 868, 883, 457, 455, 454, 883, 453, 448, 882, + 882, 882, 447, 446, 1012, 1012, 1012, 438, 437, 420, + 883, 843, 843, 843, 867, 419, 1249, 1249, 1249, 1249, + 884, 394, 867, 393, 867, 867, 867, 867, 884, 391, + 389, 867, 387, 884, 386, 385, 384, 884, 382, 883, + + 883, 883, 970, 1373, 1381, 867, 1373, 1381, 971, 380, + 970, 884, 378, 1373, 1381, 970, 971, 1013, 377, 970, + 376, 971, 370, 369, 349, 971, 1249, 1249, 1249, 345, + 1013, 330, 329, 970, 867, 867, 867, 317, 316, 971, + 884, 884, 884, 896, 1316, 1316, 1316, 1316, 1013, 1383, + 303, 896, 1383, 896, 896, 896, 896, 302, 972, 1383, + 896, 300, 970, 970, 970, 299, 972, 298, 971, 971, + 971, 972, 293, 1384, 896, 972, 1384, 1013, 1013, 1013, + 292, 1387, 1392, 1384, 1387, 1392, 291, 1379, 279, 972, + 1379, 1387, 1392, 278, 1316, 1316, 1316, 1379, 277, 266, + + 265, 262, 261, 896, 896, 896, 899, 899, 899, 1383, + 260, 257, 255, 254, 899, 899, 899, 253, 972, 972, + 972, 234, 233, 232, 221, 220, 209, 1044, 200, 899, + 899, 899, 899, 899, 899, 934, 934, 934, 934, 934, + 1044, 934, 934, 1379, 934, 934, 934, 199, 198, 934, + 934, 178, 157, 149, 1389, 934, 934, 1389, 1044, 934, + 143, 139, 1102, 130, 1389, 128, 1394, 127, 1495, 1394, + 934, 1495, 934, 934, 934, 1102, 1394, 126, 1495, 934, + 1497, 1504, 1509, 1497, 1504, 1509, 121, 1044, 1044, 1044, + 1497, 1504, 1509, 1102, 118, 117, 116, 934, 934, 934, + + 934, 934, 934, 934, 934, 936, 936, 936, 936, 936, + 1389, 936, 936, 112, 936, 936, 936, 108, 1511, 936, + 936, 1511, 1102, 1102, 1102, 936, 936, 1518, 1511, 936, + 1518, 1524, 1103, 107, 1524, 106, 1529, 1518, 101, 1529, + 936, 1524, 936, 936, 936, 1103, 1529, 1560, 1563, 1568, + 1560, 1563, 1568, 97, 96, 95, 90, 1560, 1563, 1568, + 86, 85, 84, 1103, 77, 74, 73, 936, 936, 936, + 936, 936, 936, 936, 936, 944, 944, 944, 944, 944, + 72, 944, 944, 65, 944, 944, 944, 59, 1571, 944, + 944, 1571, 1103, 1103, 1103, 944, 944, 58, 1571, 944, + + 57, 51, 44, 40, 31, 30, 27, 0, 0, 0, + 944, 0, 944, 944, 944, 0, 0, 0, 0, 0, + 0, 1134, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1134, 0, 0, 944, 944, 944, + 944, 944, 944, 944, 944, 948, 948, 948, 948, 948, + 948, 948, 1134, 948, 0, 948, 948, 948, 948, 0, + 948, 948, 948, 948, 963, 963, 963, 963, 963, 0, + 963, 963, 0, 963, 963, 963, 0, 0, 963, 963, + 0, 1134, 1134, 1134, 963, 963, 0, 0, 963, 0, + 0, 0, 1022, 0, 0, 0, 0, 0, 0, 963, + + 1022, 963, 963, 963, 0, 1022, 0, 1023, 0, 1022, + 0, 0, 0, 0, 0, 1023, 0, 0, 0, 0, + 1023, 0, 0, 1022, 1023, 0, 963, 963, 963, 963, + 963, 963, 963, 963, 969, 0, 0, 0, 1023, 0, + 0, 0, 969, 0, 969, 969, 969, 969, 0, 0, + 0, 969, 1022, 1022, 1022, 0, 0, 0, 1024, 0, + 0, 1266, 0, 0, 0, 969, 1024, 1023, 1023, 1023, + 1025, 1024, 0, 1029, 1266, 1024, 0, 0, 1025, 0, + 0, 1029, 0, 1025, 0, 1031, 1029, 1025, 0, 1024, + 1029, 0, 1266, 1031, 969, 969, 969, 1019, 1031, 0, + + 0, 1025, 1031, 0, 1029, 1019, 0, 1019, 1019, 1019, + 1019, 1267, 0, 0, 1019, 0, 1031, 0, 1024, 1024, + 1024, 1266, 1266, 1266, 1267, 0, 0, 0, 1019, 0, + 1025, 1025, 1025, 1029, 1029, 1029, 1032, 0, 0, 0, + 0, 0, 1267, 1034, 1032, 1031, 1031, 1031, 0, 1032, + 0, 1034, 0, 1032, 0, 0, 1034, 1019, 1019, 1019, + 1034, 0, 1038, 0, 0, 0, 0, 1032, 0, 0, + 1038, 1267, 1267, 1267, 1034, 1038, 0, 1039, 0, 1038, + 0, 0, 1333, 0, 0, 1039, 0, 0, 0, 0, + 1039, 0, 0, 1038, 1039, 1333, 1032, 1032, 1032, 1033, + + 0, 0, 0, 1034, 1034, 1034, 0, 1033, 1039, 1033, + 1033, 1033, 1033, 1333, 1334, 0, 1033, 0, 1040, 0, + 0, 0, 1038, 1038, 1038, 0, 1040, 1334, 0, 0, + 1033, 1040, 0, 0, 0, 1040, 0, 1039, 1039, 1039, + 1060, 0, 1333, 1333, 1333, 1334, 0, 0, 1060, 1040, + 0, 0, 0, 1060, 0, 1061, 0, 1060, 0, 1033, + 1033, 1033, 0, 1061, 0, 0, 0, 0, 1061, 0, + 0, 1060, 1061, 0, 1334, 1334, 1334, 0, 1040, 1040, + 1040, 1059, 0, 0, 0, 0, 1061, 0, 0, 1059, + 0, 1059, 1059, 1059, 1059, 0, 1062, 0, 1059, 0, + + 1060, 1060, 1060, 0, 1062, 0, 0, 0, 0, 1062, + 0, 0, 1059, 1062, 0, 1061, 1061, 1061, 1112, 0, + 0, 1113, 0, 0, 0, 0, 1112, 1062, 0, 1113, + 0, 1112, 0, 0, 1113, 1112, 0, 1114, 1113, 0, + 0, 1059, 1059, 1059, 0, 1114, 0, 0, 0, 1112, + 1114, 0, 1113, 0, 1114, 0, 1062, 1062, 1062, 1109, + 0, 0, 0, 0, 0, 0, 0, 1109, 1114, 1109, + 1109, 1109, 1109, 0, 0, 0, 1109, 0, 1112, 1112, + 1112, 1113, 1113, 1113, 0, 0, 0, 1115, 0, 0, + 1109, 0, 0, 1119, 0, 1115, 0, 1114, 1114, 1114, + + 1115, 1119, 0, 0, 1115, 0, 1119, 0, 0, 1121, + 1119, 0, 0, 0, 0, 1122, 0, 1121, 1115, 1109, + 1109, 1109, 1121, 1122, 1119, 0, 1121, 0, 1122, 0, + 0, 0, 1122, 0, 0, 0, 0, 0, 0, 0, + 1121, 0, 0, 1124, 0, 0, 1122, 1115, 1115, 1115, + 1128, 1124, 0, 1119, 1119, 1119, 1124, 0, 1128, 0, + 1124, 0, 0, 1128, 0, 0, 0, 1128, 0, 1121, + 1121, 1121, 0, 0, 1124, 1122, 1122, 1122, 1123, 0, + 0, 1128, 0, 0, 1129, 0, 1123, 0, 1123, 1123, + 1123, 1123, 1129, 0, 0, 1123, 0, 1129, 0, 0, + + 1130, 1129, 0, 1124, 1124, 1124, 0, 0, 1130, 1123, + 1128, 1128, 1128, 1130, 0, 1129, 0, 1130, 0, 1235, + 0, 0, 0, 0, 0, 0, 0, 1235, 0, 0, + 0, 1130, 1235, 0, 0, 0, 1235, 0, 1123, 1123, + 1123, 0, 0, 0, 1129, 1129, 1129, 0, 0, 0, + 1235, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1130, 1130, 1130, 1170, 1170, 1170, 1170, 1170, 0, 1170, + 1170, 0, 1170, 1170, 1170, 0, 0, 1170, 1170, 1235, + 1235, 1235, 0, 1170, 1170, 0, 0, 1170, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1170, 0, + + 1170, 1170, 1170, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1170, 1170, 1170, 1170, 1170, + 1170, 1170, 1170, 1171, 1171, 1171, 1171, 1171, 0, 1171, + 0, 0, 1171, 1171, 1171, 0, 0, 1171, 1171, 0, + 0, 0, 0, 1171, 1171, 0, 0, 1171, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1171, 0, + 1171, 0, 1171, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1171, 1171, 1171, 1171, 1171, + + 1171, 1171, 1171, 1172, 1172, 1172, 1172, 1172, 0, 1172, + 1172, 0, 1172, 1172, 1172, 0, 0, 1172, 1172, 0, + 0, 0, 0, 1172, 1172, 0, 0, 1172, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1172, 0, + 1172, 1172, 1172, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1172, 1172, 1172, 1172, 1172, + 1172, 1172, 1172, 1176, 1176, 1176, 1176, 1176, 1176, 1176, + 0, 1176, 0, 1176, 1176, 1176, 1176, 0, 1176, 1176, + 1176, 1176, 1213, 1213, 1213, 1213, 1213, 0, 1213, 1213, + + 0, 1213, 1213, 1213, 0, 0, 1213, 1213, 0, 1236, + 0, 0, 1213, 1213, 0, 1237, 1213, 1236, 0, 0, + 0, 0, 1236, 1237, 0, 0, 1236, 1213, 1237, 1213, + 1213, 1213, 1237, 0, 1243, 0, 0, 0, 0, 0, + 1236, 0, 1243, 0, 0, 0, 1237, 1243, 0, 0, + 0, 1243, 0, 0, 1213, 1213, 1213, 1213, 1213, 1213, + 1213, 1213, 0, 0, 0, 1243, 1244, 0, 0, 1236, + 1236, 1236, 1245, 0, 1244, 1237, 1237, 1237, 0, 1244, + 1245, 0, 0, 1244, 0, 1245, 0, 0, 0, 1245, + 0, 1250, 0, 0, 1243, 1243, 1243, 1244, 1251, 1250, + + 0, 0, 0, 1245, 1250, 0, 1251, 0, 1250, 0, + 0, 1251, 0, 0, 0, 1251, 0, 0, 0, 0, + 0, 0, 1250, 1252, 0, 0, 1244, 1244, 1244, 1251, + 1258, 1252, 1245, 1245, 1245, 0, 1252, 0, 1258, 0, + 1252, 0, 0, 1258, 0, 0, 0, 1258, 0, 1259, + 0, 1250, 1250, 1250, 1252, 1260, 0, 1259, 1251, 1251, + 1251, 1258, 1259, 1260, 0, 1302, 1259, 0, 1260, 0, + 0, 0, 1260, 1302, 0, 0, 0, 0, 1302, 0, + 1259, 1303, 1302, 1252, 1252, 1252, 1260, 1304, 0, 1303, + 1258, 1258, 1258, 0, 1303, 1304, 1302, 0, 1303, 0, + + 1304, 0, 0, 0, 1304, 0, 1310, 0, 0, 1259, + 1259, 1259, 1303, 0, 1310, 1260, 1260, 1260, 1304, 1310, + 0, 1311, 0, 1310, 0, 1302, 1302, 1302, 0, 1311, + 0, 0, 0, 0, 1311, 0, 0, 1310, 1311, 0, + 0, 1303, 1303, 1303, 0, 1312, 0, 1304, 1304, 1304, + 0, 0, 1311, 1312, 0, 0, 1317, 0, 1312, 0, + 0, 0, 1312, 0, 1317, 0, 1310, 1310, 1310, 1317, + 0, 1318, 0, 1317, 0, 0, 1312, 1319, 0, 1318, + 0, 1311, 1311, 1311, 1318, 1319, 0, 1317, 1318, 0, + 1319, 0, 0, 0, 1319, 0, 1325, 0, 0, 0, + + 0, 0, 1318, 0, 1325, 1312, 1312, 1312, 1319, 1325, + 0, 1326, 0, 1325, 0, 0, 1317, 1317, 1317, 1326, + 0, 0, 0, 0, 1326, 0, 0, 1325, 1326, 0, + 0, 1318, 1318, 1318, 0, 1327, 0, 1319, 1319, 1319, + 0, 0, 1326, 1327, 0, 0, 0, 0, 1327, 0, + 0, 0, 1327, 0, 0, 0, 1325, 1325, 1325, 0, + 0, 0, 0, 0, 0, 0, 1327, 0, 0, 0, + 0, 1326, 1326, 1326, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1327, 1327, 1327, 1378, 1378, + + 1378, 1378, 1378, 0, 1378, 1378, 0, 1378, 1378, 1378, + 0, 0, 1378, 1378, 0, 0, 0, 0, 1378, 1378, + 0, 0, 1378, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1378, 0, 1378, 1378, 1378, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1380, 1380, + 1380, 1380, 1380, 0, 1380, 1380, 0, 1380, 1380, 1380, + 0, 0, 1380, 1380, 0, 0, 0, 0, 1380, 1380, + 0, 0, 1380, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 1380, 0, 1380, 1380, 1380, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1386, 1386, + 1386, 1386, 1386, 0, 1386, 1386, 0, 1386, 1386, 1386, + 0, 0, 1386, 1386, 0, 0, 0, 0, 1386, 1386, + 0, 0, 1386, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1386, 0, 1386, 1386, 1386, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1390, 1390, + 1390, 1390, 1390, 0, 1390, 1390, 0, 1390, 1390, 1390, + 0, 0, 1390, 1390, 0, 0, 0, 0, 1390, 1390, + 0, 0, 1390, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1390, 0, 1390, 1390, 1390, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1391, 1391, + 1391, 1391, 1391, 0, 1391, 1391, 0, 1391, 1391, 1391, + 0, 0, 1391, 1391, 0, 1405, 0, 0, 1391, 1391, + + 0, 1406, 1391, 1405, 0, 0, 0, 0, 1405, 1406, + 0, 0, 1405, 1391, 1406, 1391, 1391, 1391, 1406, 0, + 1407, 0, 0, 0, 0, 0, 1405, 0, 1407, 0, + 0, 0, 1406, 1407, 0, 0, 0, 1407, 0, 0, + 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 0, 0, + 0, 1407, 1414, 0, 0, 1405, 1405, 1405, 1415, 0, + 1414, 1406, 1406, 1406, 0, 1414, 1415, 0, 0, 1414, + 0, 1415, 0, 0, 0, 1415, 0, 1416, 0, 0, + 1407, 1407, 1407, 1414, 1422, 1416, 0, 0, 0, 1415, + 1416, 0, 1422, 0, 1416, 0, 0, 1422, 0, 0, + + 0, 1422, 0, 0, 0, 0, 0, 0, 1416, 1423, + 0, 0, 1414, 1414, 1414, 1422, 1424, 1423, 1415, 1415, + 1415, 0, 1423, 0, 1424, 0, 1423, 0, 0, 1424, + 0, 0, 0, 1424, 0, 1449, 0, 1416, 1416, 1416, + 1423, 1450, 0, 1449, 1422, 1422, 1422, 1424, 1449, 1450, + 0, 1451, 1449, 0, 1450, 0, 0, 0, 1450, 1451, + 0, 0, 0, 0, 1451, 0, 1449, 1458, 1451, 1423, + 1423, 1423, 1450, 1459, 0, 1458, 1424, 1424, 1424, 0, + 1458, 1459, 1451, 0, 1458, 0, 1459, 0, 0, 0, + 1459, 0, 1460, 0, 0, 1449, 1449, 1449, 1458, 0, + + 1460, 1450, 1450, 1450, 1459, 1460, 0, 1466, 0, 1460, + 0, 1451, 1451, 1451, 0, 1466, 0, 0, 0, 0, + 1466, 0, 0, 1460, 1466, 0, 0, 1458, 1458, 1458, + 0, 1467, 0, 1459, 1459, 1459, 0, 0, 1466, 1467, + 0, 0, 1468, 0, 1467, 0, 0, 0, 1467, 0, + 1468, 0, 1460, 1460, 1460, 1468, 0, 0, 0, 1468, + 0, 0, 1467, 0, 0, 0, 0, 1466, 1466, 1466, + 0, 0, 0, 1468, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1467, 1467, 1467, 0, 0, 0, 0, 0, 0, + + 0, 0, 1468, 1468, 1468, 1502, 1502, 1502, 1502, 1502, + 0, 1502, 1502, 0, 1502, 1502, 1502, 0, 0, 1502, + 1502, 0, 0, 0, 0, 1502, 1502, 0, 0, 1502, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1502, 0, 1502, 1502, 1502, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1502, 1502, 1502, + 1502, 1502, 1502, 1502, 1502, 1516, 1516, 1516, 1516, 1516, + 0, 1516, 1516, 0, 1516, 1516, 1516, 0, 0, 1516, + 1516, 0, 0, 0, 0, 1516, 1516, 0, 0, 1516, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1516, 0, 1516, 1516, 1516, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1516, 1516, 1516, + 1516, 1516, 1516, 1516, 1516, 1585, 1585, 1585, 1585, 1585, + 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, + 1585, 1585, 1585, 1585, 1585, 1586, 1586, 1586, 1586, 1586, + 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, + 1586, 1586, 1586, 1586, 1586, 1587, 1587, 1587, 1587, 1587, + 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, + + 1587, 1587, 1587, 1587, 1587, 1588, 1588, 1588, 1588, 1588, + 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, + 1588, 1588, 1588, 1588, 1588, 1589, 1589, 1589, 1589, 1589, + 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, + 1589, 1589, 1589, 1589, 1589, 1590, 1590, 0, 0, 0, + 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 0, + 1590, 1590, 1590, 1590, 1590, 1591, 0, 1591, 0, 0, + 0, 1591, 0, 1591, 1591, 1592, 1592, 0, 0, 1592, + 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, + 1592, 1592, 1592, 1592, 1592, 1593, 1593, 1593, 1593, 1593, + + 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, + 1593, 1593, 1593, 1593, 1593, 1594, 1594, 0, 1594, 1594, + 0, 1594, 1594, 0, 1594, 1594, 1594, 1594, 1594, 1594, + 1595, 1595, 0, 1595, 1595, 0, 1595, 1595, 0, 1595, + 1595, 1595, 1595, 1595, 1595, 1596, 1596, 0, 1596, 0, + 0, 1596, 1596, 0, 0, 1596, 0, 1596, 1596, 1596, + 1597, 1597, 0, 1597, 1597, 1597, 1597, 1597, 0, 1597, + 1597, 1597, 1597, 1597, 1597, 1598, 1598, 0, 1598, 1598, + 1598, 1598, 1598, 0, 1598, 1598, 1598, 1598, 1598, 1598, + 1599, 1599, 0, 1599, 0, 1599, 1599, 1599, 0, 0, + + 1599, 0, 1599, 1599, 1599, 1600, 1600, 1600, 1600, 1600, + 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, + 1600, 1600, 1600, 1600, 1600, 1601, 0, 0, 0, 1601, + 0, 1601, 1601, 1602, 1602, 1602, 0, 0, 1602, 0, + 0, 1602, 1602, 1602, 1602, 1602, 1603, 1603, 0, 1603, + 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, + 1603, 1603, 1603, 1603, 1603, 1603, 1604, 1604, 1604, 1604, + 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, + 1604, 1604, 1604, 1604, 1604, 1604, 1606, 1606, 0, 1606, + 0, 1606, 1606, 1606, 0, 0, 1606, 1606, 1606, 1606, + + 1606, 1607, 0, 1607, 0, 0, 0, 1607, 0, 1607, + 1607, 1609, 1609, 0, 1609, 1609, 0, 1609, 1609, 0, + 1609, 1609, 1609, 1609, 1609, 1609, 1610, 1610, 0, 1610, + 1610, 0, 1610, 1610, 0, 1610, 1610, 1610, 1610, 1610, + 1610, 1611, 1611, 0, 1611, 0, 0, 1611, 1611, 0, + 0, 1611, 0, 1611, 1611, 1611, 1612, 1612, 0, 1612, + 1612, 0, 1612, 1612, 0, 1612, 1612, 1612, 1612, 1612, + 1612, 1613, 1613, 0, 1613, 1613, 0, 1613, 1613, 0, + 1613, 1613, 0, 1613, 1613, 1613, 1614, 1614, 0, 1614, + 1614, 0, 1614, 1614, 0, 1614, 1614, 1614, 1614, 1614, + + 1614, 1615, 1615, 0, 1615, 1615, 0, 1615, 1615, 0, + 1615, 1615, 1615, 1615, 1615, 1615, 1616, 1616, 0, 1616, + 0, 0, 1616, 0, 0, 0, 1616, 1616, 1616, 1616, + 1616, 1617, 1617, 0, 1617, 1617, 0, 1617, 1617, 0, + 1617, 1617, 1617, 1617, 1617, 1617, 1618, 1618, 0, 1618, + 1618, 1618, 1618, 1618, 0, 1618, 1618, 1618, 1618, 1618, + 1618, 1619, 1619, 0, 1619, 1619, 1619, 1619, 1619, 0, + 1619, 1619, 1619, 1619, 1619, 1619, 1620, 1620, 0, 1620, + 1620, 1620, 1620, 1620, 0, 1620, 1620, 1620, 1620, 1620, + 1620, 1621, 1621, 0, 1621, 0, 1621, 1621, 1621, 0, + + 0, 1621, 0, 1621, 1621, 1621, 1622, 1622, 0, 1622, + 1622, 1622, 1622, 1622, 0, 1622, 1622, 1622, 1622, 1622, + 1622, 1623, 1623, 0, 1623, 1623, 1623, 1623, 1623, 0, + 1623, 1623, 0, 1623, 1623, 1623, 1624, 1624, 0, 1624, + 1624, 1624, 1624, 1624, 0, 1624, 1624, 1624, 1624, 1624, + 1624, 1625, 1625, 0, 1625, 1625, 1625, 1625, 1625, 0, + 1625, 1625, 1625, 1625, 1625, 1625, 1626, 1626, 0, 1626, + 0, 1626, 1626, 0, 0, 0, 1626, 1626, 1626, 1626, + 1626, 1627, 1627, 0, 1627, 1627, 1627, 1627, 1627, 0, + 1627, 1627, 1627, 1627, 1627, 1627, 1630, 0, 0, 0, + + 1630, 0, 1630, 1630, 1631, 0, 0, 0, 1631, 0, + 1631, 1631, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, + 1633, 0, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, + 1633, 1633, 1634, 0, 1634, 0, 0, 0, 1634, 0, + 1634, 1634, 1635, 1635, 0, 1635, 1635, 1635, 1635, 1635, + 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, + 1635, 1635, 1636, 1636, 0, 0, 0, 1636, 1636, 1636, + 1636, 1636, 1636, 1636, 1636, 1636, 0, 1636, 1636, 1636, + 1636, 1636, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, + 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, + + 1637, 1637, 1638, 0, 0, 0, 1638, 0, 1638, 1638, + 1639, 0, 0, 0, 1639, 0, 1639, 1639, 1641, 1641, + 0, 1641, 0, 1641, 1641, 1641, 0, 0, 1641, 1641, + 1641, 1641, 1641, 1642, 0, 1642, 0, 0, 0, 1642, + 0, 1642, 1642, 1644, 1644, 0, 1644, 0, 0, 1644, + 1644, 0, 1644, 1644, 0, 1644, 1644, 1644, 1645, 1645, + 0, 1645, 1645, 0, 1645, 1645, 0, 1645, 1645, 1645, + 1645, 1645, 1645, 1646, 1646, 0, 1646, 1646, 0, 1646, + 1646, 0, 1646, 1646, 1646, 1646, 1646, 1646, 1647, 1647, + 0, 1647, 1647, 0, 1647, 1647, 0, 1647, 1647, 1647, + + 1647, 1647, 1647, 1648, 1648, 0, 1648, 1648, 0, 1648, + 1648, 0, 1648, 1648, 1648, 1648, 1648, 1648, 1649, 1649, + 0, 1649, 0, 0, 1649, 1649, 0, 0, 1649, 1649, + 1649, 1649, 1649, 1650, 1650, 0, 1650, 0, 0, 1650, + 0, 0, 0, 1650, 1650, 1650, 1650, 1650, 1651, 1651, + 0, 1651, 1651, 0, 1651, 1651, 0, 1651, 1651, 1651, + 1651, 1651, 1651, 1652, 1652, 0, 1652, 1652, 0, 1652, + 1652, 0, 1652, 1652, 1652, 1652, 1652, 1652, 1653, 1653, + 0, 1653, 0, 0, 1653, 1653, 0, 0, 1653, 1653, + 1653, 1653, 1653, 1654, 1654, 0, 1654, 1654, 0, 1654, + + 1654, 0, 1654, 1654, 1654, 1654, 1654, 1654, 1655, 1655, + 0, 1655, 0, 0, 1655, 0, 0, 0, 1655, 1655, + 1655, 1655, 1655, 1656, 1656, 0, 1656, 0, 0, 1656, + 1656, 0, 0, 1656, 0, 1656, 1656, 1656, 1657, 1657, + 0, 1657, 1657, 0, 1657, 1657, 0, 1657, 1657, 1657, + 1657, 1657, 1657, 1658, 1658, 0, 1658, 1658, 0, 1658, + 1658, 0, 1658, 1658, 1658, 1658, 1658, 1658, 1659, 1659, + 0, 1659, 0, 0, 1659, 0, 0, 0, 1659, 1659, + 1659, 1659, 1659, 1660, 1660, 0, 1660, 0, 0, 1660, + 0, 0, 0, 1660, 1660, 1660, 1660, 1660, 1661, 1661, + + 0, 1661, 1661, 0, 1661, 1661, 0, 1661, 1661, 1661, + 1661, 1661, 1661, 1662, 1662, 0, 1662, 1662, 0, 1662, + 1662, 0, 1662, 1662, 1662, 1662, 1662, 1662, 1663, 1663, + 0, 1663, 0, 1663, 1663, 1663, 0, 1663, 1663, 0, + 1663, 1663, 1663, 1664, 1664, 0, 1664, 1664, 1664, 1664, + 1664, 0, 1664, 1664, 1664, 1664, 1664, 1664, 1665, 1665, + 0, 1665, 1665, 1665, 1665, 1665, 0, 1665, 1665, 1665, + 1665, 1665, 1665, 1666, 1666, 0, 1666, 1666, 1666, 1666, + 1666, 0, 1666, 1666, 1666, 1666, 1666, 1666, 1667, 1667, + 0, 1667, 1667, 1667, 1667, 1667, 0, 1667, 1667, 1667, + + 1667, 1667, 1667, 1668, 1668, 0, 1668, 0, 1668, 1668, + 1668, 0, 0, 1668, 1668, 1668, 1668, 1668, 1669, 1669, + 0, 1669, 0, 1669, 1669, 0, 0, 0, 1669, 1669, + 1669, 1669, 1669, 1670, 1670, 0, 1670, 1670, 1670, 1670, + 1670, 0, 1670, 1670, 1670, 1670, 1670, 1670, 1671, 1671, + 0, 1671, 1671, 1671, 1671, 1671, 0, 1671, 1671, 1671, + 1671, 1671, 1671, 1672, 1672, 0, 1672, 0, 1672, 1672, + 1672, 0, 0, 1672, 1672, 1672, 1672, 1672, 1673, 1673, + 0, 1673, 1673, 1673, 1673, 1673, 0, 1673, 1673, 1673, + 1673, 1673, 1673, 1674, 1674, 0, 1674, 0, 1674, 1674, + + 0, 0, 0, 1674, 1674, 1674, 1674, 1674, 1675, 1675, + 0, 1675, 0, 1675, 1675, 1675, 0, 0, 1675, 0, + 1675, 1675, 1675, 1676, 1676, 0, 1676, 1676, 1676, 1676, + 1676, 0, 1676, 1676, 1676, 1676, 1676, 1676, 1677, 1677, + 0, 1677, 1677, 1677, 1677, 1677, 0, 1677, 1677, 1677, + 1677, 1677, 1677, 1678, 1678, 0, 1678, 0, 1678, 1678, + 0, 0, 0, 1678, 1678, 1678, 1678, 1678, 1679, 1679, + 0, 1679, 0, 1679, 1679, 0, 0, 0, 1679, 1679, + 1679, 1679, 1679, 1680, 1680, 0, 1680, 1680, 1680, 1680, + 1680, 0, 1680, 1680, 1680, 1680, 1680, 1680, 1681, 1681, + + 0, 1681, 1681, 1681, 1681, 1681, 0, 1681, 1681, 1681, + 1681, 1681, 1681, 1685, 0, 0, 0, 1685, 0, 1685, + 1685, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, + 0, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, + 1687, 1688, 0, 0, 1688, 0, 0, 0, 1688, 0, + 1688, 1688, 1689, 1689, 1689, 1689, 1689, 0, 1689, 1689, + 0, 1689, 0, 0, 1689, 1689, 1689, 0, 1689, 0, + 0, 1689, 1690, 0, 0, 1690, 1690, 1690, 0, 1690, + 0, 1690, 1690, 1690, 0, 0, 1690, 1690, 1690, 1690, + 1690, 1691, 0, 1691, 0, 0, 0, 1691, 0, 1691, + + 1691, 1692, 1692, 0, 1692, 0, 0, 1692, 1692, 0, + 0, 1692, 1692, 1692, 1692, 1692, 1693, 1693, 0, 1693, + 1693, 0, 1693, 1693, 0, 1693, 1693, 0, 1693, 1693, + 1693, 1694, 1694, 0, 1694, 1694, 0, 1694, 1694, 0, + 1694, 1694, 1694, 1694, 1694, 1694, 1695, 1695, 0, 1695, + 1695, 0, 1695, 1695, 0, 1695, 1695, 1695, 1695, 1695, + 1695, 1696, 1696, 0, 1696, 1696, 0, 1696, 1696, 0, + 1696, 1696, 1696, 1696, 1696, 1696, 1697, 1697, 0, 1697, + 0, 0, 1697, 1697, 0, 0, 1697, 1697, 1697, 1697, + 1697, 1698, 1698, 0, 1698, 0, 0, 1698, 0, 0, + + 0, 1698, 1698, 1698, 1698, 1698, 1699, 1699, 0, 1699, + 0, 0, 1699, 0, 0, 0, 1699, 1699, 1699, 1699, + 1699, 1700, 1700, 0, 1700, 1700, 0, 1700, 1700, 0, + 1700, 1700, 1700, 1700, 1700, 1700, 1701, 1701, 0, 1701, + 1701, 0, 1701, 1701, 0, 1701, 1701, 1701, 1701, 1701, + 1701, 1702, 1702, 0, 1702, 0, 0, 1702, 0, 0, + 0, 1702, 1702, 1702, 1702, 1702, 1703, 1703, 0, 1703, + 0, 0, 1703, 0, 0, 0, 1703, 1703, 1703, 1703, + 1703, 1704, 1704, 0, 1704, 0, 0, 1704, 0, 0, + 0, 1704, 1704, 1704, 1704, 1704, 1705, 1705, 0, 1705, + + 0, 0, 1705, 0, 0, 0, 1705, 1705, 1705, 1705, + 1705, 1706, 1706, 0, 1706, 0, 0, 1706, 1706, 0, + 0, 1706, 1706, 1706, 1706, 1706, 1707, 1707, 0, 1707, + 1707, 0, 1707, 1707, 0, 1707, 1707, 1707, 1707, 1707, + 1707, 1708, 1708, 0, 1708, 1708, 0, 1708, 1708, 0, + 1708, 1708, 1708, 1708, 1708, 1708, 1709, 1709, 0, 1709, + 1709, 0, 1709, 1709, 0, 1709, 1709, 1709, 1709, 1709, + 1709, 1710, 1710, 0, 1710, 1710, 0, 1710, 1710, 0, + 1710, 1710, 1710, 1710, 1710, 1710, 1711, 1711, 0, 1711, + 0, 0, 1711, 1711, 0, 0, 1711, 0, 1711, 1711, + + 1711, 1712, 1712, 0, 1712, 0, 0, 1712, 0, 0, + 0, 1712, 1712, 1712, 1712, 1712, 1713, 1713, 0, 1713, + 1713, 0, 1713, 1713, 0, 1713, 1713, 1713, 1713, 1713, + 1713, 1714, 1714, 0, 1714, 0, 1714, 1714, 1714, 0, + 0, 1714, 1714, 1714, 1714, 1714, 1715, 1715, 0, 1715, + 1715, 1715, 1715, 1715, 0, 1715, 1715, 0, 1715, 1715, + 1715, 1716, 1716, 0, 1716, 1716, 1716, 1716, 1716, 0, + 1716, 1716, 1716, 1716, 1716, 1716, 1717, 1717, 0, 1717, + 1717, 1717, 1717, 1717, 0, 1717, 1717, 1717, 1717, 1717, + 1717, 1718, 1718, 0, 1718, 1718, 1718, 1718, 1718, 0, + + 1718, 1718, 1718, 1718, 1718, 1718, 1719, 1719, 0, 1719, + 0, 1719, 1719, 1719, 0, 0, 1719, 1719, 1719, 1719, + 1719, 1720, 1720, 0, 1720, 0, 1720, 1720, 0, 0, + 0, 1720, 1720, 1720, 1720, 1720, 1721, 1721, 0, 1721, + 0, 1721, 1721, 0, 0, 0, 1721, 1721, 1721, 1721, + 1721, 1722, 1722, 0, 1722, 1722, 1722, 1722, 1722, 0, + 1722, 1722, 1722, 1722, 1722, 1722, 1723, 1723, 0, 1723, + 1723, 1723, 1723, 1723, 0, 1723, 1723, 1723, 1723, 1723, + 1723, 1724, 1724, 0, 1724, 0, 1724, 1724, 0, 0, + 0, 1724, 1724, 1724, 1724, 1724, 1725, 1725, 0, 1725, + + 0, 1725, 1725, 0, 0, 0, 1725, 1725, 1725, 1725, + 1725, 1726, 1726, 0, 1726, 0, 1726, 1726, 0, 0, + 0, 1726, 1726, 1726, 1726, 1726, 1727, 1727, 0, 1727, + 0, 1727, 1727, 0, 0, 0, 1727, 1727, 1727, 1727, + 1727, 1728, 1728, 0, 1728, 0, 1728, 1728, 1728, 0, + 0, 1728, 1728, 1728, 1728, 1728, 1729, 1729, 0, 1729, + 1729, 1729, 1729, 1729, 0, 1729, 1729, 1729, 1729, 1729, + 1729, 1730, 1730, 0, 1730, 1730, 1730, 1730, 1730, 0, + 1730, 1730, 1730, 1730, 1730, 1730, 1731, 1731, 0, 1731, + 1731, 1731, 1731, 1731, 0, 1731, 1731, 1731, 1731, 1731, + + 1731, 1732, 1732, 0, 1732, 1732, 1732, 1732, 1732, 0, + 1732, 1732, 1732, 1732, 1732, 1732, 1733, 1733, 0, 1733, + 0, 1733, 1733, 1733, 0, 0, 1733, 0, 1733, 1733, + 1733, 1734, 1734, 0, 1734, 0, 1734, 1734, 0, 0, + 0, 1734, 1734, 1734, 1734, 1734, 1735, 1735, 0, 1735, + 1735, 1735, 1735, 1735, 0, 1735, 1735, 1735, 1735, 1735, + 1735, 1737, 0, 0, 0, 1737, 0, 1737, 1737, 1738, + 1738, 1738, 1738, 1738, 0, 1738, 1738, 0, 1738, 0, + 0, 1738, 1738, 1738, 0, 1738, 0, 1738, 1738, 1739, + 1739, 1739, 1739, 1739, 0, 1739, 1739, 0, 1739, 0, + + 0, 1739, 1739, 1739, 0, 1739, 1739, 0, 1739, 1740, + 1740, 0, 1740, 0, 1740, 1740, 1740, 0, 0, 1740, + 1740, 1740, 1740, 1740, 1741, 0, 1741, 0, 0, 0, + 1741, 0, 1741, 1741, 1742, 1742, 0, 1742, 1742, 0, + 1742, 1742, 0, 1742, 1742, 1742, 1742, 1742, 1742, 1743, + 1743, 0, 1743, 1743, 0, 1743, 1743, 0, 1743, 1743, + 1743, 1743, 1743, 1743, 1744, 1744, 0, 1744, 0, 0, + 1744, 0, 0, 0, 1744, 1744, 1744, 1744, 1744, 1745, + 1745, 0, 1745, 0, 0, 1745, 0, 0, 0, 1745, + 1745, 1745, 1745, 1745, 1746, 1746, 0, 1746, 0, 0, + + 1746, 0, 0, 0, 1746, 1746, 1746, 1746, 1746, 1747, + 1747, 0, 1747, 0, 0, 1747, 0, 0, 0, 1747, + 1747, 1747, 1747, 1747, 1748, 1748, 0, 1748, 0, 0, + 1748, 1748, 0, 0, 1748, 1748, 1748, 1748, 1748, 1749, + 1749, 0, 1749, 1749, 0, 1749, 1749, 0, 1749, 1749, + 1749, 1749, 1749, 1749, 1750, 1750, 0, 1750, 1750, 0, + 1750, 1750, 0, 1750, 1750, 1750, 1750, 1750, 1750, 1751, + 1751, 0, 1751, 1751, 0, 1751, 1751, 0, 1751, 1751, + 1751, 1751, 1751, 1751, 1752, 1752, 0, 1752, 0, 0, + 1752, 1752, 0, 0, 1752, 1752, 1752, 1752, 1752, 1753, + + 1753, 0, 1753, 1753, 0, 1753, 1753, 0, 1753, 1753, + 1753, 1753, 1753, 1753, 1754, 1754, 0, 1754, 1754, 0, + 1754, 1754, 0, 1754, 1754, 1754, 1754, 1754, 1754, 1755, + 1755, 0, 1755, 1755, 0, 1755, 1755, 0, 1755, 1755, + 1755, 1755, 1755, 1755, 1756, 1756, 0, 1756, 1756, 0, + 1756, 1756, 0, 1756, 1756, 1756, 1756, 1756, 1756, 1757, + 1757, 0, 1757, 0, 0, 1757, 1757, 0, 0, 1757, + 1757, 1757, 1757, 1757, 1758, 1758, 0, 1758, 0, 0, + 1758, 0, 0, 0, 1758, 1758, 1758, 1758, 1758, 1759, + 1759, 0, 1759, 1759, 1759, 1759, 1759, 0, 1759, 1759, + + 1759, 1759, 1759, 1759, 1760, 1760, 0, 1760, 1760, 1760, + 1760, 1760, 0, 1760, 1760, 1760, 1760, 1760, 1760, 1761, + 1761, 0, 1761, 0, 1761, 1761, 0, 0, 0, 1761, + 1761, 1761, 1761, 1761, 1762, 1762, 0, 1762, 0, 1762, + 1762, 0, 0, 0, 1762, 1762, 1762, 1762, 1762, 1763, + 1763, 0, 1763, 0, 1763, 1763, 0, 0, 0, 1763, + 1763, 1763, 1763, 1763, 1764, 1764, 0, 1764, 0, 1764, + 1764, 0, 0, 0, 1764, 1764, 1764, 1764, 1764, 1765, + 1765, 0, 1765, 0, 1765, 1765, 1765, 0, 0, 1765, + 1765, 1765, 1765, 1765, 1766, 1766, 0, 1766, 1766, 1766, + + 1766, 1766, 0, 1766, 1766, 1766, 1766, 1766, 1766, 1767, + 1767, 0, 1767, 1767, 1767, 1767, 1767, 0, 1767, 1767, + 1767, 1767, 1767, 1767, 1768, 1768, 0, 1768, 1768, 1768, + 1768, 1768, 0, 1768, 1768, 1768, 1768, 1768, 1768, 1769, + 1769, 0, 1769, 0, 1769, 1769, 1769, 0, 0, 1769, + 1769, 1769, 1769, 1769, 1770, 1770, 0, 1770, 1770, 1770, + 1770, 1770, 0, 1770, 1770, 1770, 1770, 1770, 1770, 1771, + 1771, 0, 1771, 1771, 1771, 1771, 1771, 0, 1771, 1771, + 1771, 1771, 1771, 1771, 1772, 1772, 0, 1772, 1772, 1772, + 1772, 1772, 0, 1772, 1772, 1772, 1772, 1772, 1772, 1773, + + 1773, 0, 1773, 1773, 1773, 1773, 1773, 0, 1773, 1773, + 1773, 1773, 1773, 1773, 1774, 1774, 0, 1774, 0, 1774, + 1774, 1774, 0, 0, 1774, 1774, 1774, 1774, 1774, 1775, + 1775, 0, 1775, 0, 1775, 1775, 0, 0, 0, 1775, + 1775, 1775, 1775, 1775, 1776, 1776, 1776, 1776, 1776, 0, + 1776, 1776, 0, 1776, 0, 0, 1776, 1776, 1776, 0, + 1776, 1776, 0, 1776, 1777, 1777, 1777, 1777, 1777, 0, + 1777, 1777, 0, 1777, 0, 0, 1777, 1777, 1777, 0, + 1777, 0, 0, 1777, 1778, 1778, 1778, 1778, 1778, 0, + 1778, 1778, 0, 1778, 0, 0, 1778, 1778, 1778, 0, + + 1778, 0, 0, 1778, 1779, 1779, 1779, 1779, 1779, 0, + 1779, 1779, 0, 1779, 0, 0, 1779, 1779, 1779, 0, + 1779, 0, 0, 1779, 1780, 1780, 1780, 1780, 1780, 1780, + 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, + 1780, 1780, 1780, 1780, 1781, 1781, 0, 1781, 1781, 0, + 1781, 1781, 0, 1781, 1781, 1781, 1781, 1781, 1781, 1782, + 1782, 0, 1782, 1782, 0, 1782, 1782, 0, 1782, 1782, + 1782, 1782, 1782, 1782, 1783, 1783, 0, 1783, 1783, 0, + 1783, 1783, 0, 1783, 1783, 1783, 1783, 1783, 1783, 1784, + 1784, 0, 1784, 1784, 0, 1784, 1784, 0, 1784, 1784, + + 1784, 1784, 1784, 1784, 1785, 1785, 0, 1785, 0, 0, + 1785, 1785, 0, 0, 1785, 1785, 1785, 1785, 1785, 1786, + 1786, 0, 1786, 1786, 0, 1786, 1786, 0, 1786, 1786, + 1786, 1786, 1786, 1786, 1787, 1787, 0, 1787, 1787, 0, + 1787, 1787, 0, 1787, 1787, 1787, 1787, 1787, 1787, 1788, + 1788, 0, 1788, 1788, 0, 1788, 1788, 0, 1788, 1788, + 1788, 1788, 1788, 1788, 1789, 1789, 0, 1789, 0, 0, + 1789, 1789, 0, 0, 1789, 1789, 1789, 1789, 1789, 1790, + 1790, 0, 1790, 0, 0, 1790, 0, 0, 0, 1790, + 1790, 1790, 1790, 1790, 1791, 1791, 0, 1791, 0, 0, + + 1791, 0, 0, 0, 1791, 1791, 1791, 1791, 1791, 1792, + 1792, 0, 1792, 1792, 1792, 1792, 1792, 0, 1792, 1792, + 1792, 1792, 1792, 1792, 1793, 1793, 0, 1793, 1793, 1793, + 1793, 1793, 0, 1793, 1793, 1793, 1793, 1793, 1793, 1794, + 1794, 0, 1794, 1794, 1794, 1794, 1794, 0, 1794, 1794, + 1794, 1794, 1794, 1794, 1795, 1795, 0, 1795, 1795, 1795, + 1795, 1795, 0, 1795, 1795, 1795, 1795, 1795, 1795, 1796, + 1796, 0, 1796, 0, 1796, 1796, 1796, 0, 0, 1796, + 1796, 1796, 1796, 1796, 1797, 1797, 0, 1797, 1797, 1797, + 1797, 1797, 0, 1797, 1797, 1797, 1797, 1797, 1797, 1798, + + 1798, 0, 1798, 1798, 1798, 1798, 1798, 0, 1798, 1798, + 1798, 1798, 1798, 1798, 1799, 1799, 0, 1799, 1799, 1799, + 1799, 1799, 0, 1799, 1799, 1799, 1799, 1799, 1799, 1800, + 1800, 0, 1800, 0, 1800, 1800, 1800, 0, 0, 1800, + 1800, 1800, 1800, 1800, 1801, 1801, 0, 1801, 0, 1801, + 1801, 0, 0, 0, 1801, 1801, 1801, 1801, 1801, 1802, + 1802, 0, 1802, 0, 1802, 1802, 0, 0, 0, 1802, + 1802, 1802, 1802, 1802, 1803, 1803, 1803, 1803, 1803, 0, + 1803, 1803, 0, 1803, 0, 0, 1803, 1803, 1803, 0, + 1803, 0, 0, 1803, 1804, 1804, 1804, 1804, 1804, 0, + + 1804, 1804, 0, 1804, 0, 0, 1804, 1804, 1804, 0, + 1804, 0, 0, 1804, 1805, 1805, 1805, 1805, 1805, 0, + 1805, 1805, 0, 1805, 0, 0, 1805, 1805, 1805, 0, + 1805, 0, 0, 1805, 1806, 1806, 0, 1806, 1806, 0, + 1806, 1806, 0, 1806, 1806, 1806, 1806, 1806, 1806, 1807, + 1807, 0, 1807, 1807, 0, 1807, 1807, 0, 1807, 1807, + 1807, 1807, 1807, 1807, 1808, 1808, 0, 1808, 1808, 0, + 1808, 1808, 0, 1808, 1808, 1808, 1808, 1808, 1808, 1809, + 1809, 1809, 1809, 1809, 0, 1809, 1809, 0, 1809, 0, + 0, 1809, 1809, 1809, 0, 1809, 0, 0, 1809, 1810, + + 1810, 1810, 1810, 1810, 0, 1810, 1810, 0, 1810, 0, + 0, 1810, 1810, 1810, 0, 1810, 0, 0, 1810, 1811, + 1811, 1811, 1811, 1811, 0, 1811, 1811, 0, 1811, 0, + 0, 1811, 1811, 1811, 0, 1811, 0, 0, 1811, 1812, + 1812, 1812, 1812, 1812, 0, 1812, 1812, 0, 1812, 0, + 0, 1812, 1812, 1812, 0, 1812, 0, 0, 1812, 1813, + 1813, 1813, 1813, 1813, 0, 1813, 1813, 0, 1813, 0, + 0, 1813, 1813, 1813, 0, 1813, 0, 0, 1813, 1814, + 1814, 1814, 1814, 1814, 0, 1814, 1814, 0, 1814, 0, + 0, 1814, 1814, 1814, 0, 1814, 0, 0, 1814, 1815, + + 1815, 1815, 1815, 1815, 0, 1815, 1815, 0, 1815, 0, + 0, 1815, 1815, 1815, 0, 1815, 0, 0, 1815, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, + 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584 + } ; + +#define YY_TRAILING_MASK 0x2000 +#define YY_TRAILING_HEAD_MASK 0x4000 +#define REJECT \ +{ \ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ \ +yy_cp = yyg->yy_full_match; /* restore poss. backed-over text */ \ +yyg->yy_lp = yyg->yy_full_lp; /* restore orig. accepting pos. */ \ +yyg->yy_state_ptr = yyg->yy_full_state; /* restore orig. state */ \ +yy_current_state = *yyg->yy_state_ptr; /* restore curr. state */ \ +++yyg->yy_lp; \ +goto find_rule; \ +} + +#define yymore() yymore_used_but_not_detected +#define YY_MORE_ADJ 0 +#define YY_RESTORE_YY_MORE_OFFSET +#line 1 "parser.l" +/* Copyright 2009-2020 + * Kaz Kylheku <kaz@kylheku.com> + * Vancouver, Canada + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +#line 29 "parser.l" + +#include <stdio.h> +#include <string.h> +#include <stdarg.h> +#include <stdlib.h> +#include <limits.h> +#include <wchar.h> +#include <signal.h> +#include "config.h" +#include "lib.h" +#include "gc.h" +#include "stream.h" +#include "utf8.h" +#include "signal.h" +#include "unwind.h" +#include "hash.h" +#include "y.tab.h" +#include "parser.h" +#include "txr.h" + +#define YY_INPUT(buf, result, max_size) \ + do { \ + val self = lit("parser"); \ + val n = get_bytes(self, yyextra->stream, \ + coerce(mem_t *, buf), max_size); \ + result = c_num(n, self); \ + } while (0) + +#define YY_DECL \ + static int yylex_impl(YYSTYPE *yylval_param, yyscan_t yyscanner) + +int opt_loglevel = 1; /* 0 - quiet; 1 - normal; 2 - verbose */ + +val form_to_ln_hash; + +static int directive_tok(scanner_t *yyg, int tok, int state); + +#define FLEX_NUM_VERSION 10000*YY_FLEX_MAJOR_VERSION + \ + 100*YY_FLEX_MINOR_VERSION + \ + YY_FLEX_SUBMINOR_VERSION + +#if FLEX_NUM_VERSION < 20509 +int yylex_destroy(void) +{ + return 0; +} +#endif + +/* Missing prototypes not generated by flex. */ +int yyget_column(yyscan_t); +void yyset_column (int column_no, yyscan_t yyscanner); + +/* The following function is all that libflex provides. + By providing it here, we eliminate the need to link libflex. */ +#define YY_SKIP_YYWRAP +INLINE int yywrap(yyscan_t scanner) +{ + (void) scanner; + return 1; +} + +void yyerror(scanner_t *scanner, parser_t *parser, const char *s) +{ + yyerrorf(scanner, lit("~a"), string_utf8(s), nao); + if (parser->prepared_msg) { + yyerrorf(scanner, lit("~a"), parser->prepared_msg, nao); + parser->prepared_msg = nil; + } +} + +void yyerrorf(scanner_t *scanner, val fmt, ...) +{ + parser_t *parser = yyget_extra(scanner); + + if (opt_loglevel >= 1) { + va_list vl; + va_start (vl, fmt); + if (opt_compat && opt_compat <= 114) + format(std_error, lit("~a: (~a:~d): "), prog_string, + parser->name, num(parser->lineno), nao); + else + format(std_error, lit("~a:~d: "), + parser->name, num(parser->lineno), nao); + + vformat(std_error, fmt, vl); + put_char(chr('\n'), std_error); + va_end (vl); + } + parser->errors++; +} + +static void yyerrprepf(scanner_t *scanner, val fmt, ...) +{ + parser_t *parser = yyget_extra(scanner); + + if (opt_loglevel >= 1) { + va_list vl; + va_start (vl, fmt); + set(mkloc(parser->prepared_msg, parser->parser), + vformat_to_string(fmt, vl)); + va_end (vl); + } +} + +static void out_of_range_float(scanner_t *scanner, val tok) +{ + yyerrorf(scanner, lit("out-of-range floating-point literal: ~a"), + tok, nao); +} + +static wchar_t char_esc(int letter) +{ + switch (letter) { + case ' ': return L' '; + case 'a': return L'\a'; + case 'b': return L'\b'; + case 't': return L'\t'; + case 'n': return L'\n'; + case 'v': return L'\v'; + case 'f': return L'\f'; + case 'r': return L'\r'; + case 'e': return 27; + case '"': return L'"'; + case '\'': return L'\''; + case '`': return L'`'; + case '/': return L'/'; + case '@': return L'@'; + case '\\': return L'\\'; + } + + internal_error("unhandled escape character"); +} + +static wchar_t num_esc(scanner_t *scn, char *num) +{ + long val = 0; + + if (num[0] == 'x') { + if (strlen(num) > 7) + yyerror(scn, yyget_extra(scn), "too many digits in hex character escape"); + else + val = strtol(num + 1, 0, 16); + } else { + if (num[0] == 'o') + num++; + if (strlen(num) > 8) + yyerror(scn, yyget_extra(scn), "too many digits in octal character escape"); + else + val = strtol(num, 0, 8); + } + + if (val < 0 || val > 0x10FFFF || convert(wchar_t, val) != val) { + yyerror(scn, yyget_extra(scn), "numeric character escape out of range"); + val = 0; + } + + return val; +} + +static wchar_t *unicode_ident(scanner_t *scn, const char *lex) +{ + wchar_t *wlex = utf8_dup_from(lex), *ptr = wlex, wch; + + while ((wch = *ptr++)) { + if (wch < 0x1680 || (wch >= 0x3000 && wch < 0xdc00)) + continue; + + if ((wch >= 0xdc00 && wch <= 0xdcff) || + (wch >= 0xd800 && wch <= 0xdbff) || +#if FULL_UNICODE + (wch >= 0xf0000 && wch <= 0xffffd) || + (wch >= 0x100000 && wch <= 0x10fffd) || +#endif + (wch >= 0xe000 && wch <= 0xf8ff) || + (wch == 0xfffe) || + (wch == 0xffff)) + { + yyerror(scn, yyget_extra(scn), + "disallowed Unicode character in identifier"); + break; + } + + switch (wch) { + case 0x1680: case 0x180e: case 0x2000: case 0x2001: case 0x2002: + case 0x2003: case 0x2004: case 0x2005: case 0x2006: case 0x2007: + case 0x2008: case 0x2009: case 0x200a: case 0x2028: case 0x2029: + case 0x205f: case 0x3000: + yyerror(scn, yyget_extra(scn), + "Unicode space occurs in identifier"); + break; + default: + continue; + } + + break; + } + + return wlex; +} + +#line 3697 "lex.yy.c" +#define YY_NO_INPUT 1 + +#line 3700 "lex.yy.c" + +#define INITIAL 0 +#define SPECIAL 1 +#define BRACED 2 +#define NESTED 3 +#define REGEX 4 +#define SREGEX 5 +#define STRLIT 6 +#define CHRLIT 7 +#define QSILIT 8 +#define QSPECIAL 9 +#define WLIT 10 +#define QWLIT 11 +#define BUFLIT 12 + +#ifndef YY_NO_UNISTD_H +/* Special case for "unistd.h", since it is non-ANSI. We include it way + * down here because we want the user's section 1 to have been scanned first. + * The user has a chance to override it with an option. + */ +#include <unistd.h> +#endif + +#define YY_EXTRA_TYPE parser_t * + +/* Holds the entire state of the reentrant scanner. */ +struct yyguts_t + { + + /* User-defined. Not touched by flex. */ + YY_EXTRA_TYPE yyextra_r; + + /* The rest are the same as the globals declared in the non-reentrant scanner. */ + FILE *yyin_r, *yyout_r; + size_t yy_buffer_stack_top; /**< index of top of stack. */ + size_t yy_buffer_stack_max; /**< capacity of stack. */ + YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */ + char yy_hold_char; + int yy_n_chars; + int yyleng_r; + char *yy_c_buf_p; + int yy_init; + int yy_start; + int yy_did_buffer_switch_on_eof; + int yy_start_stack_ptr; + int yy_start_stack_depth; + int *yy_start_stack; + yy_state_type yy_last_accepting_state; + char* yy_last_accepting_cpos; + + int yylineno_r; + int yy_flex_debug_r; + + yy_state_type *yy_state_buf; + yy_state_type *yy_state_ptr; + char *yy_full_match; + int yy_lp; + + /* These are only needed for trailing context rules, + * but there's no conditional variable for that yet. */ + int yy_looking_for_trail_begin; + int yy_full_lp; + int *yy_full_state; + + char *yytext_r; + int yy_more_flag; + int yy_more_len; + + YYSTYPE * yylval_r; + + }; /* end struct yyguts_t */ + +static int yy_init_globals ( yyscan_t yyscanner ); + + /* This must go here because YYSTYPE and YYLTYPE are included + * from bison output in section 1.*/ + # define yylval yyg->yylval_r + +int yylex_init (yyscan_t* scanner); + +int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); + +/* Accessor methods to globals. + These are made visible to non-reentrant scanners for convenience. */ + +int yylex_destroy ( yyscan_t yyscanner ); + +int yyget_debug ( yyscan_t yyscanner ); + +void yyset_debug ( int debug_flag , yyscan_t yyscanner ); + +YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); + +void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); + +FILE *yyget_in ( yyscan_t yyscanner ); + +void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); + +FILE *yyget_out ( yyscan_t yyscanner ); + +void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); + + int yyget_leng ( yyscan_t yyscanner ); + +char *yyget_text ( yyscan_t yyscanner ); + +int yyget_lineno ( yyscan_t yyscanner ); + +void yyset_lineno ( int _line_number , yyscan_t yyscanner ); + +int yyget_column ( yyscan_t yyscanner ); + +void yyset_column ( int _column_no , yyscan_t yyscanner ); + +YYSTYPE * yyget_lval ( yyscan_t yyscanner ); + +void yyset_lval ( YYSTYPE * yylval_param , yyscan_t yyscanner ); + +/* Macros after this point can all be overridden by user definitions in + * section 1. + */ + +#ifndef YY_SKIP_YYWRAP +#ifdef __cplusplus +extern "C" int yywrap ( yyscan_t yyscanner ); +#else +extern int yywrap ( yyscan_t yyscanner ); +#endif +#endif + +#ifndef YY_NO_UNPUT + + static void yyunput ( int c, char *buf_ptr , yyscan_t yyscanner); + +#endif + +#ifndef yytext_ptr +static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); +#endif + +#ifdef YY_NEED_STRLEN +static int yy_flex_strlen ( const char * , yyscan_t yyscanner); +#endif + +#ifndef YY_NO_INPUT +#ifdef __cplusplus +static int yyinput ( yyscan_t yyscanner ); +#else +static int input ( yyscan_t yyscanner ); +#endif + +#endif + + static void yy_push_state ( int _new_state , yyscan_t yyscanner); + + static void yy_pop_state ( yyscan_t yyscanner ); + + static int yy_top_state ( yyscan_t yyscanner ); + +/* Amount of stuff to slurp up with each read. */ +#ifndef YY_READ_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k */ +#define YY_READ_BUF_SIZE 16384 +#else +#define YY_READ_BUF_SIZE 8192 +#endif /* __ia64__ */ +#endif + +/* Copy whatever the last rule matched to the standard output. */ +#ifndef ECHO +/* This used to be an fputs(), but since the string might contain NUL's, + * we now use fwrite(). + */ +#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) +#endif + +/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, + * is returned in "result". + */ +#ifndef YY_INPUT +#define YY_INPUT(buf,result,max_size) \ + if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ + { \ + int c = '*'; \ + int n; \ + for ( n = 0; n < max_size && \ + (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ + buf[n] = (char) c; \ + if ( c == '\n' ) \ + buf[n++] = (char) c; \ + if ( c == EOF && ferror( yyin ) ) \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + result = n; \ + } \ + else \ + { \ + errno=0; \ + while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ + { \ + if( errno != EINTR) \ + { \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + break; \ + } \ + errno=0; \ + clearerr(yyin); \ + } \ + }\ +\ + +#endif + +/* No semi-colon after return; correct usage is to write "yyterminate();" - + * we don't want an extra ';' after the "return" because that will cause + * some compilers to complain about unreachable statements. + */ +#ifndef yyterminate +#define yyterminate() return YY_NULL +#endif + +/* Number of entries by which start-condition stack grows. */ +#ifndef YY_START_STACK_INCR +#define YY_START_STACK_INCR 25 +#endif + +/* Report a fatal error. */ +#ifndef YY_FATAL_ERROR +#define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner) +#endif + +/* end tables serialization structures and prototypes */ + +/* Default declaration of generated scanner - a define so the user can + * easily add parameters. + */ +#ifndef YY_DECL +#define YY_DECL_IS_OURS 1 + +extern int yylex \ + (YYSTYPE * yylval_param , yyscan_t yyscanner); + +#define YY_DECL int yylex \ + (YYSTYPE * yylval_param , yyscan_t yyscanner) +#endif /* !YY_DECL */ + +/* Code executed at the beginning of each rule, after yytext and yyleng + * have been set up. + */ +#ifndef YY_USER_ACTION +#define YY_USER_ACTION +#endif + +/* Code executed at the end of each rule. */ +#ifndef YY_BREAK +#define YY_BREAK /*LINTED*/break; +#endif + +#define YY_RULE_SETUP \ + if ( yyleng > 0 ) \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \ + (yytext[yyleng - 1] == '\n'); \ + YY_USER_ACTION + +/** The main scanner function which does all the work. + */ +YY_DECL +{ + yy_state_type yy_current_state; + char *yy_cp, *yy_bp; + int yy_act; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + yylval = yylval_param; + + if ( !yyg->yy_init ) + { + yyg->yy_init = 1; + +#ifdef YY_USER_INIT + YY_USER_INIT; +#endif + + /* Create the reject buffer large enough to save one state per allowed character. */ + if ( ! yyg->yy_state_buf ) + yyg->yy_state_buf = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE , yyscanner); + if ( ! yyg->yy_state_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); + + if ( ! yyg->yy_start ) + yyg->yy_start = 1; /* first start state */ + + if ( ! yyin ) + yyin = stdin; + + if ( ! yyout ) + yyout = stdout; + + if ( ! YY_CURRENT_BUFFER ) { + yyensure_buffer_stack (yyscanner); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); + } + + yy_load_buffer_state( yyscanner ); + } + + { +#line 284 "parser.l" + + +#line 4013 "lex.yy.c" + + while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ + { + yy_cp = yyg->yy_c_buf_p; + + /* Support of yytext. */ + *yy_cp = yyg->yy_hold_char; + + /* yy_bp points to the position in yy_ch_buf of the start of + * the current run. + */ + yy_bp = yy_cp; + + yy_current_state = yyg->yy_start; + yy_current_state += YY_AT_BOL(); + + yyg->yy_state_ptr = yyg->yy_state_buf; + *yyg->yy_state_ptr++ = yy_current_state; + +yy_match: + do + { + YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 1585 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + *yyg->yy_state_ptr++ = yy_current_state; + ++yy_cp; + } + while ( yy_current_state != 1584 ); + +yy_find_action: + yy_current_state = *--yyg->yy_state_ptr; + yyg->yy_lp = yy_accept[yy_current_state]; +find_rule: /* we branch to this label when backing up */ + for ( ; ; ) /* until we find what rule we matched */ + { + if ( yyg->yy_lp && yyg->yy_lp < yy_accept[yy_current_state + 1] ) + { + yy_act = yy_acclist[yyg->yy_lp]; + if ( yy_act & YY_TRAILING_HEAD_MASK || + yyg->yy_looking_for_trail_begin ) + { + if ( yy_act == yyg->yy_looking_for_trail_begin ) + { + yyg->yy_looking_for_trail_begin = 0; + yy_act &= ~YY_TRAILING_HEAD_MASK; + break; + } + } + else if ( yy_act & YY_TRAILING_MASK ) + { + yyg->yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK; + yyg->yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK; + } + else + { + yyg->yy_full_match = yy_cp; + yyg->yy_full_state = yyg->yy_state_ptr; + yyg->yy_full_lp = yyg->yy_lp; + break; + } + ++yyg->yy_lp; + goto find_rule; + } + --yy_cp; + yy_current_state = *--yyg->yy_state_ptr; + yyg->yy_lp = yy_accept[yy_current_state]; + } + + YY_DO_BEFORE_ACTION; + +do_action: /* This label is used only to access EOF actions. */ + + switch ( yy_act ) + { /* beginning of action switch */ +case 1: +YY_RULE_SETUP +#line 286 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext)); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + yylval->val = int_str(str, num(10)); + return NUMBER; +} + YY_BREAK +case 2: +YY_RULE_SETUP +#line 298 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext + 2)); + int base; + + switch (yytext[1]) { + case 'x': base = 16; break; + case 'o': base = 8; break; + case 'b': default: base = 2; break; + } + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + yylval->val = int_str(str, num_fast(base)); + return NUMBER; +} + YY_BREAK +case 3: +YY_RULE_SETUP +#line 317 "parser.l" +{ + int base = 0; + val str = string_own(utf8_dup_from(yytext + 2)); + + switch (yytext[1]) { + case 'x': base = 16; break; + case 'o': base = 8; break; + case 'b': default: base = 2; break; + } + + yyerrorf(yyg, lit("trailing junk in numeric literal: ~a~a~a"), + chr(yytext[0]), chr(yytext[1]), str, nao); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + yylval->val = int_str(str, num_fast(base)); + return NUMBER; +} + YY_BREAK +case 4: +YY_RULE_SETUP +#line 339 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext)); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + if ((yylval->val = flo_str(str)) == nil) + out_of_range_float(yyg, str); + + return NUMBER; +} + YY_BREAK +case 5: +#line 354 "parser.l" +case 6: +#line 355 "parser.l" +case 7: +YY_RULE_SETUP +#line 355 "parser.l" +{ + val str = string_utf8(yytext); + + yyerrorf(yyg, lit("trailing junk in floating-point literal: ~a"), str, nao); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + if ((yylval->val = flo_str(str)) == nil) + out_of_range_float(yyg, str); + + return NUMBER; +} + YY_BREAK +case 8: +/* rule 8 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 371 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext)); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + if ((yylval->val = flo_str(str)) == nil) + out_of_range_float(yyg, str); + + return NUMBER; +} + YY_BREAK +case 9: +#line 386 "parser.l" +case 10: +YY_RULE_SETUP +#line 386 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext + 1)); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + yylval->val = int_str(str, num(10)); + return METANUM; +} + YY_BREAK +case 11: +#line 398 "parser.l" +case 12: +YY_RULE_SETUP +#line 398 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext + 3)); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + yylval->val = int_str(str, num(16)); + return METANUM; +} + YY_BREAK +case 13: +#line 410 "parser.l" +case 14: +YY_RULE_SETUP +#line 410 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext + 3)); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + yylval->val = int_str(str, num(8)); + return METANUM; +} + YY_BREAK +case 15: +YY_RULE_SETUP +#line 421 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext + 3)); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + yylval->val = int_str(str, num(2)); + return METANUM; +} + YY_BREAK +case 16: +#line 433 "parser.l" +case 17: +#line 434 "parser.l" +case 18: +YY_RULE_SETUP +#line 434 "parser.l" +{ + yyerrorf(yyg, lit("cramped floating-point literal: " + "space needed between ~a and dot."), + string_own(utf8_dup_from(yytext)), + nao); + + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + yylval->lexeme = unicode_ident(yyg, yytext); + return SYMTOK; +} + YY_BREAK +case 19: +#line 451 "parser.l" +case 20: +#line 452 "parser.l" +case 21: +YY_RULE_SETUP +#line 452 "parser.l" +{ + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + yylval->lexeme = unicode_ident(yyg, yytext); + return SYMTOK; +} + YY_BREAK +case 22: +#line 463 "parser.l" +case 23: +YY_RULE_SETUP +#line 463 "parser.l" +{ + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + + yyerrorf(yyg, lit("bad token: ~a"), + string_own(utf8_dup_from(yytext)), + nao); + yylval->lexeme = unicode_ident(yyg, yytext); + return SYMTOK; +} + YY_BREAK +case 24: +YY_RULE_SETUP +#line 476 "parser.l" +{ + return directive_tok(yyg, ALL, 0); +} + YY_BREAK +case 25: +/* rule 25 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 480 "parser.l" +{ + return directive_tok(yyg, SOME, NESTED); +} + YY_BREAK +case 26: +YY_RULE_SETUP +#line 484 "parser.l" +{ + return directive_tok(yyg, NONE, 0); +} + YY_BREAK +case 27: +YY_RULE_SETUP +#line 488 "parser.l" +{ + return directive_tok(yyg, MAYBE, 0); +} + YY_BREAK +case 28: +YY_RULE_SETUP +#line 492 "parser.l" +{ + return directive_tok(yyg, CASES, 0); +} + YY_BREAK +case 29: +/* rule 29 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 496 "parser.l" +{ + return directive_tok(yyg, BLOCK, NESTED); +} + YY_BREAK +case 30: +/* rule 30 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 500 "parser.l" +{ + return directive_tok(yyg, CHOOSE, NESTED); +} + YY_BREAK +case 31: +/* rule 31 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 504 "parser.l" +{ + return directive_tok(yyg, GATHER, NESTED); +} + YY_BREAK +case 32: +YY_RULE_SETUP +#line 508 "parser.l" +{ + return directive_tok(yyg, AND, 0); +} + YY_BREAK +case 33: +YY_RULE_SETUP +#line 512 "parser.l" +{ + return directive_tok(yyg, OR, 0); +} + YY_BREAK +case 34: +YY_RULE_SETUP +#line 516 "parser.l" +{ + return directive_tok(yyg, END, 0); +} + YY_BREAK +case 35: +/* rule 35 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 520 "parser.l" +{ + return directive_tok(yyg, COLLECT, NESTED); +} + YY_BREAK +case 36: +/* rule 36 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 524 "parser.l" +{ + return directive_tok(yyg, COLL, NESTED); +} + YY_BREAK +case 37: +/* rule 37 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 528 "parser.l" +{ + return directive_tok(yyg, UNTIL, NESTED); +} + YY_BREAK +case 38: +/* rule 38 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 532 "parser.l" +{ + return directive_tok(yyg, OUTPUT, NESTED); +} + YY_BREAK +case 39: +/* rule 39 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 536 "parser.l" +{ + return directive_tok(yyg, REPEAT, NESTED); +} + YY_BREAK +case 40: +/* rule 40 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 540 "parser.l" +{ + return directive_tok(yyg, REP, NESTED); +} + YY_BREAK +case 41: +YY_RULE_SETUP +#line 544 "parser.l" +{ + return directive_tok(yyg, SINGLE, 0); +} + YY_BREAK +case 42: +YY_RULE_SETUP +#line 548 "parser.l" +{ + return directive_tok(yyg, FIRST, 0); +} + YY_BREAK +case 43: +/* rule 43 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 552 "parser.l" +{ + return directive_tok(yyg, LAST, NESTED); +} + YY_BREAK +case 44: +YY_RULE_SETUP +#line 556 "parser.l" +{ + return directive_tok(yyg, EMPTY, 0); +} + YY_BREAK +case 45: +/* rule 45 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 560 "parser.l" +{ + return directive_tok(yyg, MOD, NESTED); +} + YY_BREAK +case 46: +/* rule 46 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 564 "parser.l" +{ + return directive_tok(yyg, MODLAST, NESTED); +} + YY_BREAK +case 47: +/* rule 47 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 568 "parser.l" +{ + return directive_tok(yyg, DEFINE, NESTED); +} + YY_BREAK +case 48: +YY_RULE_SETUP +#line 572 "parser.l" +{ + return directive_tok(yyg, TRY, 0); +} + YY_BREAK +case 49: +/* rule 49 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 576 "parser.l" +{ + return directive_tok(yyg, CATCH, NESTED); +} + YY_BREAK +case 50: +YY_RULE_SETUP +#line 580 "parser.l" +{ + return directive_tok(yyg, FINALLY, 0); +} + YY_BREAK +case 51: +/* rule 51 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 584 "parser.l" +{ + return directive_tok(yyg, IF, NESTED); +} + YY_BREAK +case 52: +/* rule 52 can match eol */ +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +YY_LINENO_REWIND_TO(yy_cp - 1); +yyg->yy_c_buf_p = yy_cp -= 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 588 "parser.l" +{ + return directive_tok(yyg, ELIF, NESTED); +} + YY_BREAK +case 53: +YY_RULE_SETUP +#line 592 "parser.l" +{ + return directive_tok(yyg, ELSE, 0); +} + YY_BREAK +case 54: +YY_RULE_SETUP +#line 596 "parser.l" +{ + yy_push_state(BRACED, yyscanner); + yylval->lineno = yyextra->lineno; + return yytext[0]; +} + YY_BREAK +case 55: +YY_RULE_SETUP +#line 602 "parser.l" +{ + yy_push_state(NESTED, yyscanner); + yylval->lineno = yyextra->lineno; + return yytext[0]; +} + YY_BREAK +case 56: +YY_RULE_SETUP +#line 608 "parser.l" +{ + yylval->lineno = yyextra->lineno; + return yytext[0]; +} + YY_BREAK +case 57: +YY_RULE_SETUP +#line 613 "parser.l" +{ + yylval->chr = '*'; + return SPLICE; +} + YY_BREAK +case 58: +YY_RULE_SETUP +#line 618 "parser.l" +{ + yylval->chr = yytext[0]; + return yytext[0]; +} + YY_BREAK +case 59: +YY_RULE_SETUP +#line 623 "parser.l" +{ + yy_pop_state(yyscanner); + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + return yytext[0]; +} + YY_BREAK +case 60: +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +yyg->yy_c_buf_p = yy_cp = yy_bp + 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 632 "parser.l" +{ + yyerrorf(yyg, lit("cramped floating-point literal: " + "space or 0 needed between ~a and dot."), + string_own(utf8_dup_from(yytext)), + nao); + + yy_pop_state(yyscanner); + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + return yytext[0]; +} + YY_BREAK +case 61: +YY_RULE_SETUP +#line 647 "parser.l" +{ + yy_pop_state(yyscanner); + if (yy_top_state(yyscanner) == INITIAL + || yy_top_state(yyscanner) == QSILIT + || yy_top_state(yyscanner) == QWLIT) + yy_pop_state(yyscanner); + return yytext[0]; +} + YY_BREAK +case 62: +YY_RULE_SETUP +#line 656 "parser.l" +{ + /* Eat whitespace in directive */ +} + YY_BREAK +case 63: +YY_RULE_SETUP +#line 660 "parser.l" +{ + yy_push_state(STRLIT, yyscanner); + return '"'; +} + YY_BREAK +case 64: +YY_RULE_SETUP +#line 665 "parser.l" +{ + yy_push_state(CHRLIT, yyscanner); + yylval->lineno = yyextra->lineno; + return HASH_BACKSLASH; +} + YY_BREAK +case 65: +YY_RULE_SETUP +#line 671 "parser.l" +{ + yy_push_state(BUFLIT, yyscanner); + yylval->lineno = yyextra->lineno; + return HASH_B_QUOTE; +} + YY_BREAK +case 66: +YY_RULE_SETUP +#line 677 "parser.l" +{ + yy_push_state(REGEX, yyscanner); + yylval->lineno = yyextra->lineno; + return HASH_SLASH; +} + YY_BREAK +case 67: +YY_RULE_SETUP +#line 683 "parser.l" +{ + yy_push_state(QSILIT, yyscanner); + return '`'; +} + YY_BREAK +case 68: +YY_RULE_SETUP +#line 688 "parser.l" +{ + yy_push_state(WLIT, yyscanner); + yylval->lineno = yyextra->lineno; + return WORDS; +} + YY_BREAK +case 69: +YY_RULE_SETUP +#line 694 "parser.l" +{ + yy_push_state(WLIT, yyscanner); + yylval->lineno = yyextra->lineno; + return WSPLICE; +} + YY_BREAK +case 70: +YY_RULE_SETUP +#line 700 "parser.l" +{ + yy_push_state(QWLIT, yyscanner); + yylval->lineno = yyextra->lineno; + return QWORDS; +} + YY_BREAK +case 71: +YY_RULE_SETUP +#line 706 "parser.l" +{ + yy_push_state(QWLIT, yyscanner); + yylval->lineno = yyextra->lineno; + return QWSPLICE; +} + YY_BREAK +case 72: +YY_RULE_SETUP +#line 712 "parser.l" +{ + return '#'; +} + YY_BREAK +case 73: +YY_RULE_SETUP +#line 716 "parser.l" +{ + yylval->lineno = yyextra->lineno; + return HASH_H; +} + YY_BREAK +case 74: +YY_RULE_SETUP +#line 721 "parser.l" +{ + yylval->lineno = yyextra->lineno; + return HASH_S; +} + YY_BREAK +case 75: +YY_RULE_SETUP +#line 726 "parser.l" +{ + yylval->lineno = yyextra->lineno; + return HASH_R; +} + YY_BREAK +case 76: +YY_RULE_SETUP +#line 731 "parser.l" +{ + yylval->lineno = yyextra->lineno; + return HASH_N; +} + YY_BREAK +case 77: +YY_RULE_SETUP +#line 736 "parser.l" +{ + yylval->lineno = yyextra->lineno; + return HASH_T; +} + YY_BREAK +case 78: +YY_RULE_SETUP +#line 741 "parser.l" +{ + yylval->lineno = yyextra->lineno; + return HASH_SEMI; +} + YY_BREAK +case 79: +YY_RULE_SETUP +#line 746 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext + 1)); + yylval->val = int_str(str, num(10)); + return HASH_N_EQUALS; +} + YY_BREAK +case 80: +YY_RULE_SETUP +#line 752 "parser.l" +{ + val str = string_own(utf8_dup_from(yytext + 1)); + yylval->val = int_str(str, num(10)); + return HASH_N_HASH; +} + YY_BREAK +case 81: +YY_RULE_SETUP +#line 758 "parser.l" +{ + yylval->lineno = yyextra->lineno; + return (opt_compat && opt_compat <= 185) ? OLD_DOTDOT : DOTDOT; +} + YY_BREAK +case 82: +YY_RULE_SETUP +#line 763 "parser.l" +{ + yy_pop_state(yyscanner); + yylval->lexeme = chk_strdup(L"@"); + return TEXT; +} + YY_BREAK +case 83: +/* rule 83 can match eol */ +YY_RULE_SETUP +#line 769 "parser.l" +{ + yyextra->lineno++; +} + YY_BREAK +case 84: +YY_RULE_SETUP +#line 773 "parser.l" +{ + yy_push_state(REGEX, yyscanner); + return '/'; +} + YY_BREAK +case 85: +YY_RULE_SETUP +#line 778 "parser.l" +{ + yylval->chr = '.'; + return CONSDOT; +} + YY_BREAK +case 86: +YY_RULE_SETUP +#line 783 "parser.l" +{ + yylval->chr = '.'; + return LAMBDOT; +} + YY_BREAK +case 87: +YY_RULE_SETUP +#line 788 "parser.l" +{ + yylval->chr = '.'; + return UREFDOT; +} + YY_BREAK +case 88: +YY_RULE_SETUP +#line 793 "parser.l" +{ + yylval->chr = '.'; + return '.'; +} + YY_BREAK +case 89: +YY_RULE_SETUP +#line 798 "parser.l" +{ + yylval->chr = '.'; + return OREFDOT; +} + YY_BREAK +case 90: +YY_RULE_SETUP +#line 803 "parser.l" +{ + yylval->chr = '.'; + return UOREFDOT; +} + YY_BREAK +case 91: +/* rule 91 can match eol */ +YY_RULE_SETUP +#line 808 "parser.l" +{ + if (YYSTATE == SPECIAL) + yy_pop_state(yyscanner); /* @\ continuation */ + yyextra->lineno++; +} + YY_BREAK +case 92: +YY_RULE_SETUP +#line 814 "parser.l" +{ + wchar_t lexeme[2]; + lexeme[0] = char_esc(yytext[1]); + lexeme[1] = 0; + yylval->lexeme = chk_strdup(lexeme); + yy_pop_state(yyscanner); + return TEXT; +} + YY_BREAK +case 93: +YY_RULE_SETUP +#line 823 "parser.l" +{ + wchar_t lexeme[2]; + lexeme[0] = num_esc(yyg, yytext + 1); + lexeme[1] = 0; + yylval->lexeme = chk_strdup(lexeme); + + { + char lastchar = yytext[yyleng-1]; + if (lastchar == ';' && opt_compat && opt_compat <= 109) + unput(lastchar); + } + + yy_pop_state(yyscanner); + return TEXT; +} + YY_BREAK +case 94: +YY_RULE_SETUP +#line 839 "parser.l" +{ + yyerrorf(yyg, lit("unrecognized escape \\~a"), chr(yytext[1]), nao); +} + YY_BREAK +case 95: +YY_RULE_SETUP +#line 843 "parser.l" +{ + /* comment */ +} + YY_BREAK +case 96: +YY_RULE_SETUP +#line 847 "parser.l" +{ + val ch = chr_str(string_utf8(yytext), zero); + if (chr_isspace(ch)) + yyerrprepf(yyg, lit("unexpected whitespace character #\\x~,02x"), + ch, nao); + else if (chr_isunisp(ch)) + yyerrprepf(yyg, lit("unexpected Unicode space character #\\x~,02x"), + ch, nao); + else if (chr_iscntrl(ch)) + yyerrprepf(yyg, lit("unexpected control character #\\x~,02x"), + ch, nao); + else + yyerrprepf(yyg, lit("unexpected character #\\~a"), + ch, nao); + return ERRTOK; +} + YY_BREAK +case 97: +YY_RULE_SETUP +#line 864 "parser.l" +{ + yyerrprepf(yyg, lit("non-UTF-8 byte #x~02x in directive"), + num(convert(unsigned char, yytext[0])), nao); + return ERRTOK; +} + YY_BREAK +case 98: +YY_RULE_SETUP +#line 870 "parser.l" +{ + yylval->chr = '/'; + return (YYSTATE == SREGEX) ? REGCHAR : '/'; +} + YY_BREAK +case 99: +YY_RULE_SETUP +#line 875 "parser.l" +{ + yylval->chr = char_esc(yytext[1]); + return REGCHAR; +} + YY_BREAK +case 100: +YY_RULE_SETUP +#line 880 "parser.l" +{ + yylval->chr = num_esc(yyg, yytext + 1); + return REGCHAR; +} + YY_BREAK +case 101: +YY_RULE_SETUP +#line 885 "parser.l" +{ + yylval->chr = yytext[1]; + return REGTOKEN; +} + YY_BREAK +case 102: +/* rule 102 can match eol */ +YY_RULE_SETUP +#line 890 "parser.l" +{ + yyextra->lineno++; +} + YY_BREAK +case 103: +/* rule 103 can match eol */ +YY_RULE_SETUP +#line 894 "parser.l" +{ + yyextra->lineno++; + yyerrprepf(yyg, lit("newline in regex"), nao); + return ERRTOK; +} + YY_BREAK +case 104: +/* rule 104 can match eol */ +YY_RULE_SETUP +#line 900 "parser.l" +{ + yyextra->lineno++; + yylval->chr = yytext[0]; + return REGCHAR; +} + YY_BREAK +case 105: +YY_RULE_SETUP +#line 906 "parser.l" +{ + yylval->chr = yytext[0]; + return yytext[0]; +} + YY_BREAK +case 106: +YY_RULE_SETUP +#line 911 "parser.l" +{ + yylval->chr = yytext[1]; + return REGCHAR; +} + YY_BREAK +case 107: +YY_RULE_SETUP +#line 916 "parser.l" +{ + if (opt_compat && opt_compat <= 105) { + yylval->chr = yytext[1]; + return REGCHAR; + } + + yyerrprepf(yyg, lit("unrecognized escape in regex"), nao); + return ERRTOK; +} + YY_BREAK +case 108: +YY_RULE_SETUP +#line 926 "parser.l" +{ + yyerrprepf(yyg, lit("dangling backslash in regex"), nao); + return ERRTOK; +} + YY_BREAK +case 109: +YY_RULE_SETUP +#line 931 "parser.l" +{ + wchar_t wchr[8]; + if (utf8_from_buf(wchr, coerce(unsigned char *, yytext), yyleng) != 2) { + yyerrprepf(yyg, lit("non-UTF-8 byte in regex: '\\x~02x'"), + num(convert(unsigned char, yytext[0])), nao); + return ERRTOK; + } + yylval->chr = wchr[0]; + return REGCHAR; +} + YY_BREAK +case 110: +YY_RULE_SETUP +#line 942 "parser.l" +{ + /* Allow non-UTF-8 byte for regexes scanned from string */ + yylval->chr = convert(unsigned char, yytext[0]) + 0xDC00; + return REGCHAR; +} + YY_BREAK +case 111: +YY_RULE_SETUP +#line 948 "parser.l" +{ + yyerrprepf(yyg, lit("non-UTF-8 byte in regex: '\\x~02x'"), + num(convert(unsigned char, yytext[0])), nao); + return ERRTOK; +} + YY_BREAK +case 112: +YY_RULE_SETUP +#line 954 "parser.l" +{ + yylval->lexeme = utf8_dup_from(yytext); + return SPACE; +} + YY_BREAK +case 113: +YY_RULE_SETUP +#line 959 "parser.l" +{ + yylval->lexeme = utf8_dup_from(yytext); + return TEXT; +} + YY_BREAK +case 114: +/* rule 114 can match eol */ +YY_RULE_SETUP +#line 964 "parser.l" +{ + yyextra->lineno++; + return '\n'; +} + YY_BREAK +case 115: +YY_RULE_SETUP +#line 969 "parser.l" +{ + yy_push_state(SPECIAL, yyscanner); + return '*'; +} + YY_BREAK +case 116: +YY_RULE_SETUP +#line 974 "parser.l" +{ + yy_push_state(SPECIAL, yyscanner); +} + YY_BREAK +case 117: +/* rule 117 can match eol */ +YY_RULE_SETUP +#line 978 "parser.l" +{ + /* eat whole line comment */ + yyextra->lineno++; +} + YY_BREAK +case 118: +YY_RULE_SETUP +#line 983 "parser.l" +{ + /* comment to end of line */ +} + YY_BREAK +case 119: +YY_RULE_SETUP +#line 987 "parser.l" +{ + yy_pop_state(yyscanner); + return yytext[0]; +} + YY_BREAK +case 120: +YY_RULE_SETUP +#line 992 "parser.l" +{ + yy_pop_state(yyscanner); + return yytext[0]; +} + YY_BREAK +case 121: +YY_RULE_SETUP +#line 997 "parser.l" +{ + yylval->chr = char_esc(yytext[1]); + return LITCHAR; +} + YY_BREAK +case 122: +YY_RULE_SETUP +#line 1002 "parser.l" +{ + yylval->chr = char_esc(yytext[1]); + return LITCHAR; +} + YY_BREAK +case 123: +/* rule 123 can match eol */ +YY_RULE_SETUP +#line 1007 "parser.l" +{ + yyextra->lineno++; +} + YY_BREAK +case 124: +/* rule 124 can match eol */ +YY_RULE_SETUP +#line 1011 "parser.l" +{ + yyextra->lineno++; + + if (!opt_compat || opt_compat > 109) + return ' '; +} + YY_BREAK +case 125: +YY_RULE_SETUP +#line 1019 "parser.l" +{ + yylval->chr = num_esc(yyg, yytext+1); + return LITCHAR; +} + YY_BREAK +case 126: +YY_RULE_SETUP +#line 1024 "parser.l" +{ + yyerrorf(yyg, lit("unrecognized escape: \\~a"), chr(yytext[1]), nao); +} + YY_BREAK +case 127: +YY_RULE_SETUP +#line 1028 "parser.l" +{ + yylval->chr = num_esc(yyg, yytext); + return LITCHAR; +} + YY_BREAK +case 128: +YY_RULE_SETUP +#line 1033 "parser.l" +{ + yylval->lexeme = utf8_dup_from(yytext); + return SYMTOK; +} + YY_BREAK +case 129: +YY_RULE_SETUP +#line 1038 "parser.l" +{ + yylval->lexeme = utf8_dup_from(yytext); + return SYMTOK; /* hack */ +} + YY_BREAK +case 130: +/* rule 130 can match eol */ +YY_RULE_SETUP +#line 1043 "parser.l" +{ + yyerrprepf(yyg, lit("newline in string literal"), nao); + yyextra->lineno++; + yylval->chr = yytext[0]; + return ERRTOK; +} + YY_BREAK +case 131: +/* rule 131 can match eol */ +YY_RULE_SETUP +#line 1050 "parser.l" +{ + yyerrprepf(yyg, lit("newline in character literal"), nao); + yyextra->lineno++; + yylval->chr = yytext[0]; + return ERRTOK; +} + YY_BREAK +case 132: +/* rule 132 can match eol */ +YY_RULE_SETUP +#line 1057 "parser.l" +{ + yyerrprepf(yyg, lit("newline in string quasiliteral"), nao); + yyextra->lineno++; + yylval->chr = yytext[0]; + return ERRTOK; +} + YY_BREAK +case 133: +/* rule 133 can match eol */ +YY_RULE_SETUP +#line 1064 "parser.l" +{ + yyextra->lineno++; + + if (opt_compat && opt_compat <= 109) + return ' '; + + yyerrprepf(yyg, lit("newline in word list literal"), nao); + yylval->chr = yytext[0]; + return ERRTOK; +} + YY_BREAK +case 134: +*yy_cp = yyg->yy_hold_char; /* undo effects of setting up yytext */ +yyg->yy_c_buf_p = yy_cp = yy_bp + 1; +YY_DO_BEFORE_ACTION; /* set up yytext again */ +YY_RULE_SETUP +#line 1075 "parser.l" +{ + yy_push_state(QSPECIAL, yyscanner); + return yytext[0]; +} + YY_BREAK +case 135: +YY_RULE_SETUP +#line 1080 "parser.l" +{ + yyerrprepf(yyg, lit("malformed @ expression in quasiliteral"), nao); + return ERRTOK; +} + YY_BREAK +case 136: +YY_RULE_SETUP +#line 1085 "parser.l" +{ + return ' '; +} + YY_BREAK +case 137: +YY_RULE_SETUP +#line 1089 "parser.l" +{ + wchar_t wchr[8]; + if (utf8_from_buf(wchr, coerce(unsigned char *, yytext), yyleng) != 2) { + yyerrprepf(yyg, lit("non-UTF-8 byte in literal: '\\x~02x'"), + num(convert(unsigned char, yytext[0])), nao); + return ERRTOK; + } + yylval->chr = wchr[0]; + return LITCHAR; +} + YY_BREAK +case 138: +YY_RULE_SETUP +#line 1100 "parser.l" +{ + yylval->chr = strtol(yytext, 0, 16); + return LITCHAR; +} + YY_BREAK +case 139: +YY_RULE_SETUP +#line 1105 "parser.l" +{ + return '\''; +} + YY_BREAK +case 140: +YY_RULE_SETUP +#line 1109 "parser.l" +{ +} + YY_BREAK +case 141: +/* rule 141 can match eol */ +YY_RULE_SETUP +#line 1112 "parser.l" +{ + yyextra->lineno++; +} + YY_BREAK +case 142: +YY_RULE_SETUP +#line 1116 "parser.l" +{ + yyerrorf(yyg, lit("bad character in buffer literal: \\~a"), + chr(yytext[0]), nao); +} + YY_BREAK +case 143: +YY_RULE_SETUP +#line 1121 "parser.l" +{ + yyerrprepf(yyg, lit("non-UTF-8 byte in literal: '\\x~02x'"), + num(convert(unsigned char, yytext[0])), nao); + return ERRTOK; +} + YY_BREAK +case 144: +YY_RULE_SETUP +#line 1127 "parser.l" +ECHO; + YY_BREAK +#line 5456 "lex.yy.c" + case YY_STATE_EOF(INITIAL): + case YY_STATE_EOF(SPECIAL): + case YY_STATE_EOF(BRACED): + case YY_STATE_EOF(NESTED): + case YY_STATE_EOF(REGEX): + case YY_STATE_EOF(SREGEX): + case YY_STATE_EOF(STRLIT): + case YY_STATE_EOF(CHRLIT): + case YY_STATE_EOF(QSILIT): + case YY_STATE_EOF(QSPECIAL): + case YY_STATE_EOF(WLIT): + case YY_STATE_EOF(QWLIT): + case YY_STATE_EOF(BUFLIT): + yyterminate(); + + case YY_END_OF_BUFFER: + { + /* Amount of text matched not including the EOB char. */ + int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1; + + /* Undo the effects of YY_DO_BEFORE_ACTION. */ + *yy_cp = yyg->yy_hold_char; + YY_RESTORE_YY_MORE_OFFSET + + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) + { + /* We're scanning a new file or input source. It's + * possible that this happened because the user + * just pointed yyin at a new source and called + * yylex(). If so, then we have to assure + * consistency between YY_CURRENT_BUFFER and our + * globals. Here is the right place to do so, because + * this is the first action (other than possibly a + * back-up) that will match for the new input source. + */ + yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; + } + + /* Note that here we test for yy_c_buf_p "<=" to the position + * of the first EOB in the buffer, since yy_c_buf_p will + * already have been incremented past the NUL character + * (since all states make transitions on EOB to the + * end-of-buffer state). Contrast this with the test + * in input(). + */ + if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) + { /* This was really a NUL. */ + yy_state_type yy_next_state; + + yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; + + yy_current_state = yy_get_previous_state( yyscanner ); + + /* Okay, we're now positioned to make the NUL + * transition. We couldn't have + * yy_get_previous_state() go ahead and do it + * for us because it doesn't know how to deal + * with the possibility of jamming (and we don't + * want to build jamming into it because then it + * will run more slowly). + */ + + yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner); + + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + + if ( yy_next_state ) + { + /* Consume the NUL. */ + yy_cp = ++yyg->yy_c_buf_p; + yy_current_state = yy_next_state; + goto yy_match; + } + + else + { + yy_cp = yyg->yy_c_buf_p; + goto yy_find_action; + } + } + + else switch ( yy_get_next_buffer( yyscanner ) ) + { + case EOB_ACT_END_OF_FILE: + { + yyg->yy_did_buffer_switch_on_eof = 0; + + if ( yywrap( yyscanner ) ) + { + /* Note: because we've taken care in + * yy_get_next_buffer() to have set up + * yytext, we can now set up + * yy_c_buf_p so that if some total + * hoser (like flex itself) wants to + * call the scanner after we return the + * YY_NULL, it'll still work - another + * YY_NULL will get returned. + */ + yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; + + yy_act = YY_STATE_EOF(YY_START); + goto do_action; + } + + else + { + if ( ! yyg->yy_did_buffer_switch_on_eof ) + YY_NEW_FILE; + } + break; + } + + case EOB_ACT_CONTINUE_SCAN: + yyg->yy_c_buf_p = + yyg->yytext_ptr + yy_amount_of_matched_text; + + yy_current_state = yy_get_previous_state( yyscanner ); + + yy_cp = yyg->yy_c_buf_p; + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + goto yy_match; + + case EOB_ACT_LAST_MATCH: + yyg->yy_c_buf_p = + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; + + yy_current_state = yy_get_previous_state( yyscanner ); + + yy_cp = yyg->yy_c_buf_p; + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + goto yy_find_action; + } + break; + } + + default: + YY_FATAL_ERROR( + "fatal flex scanner internal error--no action found" ); + } /* end of action switch */ + } /* end of scanning one token */ + } /* end of user's declarations */ +} /* end of yylex */ + +/* yy_get_next_buffer - try to read in a new buffer + * + * Returns a code representing an action: + * EOB_ACT_LAST_MATCH - + * EOB_ACT_CONTINUE_SCAN - continue scanning from current position + * EOB_ACT_END_OF_FILE - end of file + */ +static int yy_get_next_buffer (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; + char *source = yyg->yytext_ptr; + int number_to_move, i; + int ret_val; + + if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] ) + YY_FATAL_ERROR( + "fatal flex scanner internal error--end of buffer missed" ); + + if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) + { /* Don't try to fill the buffer, so this is an EOF. */ + if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 ) + { + /* We matched a single character, the EOB, so + * treat this as a final EOF. + */ + return EOB_ACT_END_OF_FILE; + } + + else + { + /* We matched some text prior to the EOB, first + * process it. + */ + return EOB_ACT_LAST_MATCH; + } + } + + /* Try to read more data. */ + + /* First move last chars to start of buffer. */ + number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr - 1); + + for ( i = 0; i < number_to_move; ++i ) + *(dest++) = *(source++); + + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) + /* don't do the read, it's not guaranteed to return an EOF, + * just force an EOF + */ + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; + + else + { + int num_to_read = + YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; + + while ( num_to_read <= 0 ) + { /* Not enough room in the buffer - grow it. */ + + YY_FATAL_ERROR( +"input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); + + } + + if ( num_to_read > YY_READ_BUF_SIZE ) + num_to_read = YY_READ_BUF_SIZE; + + /* Read in more data. */ + YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), + yyg->yy_n_chars, num_to_read ); + + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + if ( yyg->yy_n_chars == 0 ) + { + if ( number_to_move == YY_MORE_ADJ ) + { + ret_val = EOB_ACT_END_OF_FILE; + yyrestart( yyin , yyscanner); + } + + else + { + ret_val = EOB_ACT_LAST_MATCH; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = + YY_BUFFER_EOF_PENDING; + } + } + + else + ret_val = EOB_ACT_CONTINUE_SCAN; + + if ((yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { + /* Extend the array by 50%, plus the number we really need. */ + int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( + (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size , yyscanner ); + if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); + /* "- 2" to take care of EOB's */ + YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); + } + + yyg->yy_n_chars += number_to_move; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; + + yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; + + return ret_val; +} + +/* yy_get_previous_state - get the state just before the EOB char was reached */ + + static yy_state_type yy_get_previous_state (yyscan_t yyscanner) +{ + yy_state_type yy_current_state; + char *yy_cp; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + yy_current_state = yyg->yy_start; + yy_current_state += YY_AT_BOL(); + + yyg->yy_state_ptr = yyg->yy_state_buf; + *yyg->yy_state_ptr++ = yy_current_state; + + for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp ) + { + YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 1585 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + *yyg->yy_state_ptr++ = yy_current_state; + } + + return yy_current_state; +} + +/* yy_try_NUL_trans - try to make a transition on the NUL character + * + * synopsis + * next_state = yy_try_NUL_trans( current_state ); + */ + static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner) +{ + int yy_is_jam; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ + + YY_CHAR yy_c = 1; + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 1585 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + yy_is_jam = (yy_current_state == 1584); + if ( ! yy_is_jam ) + *yyg->yy_state_ptr++ = yy_current_state; + + (void)yyg; + return yy_is_jam ? 0 : yy_current_state; +} + +#ifndef YY_NO_UNPUT + + static void yyunput (int c, char * yy_bp , yyscan_t yyscanner) +{ + char *yy_cp; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + yy_cp = yyg->yy_c_buf_p; + + /* undo effects of setting up yytext */ + *yy_cp = yyg->yy_hold_char; + + if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) + { /* need to shift things up to make room */ + /* +2 for EOB chars. */ + int number_to_move = yyg->yy_n_chars + 2; + char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ + YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; + char *source = + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; + + while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) + *--dest = *--source; + + yy_cp += (int) (dest - source); + yy_bp += (int) (dest - source); + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = + yyg->yy_n_chars = (int) YY_CURRENT_BUFFER_LVALUE->yy_buf_size; + + if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) + YY_FATAL_ERROR( "flex scanner push-back overflow" ); + } + + *--yy_cp = (char) c; + + yyg->yytext_ptr = yy_bp; + yyg->yy_hold_char = *yy_cp; + yyg->yy_c_buf_p = yy_cp; +} + +#endif + +#ifndef YY_NO_INPUT +#ifdef __cplusplus + static int yyinput (yyscan_t yyscanner) +#else + static int input (yyscan_t yyscanner) +#endif + +{ + int c; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + *yyg->yy_c_buf_p = yyg->yy_hold_char; + + if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) + { + /* yy_c_buf_p now points to the character we want to return. + * If this occurs *before* the EOB characters, then it's a + * valid NUL; if not, then we've hit the end of the buffer. + */ + if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) + /* This was really a NUL. */ + *yyg->yy_c_buf_p = '\0'; + + else + { /* need more input */ + int offset = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr); + ++yyg->yy_c_buf_p; + + switch ( yy_get_next_buffer( yyscanner ) ) + { + case EOB_ACT_LAST_MATCH: + /* This happens because yy_g_n_b() + * sees that we've accumulated a + * token and flags that we need to + * try matching the token before + * proceeding. But for input(), + * there's no matching to consider. + * So convert the EOB_ACT_LAST_MATCH + * to EOB_ACT_END_OF_FILE. + */ + + /* Reset buffer status. */ + yyrestart( yyin , yyscanner); + + /*FALLTHROUGH*/ + + case EOB_ACT_END_OF_FILE: + { + if ( yywrap( yyscanner ) ) + return 0; + + if ( ! yyg->yy_did_buffer_switch_on_eof ) + YY_NEW_FILE; +#ifdef __cplusplus + return yyinput(yyscanner); +#else + return input(yyscanner); +#endif + } + + case EOB_ACT_CONTINUE_SCAN: + yyg->yy_c_buf_p = yyg->yytext_ptr + offset; + break; + } + } + } + + c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */ + *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ + yyg->yy_hold_char = *++yyg->yy_c_buf_p; + + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n'); + + return c; +} +#endif /* ifndef YY_NO_INPUT */ + +/** Immediately switch to a different input stream. + * @param input_file A readable stream. + * @param yyscanner The scanner object. + * @note This function does not reset the start condition to @c INITIAL . + */ + void yyrestart (FILE * input_file , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if ( ! YY_CURRENT_BUFFER ){ + yyensure_buffer_stack (yyscanner); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); + } + + yy_init_buffer( YY_CURRENT_BUFFER, input_file , yyscanner); + yy_load_buffer_state( yyscanner ); +} + +/** Switch to a different input buffer. + * @param new_buffer The new input buffer. + * @param yyscanner The scanner object. + */ + void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* TODO. We should be able to replace this entire function body + * with + * yypop_buffer_state(); + * yypush_buffer_state(new_buffer); + */ + yyensure_buffer_stack (yyscanner); + if ( YY_CURRENT_BUFFER == new_buffer ) + return; + + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *yyg->yy_c_buf_p = yyg->yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + YY_CURRENT_BUFFER_LVALUE = new_buffer; + yy_load_buffer_state( yyscanner ); + + /* We don't actually know whether we did this switch during + * EOF (yywrap()) processing, but the only time this flag + * is looked at is after yywrap() is called, so it's safe + * to go ahead and always set it. + */ + yyg->yy_did_buffer_switch_on_eof = 1; +} + +static void yy_load_buffer_state (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; + yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; + yyg->yy_hold_char = *yyg->yy_c_buf_p; +} + +/** Allocate and initialize an input buffer state. + * @param file A readable stream. + * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. + * @param yyscanner The scanner object. + * @return the allocated buffer state. + */ + YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) +{ + YY_BUFFER_STATE b; + + b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); + + b->yy_buf_size = size; + + /* yy_ch_buf has to be 2 characters longer than the size given because + * we need to put in 2 end-of-buffer characters. + */ + b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); + + b->yy_is_our_buffer = 1; + + yy_init_buffer( b, file , yyscanner); + + return b; +} + +/** Destroy the buffer. + * @param b a buffer created with yy_create_buffer() + * @param yyscanner The scanner object. + */ + void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if ( ! b ) + return; + + if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ + YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; + + if ( b->yy_is_our_buffer ) + yyfree( (void *) b->yy_ch_buf , yyscanner ); + + yyfree( (void *) b , yyscanner ); +} + +/* Initializes or reinitializes a buffer. + * This function is sometimes called more than once on the same buffer, + * such as during a yyrestart() or at EOF. + */ + static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) + +{ + int oerrno = errno; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + yy_flush_buffer( b , yyscanner); + + b->yy_input_file = file; + b->yy_fill_buffer = 1; + + /* If b is the current buffer, then yy_init_buffer was _probably_ + * called from yyrestart() or through yy_get_next_buffer. + * In that case, we don't want to reset the lineno or column. + */ + if (b != YY_CURRENT_BUFFER){ + b->yy_bs_lineno = 1; + b->yy_bs_column = 0; + } + + b->yy_is_interactive = 0; + + errno = oerrno; +} + +/** Discard all buffered characters. On the next scan, YY_INPUT will be called. + * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. + * @param yyscanner The scanner object. + */ + void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if ( ! b ) + return; + + b->yy_n_chars = 0; + + /* We always need two end-of-buffer characters. The first causes + * a transition to the end-of-buffer state. The second causes + * a jam in that state. + */ + b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; + b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; + + b->yy_buf_pos = &b->yy_ch_buf[0]; + + b->yy_at_bol = 1; + b->yy_buffer_status = YY_BUFFER_NEW; + + if ( b == YY_CURRENT_BUFFER ) + yy_load_buffer_state( yyscanner ); +} + +/** Pushes the new state onto the stack. The new state becomes + * the current state. This function will allocate the stack + * if necessary. + * @param new_buffer The new state. + * @param yyscanner The scanner object. + */ +void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if (new_buffer == NULL) + return; + + yyensure_buffer_stack(yyscanner); + + /* This block is copied from yy_switch_to_buffer. */ + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *yyg->yy_c_buf_p = yyg->yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + /* Only push if top exists. Otherwise, replace top. */ + if (YY_CURRENT_BUFFER) + yyg->yy_buffer_stack_top++; + YY_CURRENT_BUFFER_LVALUE = new_buffer; + + /* copied from yy_switch_to_buffer. */ + yy_load_buffer_state( yyscanner ); + yyg->yy_did_buffer_switch_on_eof = 1; +} + +/** Removes and deletes the top of the stack, if present. + * The next element becomes the new top. + * @param yyscanner The scanner object. + */ +void yypop_buffer_state (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if (!YY_CURRENT_BUFFER) + return; + + yy_delete_buffer(YY_CURRENT_BUFFER , yyscanner); + YY_CURRENT_BUFFER_LVALUE = NULL; + if (yyg->yy_buffer_stack_top > 0) + --yyg->yy_buffer_stack_top; + + if (YY_CURRENT_BUFFER) { + yy_load_buffer_state( yyscanner ); + yyg->yy_did_buffer_switch_on_eof = 1; + } +} + +/* Allocates the stack if it does not exist. + * Guarantees space for at least one push. + */ +static void yyensure_buffer_stack (yyscan_t yyscanner) +{ + yy_size_t num_to_alloc; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if (!yyg->yy_buffer_stack) { + + /* First allocation is just for 2 elements, since we don't know if this + * scanner will even need a stack. We use 2 instead of 1 to avoid an + * immediate realloc on the next call. + */ + num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc + (num_to_alloc * sizeof(struct yy_buffer_state*) + , yyscanner); + if ( ! yyg->yy_buffer_stack ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); + + yyg->yy_buffer_stack_max = num_to_alloc; + yyg->yy_buffer_stack_top = 0; + return; + } + + if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){ + + /* Increase the buffer to prepare for a possible push. */ + yy_size_t grow_size = 8 /* arbitrary grow size */; + + num_to_alloc = yyg->yy_buffer_stack_max + grow_size; + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc + (yyg->yy_buffer_stack, + num_to_alloc * sizeof(struct yy_buffer_state*) + , yyscanner); + if ( ! yyg->yy_buffer_stack ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + /* zero only the new slots.*/ + memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); + yyg->yy_buffer_stack_max = num_to_alloc; + } +} + +/** Setup the input buffer state to scan directly from a user-specified character buffer. + * @param base the character buffer + * @param size the size in bytes of the character buffer + * @param yyscanner The scanner object. + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) +{ + YY_BUFFER_STATE b; + + if ( size < 2 || + base[size-2] != YY_END_OF_BUFFER_CHAR || + base[size-1] != YY_END_OF_BUFFER_CHAR ) + /* They forgot to leave room for the EOB's. */ + return NULL; + + b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); + + b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ + b->yy_buf_pos = b->yy_ch_buf = base; + b->yy_is_our_buffer = 0; + b->yy_input_file = NULL; + b->yy_n_chars = b->yy_buf_size; + b->yy_is_interactive = 0; + b->yy_at_bol = 1; + b->yy_fill_buffer = 0; + b->yy_buffer_status = YY_BUFFER_NEW; + + yy_switch_to_buffer( b , yyscanner ); + + return b; +} + +/** Setup the input buffer state to scan a string. The next call to yylex() will + * scan from a @e copy of @a str. + * @param yystr a NUL-terminated string to scan + * @param yyscanner The scanner object. + * @return the newly allocated buffer state object. + * @note If you want to scan bytes that may contain NUL values, then use + * yy_scan_bytes() instead. + */ +YY_BUFFER_STATE yy_scan_string (const char * yystr , yyscan_t yyscanner) +{ + + return yy_scan_bytes( yystr, (int) strlen(yystr) , yyscanner); +} + +/** Setup the input buffer state to scan the given bytes. The next call to yylex() will + * scan from a @e copy of @a bytes. + * @param yybytes the byte buffer to scan + * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. + * @param yyscanner The scanner object. + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len , yyscan_t yyscanner) +{ + YY_BUFFER_STATE b; + char *buf; + yy_size_t n; + int i; + + /* Get memory for full buffer, including space for trailing EOB's. */ + n = (yy_size_t) (_yybytes_len + 2); + buf = (char *) yyalloc( n , yyscanner ); + if ( ! buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); + + for ( i = 0; i < _yybytes_len; ++i ) + buf[i] = yybytes[i]; + + buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; + + b = yy_scan_buffer( buf, n , yyscanner); + if ( ! b ) + YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); + + /* It's okay to grow etc. this buffer, and we should throw it + * away when we're done. + */ + b->yy_is_our_buffer = 1; + + return b; +} + + static void yy_push_state (int _new_state , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if ( yyg->yy_start_stack_ptr >= yyg->yy_start_stack_depth ) + { + yy_size_t new_size; + + yyg->yy_start_stack_depth += YY_START_STACK_INCR; + new_size = (yy_size_t) yyg->yy_start_stack_depth * sizeof( int ); + + if ( ! yyg->yy_start_stack ) + yyg->yy_start_stack = (int *) yyalloc( new_size , yyscanner ); + + else + yyg->yy_start_stack = (int *) yyrealloc( + (void *) yyg->yy_start_stack, new_size , yyscanner ); + + if ( ! yyg->yy_start_stack ) + YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); + } + + yyg->yy_start_stack[yyg->yy_start_stack_ptr++] = YY_START; + + BEGIN(_new_state); +} + + static void yy_pop_state (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if ( --yyg->yy_start_stack_ptr < 0 ) + YY_FATAL_ERROR( "start-condition stack underflow" ); + + BEGIN(yyg->yy_start_stack[yyg->yy_start_stack_ptr]); +} + + static int yy_top_state (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyg->yy_start_stack[yyg->yy_start_stack_ptr - 1]; +} + +#ifndef YY_EXIT_FAILURE +#define YY_EXIT_FAILURE 2 +#endif + +static void yynoreturn yy_fatal_error (const char* msg , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + fprintf( stderr, "%s\n", msg ); + exit( YY_EXIT_FAILURE ); +} + +/* Redefine yyless() so it works in section 3 code. */ + +#undef yyless +#define yyless(n) \ + do \ + { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + yytext[yyleng] = yyg->yy_hold_char; \ + yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ + yyg->yy_hold_char = *yyg->yy_c_buf_p; \ + *yyg->yy_c_buf_p = '\0'; \ + yyleng = yyless_macro_arg; \ + } \ + while ( 0 ) + +/* Accessor methods (get/set functions) to struct members. */ + +/** Get the user-defined data for this scanner. + * @param yyscanner The scanner object. + */ +YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyextra; +} + +/** Get the current line number. + * @param yyscanner The scanner object. + */ +int yyget_lineno (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if (! YY_CURRENT_BUFFER) + return 0; + + return yylineno; +} + +/** Get the current column number. + * @param yyscanner The scanner object. + */ +int yyget_column (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if (! YY_CURRENT_BUFFER) + return 0; + + return yycolumn; +} + +/** Get the input stream. + * @param yyscanner The scanner object. + */ +FILE *yyget_in (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyin; +} + +/** Get the output stream. + * @param yyscanner The scanner object. + */ +FILE *yyget_out (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyout; +} + +/** Get the length of the current token. + * @param yyscanner The scanner object. + */ +int yyget_leng (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyleng; +} + +/** Get the current token. + * @param yyscanner The scanner object. + */ + +char *yyget_text (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yytext; +} + +/** Set the user-defined data. This data is never touched by the scanner. + * @param user_defined The data to be associated with this scanner. + * @param yyscanner The scanner object. + */ +void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyextra = user_defined ; +} + +/** Set the current line number. + * @param _line_number line number + * @param yyscanner The scanner object. + */ +void yyset_lineno (int _line_number , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* lineno is only valid if an input buffer exists. */ + if (! YY_CURRENT_BUFFER ) + YY_FATAL_ERROR( "yyset_lineno called with no buffer" ); + + yylineno = _line_number; +} + +/** Set the current column. + * @param _column_no column number + * @param yyscanner The scanner object. + */ +void yyset_column (int _column_no , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* column is only valid if an input buffer exists. */ + if (! YY_CURRENT_BUFFER ) + YY_FATAL_ERROR( "yyset_column called with no buffer" ); + + yycolumn = _column_no; +} + +/** Set the input stream. This does not discard the current + * input buffer. + * @param _in_str A readable stream. + * @param yyscanner The scanner object. + * @see yy_switch_to_buffer + */ +void yyset_in (FILE * _in_str , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyin = _in_str ; +} + +void yyset_out (FILE * _out_str , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyout = _out_str ; +} + +int yyget_debug (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yy_flex_debug; +} + +void yyset_debug (int _bdebug , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yy_flex_debug = _bdebug ; +} + +/* Accessor methods for yylval and yylloc */ + +YYSTYPE * yyget_lval (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yylval; +} + +void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yylval = yylval_param; +} + +/* User-visible API */ + +/* yylex_init is special because it creates the scanner itself, so it is + * the ONLY reentrant function that doesn't take the scanner as the last argument. + * That's why we explicitly handle the declaration, instead of using our macros. + */ +int yylex_init(yyscan_t* ptr_yy_globals) +{ + if (ptr_yy_globals == NULL){ + errno = EINVAL; + return 1; + } + + *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL ); + + if (*ptr_yy_globals == NULL){ + errno = ENOMEM; + return 1; + } + + /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ + memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); + + return yy_init_globals ( *ptr_yy_globals ); +} + +/* yylex_init_extra has the same functionality as yylex_init, but follows the + * convention of taking the scanner as the last argument. Note however, that + * this is a *pointer* to a scanner, as it will be allocated by this call (and + * is the reason, too, why this function also must handle its own declaration). + * The user defined value in the first argument will be available to yyalloc in + * the yyextra field. + */ +int yylex_init_extra( YY_EXTRA_TYPE yy_user_defined, yyscan_t* ptr_yy_globals ) +{ + struct yyguts_t dummy_yyguts; + + yyset_extra (yy_user_defined, &dummy_yyguts); + + if (ptr_yy_globals == NULL){ + errno = EINVAL; + return 1; + } + + *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); + + if (*ptr_yy_globals == NULL){ + errno = ENOMEM; + return 1; + } + + /* By setting to 0xAA, we expose bugs in + yy_init_globals. Leave at 0x00 for releases. */ + memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); + + yyset_extra (yy_user_defined, *ptr_yy_globals); + + return yy_init_globals ( *ptr_yy_globals ); +} + +static int yy_init_globals (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + /* Initialization is the same as for the non-reentrant scanner. + * This function is called from yylex_destroy(), so don't allocate here. + */ + + yyg->yy_buffer_stack = NULL; + yyg->yy_buffer_stack_top = 0; + yyg->yy_buffer_stack_max = 0; + yyg->yy_c_buf_p = NULL; + yyg->yy_init = 0; + yyg->yy_start = 0; + + yyg->yy_start_stack_ptr = 0; + yyg->yy_start_stack_depth = 0; + yyg->yy_start_stack = NULL; + + yyg->yy_state_buf = 0; + yyg->yy_state_ptr = 0; + yyg->yy_full_match = 0; + yyg->yy_lp = 0; + +/* Defined in main.c */ +#ifdef YY_STDINIT + yyin = stdin; + yyout = stdout; +#else + yyin = NULL; + yyout = NULL; +#endif + + /* For future reference: Set errno on error, since we are called by + * yylex_init() + */ + return 0; +} + +/* yylex_destroy is for both reentrant and non-reentrant scanners. */ +int yylex_destroy (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* Pop the buffer stack, destroying each element. */ + while(YY_CURRENT_BUFFER){ + yy_delete_buffer( YY_CURRENT_BUFFER , yyscanner ); + YY_CURRENT_BUFFER_LVALUE = NULL; + yypop_buffer_state(yyscanner); + } + + /* Destroy the stack itself. */ + yyfree(yyg->yy_buffer_stack , yyscanner); + yyg->yy_buffer_stack = NULL; + + /* Destroy the start condition stack. */ + yyfree( yyg->yy_start_stack , yyscanner ); + yyg->yy_start_stack = NULL; + + yyfree ( yyg->yy_state_buf , yyscanner); + yyg->yy_state_buf = NULL; + + /* Reset the globals. This is important in a non-reentrant scanner so the next time + * yylex() is called, initialization will occur. */ + yy_init_globals( yyscanner); + + /* Destroy the main struct (reentrant only). */ + yyfree ( yyscanner , yyscanner ); + yyscanner = NULL; + return 0; +} + +/* + * Internal utility routines. + */ + +#ifndef yytext_ptr +static void yy_flex_strncpy (char* s1, const char * s2, int n , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + + int i; + for ( i = 0; i < n; ++i ) + s1[i] = s2[i]; +} +#endif + +#ifdef YY_NEED_STRLEN +static int yy_flex_strlen (const char * s , yyscan_t yyscanner) +{ + int n; + for ( n = 0; s[n]; ++n ) + ; + + return n; +} +#endif + +void *yyalloc (yy_size_t size , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + return malloc(size); +} + +void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + + /* The cast to (char *) in the following accommodates both + * implementations that use char* generic pointers, and those + * that use void* generic pointers. It works with the latter + * because both ANSI C and C++ allow castless assignment from + * any pointer type to void*, and deal with argument conversions + * as though doing an assignment. + */ + return realloc(ptr, size); +} + +void yyfree (void * ptr , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ +} + +#define YYTABLES_NAME "yytables" + +#line 1127 "parser.l" + + +static int directive_tok(scanner_t *yyscanner, int tok, int state) +{ + struct yyguts_t *yyg = convert(struct yyguts_t *, yyscanner); + char *pstart = yytext + 1 + strspn(yytext + 1, " \t"); + char *pcolon = strchr(pstart, ':'); + char *pend = pstart + strspn(pstart, ":-abcdefghijklmnopqrstuvwxyz"); + + *pend = 0; + + if (pcolon != 0) { + val pkgname = string_utf8((*pcolon = 0, pstart)); + val package = if3(pstart[0], find_package(pkgname), keyword_package); + if (!package) { + yyerrprepf(yyg, lit("package ~a not found"), pkgname, nao); + tok = ERRTOK; + } + if (package != user_package && package != keyword_package) { + val sym = string_utf8(pcolon + 1); + yyerrprepf(yyg, lit("~a:~a: original usr package expected, not ~a"), + pkgname, sym, pkgname, nao); + tok = ERRTOK; + } + } else { + val symname = string_utf8(pstart); + val sym = intern_fallback(symname, cur_package); + val package = symbol_package(sym); + + if (package != user_package && package != keyword_package) { + yyerrprepf(yyg, lit("~a: this is ~a:~a, not usr:~a"), + symname, package_name(package), symname, symname, nao); + tok = ERRTOK; + } + } + + if (state != 0) + yy_push_state(state, yyscanner); + else + yy_pop_state(yyscanner); + yylval->lineno = yyextra->lineno; + return tok; +} + +void end_of_regex(scanner_t *yyg) +{ + if (YYSTATE != REGEX && YYSTATE != SREGEX) + internal_error("end_of_regex called in wrong scanner state"); + + yy_pop_state(yyg); + + if (YYSTATE != INITIAL) { + if (yy_top_state(yyg) == INITIAL + || yy_top_state(yyg) == QSILIT + || yy_top_state(yyg) == QWLIT) + yy_pop_state(yyg); + } +} + +void end_of_char(scanner_t *yyg) +{ + if (YYSTATE != CHRLIT) + internal_error("end_of_char called in wrong scanner state"); + + yy_pop_state(yyg); +} + +void end_of_buflit(scanner_t *yyg) +{ + if (YYSTATE != BUFLIT) + internal_error("end_of_buflit called in wrong scanner state"); + + yy_pop_state(yyg); +} + +val source_loc(val form) +{ + return gethash(form_to_ln_hash, form); +} + +val source_loc_str(val form, val alt) +{ + cons_bind (line, file, gethash(form_to_ln_hash, form)); + if (missingp(alt)) + alt = lit("source location n/a"); + return if3(line, format(nil, lit("~a:~d"), file, line, nao), alt); +} + +int yylex(YYSTYPE *yylval_param, yyscan_t yyscanner) +{ + struct yyguts_t * yyg = convert(struct yyguts_t *, yyscanner); + int yy_char; + + if (yyextra->tok_idx > 0) { + struct yy_token *tok = &yyextra->tok_pushback[--yyextra->tok_idx]; + yyextra->recent_tok = *tok; + *yylval_param = tok->yy_lval; + return tok->yy_char; + } + + yy_char = yyextra->recent_tok.yy_char = yylex_impl(yylval_param, yyscanner); + yyextra->recent_tok.yy_lval = *yylval_param; + + return yy_char; +} + +void prime_scanner(scanner_t *yyg, enum prime_parser prim) +{ + while (YYSTATE != INITIAL) + yy_pop_state(yyg); + + switch (prim) { + case prime_lisp: + case prime_interactive: + yy_push_state(SPECIAL, yyg); + yy_push_state(NESTED, yyg); + yy_push_state(NESTED, yyg); + break; + case prime_regex: + yy_push_state(SREGEX, yyg); + break; + } +} + +void scrub_scanner(scanner_t *yyg, int yy_char, wchar_t *lexeme) +{ + struct yy_token *rtok = &yyextra->recent_tok; + + if (rtok->yy_char == yy_char && rtok->yy_lval.lexeme == lexeme) { + rtok->yy_char = 0; + rtok->yy_lval.lexeme = 0; + } +} + +void parser_l_init(void) +{ + prot1(&form_to_ln_hash); + form_to_ln_hash = make_eq_hash(t, nil); +} + diff --git a/y.tab.c.shipped b/y.tab.c.shipped new file mode 100644 index 00000000..2345cb9a --- /dev/null +++ b/y.tab.c.shipped @@ -0,0 +1,7366 @@ +/* A Bison parser, made by GNU Bison 2.5. */ + +/* Bison implementation for Yacc-like parsers in C + + Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +/* As a special exception, you may create a larger work that contains + part or all of the Bison parser skeleton and distribute that work + under terms of your choice, so long as that work isn't itself a + parser generator using the skeleton or a modified version thereof + as a parser skeleton. Alternatively, if you modify or redistribute + the parser skeleton itself, you may (at your option) remove this + special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public + License without this special exception. + + This special exception was added by the Free Software Foundation in + version 2.2 of Bison. */ + +/* C LALR(1) parser skeleton written by Richard Stallman, by + simplifying the original so-called "semantic" parser. */ + +/* All symbols defined below should begin with yy or YY, to avoid + infringing on user name space. This should be done even for local + variables, as they might otherwise be expanded by user macros. + There are some unavoidable exceptions within include files to + define necessary library symbols; they are noted "INFRINGES ON + USER NAME SPACE" below. */ + +/* Identify Bison output. */ +#define YYBISON 1 + +/* Bison version. */ +#define YYBISON_VERSION "2.5" + +/* Skeleton name. */ +#define YYSKELETON_NAME "yacc.c" + +/* Pure parsers. */ +#define YYPURE 1 + +/* Push parsers. */ +#define YYPUSH 0 + +/* Pull parsers. */ +#define YYPULL 1 + +/* Using locations. */ +#define YYLSP_NEEDED 0 + + + +/* Copy the first part of user declarations. */ + +/* Line 268 of yacc.c */ +#line 1 "parser.y" + + +/* Copyright 2009-2020 + * Kaz Kylheku <kaz@kylheku.com> + * Vancouver, Canada + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include <stddef.h> +#include <stdio.h> +#include <assert.h> +#include <limits.h> +#include <stdlib.h> +#include <wchar.h> +#include <signal.h> +#include "config.h" +#include "alloca.h" +#include "lib.h" +#include "signal.h" +#include "unwind.h" +#include "regex.h" +#include "match.h" +#include "hash.h" +#include "struct.h" +#include "eval.h" +#include "tree.h" +#include "y.tab.h" +#include "debug.h" +#include "txr.h" +#include "itypes.h" +#include "buf.h" +#include "parser.h" + +static val sym_helper(parser_t *parser, wchar_t *lexeme, val meta_allowed); +static val repeat_rep_helper(val sym, val args, val main, val parts); +static void process_catch_exprs(val exprs); +static val define_transform(parser_t *parser, val define_form); +static val optimize_text(val text_form); +static val unquotes_occur(val quoted_form, int level); +static val rlrec(parser_t *, val form, val line); +static val rlcp_parser(parser_t *parser, val to, val from); +static wchar_t char_from_name(const wchar_t *name); +static val make_expr(parser_t *, val sym, val rest, val lineno); +static val check_parse_time_action(val spec_rev); +static val uref_helper(parser_t *, val expr); +static val uoref_helper(parser_t *, val expr); +static val qref_helper(parser_t *, val lexpr, val rexpr); +static val fname_helper(parser_t *, val name); + +#if YYBISON +union YYSTYPE; +int yylex(union YYSTYPE *, yyscan_t scanner); +int yyparse(scanner_t *, parser_t *); +#endif + +#define rl(form, line) rlrec(parser, form, line) +#define rlc(to, from) rlcp_parser(parser, to, from) +#define mkexp(sym, rest, lineno) make_expr(parser, sym, rest, lineno) +#define symhlpr(lexeme, meta_allowed) sym_helper(parser, lexeme, meta_allowed) +#define yyerr(msg) yyerror(scnr, parser, msg) +#define yybadtok(tok, context) yybadtoken(parser, tok, context) +#define ifnign(expr) (parser->ignore ? nil : (expr)) + +INLINE val expand_forms_ver(val forms, int ver) +{ + if (!opt_compat || opt_compat >= ver) + return expand_forms(forms, nil); + return forms; +} + +INLINE val expand_form_ver(val form, int ver) +{ + if (!opt_compat || opt_compat >= ver) + return expand(form, nil); + return form; +} + + + +/* Line 268 of yacc.c */ +#line 172 "y.tab.c" + +/* Enabling traces. */ +#ifndef YYDEBUG +# define YYDEBUG 0 +#endif + +/* Enabling verbose error messages. */ +#ifdef YYERROR_VERBOSE +# undef YYERROR_VERBOSE +# define YYERROR_VERBOSE 1 +#else +# define YYERROR_VERBOSE 0 +#endif + +/* Enabling the token table. */ +#ifndef YYTOKEN_TABLE +# define YYTOKEN_TABLE 0 +#endif + + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + SPACE = 258, + TEXT = 259, + SYMTOK = 260, + ALL = 261, + SOME = 262, + NONE = 263, + MAYBE = 264, + CASES = 265, + BLOCK = 266, + CHOOSE = 267, + GATHER = 268, + AND = 269, + OR = 270, + END = 271, + COLLECT = 272, + UNTIL = 273, + COLL = 274, + OUTPUT = 275, + REPEAT = 276, + REP = 277, + SINGLE = 278, + FIRST = 279, + LAST = 280, + EMPTY = 281, + MOD = 282, + MODLAST = 283, + DEFINE = 284, + TRY = 285, + CATCH = 286, + FINALLY = 287, + IF = 288, + ERRTOK = 289, + HASH_BACKSLASH = 290, + HASH_SLASH = 291, + DOTDOT = 292, + HASH_H = 293, + HASH_S = 294, + HASH_R = 295, + HASH_SEMI = 296, + HASH_B_QUOTE = 297, + HASH_N = 298, + HASH_T = 299, + WORDS = 300, + WSPLICE = 301, + QWORDS = 302, + QWSPLICE = 303, + SECRET_ESCAPE_R = 304, + SECRET_ESCAPE_E = 305, + SECRET_ESCAPE_I = 306, + OLD_DOTDOT = 307, + NUMBER = 308, + METANUM = 309, + HASH_N_EQUALS = 310, + HASH_N_HASH = 311, + REGCHAR = 312, + REGTOKEN = 313, + LITCHAR = 314, + SPLICE = 315, + CONSDOT = 316, + LAMBDOT = 317, + UREFDOT = 318, + OREFDOT = 319, + UOREFDOT = 320, + LOW = 321, + ELSE = 322, + ELIF = 323 + }; +#endif +/* Tokens. */ +#define SPACE 258 +#define TEXT 259 +#define SYMTOK 260 +#define ALL 261 +#define SOME 262 +#define NONE 263 +#define MAYBE 264 +#define CASES 265 +#define BLOCK 266 +#define CHOOSE 267 +#define GATHER 268 +#define AND 269 +#define OR 270 +#define END 271 +#define COLLECT 272 +#define UNTIL 273 +#define COLL 274 +#define OUTPUT 275 +#define REPEAT 276 +#define REP 277 +#define SINGLE 278 +#define FIRST 279 +#define LAST 280 +#define EMPTY 281 +#define MOD 282 +#define MODLAST 283 +#define DEFINE 284 +#define TRY 285 +#define CATCH 286 +#define FINALLY 287 +#define IF 288 +#define ERRTOK 289 +#define HASH_BACKSLASH 290 +#define HASH_SLASH 291 +#define DOTDOT 292 +#define HASH_H 293 +#define HASH_S 294 +#define HASH_R 295 +#define HASH_SEMI 296 +#define HASH_B_QUOTE 297 +#define HASH_N 298 +#define HASH_T 299 +#define WORDS 300 +#define WSPLICE 301 +#define QWORDS 302 +#define QWSPLICE 303 +#define SECRET_ESCAPE_R 304 +#define SECRET_ESCAPE_E 305 +#define SECRET_ESCAPE_I 306 +#define OLD_DOTDOT 307 +#define NUMBER 308 +#define METANUM 309 +#define HASH_N_EQUALS 310 +#define HASH_N_HASH 311 +#define REGCHAR 312 +#define REGTOKEN 313 +#define LITCHAR 314 +#define SPLICE 315 +#define CONSDOT 316 +#define LAMBDOT 317 +#define UREFDOT 318 +#define OREFDOT 319 +#define UOREFDOT 320 +#define LOW 321 +#define ELSE 322 +#define ELIF 323 + + + + +#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED +typedef union YYSTYPE +{ + +/* Line 293 of yacc.c */ +#line 106 "parser.y" + + wchar_t *lexeme; + union obj *val; + wchar_t chr; + cnum lineno; + + + +/* Line 293 of yacc.c */ +#line 353 "y.tab.c" +} YYSTYPE; +# define YYSTYPE_IS_TRIVIAL 1 +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 +#endif + + +/* Copy the second part of user declarations. */ + + +/* Line 343 of yacc.c */ +#line 365 "y.tab.c" + +#ifdef short +# undef short +#endif + +#ifdef YYTYPE_UINT8 +typedef YYTYPE_UINT8 yytype_uint8; +#else +typedef unsigned char yytype_uint8; +#endif + +#ifdef YYTYPE_INT8 +typedef YYTYPE_INT8 yytype_int8; +#elif (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +typedef signed char yytype_int8; +#else +typedef short int yytype_int8; +#endif + +#ifdef YYTYPE_UINT16 +typedef YYTYPE_UINT16 yytype_uint16; +#else +typedef unsigned short int yytype_uint16; +#endif + +#ifdef YYTYPE_INT16 +typedef YYTYPE_INT16 yytype_int16; +#else +typedef short int yytype_int16; +#endif + +#ifndef YYSIZE_T +# ifdef __SIZE_TYPE__ +# define YYSIZE_T __SIZE_TYPE__ +# elif defined size_t +# define YYSIZE_T size_t +# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include <stddef.h> /* INFRINGES ON USER NAME SPACE */ +# define YYSIZE_T size_t +# else +# define YYSIZE_T unsigned int +# endif +#endif + +#define YYSIZE_MAXIMUM ((YYSIZE_T) -1) + +#ifndef YY_ +# if defined YYENABLE_NLS && YYENABLE_NLS +# if ENABLE_NLS +# include <libintl.h> /* INFRINGES ON USER NAME SPACE */ +# define YY_(msgid) dgettext ("bison-runtime", msgid) +# endif +# endif +# ifndef YY_ +# define YY_(msgid) msgid +# endif +#endif + +/* Suppress unused-variable warnings by "using" E. */ +#if ! defined lint || defined __GNUC__ +# define YYUSE(e) ((void) (e)) +#else +# define YYUSE(e) /* empty */ +#endif + +/* Identity function, used to suppress warnings about constant conditions. */ +#ifndef lint +# define YYID(n) (n) +#else +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static int +YYID (int yyi) +#else +static int +YYID (yyi) + int yyi; +#endif +{ + return yyi; +} +#endif + +#if ! defined yyoverflow || YYERROR_VERBOSE + +/* The parser invokes alloca or malloc; define the necessary symbols. */ + +# ifdef YYSTACK_USE_ALLOCA +# if YYSTACK_USE_ALLOCA +# ifdef __GNUC__ +# define YYSTACK_ALLOC __builtin_alloca +# elif defined __BUILTIN_VA_ARG_INCR +# include <alloca.h> /* INFRINGES ON USER NAME SPACE */ +# elif defined _AIX +# define YYSTACK_ALLOC __alloca +# elif defined _MSC_VER +# include <malloc.h> /* INFRINGES ON USER NAME SPACE */ +# define alloca _alloca +# else +# define YYSTACK_ALLOC alloca +# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 +# endif +# endif +# endif +# endif +# endif + +# ifdef YYSTACK_ALLOC + /* Pacify GCC's `empty if-body' warning. */ +# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) +# ifndef YYSTACK_ALLOC_MAXIMUM + /* The OS might guarantee only one guard page at the bottom of the stack, + and a page size can be as small as 4096 bytes. So we cannot safely + invoke alloca (N) if N exceeds 4096. Use a slightly smaller number + to allow for a few compiler-allocated temporary stack slots. */ +# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ +# endif +# else +# define YYSTACK_ALLOC YYMALLOC +# define YYSTACK_FREE YYFREE +# ifndef YYSTACK_ALLOC_MAXIMUM +# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM +# endif +# if (defined __cplusplus && ! defined EXIT_SUCCESS \ + && ! ((defined YYMALLOC || defined malloc) \ + && (defined YYFREE || defined free))) +# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 +# endif +# endif +# ifndef YYMALLOC +# define YYMALLOC malloc +# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# ifndef YYFREE +# define YYFREE free +# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +void free (void *); /* INFRINGES ON USER NAME SPACE */ +# endif +# endif +# endif +#endif /* ! defined yyoverflow || YYERROR_VERBOSE */ + + +#if (! defined yyoverflow \ + && (! defined __cplusplus \ + || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) + +/* A type that is properly aligned for any stack member. */ +union yyalloc +{ + yytype_int16 yyss_alloc; + YYSTYPE yyvs_alloc; +}; + +/* The size of the maximum gap between one aligned stack and the next. */ +# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) + +/* The size of an array large to enough to hold all stacks, each with + N elements. */ +# define YYSTACK_BYTES(N) \ + ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + + YYSTACK_GAP_MAXIMUM) + +# define YYCOPY_NEEDED 1 + +/* Relocate STACK from its old location to the new one. The + local variables YYSIZE and YYSTACKSIZE give the old and new number of + elements in the stack, and YYPTR gives the new location of the + stack. Advance YYPTR to a properly aligned location for the next + stack. */ +# define YYSTACK_RELOCATE(Stack_alloc, Stack) \ + do \ + { \ + YYSIZE_T yynewbytes; \ + YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ + Stack = &yyptr->Stack_alloc; \ + yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ + yyptr += yynewbytes / sizeof (*yyptr); \ + } \ + while (YYID (0)) + +#endif + +#if defined YYCOPY_NEEDED && YYCOPY_NEEDED +/* Copy COUNT objects from FROM to TO. The source and destination do + not overlap. */ +# ifndef YYCOPY +# if defined __GNUC__ && 1 < __GNUC__ +# define YYCOPY(To, From, Count) \ + __builtin_memcpy (To, From, (Count) * sizeof (*(From))) +# else +# define YYCOPY(To, From, Count) \ + do \ + { \ + YYSIZE_T yyi; \ + for (yyi = 0; yyi < (Count); yyi++) \ + (To)[yyi] = (From)[yyi]; \ + } \ + while (YYID (0)) +# endif +# endif +#endif /* !YYCOPY_NEEDED */ + +/* YYFINAL -- State number of the termination state. */ +#define YYFINAL 198 +/* YYLAST -- Last index in YYTABLE. */ +#define YYLAST 4526 + +/* YYNTOKENS -- Number of terminals. */ +#define YYNTOKENS 94 +/* YYNNTS -- Number of nonterminals. */ +#define YYNNTS 118 +/* YYNRULES -- Number of rules. */ +#define YYNRULES 418 +/* YYNRULES -- Number of states. */ +#define YYNSTATES 757 + +/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ +#define YYUNDEFTOK 2 +#define YYMAXUTOK 323 + +#define YYTRANSLATE(YYX) \ + ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) + +/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ +static const yytype_uint8 yytranslate[] = +{ + 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 89, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 93, 2, 91, 90, 2, 87, 82, 78, + 66, 75, 84, 86, 77, 76, 88, 81, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 85, 68, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 67, 2, 74, 79, 2, 92, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 70, 80, 71, 83, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 69, 72, 73 +}; + +#if YYDEBUG +/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in + YYRHS. */ +static const yytype_uint16 yyprhs[] = +{ + 0, 0, 3, 5, 8, 9, 14, 15, 20, 22, + 24, 27, 28, 32, 33, 38, 39, 44, 46, 49, + 52, 53, 57, 58, 63, 64, 69, 71, 74, 77, + 79, 81, 82, 84, 87, 89, 90, 92, 94, 96, + 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, + 118, 122, 126, 132, 138, 142, 146, 150, 154, 158, + 162, 170, 176, 182, 188, 196, 209, 215, 218, 222, + 226, 227, 235, 248, 254, 256, 258, 260, 262, 265, + 268, 272, 276, 286, 292, 299, 300, 304, 305, 308, + 310, 311, 313, 316, 318, 320, 322, 324, 326, 329, + 331, 333, 335, 341, 351, 357, 367, 373, 376, 379, + 382, 385, 390, 393, 396, 399, 404, 410, 413, 415, + 418, 421, 429, 436, 439, 445, 450, 457, 461, 467, + 474, 478, 479, 484, 490, 494, 502, 508, 515, 523, + 532, 535, 541, 546, 553, 559, 561, 564, 566, 568, + 570, 579, 583, 588, 593, 600, 605, 612, 619, 620, + 630, 633, 639, 646, 647, 651, 652, 654, 655, 658, + 660, 661, 663, 666, 668, 671, 673, 675, 677, 679, + 681, 688, 691, 695, 699, 705, 709, 715, 721, 722, + 724, 728, 733, 736, 741, 747, 753, 756, 759, 761, + 763, 765, 767, 769, 771, 776, 779, 785, 789, 792, + 795, 798, 801, 804, 807, 810, 813, 816, 819, 822, + 825, 829, 834, 837, 842, 847, 850, 853, 856, 861, + 865, 868, 871, 873, 875, 877, 879, 881, 882, 884, + 888, 890, 891, 895, 896, 901, 904, 907, 911, 914, + 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, + 938, 940, 942, 944, 946, 949, 952, 954, 957, 958, + 962, 963, 967, 968, 972, 973, 977, 979, 982, 984, + 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, + 1006, 1008, 1010, 1012, 1015, 1018, 1020, 1023, 1024, 1028, + 1029, 1033, 1034, 1038, 1042, 1047, 1051, 1056, 1060, 1064, + 1067, 1070, 1071, 1075, 1077, 1079, 1080, 1083, 1086, 1088, + 1092, 1095, 1099, 1102, 1104, 1108, 1112, 1115, 1116, 1118, + 1121, 1125, 1128, 1131, 1134, 1138, 1142, 1145, 1148, 1150, + 1152, 1154, 1156, 1158, 1162, 1165, 1167, 1170, 1172, 1174, + 1176, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, + 1198, 1200, 1202, 1204, 1206, 1208, 1211, 1214, 1218, 1221, + 1224, 1227, 1230, 1233, 1237, 1240, 1242, 1245, 1247, 1249, + 1251, 1253, 1256, 1258, 1261, 1263, 1266, 1268, 1271, 1274, + 1276, 1278, 1281, 1284, 1288, 1291, 1295, 1298, 1301, 1303, + 1306, 1309, 1311, 1313, 1315, 1317, 1319, 1321, 1323, 1325, + 1327, 1331, 1335, 1339, 1343, 1347, 1351, 1355, 1361 +}; + +/* YYRHS -- A `-1'-separated list of the rules' RHS. */ +static const yytype_int16 yyrhs[] = +{ + 95, 0, -1, 108, -1, 49, 190, -1, -1, 50, + 98, 96, 106, -1, -1, 51, 102, 97, 106, -1, + 50, -1, 51, -1, 1, 89, -1, -1, 41, 99, + 181, -1, -1, 41, 88, 100, 181, -1, -1, 41, + 64, 101, 181, -1, 181, -1, 88, 181, -1, 64, + 181, -1, -1, 41, 103, 175, -1, -1, 41, 88, + 104, 175, -1, -1, 41, 64, 105, 175, -1, 175, + -1, 88, 175, -1, 64, 175, -1, 181, -1, 41, + -1, -1, 109, -1, 107, 109, -1, 107, -1, -1, + 110, -1, 111, -1, 112, -1, 113, -1, 114, -1, + 115, -1, 116, -1, 120, -1, 117, -1, 136, -1, + 137, -1, 125, -1, 139, -1, 128, -1, 6, 198, + 123, -1, 6, 198, 1, -1, 7, 170, 75, 198, + 123, -1, 7, 170, 75, 198, 1, -1, 8, 198, + 123, -1, 8, 198, 1, -1, 9, 198, 123, -1, + 9, 198, 1, -1, 10, 198, 123, -1, 10, 198, + 1, -1, 11, 170, 75, 198, 108, 16, 198, -1, + 11, 170, 75, 198, 1, -1, 12, 170, 75, 198, + 123, -1, 12, 170, 75, 198, 1, -1, 13, 170, + 75, 198, 118, 16, 198, -1, 13, 170, 75, 198, + 118, 122, 170, 75, 198, 108, 16, 198, -1, 13, + 170, 75, 198, 1, -1, 108, 119, -1, 14, 198, + 118, -1, 15, 198, 118, -1, -1, 121, 170, 75, + 198, 108, 16, 198, -1, 121, 170, 75, 198, 108, + 122, 170, 75, 198, 108, 16, 198, -1, 121, 170, + 75, 198, 1, -1, 17, -1, 21, -1, 18, -1, + 25, -1, 108, 124, -1, 16, 198, -1, 14, 198, + 123, -1, 15, 198, 123, -1, 33, 186, 75, 198, + 108, 126, 127, 16, 198, -1, 33, 186, 75, 198, + 1, -1, 73, 186, 75, 198, 108, 126, -1, -1, + 72, 198, 108, -1, -1, 129, 89, -1, 130, -1, + -1, 133, -1, 133, 130, -1, 4, -1, 3, -1, + 188, -1, 26, -1, 131, -1, 131, 132, -1, 132, + -1, 154, -1, 165, -1, 19, 170, 75, 129, 16, + -1, 19, 170, 75, 129, 122, 170, 75, 129, 16, + -1, 22, 170, 75, 130, 16, -1, 22, 170, 75, + 130, 122, 170, 75, 130, 16, -1, 11, 170, 75, + 130, 16, -1, 19, 1, -1, 22, 1, -1, 11, + 1, -1, 6, 134, -1, 7, 170, 75, 134, -1, + 8, 134, -1, 9, 134, -1, 10, 134, -1, 12, + 170, 75, 134, -1, 29, 169, 75, 130, 16, -1, + 129, 135, -1, 16, -1, 14, 134, -1, 15, 134, + -1, 29, 169, 75, 198, 108, 16, 198, -1, 29, + 75, 198, 108, 16, 198, -1, 29, 1, -1, 29, + 169, 75, 198, 1, -1, 29, 75, 198, 1, -1, + 30, 198, 108, 138, 16, 198, -1, 30, 198, 1, + -1, 31, 75, 198, 108, 138, -1, 31, 169, 75, + 198, 108, 138, -1, 32, 198, 108, -1, -1, 31, + 75, 198, 1, -1, 31, 169, 75, 198, 1, -1, + 32, 198, 1, -1, 20, 75, 150, 89, 140, 16, + 198, -1, 20, 75, 198, 16, 198, -1, 20, 75, + 198, 140, 16, 198, -1, 20, 169, 75, 198, 140, + 16, 198, -1, 20, 169, 75, 150, 89, 140, 16, + 198, -1, 20, 1, -1, 20, 75, 150, 89, 1, + -1, 20, 75, 198, 1, -1, 20, 169, 75, 150, + 89, 1, -1, 20, 169, 75, 198, 1, -1, 141, + -1, 141, 140, -1, 142, -1, 144, -1, 148, -1, + 21, 186, 75, 198, 147, 143, 16, 198, -1, 21, + 198, 1, -1, 23, 198, 147, 143, -1, 24, 198, + 147, 143, -1, 25, 170, 75, 198, 147, 143, -1, + 26, 198, 147, 143, -1, 27, 170, 75, 198, 147, + 143, -1, 28, 170, 75, 198, 147, 143, -1, -1, + 33, 181, 75, 198, 147, 145, 146, 16, 198, -1, + 33, 75, -1, 33, 181, 75, 198, 1, -1, 73, + 186, 75, 198, 147, 145, -1, -1, 72, 198, 147, + -1, -1, 140, -1, -1, 149, 89, -1, 150, -1, + -1, 151, -1, 151, 150, -1, 211, -1, 211, 150, + -1, 4, -1, 3, -1, 157, -1, 168, -1, 152, + -1, 22, 186, 75, 149, 153, 16, -1, 22, 1, + -1, 23, 149, 153, -1, 24, 149, 153, -1, 25, + 170, 75, 149, 153, -1, 26, 149, 153, -1, 27, + 170, 75, 149, 153, -1, 28, 170, 75, 149, 153, + -1, -1, 5, -1, 70, 5, 71, -1, 70, 5, + 156, 71, -1, 155, 5, -1, 155, 70, 5, 71, + -1, 155, 70, 5, 188, 71, -1, 155, 70, 5, + 53, 71, -1, 5, 1, -1, 155, 1, -1, 84, + -1, 53, -1, 188, -1, 168, -1, 5, -1, 5, + -1, 70, 181, 186, 71, -1, 5, 1, -1, 68, + 70, 181, 186, 71, -1, 68, 70, 1, -1, 90, + 165, -1, 90, 1, -1, 38, 165, -1, 38, 1, + -1, 39, 165, -1, 39, 1, -1, 40, 165, -1, + 40, 1, -1, 43, 165, -1, 43, 1, -1, 44, + 165, -1, 44, 1, -1, 66, 171, 75, -1, 66, + 88, 171, 75, -1, 66, 75, -1, 66, 62, 181, + 75, -1, 66, 61, 181, 75, -1, 66, 1, -1, + 68, 181, -1, 68, 1, -1, 67, 88, 171, 74, + -1, 67, 171, 74, -1, 67, 74, -1, 67, 1, + -1, 165, -1, 167, -1, 166, -1, 171, -1, 169, + -1, -1, 172, -1, 172, 61, 181, -1, 181, -1, + -1, 41, 173, 181, -1, -1, 172, 41, 174, 181, + -1, 172, 181, -1, 46, 206, -1, 172, 46, 206, + -1, 48, 207, -1, 172, 48, 207, -1, 5, -1, + 54, -1, 53, -1, 168, -1, 159, -1, 160, -1, + 161, -1, 162, -1, 163, -1, 164, -1, 189, -1, + 200, -1, 199, -1, 201, -1, 45, 206, -1, 47, + 207, -1, 208, -1, 78, 180, -1, -1, 79, 176, + 180, -1, -1, 77, 177, 180, -1, -1, 60, 178, + 180, -1, -1, 55, 179, 180, -1, 56, -1, 88, + 175, -1, 175, -1, 5, -1, 54, -1, 53, -1, + 168, -1, 159, -1, 160, -1, 161, -1, 162, -1, + 163, -1, 164, -1, 189, -1, 200, -1, 199, -1, + 201, -1, 45, 206, -1, 47, 207, -1, 208, -1, + 78, 187, -1, -1, 79, 182, 187, -1, -1, 77, + 183, 187, -1, -1, 60, 184, 187, -1, 181, 37, + 181, -1, 181, 37, 88, 181, -1, 181, 52, 181, + -1, 181, 52, 88, 181, -1, 181, 88, 181, -1, + 181, 64, 181, -1, 63, 181, -1, 65, 181, -1, + -1, 55, 185, 187, -1, 56, -1, 171, -1, -1, + 88, 181, -1, 64, 181, -1, 181, -1, 81, 190, + 81, -1, 81, 1, -1, 36, 190, 81, -1, 36, + 1, -1, 191, -1, 190, 80, 190, -1, 190, 82, + 190, -1, 83, 190, -1, -1, 192, -1, 192, 191, + -1, 192, 83, 190, -1, 192, 84, -1, 192, 86, + -1, 192, 85, -1, 192, 87, 190, -1, 67, 193, + 74, -1, 67, 74, -1, 67, 1, -1, 88, -1, + 74, -1, 76, -1, 57, -1, 197, -1, 66, 190, + 75, -1, 66, 1, -1, 194, -1, 194, 193, -1, + 195, -1, 196, -1, 197, -1, 196, 76, 196, -1, + 85, -1, 88, -1, 84, -1, 86, -1, 66, -1, + 75, -1, 80, -1, 83, -1, 82, -1, 87, -1, + 81, -1, 57, -1, 58, -1, 89, -1, 1, 89, + -1, 91, 91, -1, 91, 204, 91, -1, 91, 1, + -1, 35, 5, -1, 35, 59, -1, 35, 1, -1, + 92, 92, -1, 92, 202, 92, -1, 92, 1, -1, + 203, -1, 203, 202, -1, 204, -1, 4, -1, 158, + -1, 54, -1, 68, 181, -1, 59, -1, 59, 205, + -1, 59, -1, 205, 59, -1, 91, -1, 93, 206, + -1, 204, 206, -1, 1, -1, 92, -1, 93, 207, + -1, 202, 92, -1, 202, 93, 207, -1, 42, 78, + -1, 42, 209, 78, -1, 42, 1, -1, 209, 210, + -1, 210, -1, 59, 59, -1, 59, 1, -1, 6, + -1, 7, -1, 8, -1, 9, -1, 10, -1, 14, + -1, 15, -1, 30, -1, 32, -1, 11, 170, 75, + -1, 12, 170, 75, -1, 17, 170, 75, -1, 19, + 170, 75, -1, 13, 170, 75, -1, 29, 170, 75, + -1, 31, 170, 75, -1, 33, 181, 181, 170, 75, + -1, 20, 170, 75, -1 +}; + +/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ +static const yytype_uint16 yyrline[] = +{ + 0, 173, 173, 174, 176, 175, 179, 178, 181, 188, + 195, 204, 204, 207, 207, 210, 210, 213, 214, 215, + 218, 218, 221, 221, 224, 224, 227, 228, 229, 234, + 235, 236, 239, 240, 243, 244, 247, 248, 249, 250, + 251, 252, 253, 254, 255, 256, 259, 260, 261, 262, + 265, 267, 271, 274, 280, 282, 286, 288, 292, 294, + 298, 309, 314, 317, 322, 331, 343, 348, 352, 353, + 354, 357, 363, 375, 380, 381, 384, 385, 388, 391, + 392, 393, 396, 419, 423, 436, 439, 444, 447, 450, + 451, 454, 456, 461, 462, 470, 472, 475, 476, 479, + 481, 483, 491, 494, 502, 505, 514, 517, 519, 521, + 523, 524, 526, 527, 528, 529, 532, 538, 541, 542, + 543, 546, 551, 555, 557, 559, 564, 572, 577, 582, + 588, 593, 594, 597, 600, 606, 610, 612, 615, 627, + 632, 634, 637, 640, 643, 648, 649, 652, 653, 654, + 657, 663, 668, 672, 676, 685, 689, 696, 703, 706, + 718, 721, 725, 736, 739, 742, 745, 746, 748, 751, + 753, 756, 757, 758, 759, 762, 764, 766, 767, 769, + 772, 775, 779, 782, 785, 793, 796, 802, 808, 815, + 816, 817, 818, 819, 820, 823, 827, 829, 833, 836, + 837, 839, 841, 844, 849, 858, 862, 865, 870, 875, + 879, 885, 889, 896, 900, 904, 908, 913, 917, 930, + 934, 935, 941, 942, 943, 944, 948, 953, 957, 961, + 962, 963, 967, 968, 969, 972, 975, 976, 979, 981, + 986, 989, 989, 993, 993, 996, 999, 1001, 1005, 1007, + 1013, 1014, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, + 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1033, 1033, + 1037, 1037, 1041, 1041, 1045, 1045, 1048, 1051, 1052, 1054, + 1055, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, + 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1074, 1074, 1078, + 1078, 1082, 1082, 1086, 1089, 1095, 1099, 1105, 1106, 1109, + 1110, 1111, 1111, 1114, 1117, 1118, 1121, 1122, 1123, 1126, + 1129, 1134, 1138, 1144, 1147, 1148, 1149, 1150, 1153, 1154, + 1155, 1158, 1159, 1160, 1161, 1162, 1169, 1170, 1172, 1173, + 1174, 1175, 1176, 1177, 1178, 1182, 1183, 1186, 1187, 1188, + 1191, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, + 1202, 1203, 1204, 1207, 1221, 1222, 1226, 1227, 1229, 1233, + 1246, 1248, 1253, 1254, 1257, 1261, 1263, 1267, 1268, 1269, + 1270, 1272, 1279, 1280, 1284, 1285, 1288, 1289, 1290, 1292, + 1296, 1297, 1298, 1300, 1306, 1308, 1311, 1316, 1318, 1322, + 1323, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, + 1339, 1341, 1343, 1345, 1347, 1349, 1351, 1353, 1358 +}; +#endif + +#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE +/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. + First, the terminals, then, starting at YYNTOKENS, nonterminals. */ +static const char *const yytname[] = +{ + "$end", "error", "$undefined", "SPACE", "TEXT", "SYMTOK", "ALL", "SOME", + "NONE", "MAYBE", "CASES", "BLOCK", "CHOOSE", "GATHER", "AND", "OR", + "END", "COLLECT", "UNTIL", "COLL", "OUTPUT", "REPEAT", "REP", "SINGLE", + "FIRST", "LAST", "EMPTY", "MOD", "MODLAST", "DEFINE", "TRY", "CATCH", + "FINALLY", "IF", "ERRTOK", "HASH_BACKSLASH", "HASH_SLASH", "DOTDOT", + "HASH_H", "HASH_S", "HASH_R", "HASH_SEMI", "HASH_B_QUOTE", "HASH_N", + "HASH_T", "WORDS", "WSPLICE", "QWORDS", "QWSPLICE", "SECRET_ESCAPE_R", + "SECRET_ESCAPE_E", "SECRET_ESCAPE_I", "OLD_DOTDOT", "NUMBER", "METANUM", + "HASH_N_EQUALS", "HASH_N_HASH", "REGCHAR", "REGTOKEN", "LITCHAR", + "SPLICE", "CONSDOT", "LAMBDOT", "UREFDOT", "OREFDOT", "UOREFDOT", "'('", + "'['", "'@'", "LOW", "'{'", "'}'", "ELSE", "ELIF", "']'", "')'", "'-'", + "','", "'\\''", "'^'", "'|'", "'/'", "'&'", "'~'", "'*'", "'?'", "'+'", + "'%'", "'.'", "'\\n'", "'#'", "'\"'", "'`'", "' '", "$accept", "spec", + "$@1", "$@2", "hash_semi_or_n_expr", "$@3", "$@4", "$@5", + "hash_semi_or_i_expr", "$@6", "$@7", "$@8", "byacc_fool", "clauses_rev", + "clauses_opt", "clause", "all_clause", "some_clause", "none_clause", + "maybe_clause", "cases_clause", "block_clause", "choose_clause", + "gather_clause", "gather_parts", "additional_gather_parts", + "collect_clause", "collect_repeat", "until_last", "clause_parts", + "additional_parts", "if_clause", "elif_clauses_opt", "else_clause_opt", + "line", "elems_opt", "elems", "text", "texts", "elem", "clause_parts_h", + "additional_parts_h", "define_clause", "try_clause", "catch_clauses_opt", + "output_clause", "out_clauses", "out_clause", "repeat_clause", + "repeat_parts_opt", "out_if_clause", "out_elif_clauses_opt", + "out_else_clause_opt", "out_clauses_opt", "o_line", "o_elems_opt", + "o_elems", "o_elem", "rep_elem", "rep_parts_opt", "var", "var_op", + "modifiers", "o_var", "q_var", "vector", "hash", "struct", "range", + "tnode", "tree", "list", "meta", "dwim", "compound", "exprs", + "exprs_opt", "n_exprs", "listacc", "$@9", "$@10", "i_expr", "$@11", + "$@12", "$@13", "$@14", "i_dot_expr", "n_expr", "$@15", "$@16", "$@17", + "$@18", "n_exprs_opt", "n_dot_expr", "regex", "lisp_regex", "regexpr", + "regbranch", "regterm", "regclass", "regclassterm", "regrange", + "regchar", "regtoken", "newl", "strlit", "chrlit", "quasilit", + "quasi_items", "quasi_item", "litchars", "restlitchar", "wordslit", + "wordsqlit", "buflit", "buflit_items", "buflit_item", "not_a_clause", 0 +}; +#endif + +# ifdef YYPRINT +/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to + token YYLEX-NUM. */ +static const yytype_uint16 yytoknum[] = +{ + 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, + 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, + 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, + 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, + 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 315, 316, 317, 318, 319, 320, 40, 91, 64, 321, + 123, 125, 322, 323, 93, 41, 45, 44, 39, 94, + 124, 47, 38, 126, 42, 63, 43, 37, 46, 10, + 35, 34, 96, 32 +}; +# endif + +/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ +static const yytype_uint8 yyr1[] = +{ + 0, 94, 95, 95, 96, 95, 97, 95, 95, 95, + 95, 99, 98, 100, 98, 101, 98, 98, 98, 98, + 103, 102, 104, 102, 105, 102, 102, 102, 102, 106, + 106, 106, 107, 107, 108, 108, 109, 109, 109, 109, + 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, + 110, 110, 111, 111, 112, 112, 113, 113, 114, 114, + 115, 115, 116, 116, 117, 117, 117, 118, 119, 119, + 119, 120, 120, 120, 121, 121, 122, 122, 123, 124, + 124, 124, 125, 125, 126, 126, 127, 127, 128, 129, + 129, 130, 130, 131, 131, 131, 131, 132, 132, 133, + 133, 133, 133, 133, 133, 133, 133, 133, 133, 133, + 133, 133, 133, 133, 133, 133, 133, 134, 135, 135, + 135, 136, 136, 136, 136, 136, 137, 137, 138, 138, + 138, 138, 138, 138, 138, 139, 139, 139, 139, 139, + 139, 139, 139, 139, 139, 140, 140, 141, 141, 141, + 142, 142, 143, 143, 143, 143, 143, 143, 143, 144, + 144, 144, 145, 145, 146, 146, 147, 147, 148, 149, + 149, 150, 150, 150, 150, 151, 151, 151, 151, 151, + 152, 152, 153, 153, 153, 153, 153, 153, 153, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 155, 156, + 156, 156, 156, 157, 157, 157, 158, 158, 159, 159, + 160, 160, 161, 161, 162, 162, 163, 163, 164, 164, + 165, 165, 165, 165, 165, 165, 166, 166, 167, 167, + 167, 167, 168, 168, 168, 169, 170, 170, 171, 171, + 172, 173, 172, 174, 172, 172, 172, 172, 172, 172, + 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, + 175, 175, 175, 175, 175, 175, 175, 175, 176, 175, + 177, 175, 178, 175, 179, 175, 175, 180, 180, 181, + 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, + 181, 181, 181, 181, 181, 181, 181, 182, 181, 183, + 181, 184, 181, 181, 181, 181, 181, 181, 181, 181, + 181, 185, 181, 181, 186, 186, 187, 187, 187, 188, + 188, 189, 189, 190, 190, 190, 190, 190, 191, 191, + 191, 192, 192, 192, 192, 192, 192, 192, 192, 192, + 192, 192, 192, 192, 192, 193, 193, 194, 194, 194, + 195, 196, 196, 196, 196, 196, 196, 196, 196, 196, + 196, 196, 196, 197, 198, 198, 199, 199, 199, 200, + 200, 200, 201, 201, 201, 202, 202, 203, 203, 203, + 203, 203, 204, 204, 205, 205, 206, 206, 206, 206, + 207, 207, 207, 207, 208, 208, 208, 209, 209, 210, + 210, 211, 211, 211, 211, 211, 211, 211, 211, 211, + 211, 211, 211, 211, 211, 211, 211, 211, 211 +}; + +/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ +static const yytype_uint8 yyr2[] = +{ + 0, 2, 1, 2, 0, 4, 0, 4, 1, 1, + 2, 0, 3, 0, 4, 0, 4, 1, 2, 2, + 0, 3, 0, 4, 0, 4, 1, 2, 2, 1, + 1, 0, 1, 2, 1, 0, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 3, 3, 5, 5, 3, 3, 3, 3, 3, 3, + 7, 5, 5, 5, 7, 12, 5, 2, 3, 3, + 0, 7, 12, 5, 1, 1, 1, 1, 2, 2, + 3, 3, 9, 5, 6, 0, 3, 0, 2, 1, + 0, 1, 2, 1, 1, 1, 1, 1, 2, 1, + 1, 1, 5, 9, 5, 9, 5, 2, 2, 2, + 2, 4, 2, 2, 2, 4, 5, 2, 1, 2, + 2, 7, 6, 2, 5, 4, 6, 3, 5, 6, + 3, 0, 4, 5, 3, 7, 5, 6, 7, 8, + 2, 5, 4, 6, 5, 1, 2, 1, 1, 1, + 8, 3, 4, 4, 6, 4, 6, 6, 0, 9, + 2, 5, 6, 0, 3, 0, 1, 0, 2, 1, + 0, 1, 2, 1, 2, 1, 1, 1, 1, 1, + 6, 2, 3, 3, 5, 3, 5, 5, 0, 1, + 3, 4, 2, 4, 5, 5, 2, 2, 1, 1, + 1, 1, 1, 1, 4, 2, 5, 3, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 3, 4, 2, 4, 4, 2, 2, 2, 4, 3, + 2, 2, 1, 1, 1, 1, 1, 0, 1, 3, + 1, 0, 3, 0, 4, 2, 2, 3, 2, 3, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 2, 2, 1, 2, 0, 3, + 0, 3, 0, 3, 0, 3, 1, 2, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 2, 2, 1, 2, 0, 3, 0, + 3, 0, 3, 3, 4, 3, 4, 3, 3, 2, + 2, 0, 3, 1, 1, 0, 2, 2, 1, 3, + 2, 3, 2, 1, 3, 3, 2, 0, 1, 2, + 3, 2, 2, 2, 3, 3, 2, 2, 1, 1, + 1, 1, 1, 3, 2, 1, 2, 1, 1, 1, + 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 2, 2, 3, 2, 2, + 2, 2, 2, 3, 2, 1, 2, 1, 1, 1, + 1, 2, 1, 2, 1, 2, 1, 2, 2, 1, + 1, 2, 2, 3, 2, 3, 2, 2, 1, 2, + 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 3, 3, 3, 3, 3, 3, 3, 5, 3 +}; + +/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. + Performed when YYTABLE doesn't specify something else to do. Zero + means the default is an error. */ +static const yytype_uint16 yydefact[] = +{ + 0, 0, 94, 93, 0, 0, 237, 0, 0, 0, + 0, 237, 237, 74, 0, 0, 75, 0, 96, 0, + 0, 315, 327, 8, 9, 0, 0, 0, 198, 0, + 34, 2, 32, 36, 37, 38, 39, 40, 41, 42, + 44, 43, 237, 47, 49, 0, 89, 97, 99, 91, + 45, 46, 48, 100, 0, 101, 95, 10, 196, 0, + 90, 237, 90, 90, 90, 0, 237, 0, 364, 0, + 110, 0, 279, 0, 0, 0, 0, 0, 241, 0, + 0, 0, 0, 0, 0, 0, 281, 280, 311, 313, + 301, 0, 0, 0, 0, 299, 0, 297, 0, 0, + 0, 283, 284, 285, 286, 287, 288, 232, 234, 233, + 282, 236, 0, 235, 238, 240, 289, 291, 290, 292, + 295, 112, 0, 113, 0, 114, 0, 109, 0, 0, + 0, 107, 0, 140, 0, 0, 108, 0, 123, 0, + 0, 0, 314, 0, 341, 363, 0, 0, 339, 340, + 327, 338, 3, 323, 328, 342, 11, 0, 0, 4, + 17, 250, 20, 0, 0, 252, 251, 274, 276, 272, + 0, 270, 0, 268, 0, 6, 254, 255, 256, 257, + 258, 259, 253, 26, 260, 262, 261, 263, 266, 225, + 0, 0, 222, 0, 0, 0, 320, 0, 1, 33, + 0, 88, 98, 92, 197, 192, 0, 365, 0, 0, + 0, 0, 90, 90, 118, 117, 51, 0, 50, 371, + 369, 370, 322, 0, 211, 210, 213, 212, 215, 214, + 0, 396, 0, 394, 0, 398, 217, 216, 219, 218, + 389, 382, 386, 0, 0, 293, 246, 378, 380, 0, + 390, 0, 379, 0, 375, 377, 294, 248, 0, 0, + 309, 310, 231, 230, 0, 0, 227, 226, 0, 0, + 0, 318, 296, 0, 209, 208, 368, 366, 0, 374, + 372, 0, 0, 243, 0, 0, 0, 245, 0, 0, + 0, 0, 55, 54, 57, 56, 59, 58, 0, 0, + 0, 90, 176, 175, 0, 401, 402, 403, 404, 405, + 237, 237, 237, 406, 407, 237, 237, 237, 0, 237, + 408, 237, 409, 0, 0, 0, 171, 179, 177, 178, + 0, 173, 0, 0, 0, 0, 127, 131, 0, 344, + 0, 337, 362, 355, 336, 356, 357, 361, 359, 358, + 353, 351, 354, 360, 352, 0, 345, 347, 348, 349, + 326, 327, 327, 327, 331, 333, 332, 327, 329, 15, + 13, 0, 19, 18, 31, 24, 22, 0, 264, 265, + 0, 0, 28, 0, 0, 278, 267, 0, 27, 31, + 0, 0, 0, 220, 202, 199, 190, 0, 201, 200, + 319, 0, 0, 90, 0, 90, 0, 119, 120, 0, + 0, 0, 78, 321, 242, 400, 399, 395, 397, 384, + 383, 387, 388, 0, 381, 391, 392, 0, 376, 312, + 302, 0, 229, 300, 317, 316, 298, 367, 373, 111, + 0, 0, 247, 249, 239, 0, 303, 0, 305, 308, + 307, 0, 0, 115, 0, 0, 0, 205, 0, 0, + 0, 0, 0, 0, 181, 0, 0, 0, 0, 315, + 0, 172, 142, 0, 0, 0, 0, 145, 147, 148, + 149, 0, 169, 174, 0, 0, 0, 125, 0, 0, + 0, 0, 0, 0, 0, 343, 335, 346, 0, 324, + 325, 330, 334, 0, 0, 12, 30, 5, 29, 0, + 0, 21, 275, 273, 271, 277, 269, 7, 224, 223, + 221, 191, 0, 0, 193, 0, 35, 35, 79, 385, + 207, 315, 393, 228, 53, 52, 244, 304, 306, 106, + 61, 0, 63, 62, 66, 70, 0, 102, 76, 77, + 237, 410, 411, 414, 412, 413, 418, 170, 415, 416, + 237, 0, 141, 0, 136, 0, 0, 160, 0, 0, + 146, 168, 0, 144, 0, 104, 237, 0, 116, 124, + 0, 0, 0, 0, 0, 83, 85, 350, 16, 14, + 25, 23, 73, 0, 195, 194, 80, 81, 0, 0, + 0, 0, 67, 0, 237, 0, 188, 0, 204, 0, + 0, 151, 0, 137, 143, 0, 0, 0, 122, 0, + 0, 0, 134, 130, 126, 315, 87, 0, 237, 206, + 60, 35, 35, 64, 0, 90, 170, 170, 237, 170, + 237, 237, 0, 417, 135, 167, 0, 0, 138, 0, + 121, 132, 131, 0, 0, 0, 0, 71, 0, 68, + 69, 0, 0, 188, 188, 0, 188, 0, 0, 180, + 166, 158, 161, 163, 139, 0, 128, 133, 131, 0, + 35, 0, 0, 35, 103, 182, 183, 170, 185, 170, + 170, 0, 0, 237, 0, 237, 237, 0, 315, 165, + 105, 129, 35, 86, 82, 35, 0, 188, 188, 188, + 167, 167, 0, 167, 0, 0, 0, 0, 0, 0, + 85, 0, 0, 184, 186, 187, 158, 158, 0, 158, + 0, 0, 150, 0, 167, 0, 84, 0, 65, 152, + 153, 167, 155, 167, 167, 167, 164, 159, 72, 158, + 158, 158, 163, 154, 156, 157, 162 +}; + +/* YYDEFGOTO[NTERM-NUM]. */ +static const yytype_int16 yydefgoto[] = +{ + -1, 29, 374, 389, 159, 371, 504, 503, 175, 377, + 510, 509, 507, 30, 217, 32, 33, 34, 35, 36, + 37, 38, 39, 40, 546, 602, 41, 42, 550, 218, + 412, 43, 626, 656, 44, 45, 46, 47, 48, 49, + 70, 215, 50, 51, 493, 52, 670, 477, 478, 697, + 479, 699, 719, 671, 480, 481, 482, 326, 327, 642, + 53, 54, 397, 328, 252, 101, 102, 103, 104, 105, + 106, 107, 108, 109, 110, 111, 112, 113, 114, 230, + 441, 385, 387, 383, 381, 380, 386, 115, 273, 268, + 259, 258, 143, 272, 56, 116, 152, 153, 154, 355, + 356, 357, 358, 155, 71, 117, 118, 119, 253, 254, + 255, 420, 245, 256, 120, 234, 235, 331 +}; + +/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing + STATE-NUM. */ +#define YYPACT_NINF -608 +static const yytype_int16 yypact[] = +{ + 1827, -32, -608, -608, 3244, 3271, 3636, 3271, 3271, 3271, + 1326, 3636, 3636, -608, 1394, 1462, -608, 1530, -608, 1598, + 10, 3636, 700, 3695, 3823, 1110, 59, 207, -608, 68, + 4414, -608, -608, -608, -608, -608, -608, -608, -608, -608, + -608, -608, 3636, -608, -608, 13, -608, 27, -608, 832, + -608, -608, -608, -608, 36, -608, -608, -608, -608, 54, + 832, 3636, 832, 832, 832, 1326, 3636, 3636, -608, 287, + -608, 2145, -608, 91, 1139, 11, 17, 31, -608, 22, + 37, 38, 25, 25, 175, 175, -608, -608, -608, -608, + -608, 4176, 4176, 1190, 1015, -608, 3759, -608, 39, 35, + 65, -608, -608, -608, -608, -608, -608, -608, -608, -608, + -608, -608, 4, -608, 3454, 43, -608, -608, -608, -608, + -608, -608, 2176, -608, 2263, -608, 2294, -608, 72, 74, + 83, -608, 87, -608, 2937, 99, -608, 112, -608, 10, + 113, 2381, -608, 115, -608, -608, 935, 874, -608, -608, + 700, -608, -19, -608, 1785, -608, -21, 4176, 4176, -608, + 43, -608, 34, 25, 175, -608, -608, -608, -608, -608, + 4293, -608, 4235, -608, 4293, -608, -608, -608, -608, -608, + -608, -608, -608, -608, -608, -608, -608, -608, -608, -608, + 4176, 4176, -608, 3636, 127, 178, -608, 268, -608, -608, + 136, -608, -608, -608, -608, -608, 135, -608, 165, 167, + 177, 181, 832, 832, -608, -608, -608, 377, -608, -608, + -608, -608, -608, 326, -608, -608, -608, -608, -608, -608, + 4176, -608, 51, -608, -31, -608, -608, -608, -608, -608, + -608, 191, -608, 25, 25, -608, -608, -608, -608, 3881, + -608, 175, -608, -43, 144, -608, -608, -608, 3759, 3759, + -10, -10, -608, -608, 3636, 183, -608, 43, 3759, 4176, + 4176, 43, -608, 3759, -608, -608, -608, -608, 169, -608, + -608, 174, 3271, -608, 25, 175, 4176, 43, 3940, 3999, + 4176, 4176, -608, -608, -608, -608, -608, -608, 796, 3271, + 10, 832, -608, -608, 1914, -608, -608, -608, -608, -608, + 3636, 3636, 3636, -608, -608, 3636, 3636, 3636, 1666, 3636, + -608, 3636, -608, 4176, 4176, 180, 4456, -608, -608, -608, + 2074, 4456, 2937, 832, 3008, 796, -608, 80, 10, -608, + 254, -608, -608, -608, -608, -608, -608, -608, -608, -608, + -608, -608, -608, -608, -608, 210, 956, -608, 209, -608, + -608, 700, 700, 700, -608, -608, -608, 700, -608, -608, + -608, 4176, 43, 43, 4058, -608, -608, 4293, -608, -608, + 4235, 4235, -608, 4235, 4293, -608, -608, 4235, -608, 4058, + 245, 263, 224, -608, -608, -608, -608, 233, -608, -608, + -608, 10, 75, 832, 832, 832, 832, -608, -608, 10, + 10, 10, -608, -608, 43, -608, -608, -608, -608, -608, + 257, -608, -608, 1734, 43, -608, -608, 175, -608, -608, + -608, 244, -608, -608, -10, -10, -608, -608, -608, -608, + 2415, 4176, -608, -608, 43, 4176, 43, 4176, 267, -10, + -10, 308, 3039, -608, 2502, 2043, 223, -608, 255, 264, + 265, 271, 277, 278, -608, 291, 295, 298, 3513, 3326, + 2533, -608, -608, 10, 1258, 4117, 365, 4383, -608, -608, + -608, 293, -608, -608, 296, 2604, 261, -608, 372, 373, + 3126, 3577, 10, 379, 2647, -608, -608, -608, 1204, 314, + -608, -608, -608, 4176, 4176, 43, -608, -608, 43, 4293, + 4293, -608, -608, -608, -608, -608, -608, -608, -608, -608, + -608, -608, 2678, 328, -608, 330, 4414, 4414, -608, -608, + -608, 3326, -608, -608, -608, -608, 43, -10, -10, -608, + -608, 393, -608, -608, -608, 154, 280, -608, -608, -608, + 3636, -608, -608, -608, -608, -608, -608, 4456, -608, -608, + 3326, 339, -608, 396, -608, 338, 413, -608, 3390, 10, + -608, -608, 2765, -608, 400, -608, 3636, 10, -608, -608, + 402, 10, 348, 3157, 10, -608, 351, -608, 43, 43, + -608, -608, -608, 319, -608, -608, -608, -608, 354, 10, + 10, 10, -608, 10, 3636, 356, 479, 357, -608, 10, + 10, -608, 10, -608, -608, 418, 10, 361, -608, 10, + 2808, 10, -608, -608, -608, 3636, 380, 10, 3636, -608, + -608, 4414, 4414, -608, 362, 832, 4456, 4456, 3636, 4456, + 3636, 3636, 435, -608, -608, 4383, 1956, 10, -608, 832, + -608, -608, 80, 2895, 381, 10, 438, -608, 383, -608, + -608, 10, 443, 479, 479, 385, 479, 390, 397, -608, + -608, 518, -608, 401, -608, 457, -608, -608, 80, 10, + 4414, 10, 10, 4414, -608, -608, -608, 4456, -608, 4456, + 4456, 10, 10, 3636, 10, 3636, 3636, 462, 3636, 408, + -608, -608, 4414, -608, -608, 4414, 465, 479, 479, 479, + 4383, 4383, 409, 4383, 416, 417, 10, 419, 10, 481, + 351, 482, 10, -608, -608, -608, 518, 518, 10, 518, + 10, 10, -608, 10, 4383, 10, -608, 10, -608, -608, + -608, 4383, -608, 4383, 4383, 4383, -608, -608, -608, 518, + 518, 518, 401, -608, -608, -608, -608 +}; + +/* YYPGOTO[NTERM-NUM]. */ +static const yytype_int16 yypgoto[] = +{ + -608, -608, -608, -608, -608, -608, -608, -608, -608, -608, + -608, -608, 40, -608, 85, 458, -608, -608, -608, -608, + -608, -608, -608, -608, -460, -608, -608, -608, -476, -78, + -608, -608, -225, -608, -608, 12, -27, -608, 452, -608, + 764, -608, -608, -608, -607, -608, -325, -608, -608, -329, + -608, -244, -608, -590, -608, -548, -110, -608, -608, -446, + -608, -608, -608, -608, -608, 3, 58, 63, 106, 140, + 173, 129, -608, -608, -9, -12, 48, 8, -608, -608, + -608, 49, -608, -608, -608, -608, -26, 656, -608, -608, + -608, -608, -293, -74, -187, 283, 108, 355, -608, 158, + -608, -608, 18, -143, -7, 472, 487, 523, -84, -608, + -48, -608, -77, -71, 607, -608, 276, -608 +}; + +/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If + positive, shift that token. If negative, reduce the rule which + number is the opposite. If YYTABLE_NINF, syntax error. */ +#define YYTABLE_NINF -328 +static const yytype_int16 yytable[] = +{ + 122, 124, 126, 135, 359, 476, 246, 140, 399, 606, + 576, 59, 224, 141, 257, 182, 281, 69, 226, 69, + 69, 69, 203, 231, 325, 465, 240, 176, 232, 142, + 2, 3, 228, 194, 244, 244, 276, 204, 236, 238, + 274, 205, 289, 369, 293, 676, 295, 417, 297, 426, + 427, 278, 415, 18, 290, 211, 673, 57, 128, 129, + 130, 361, 132, 362, 195, 137, 279, 370, 198, 247, + 604, 701, 69, 183, 69, 69, 69, 25, 291, 282, + 288, 232, 177, 25, 241, 31, 378, 178, 663, 664, + 200, 666, 219, 379, 241, 289, 220, 25, 375, 68, + 233, 265, 201, 25, 25, 25, 206, 290, 27, 208, + 416, 491, 492, 209, 210, 244, 242, 628, 243, 248, + 726, 727, 376, 729, 241, 329, 277, 330, 523, 55, + 179, 291, 334, 249, 55, 197, 55, 55, 55, 707, + 402, 708, 709, 207, 746, 563, 524, 298, 247, 299, + 221, 749, 570, 750, 751, 752, 27, 280, 300, 55, + 574, 182, 301, 182, 180, 182, 421, 422, 600, 601, + 428, 659, 660, 176, 332, 176, 561, 176, 55, 247, + 425, 565, 223, 394, 429, 430, 398, 333, 335, 55, + 338, 55, 55, 55, 433, 244, 244, 181, 248, 436, + 55, 392, 393, 241, 225, 227, 229, 442, 196, 237, + 239, 401, 249, 359, 443, 525, 471, 685, 686, 382, + 688, 483, 484, 388, 69, 69, 337, 275, 177, 248, + 177, 395, 177, 178, 241, 178, 244, 178, 598, 547, + 403, 548, 404, 249, 25, 93, 94, 615, 549, 396, + 419, 55, 405, 55, 340, 55, 406, 432, 360, 27, + 437, 723, 724, 725, 144, 145, 438, 250, 251, 470, + 55, 451, 431, 146, 147, 440, 179, 575, 179, 548, + 179, 148, 288, 149, 496, 498, 549, -327, -327, -327, + 150, 452, 454, 455, 69, 151, 603, 289, 548, 520, + 288, 212, 213, 214, 521, 549, 486, 184, 489, 290, + 180, 69, 180, 456, 180, 289, 529, 329, 533, 289, + 518, 329, 329, 329, 539, 485, 142, 290, 490, 495, + 551, 494, 654, 291, 361, 627, 362, 548, 519, 552, + 553, 55, 55, 181, 549, 181, 554, 181, 361, 400, + 362, 291, 555, 556, 512, 513, 532, 514, 458, 459, + 460, 516, 535, 461, 462, 463, 557, 466, 182, 467, + 558, 182, 182, 559, 182, 182, 543, 451, 182, 489, + 176, 569, 571, 176, 176, 572, 176, 176, 577, 578, + 176, 409, 410, 411, 522, 584, 362, 739, 740, 594, + 742, 595, 526, 527, 528, 717, 361, 413, 362, 599, + 608, 55, 609, 610, 611, 69, 616, 69, 619, 488, + 753, 754, 755, 621, 625, 629, 511, 55, 55, 517, + 55, 635, 643, 515, 647, 177, 649, 661, 177, 177, + 178, 177, 177, 178, 178, 177, 178, 178, 596, 597, + 178, 669, 655, 184, 681, 184, 679, 184, 682, 684, + 687, 329, 55, 55, 55, 689, 564, 566, 329, 499, + 500, 501, 690, 700, 698, 502, 329, 142, 716, 582, + 718, 722, 142, 179, 728, 583, 179, 179, 199, 179, + 179, 730, 731, 179, 733, 736, 185, 735, 737, 202, + 182, 182, 636, 637, 638, 639, 640, 641, 756, 368, + 418, 186, 176, 176, 497, 0, 587, 180, 0, 0, + 180, 180, 0, 180, 180, 0, 0, 180, 0, 0, + 0, 0, 55, 55, 55, 55, 0, 541, 0, 142, + 545, 691, 692, 693, 694, 695, 696, 187, 329, 0, + 181, 0, 0, 181, 181, 0, 181, 181, 590, 591, + 181, 0, 613, 329, 0, 0, 0, 177, 177, 55, + 618, 0, 178, 178, 620, 580, 0, 624, 0, 586, + 0, 55, 0, 55, 55, 0, 0, 0, 0, 0, + 0, 0, 630, 631, 632, 0, 633, 0, 605, 0, + 0, 0, 644, 645, 0, 646, 0, 593, 607, 648, + 0, 0, 650, 0, 653, 179, 179, 0, 0, 55, + 657, 0, 675, 55, 617, 0, 0, 329, 329, 0, + 329, 188, 0, 142, 0, 0, 329, 329, 0, 0, + 674, 0, 185, 0, 185, 0, 185, 662, 680, 180, + 180, 55, 634, 0, 683, 55, 55, 186, 0, 186, + 184, 186, 0, 184, 184, 0, 184, 184, 623, 0, + 184, 0, 702, 0, 704, 705, 658, 0, 329, 160, + 329, 329, 181, 181, 710, 711, 665, 713, 667, 668, + 0, 0, 0, 187, 0, 187, 0, 187, 0, 0, + 0, 329, 329, 0, 329, 652, 142, 0, 0, 732, + 0, 734, 55, 0, 0, 738, 545, 545, 0, 0, + 0, 741, 0, 743, 744, 329, 745, 0, 747, 0, + 748, 0, 329, 0, 329, 329, 329, 0, 678, 0, + 0, 712, 0, 714, 715, 0, 0, 260, 261, 55, + 267, 0, 271, 0, 0, 0, 0, 144, 145, 0, + 55, 55, 0, 0, 55, 703, 146, 147, 706, 0, + 287, 121, 123, 125, 148, 0, 149, 188, 55, 188, + 0, 188, 55, 150, 0, 0, 0, 720, 151, 0, + 721, 0, 184, 184, 0, 0, 0, 59, 0, 2, + 3, 4, 60, 61, 62, 63, 64, 65, 66, 55, + 0, 0, 55, 372, 373, 14, 0, 0, 17, 0, + 0, 0, 18, 0, 0, 67, 121, 123, 125, 0, + 0, 55, 0, 0, 55, 2, 3, 4, 60, 61, + 62, 63, 64, 65, 66, 0, 390, 391, 0, 185, + 0, 14, 185, 185, 17, 185, 185, 0, 18, 185, + 0, 67, 25, 0, 186, 0, 26, 186, 186, 0, + 186, 186, 0, 0, 186, 341, 0, 27, 0, 0, + 28, 0, 0, 0, 0, 68, 414, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, + 187, 0, 26, 187, 187, 424, 187, 187, 0, 0, + 187, 0, 0, 27, 271, 271, 28, 0, 0, 0, + 0, 0, 0, 0, 271, 434, 435, 0, 0, 271, + 0, 342, 145, 0, 0, 0, 339, 0, 0, 0, + 343, 0, 444, 0, 446, 448, 449, 450, 344, 345, + 0, 0, 0, 0, 346, 347, 348, 349, 350, 351, + 352, 353, 354, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 407, 408, 0, 468, + 469, 185, 185, 0, 188, 0, 0, 188, 188, 0, + 188, 188, 144, 145, 188, 0, 186, 186, 0, 0, + 0, 146, 147, 0, 0, 0, 0, 0, 0, 148, + -327, 149, 0, 342, 145, -327, 266, -327, 150, 0, + 72, 0, 343, 151, 0, 0, 0, 505, 0, 0, + 508, 345, 187, 187, 0, 0, 346, 347, 348, 349, + 350, 351, 352, 353, 354, 508, 439, 0, 0, 0, + 73, 74, 0, 75, 76, 77, 0, 79, 80, 81, + 82, 0, 84, 453, 0, 0, 0, 0, 86, 87, + 88, 89, 0, 0, 0, 90, 0, 0, 91, 531, + 92, 25, 93, 94, 0, 0, 0, 0, 0, 0, + 0, 0, 95, 96, 97, 0, 0, 536, 0, 0, + 0, 537, 0, 538, 0, 98, 99, 100, 0, 0, + 0, 189, 0, 0, 0, 72, 188, 188, 0, 0, + 0, 0, 0, 0, 560, 0, 0, 0, 0, 0, + 0, 568, 0, 0, 0, 0, 0, 0, 0, 0, + 222, 0, 0, 0, 0, 73, 74, 0, 75, 76, + 77, 78, 79, 80, 81, 82, 83, 84, 85, 588, + 589, 0, 0, 86, 87, 88, 89, 439, 0, 453, + 90, 190, 191, 91, 0, 92, 25, 93, 94, 0, + 0, 0, 0, 0, 0, 192, 0, 95, 96, 97, + 0, 262, 0, 0, 0, 72, 144, 145, 193, 0, + 98, 99, 100, 0, 0, 146, 147, 0, 0, 0, + 0, 0, 0, 148, 0, 149, 0, 0, 0, -327, + -327, -327, 150, 0, 560, 73, 74, 151, 75, 76, + 77, 78, 79, 80, 81, 82, 83, 84, 85, 0, + 0, 0, 0, 86, 87, 88, 89, 0, 0, 0, + 90, 0, 0, 91, 0, 92, 25, 93, 94, 59, + 0, 342, 0, 72, 263, 0, 0, 95, 96, 97, + 343, 0, 0, 0, 0, 0, 0, 0, 264, 345, + 98, 99, 100, 0, 346, 347, 348, 349, 350, 351, + 352, 353, 354, 73, 74, 0, 75, 76, 77, 78, + 79, 80, 81, 82, 83, 84, 85, 0, 0, 0, + 0, 86, 87, 88, 89, 0, 0, 0, 90, 0, + 0, 91, 0, 92, 25, 93, 94, 127, 0, 0, + 0, 72, 0, -315, 0, 95, 96, 97, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 68, 98, 99, + 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 73, 74, 0, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, 0, 0, 0, 0, 86, + 87, 88, 89, 0, 0, 0, 90, 0, 0, 91, + 0, 92, 25, 93, 94, 131, 0, 0, 0, 72, + 0, -237, 0, 95, 96, 97, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 98, 99, 100, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, + 74, 0, 75, 76, 77, 78, 79, 80, 81, 82, + 83, 84, 85, 0, 0, 0, 0, 86, 87, 88, + 89, 0, 0, 0, 90, 0, 0, 91, 0, 92, + 25, 93, 94, 133, 0, 0, 0, 72, 0, -237, + 0, 95, 96, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 98, 99, 100, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 73, 74, 0, + 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, + 85, 0, 0, 0, 0, 86, 87, 88, 89, 0, + 0, 0, 90, 0, 0, 91, 0, 92, 25, 93, + 94, 136, 0, 0, 0, 72, 0, 134, 0, 95, + 96, 97, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 98, 99, 100, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 73, 74, 0, 75, 76, + 77, 78, 79, 80, 81, 82, 83, 84, 85, 0, + 0, 0, 0, 86, 87, 88, 89, 0, 0, 0, + 90, 0, 0, 91, 0, 92, 25, 93, 94, 138, + 0, 0, 0, 72, 0, -237, 0, 95, 96, 97, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 98, 99, 100, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 73, 74, 0, 75, 76, 77, 78, + 79, 80, 81, 82, 83, 84, 85, 0, 0, 0, + 0, 86, 87, 88, 89, 0, 0, 0, 90, 0, + 0, 91, 0, 92, 25, 93, 94, 464, 0, 0, + 0, 72, 0, 139, 0, 95, 96, 97, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 98, 99, + 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 73, 74, 0, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, 0, 0, 0, 0, 86, + 87, 88, 89, 0, 0, 0, 90, 0, 0, 91, + 0, 92, 25, 93, 94, 530, 0, 0, 0, 72, + 0, -315, 0, 95, 96, 97, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 98, 99, 100, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, + 74, 0, 75, 76, 77, 0, 79, 80, 81, 82, + 0, 84, 0, 0, 0, 0, 0, 86, 87, 88, + 89, 0, 0, 0, 90, 0, 0, 91, 0, 92, + 25, 93, 94, 0, 0, 0, 0, 0, 0, 0, + 0, 95, 96, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 98, 99, 100, -35, 1, 0, + 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 12, 0, 144, 145, 13, 0, 14, 15, 16, 17, + 0, 146, 147, 18, 0, 0, 19, 20, 0, 148, + 21, 149, 0, 0, 0, 0, 0, 0, 363, 364, + 365, 366, 367, 151, 0, 0, 22, 23, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, + 0, 28, 0, 0, 0, 457, -90, -203, -203, -203, + -203, -203, -203, -203, -203, -203, -203, -203, -203, -203, + -203, -203, 0, -203, -203, 0, -203, -203, -203, -203, + -203, -203, -203, -203, -203, -203, -203, -203, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 672, 0, 302, + 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, + 313, 314, -167, 315, 0, 316, 317, 474, 318, 0, + -203, -203, -203, 0, -203, 319, 320, 321, 322, 475, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -203, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 93, 94, 0, 324, 0, -167, -167, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 544, -170, 2, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 12, -35, -35, -35, + 13, -35, 14, 15, 16, 17, 0, 0, -35, 18, + 0, 0, 19, 20, 0, 472, 21, 302, 303, 304, + 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 473, 315, 0, 316, 317, 474, 318, 0, 0, 0, + 0, 0, 0, 319, 320, 321, 322, 475, 0, 25, + 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 27, 0, 0, 28, 0, 0, + 0, 0, -90, 0, 0, 0, 0, 0, 0, 0, + 25, 93, 94, 0, 324, 0, 216, 0, 2, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, -35, + -35, -35, 13, -170, 14, 15, 16, 17, 0, 0, + 0, 18, 0, 0, 19, 20, 0, 292, 21, 2, + 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, + -35, -35, -35, 13, 0, 14, 15, 16, 17, 0, + 0, 0, 18, 0, 0, 19, 20, 0, 0, 21, + 0, 25, 0, 0, 0, 26, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 27, 0, 0, 28, + 0, 0, 0, 0, -90, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 0, 0, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, + 28, 0, 0, 0, 294, -90, 2, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 12, -35, -35, -35, + 13, 0, 14, 15, 16, 17, 0, 0, 0, 18, + 0, 0, 19, 20, 0, 296, 21, 2, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, -35, -35, + -35, 13, 0, 14, 15, 16, 17, 0, 0, 0, + 18, 0, 0, 19, 20, 0, 0, 21, 0, 25, + 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 27, 0, 0, 28, 0, 0, + 0, 0, -90, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 26, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 27, 0, 0, 28, 0, + 0, 0, 336, -90, 2, 3, 4, 5, 6, 7, + 8, 9, 10, 11, 12, 0, 0, -35, 13, 0, + 14, 15, 16, 17, 0, 0, 0, 18, 0, 0, + 19, 20, -35, -35, 21, 0, 534, 0, 2, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, -35, + -35, -35, 13, 0, 14, 15, 16, 17, 0, 0, + 0, 18, 0, 0, 19, 20, 0, 25, 21, 0, + 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 27, 0, 0, 28, 0, 0, 0, 0, + -90, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 0, 0, 26, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 27, 0, 0, 28, + 0, 0, 0, 542, -90, 2, 3, 4, 5, 6, + 7, 8, 9, 10, 11, 12, -35, -35, -35, 13, + 0, 14, 15, 16, 17, 0, 0, 0, 18, 0, + 0, 19, 20, 0, 562, 21, 302, 303, 304, 305, + 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, + 315, 0, 316, 317, 474, 318, 0, 0, 0, 0, + 0, 0, 319, 320, 321, 322, 475, 0, 25, 0, + 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 27, 0, 0, 28, 0, 0, 0, + 0, -90, 0, 0, 0, 0, 0, 0, 0, 25, + 93, 94, 0, 324, 0, 573, 0, 302, 303, 304, + 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 0, 315, -170, 316, 317, 474, 318, 0, 0, 0, + 0, 0, 0, 319, 320, 321, 322, 475, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 585, 0, + 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 12, 0, 0, -35, 13, 0, 14, 15, 16, 17, + 25, 93, 94, 18, 324, 0, 19, 20, 0, 592, + 21, 2, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 0, -170, -35, 13, -35, 14, 15, 16, + 17, 0, 0, -35, 18, 0, 0, 19, 20, 0, + 0, 21, 0, 25, 0, 0, 0, 26, 0, -35, + -35, 0, 0, 0, 0, 0, 0, 0, 27, 0, + 0, 28, 0, 0, 0, 0, -90, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 26, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 28, 0, 0, 0, 614, -90, 302, 303, + 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, + 314, 0, 315, 0, 316, 317, 474, 318, 0, 0, + 0, 0, 0, 0, 319, 320, 321, 322, 475, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 651, + 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 0, 0, -35, 13, 0, 14, 15, 16, + 17, 25, 93, 94, 18, 324, 0, 19, 20, -35, + -35, 21, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -170, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 26, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 28, 0, 0, 0, 677, -90, 2, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, 0, + 0, -35, 13, 0, 14, 15, 16, 17, 0, 0, + 0, 18, 0, 0, 19, 20, -35, -35, 21, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, + 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 315, 0, 316, 317, 0, 318, + 0, 25, 0, 0, 0, 26, 319, 320, 321, 322, + 323, 0, 0, 0, 0, 0, 27, 0, 0, 28, + 0, 0, 0, 0, -90, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 25, 93, 94, 0, 324, 0, 487, + 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 0, 0, -35, 13, 68, 14, 15, 16, + 17, 0, 0, 0, 18, 0, 0, 19, 20, 0, + 540, 21, 2, 3, 4, 5, 6, 7, 8, 9, + 10, 11, 12, 0, 0, -35, 13, 0, 14, 15, + 16, 17, 0, 0, 0, 18, 0, 0, 19, 20, + 0, 0, 21, 0, 25, 0, 0, 0, 26, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 28, 0, 0, 0, 0, -90, 0, 0, + 0, 0, 0, 0, 0, 25, 0, 0, 0, 26, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 28, 0, 0, 0, 579, -90, 2, + 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, + 0, 0, -35, 13, 0, 14, 15, 16, 17, 0, + 0, 0, 18, 0, 0, 19, 20, 0, 622, 21, + 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 12, 0, 0, -35, 13, 0, 14, 15, 16, 17, + 0, 0, 0, 18, 0, 0, 19, 20, 0, 0, + 21, 0, 25, 0, 0, 0, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, + 28, 0, 0, 0, 0, -90, 0, 0, 0, 0, + 0, 0, 0, 25, 0, 0, 0, 26, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, + 0, 28, 0, 0, 0, 58, -90, -189, -189, -189, + -189, -189, -189, -189, -189, -189, -189, 0, -189, -189, + -189, 0, -189, -189, 0, 0, -189, 0, 0, -189, + -189, 0, 59, -189, 2, 3, 4, 60, 61, 62, + 63, 64, 65, 66, 0, -90, -90, -90, 0, 0, + 14, 0, 0, 17, 0, 0, 0, 18, 0, 0, + 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -189, 0, 0, 0, -189, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -189, 0, 0, -189, 0, + 0, 72, 0, -189, 0, 0, 0, 25, 0, 0, + 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 27, 0, 0, 28, 0, 0, 0, 0, + 68, 73, 74, 288, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, 0, 0, 0, 289, 86, + 87, 88, 89, 0, 0, 0, 90, 0, 0, 91, + 290, 92, 25, 93, 94, 72, 0, 0, 0, 0, + 0, 0, 0, 95, 96, 97, 0, 0, 0, 0, + 0, 0, 0, 0, 291, 0, 98, 99, 100, 0, + 0, 0, 0, 0, 0, 73, 74, 288, 75, 76, + 77, 0, 79, 80, 81, 82, 0, 84, 0, 0, + 0, 0, 289, 86, 87, 88, 89, 0, 0, 0, + 90, 0, 0, 91, 290, 92, 25, 93, 94, 72, + 0, 0, 0, 0, 0, 612, 0, 95, 96, 97, + 0, 0, 0, 0, 0, 0, 0, 0, 291, 0, + 98, 99, 100, 0, 0, 0, 0, 0, 0, 73, + 74, 0, 75, 76, 77, 283, 79, 80, 81, 82, + 284, 84, 285, 0, 0, 0, 0, 86, 87, 88, + 89, 0, 0, 0, 90, 286, 0, 91, 72, 92, + 25, 93, 94, 0, 0, 0, 0, 0, 0, 0, + 0, 95, 96, 97, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 98, 99, 100, 0, 73, 74, + 288, 75, 76, 77, 0, 79, 80, 81, 82, 0, + 84, 0, 0, 0, 0, 289, 86, 87, 88, 89, + 0, 0, 0, 90, 0, 0, 91, 290, 92, 25, + 93, 94, 72, 0, 0, 0, 0, 0, 0, 0, + 95, 96, 97, 0, 0, 0, 0, 0, 0, 0, + 0, 291, 0, 98, 99, 100, 0, 0, 0, 0, + 0, 0, 73, 74, 0, 75, 76, 77, 78, 79, + 80, 81, 82, 83, 84, 85, 0, 0, 0, 0, + 86, 87, 88, 89, 0, 0, 0, 90, 0, 0, + 91, 72, 92, 25, 93, 94, 0, 0, 0, 0, + 0, 0, 581, 0, 95, 96, 97, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 98, 99, 100, + 0, 73, 74, 0, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, 0, 0, 0, 0, 86, + 87, 88, 89, 0, 0, 0, 90, 0, 0, 91, + 72, 92, 25, 93, 94, 0, 0, 0, 0, 0, + 0, 0, 0, 95, 96, 97, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 98, 99, 100, 0, + 73, 74, 0, 75, 76, 77, 156, 79, 80, 81, + 82, 0, 84, 0, 0, 0, 0, 0, 86, 87, + 88, 89, 0, 0, 0, 90, 0, 0, 91, 157, + 92, 25, 93, 94, 72, 0, 0, 0, 0, 0, + 0, 0, 95, 96, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 158, 0, 98, 99, 100, 0, 0, + 0, 0, 0, 0, 73, 74, 0, 75, 76, 77, + 0, 79, 80, 81, 82, 0, 84, 0, 0, 0, + 0, 0, 86, 87, 88, 89, 0, 0, 0, 90, + 0, 0, 91, 269, 92, 25, 93, 94, 161, 0, + 0, 0, 0, 0, 0, 0, 95, 96, 97, 0, + 0, 0, 0, 0, 0, 0, 0, 270, 0, 98, + 99, 100, 0, 0, 0, 0, 0, 0, 73, 74, + 0, 75, 76, 77, 162, 79, 80, 81, 163, 0, + 164, 0, 0, 0, 0, 0, 165, 166, 167, 168, + 0, 0, 0, 169, 0, 0, 72, 170, 0, 25, + 93, 94, 0, 0, 0, 0, 0, 0, 0, 0, + 171, 172, 173, 0, 0, 0, 0, 0, 0, 0, + 0, 174, 0, 98, 99, 100, 73, 74, 0, 75, + 76, 77, 0, 79, 80, 81, 82, 0, 84, 0, + 0, 0, 0, 0, 86, 87, 88, 89, 0, 0, + 0, 90, 0, 0, 91, 72, 92, 25, 93, 94, + 0, 423, 0, 0, 0, 0, 0, 0, 95, 96, + 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 98, 99, 100, 0, 73, 74, 0, 75, 76, + 77, 0, 79, 80, 81, 82, 0, 84, 0, 0, + 0, 0, 0, 86, 87, 88, 89, 0, 0, 0, + 90, 0, 0, 91, 72, 92, 25, 93, 94, 0, + 0, 0, 0, 0, 0, 0, 0, 95, 96, 97, + 0, 0, 0, 0, 0, 0, 0, 0, 445, 0, + 98, 99, 100, 0, 73, 74, 0, 75, 76, 77, + 0, 79, 80, 81, 82, 0, 84, 0, 0, 0, + 0, 0, 86, 87, 88, 89, 0, 0, 0, 90, + 0, 0, 91, 72, 92, 25, 93, 94, 0, 0, + 0, 0, 0, 0, 0, 0, 95, 96, 97, 0, + 0, 0, 0, 0, 0, 0, 0, 447, 0, 98, + 99, 100, 0, 73, 74, 0, 75, 76, 77, 506, + 79, 80, 81, 82, 0, 84, 0, 0, 0, 0, + 0, 86, 87, 88, 89, 0, 0, 0, 90, 0, + 0, 91, 72, 92, 25, 93, 94, 0, 0, 0, + 0, 0, 0, 0, 0, 95, 96, 97, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 98, 99, + 100, 0, 73, 74, 0, 75, 76, 77, 0, 79, + 80, 81, 82, 0, 84, 0, 0, 0, 0, 0, + 86, 87, 88, 89, 0, 0, 0, 90, 0, 0, + 91, 72, 92, 25, 93, 94, 0, 0, 0, 0, + 0, 0, 567, 0, 95, 96, 97, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 98, 99, 100, + 0, 73, 74, 0, 75, 76, 77, 0, 79, 80, + 81, 82, 0, 84, 0, 0, 0, 0, 0, 86, + 87, 88, 89, 0, 0, 0, 90, 0, 0, 91, + 161, 92, 25, 93, 94, 0, 0, 0, 0, 0, + 0, 0, 0, 95, 96, 97, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 98, 99, 100, 0, + 73, 74, 0, 75, 76, 77, 0, 79, 80, 81, + 163, 0, 164, 0, 0, 0, 0, 0, 165, 166, + 167, 168, 0, 0, 0, 169, 0, 0, 161, 0, + 0, 25, 93, 94, 0, 0, 0, 0, 0, 0, + 0, 0, 171, 172, 173, 0, 0, 0, 0, 0, + 0, 0, 0, 384, 0, 98, 99, 100, 73, 74, + 0, 75, 76, 77, 0, 79, 80, 81, 163, 0, + 164, 0, 0, 0, 0, 0, 165, 166, 167, 168, + 0, 0, 0, 169, 0, 0, 0, 0, 0, 25, + 93, 94, 0, 0, 0, 0, 0, 0, 0, 0, + 171, 172, 173, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 98, 99, 100, 302, 303, 304, 305, + 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, + 315, 0, 316, 317, 474, 318, 0, 0, 0, 0, + 0, 0, 319, 320, 321, 322, 475, 2, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 0, 0, + 0, 13, 0, 14, 15, 16, 17, 0, 0, 0, + 18, 0, 0, 19, 20, 0, 0, 21, 0, 25, + 93, 94, 0, 324, 0, 0, 0, 0, 0, 302, + 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, + 313, 314, -170, 315, 0, 316, 317, 0, 318, 0, + 25, 0, 0, 0, 26, 319, 320, 321, 322, 323, + 0, 0, 0, 0, 0, 27, 0, 0, 28, 0, + 0, 0, 0, -90, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 93, 94, 0, 324 +}; + +#define yypact_value_is_default(yystate) \ + ((yystate) == (-608)) + +#define yytable_value_is_error(yytable_value) \ + YYID (0) + +static const yytype_int16 yycheck[] = +{ + 7, 8, 9, 15, 147, 330, 83, 19, 195, 557, + 486, 1, 1, 20, 85, 24, 100, 5, 1, 7, + 8, 9, 49, 1, 134, 318, 1, 24, 59, 21, + 3, 4, 1, 25, 82, 83, 1, 1, 1, 1, + 1, 5, 52, 64, 122, 652, 124, 78, 126, 92, + 93, 99, 1, 26, 64, 67, 646, 89, 10, 11, + 12, 80, 14, 82, 5, 17, 1, 88, 0, 4, + 546, 678, 60, 24, 62, 63, 64, 66, 88, 75, + 37, 59, 24, 66, 59, 0, 163, 24, 636, 637, + 42, 639, 1, 164, 59, 52, 5, 66, 64, 89, + 78, 93, 89, 66, 66, 66, 70, 64, 81, 61, + 59, 31, 32, 65, 66, 163, 91, 593, 93, 54, + 710, 711, 88, 713, 59, 134, 91, 134, 53, 0, + 24, 88, 139, 68, 5, 27, 7, 8, 9, 687, + 5, 689, 690, 89, 734, 470, 71, 75, 4, 75, + 59, 741, 477, 743, 744, 745, 81, 92, 75, 30, + 485, 170, 75, 172, 24, 174, 243, 244, 14, 15, + 254, 631, 632, 170, 75, 172, 469, 174, 49, 4, + 251, 474, 74, 5, 258, 259, 195, 75, 75, 60, + 75, 62, 63, 64, 268, 243, 244, 24, 54, 273, + 71, 193, 75, 59, 75, 76, 77, 284, 1, 80, + 81, 75, 68, 356, 285, 402, 326, 663, 664, 170, + 666, 331, 332, 174, 212, 213, 141, 98, 170, 54, + 172, 53, 174, 170, 59, 172, 284, 174, 531, 16, + 75, 18, 75, 68, 66, 67, 68, 572, 25, 71, + 59, 122, 75, 124, 146, 126, 75, 74, 150, 81, + 91, 707, 708, 709, 57, 58, 92, 92, 93, 89, + 141, 298, 264, 66, 67, 282, 170, 16, 172, 18, + 174, 74, 37, 76, 74, 76, 25, 80, 81, 82, + 83, 298, 299, 300, 282, 88, 16, 52, 18, 75, + 37, 14, 15, 16, 71, 25, 333, 24, 335, 64, + 170, 299, 172, 301, 174, 52, 59, 326, 74, 52, + 75, 330, 331, 332, 16, 332, 318, 64, 335, 75, + 75, 338, 625, 88, 80, 16, 82, 18, 75, 75, + 75, 212, 213, 170, 25, 172, 75, 174, 80, 81, + 82, 88, 75, 75, 380, 381, 427, 383, 310, 311, + 312, 387, 440, 315, 316, 317, 75, 319, 377, 321, + 75, 380, 381, 75, 383, 384, 454, 404, 387, 406, + 377, 16, 89, 380, 381, 89, 383, 384, 16, 16, + 387, 14, 15, 16, 401, 16, 82, 726, 727, 71, + 729, 71, 409, 410, 411, 698, 80, 81, 82, 16, + 71, 282, 16, 75, 1, 403, 16, 405, 16, 334, + 749, 750, 751, 75, 73, 71, 377, 298, 299, 389, + 301, 75, 75, 384, 16, 377, 75, 75, 380, 381, + 377, 383, 384, 380, 381, 387, 383, 384, 526, 527, + 387, 16, 72, 170, 16, 172, 75, 174, 75, 16, + 75, 470, 333, 334, 335, 75, 473, 474, 477, 361, + 362, 363, 75, 16, 73, 367, 485, 469, 16, 491, + 72, 16, 474, 377, 75, 492, 380, 381, 30, 383, + 384, 75, 75, 387, 75, 720, 24, 16, 16, 47, + 509, 510, 23, 24, 25, 26, 27, 28, 752, 154, + 234, 24, 509, 510, 356, -1, 498, 377, -1, -1, + 380, 381, -1, 383, 384, -1, -1, 387, -1, -1, + -1, -1, 403, 404, 405, 406, -1, 452, -1, 531, + 455, 23, 24, 25, 26, 27, 28, 24, 557, -1, + 377, -1, -1, 380, 381, -1, 383, 384, 509, 510, + 387, -1, 569, 572, -1, -1, -1, 509, 510, 440, + 577, -1, 509, 510, 581, 490, -1, 584, -1, 494, + -1, 452, -1, 454, 455, -1, -1, -1, -1, -1, + -1, -1, 599, 600, 601, -1, 603, -1, 550, -1, + -1, -1, 609, 610, -1, 612, -1, 522, 560, 616, + -1, -1, 619, -1, 621, 509, 510, -1, -1, 490, + 627, -1, 649, 494, 576, -1, -1, 636, 637, -1, + 639, 24, -1, 625, -1, -1, 645, 646, -1, -1, + 647, -1, 170, -1, 172, -1, 174, 635, 655, 509, + 510, 522, 604, -1, 661, 526, 527, 170, -1, 172, + 377, 174, -1, 380, 381, -1, 383, 384, 583, -1, + 387, -1, 679, -1, 681, 682, 628, -1, 687, 23, + 689, 690, 509, 510, 691, 692, 638, 694, 640, 641, + -1, -1, -1, 170, -1, 172, -1, 174, -1, -1, + -1, 710, 711, -1, 713, 620, 698, -1, -1, 716, + -1, 718, 583, -1, -1, 722, 631, 632, -1, -1, + -1, 728, -1, 730, 731, 734, 733, -1, 735, -1, + 737, -1, 741, -1, 743, 744, 745, -1, 653, -1, + -1, 693, -1, 695, 696, -1, -1, 91, 92, 620, + 94, -1, 96, -1, -1, -1, -1, 57, 58, -1, + 631, 632, -1, -1, 635, 680, 66, 67, 683, -1, + 114, 7, 8, 9, 74, -1, 76, 170, 649, 172, + -1, 174, 653, 83, -1, -1, -1, 702, 88, -1, + 705, -1, 509, 510, -1, -1, -1, 1, -1, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, 680, + -1, -1, 683, 157, 158, 19, -1, -1, 22, -1, + -1, -1, 26, -1, -1, 29, 62, 63, 64, -1, + -1, 702, -1, -1, 705, 3, 4, 5, 6, 7, + 8, 9, 10, 11, 12, -1, 190, 191, -1, 377, + -1, 19, 380, 381, 22, 383, 384, -1, 26, 387, + -1, 29, 66, -1, 377, -1, 70, 380, 381, -1, + 383, 384, -1, -1, 387, 1, -1, 81, -1, -1, + 84, -1, -1, -1, -1, 89, 230, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, + 377, -1, 70, 380, 381, 249, 383, 384, -1, -1, + 387, -1, -1, 81, 258, 259, 84, -1, -1, -1, + -1, -1, -1, -1, 268, 269, 270, -1, -1, 273, + -1, 57, 58, -1, -1, -1, 1, -1, -1, -1, + 66, -1, 286, -1, 288, 289, 290, 291, 74, 75, + -1, -1, -1, -1, 80, 81, 82, 83, 84, 85, + 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 212, 213, -1, 323, + 324, 509, 510, -1, 377, -1, -1, 380, 381, -1, + 383, 384, 57, 58, 387, -1, 509, 510, -1, -1, + -1, 66, 67, -1, -1, -1, -1, -1, -1, 74, + 75, 76, -1, 57, 58, 80, 1, 82, 83, -1, + 5, -1, 66, 88, -1, -1, -1, 371, -1, -1, + 374, 75, 509, 510, -1, -1, 80, 81, 82, 83, + 84, 85, 86, 87, 88, 389, 282, -1, -1, -1, + 35, 36, -1, 38, 39, 40, -1, 42, 43, 44, + 45, -1, 47, 299, -1, -1, -1, -1, 53, 54, + 55, 56, -1, -1, -1, 60, -1, -1, 63, 423, + 65, 66, 67, 68, -1, -1, -1, -1, -1, -1, + -1, -1, 77, 78, 79, -1, -1, 441, -1, -1, + -1, 445, -1, 447, -1, 90, 91, 92, -1, -1, + -1, 1, -1, -1, -1, 5, 509, 510, -1, -1, + -1, -1, -1, -1, 468, -1, -1, -1, -1, -1, + -1, 475, -1, -1, -1, -1, -1, -1, -1, -1, + 1, -1, -1, -1, -1, 35, 36, -1, 38, 39, + 40, 41, 42, 43, 44, 45, 46, 47, 48, 503, + 504, -1, -1, 53, 54, 55, 56, 403, -1, 405, + 60, 61, 62, 63, -1, 65, 66, 67, 68, -1, + -1, -1, -1, -1, -1, 75, -1, 77, 78, 79, + -1, 1, -1, -1, -1, 5, 57, 58, 88, -1, + 90, 91, 92, -1, -1, 66, 67, -1, -1, -1, + -1, -1, -1, 74, -1, 76, -1, -1, -1, 80, + 81, 82, 83, -1, 568, 35, 36, 88, 38, 39, + 40, 41, 42, 43, 44, 45, 46, 47, 48, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + 60, -1, -1, 63, -1, 65, 66, 67, 68, 1, + -1, 57, -1, 5, 74, -1, -1, 77, 78, 79, + 66, -1, -1, -1, -1, -1, -1, -1, 88, 75, + 90, 91, 92, -1, 80, 81, 82, 83, 84, 85, + 86, 87, 88, 35, 36, -1, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 48, -1, -1, -1, + -1, 53, 54, 55, 56, -1, -1, -1, 60, -1, + -1, 63, -1, 65, 66, 67, 68, 1, -1, -1, + -1, 5, -1, 75, -1, 77, 78, 79, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 89, 90, 91, + 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 35, 36, -1, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, 48, -1, -1, -1, -1, 53, + 54, 55, 56, -1, -1, -1, 60, -1, -1, 63, + -1, 65, 66, 67, 68, 1, -1, -1, -1, 5, + -1, 75, -1, 77, 78, 79, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 90, 91, 92, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 35, + 36, -1, 38, 39, 40, 41, 42, 43, 44, 45, + 46, 47, 48, -1, -1, -1, -1, 53, 54, 55, + 56, -1, -1, -1, 60, -1, -1, 63, -1, 65, + 66, 67, 68, 1, -1, -1, -1, 5, -1, 75, + -1, 77, 78, 79, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 90, 91, 92, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 35, 36, -1, + 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, -1, -1, -1, -1, 53, 54, 55, 56, -1, + -1, -1, 60, -1, -1, 63, -1, 65, 66, 67, + 68, 1, -1, -1, -1, 5, -1, 75, -1, 77, + 78, 79, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 90, 91, 92, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 35, 36, -1, 38, 39, + 40, 41, 42, 43, 44, 45, 46, 47, 48, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + 60, -1, -1, 63, -1, 65, 66, 67, 68, 1, + -1, -1, -1, 5, -1, 75, -1, 77, 78, 79, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 90, 91, 92, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 35, 36, -1, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 48, -1, -1, -1, + -1, 53, 54, 55, 56, -1, -1, -1, 60, -1, + -1, 63, -1, 65, 66, 67, 68, 1, -1, -1, + -1, 5, -1, 75, -1, 77, 78, 79, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 90, 91, + 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 35, 36, -1, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, 48, -1, -1, -1, -1, 53, + 54, 55, 56, -1, -1, -1, 60, -1, -1, 63, + -1, 65, 66, 67, 68, 1, -1, -1, -1, 5, + -1, 75, -1, 77, 78, 79, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 90, 91, 92, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 35, + 36, -1, 38, 39, 40, -1, 42, 43, 44, 45, + -1, 47, -1, -1, -1, -1, -1, 53, 54, 55, + 56, -1, -1, -1, 60, -1, -1, 63, -1, 65, + 66, 67, 68, -1, -1, -1, -1, -1, -1, -1, + -1, 77, 78, 79, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 90, 91, 92, 0, 1, -1, + 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, + 13, -1, 57, 58, 17, -1, 19, 20, 21, 22, + -1, 66, 67, 26, -1, -1, 29, 30, -1, 74, + 33, 76, -1, -1, -1, -1, -1, -1, 83, 84, + 85, 86, 87, 88, -1, -1, 49, 50, 51, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 66, -1, -1, -1, 70, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 81, -1, + -1, 84, -1, -1, -1, 1, 89, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, -1, 19, 20, -1, 22, 23, 24, 25, + 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, + 14, 15, 16, 17, -1, 19, 20, 21, 22, -1, + 66, 67, 68, -1, 70, 29, 30, 31, 32, 33, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 89, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 66, 67, 68, -1, 70, -1, 72, 73, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 1, 89, 3, 4, 5, 6, + 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, -1, -1, 25, 26, + -1, -1, 29, 30, -1, 1, 33, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, -1, 19, 20, 21, 22, -1, -1, -1, + -1, -1, -1, 29, 30, 31, 32, 33, -1, 66, + -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 81, -1, -1, 84, -1, -1, + -1, -1, 89, -1, -1, -1, -1, -1, -1, -1, + 66, 67, 68, -1, 70, -1, 1, -1, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 89, 19, 20, 21, 22, -1, -1, + -1, 26, -1, -1, 29, 30, -1, 1, 33, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, + 14, 15, 16, 17, -1, 19, 20, 21, 22, -1, + -1, -1, 26, -1, -1, 29, 30, -1, -1, 33, + -1, 66, -1, -1, -1, 70, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 81, -1, -1, 84, + -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, + -1, -1, 66, -1, -1, -1, 70, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 81, -1, -1, + 84, -1, -1, -1, 1, 89, 3, 4, 5, 6, + 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, -1, 19, 20, 21, 22, -1, -1, -1, 26, + -1, -1, 29, 30, -1, 1, 33, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, -1, 19, 20, 21, 22, -1, -1, -1, + 26, -1, -1, 29, 30, -1, -1, 33, -1, 66, + -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 81, -1, -1, 84, -1, -1, + -1, -1, 89, -1, -1, -1, -1, -1, -1, -1, + 66, -1, -1, -1, 70, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 81, -1, -1, 84, -1, + -1, -1, 1, 89, 3, 4, 5, 6, 7, 8, + 9, 10, 11, 12, 13, -1, -1, 16, 17, -1, + 19, 20, 21, 22, -1, -1, -1, 26, -1, -1, + 29, 30, 31, 32, 33, -1, 1, -1, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, -1, 19, 20, 21, 22, -1, -1, + -1, 26, -1, -1, 29, 30, -1, 66, 33, -1, + -1, 70, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 81, -1, -1, 84, -1, -1, -1, -1, + 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 66, -1, -1, -1, 70, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 81, -1, -1, 84, + -1, -1, -1, 1, 89, 3, 4, 5, 6, 7, + 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, + -1, 19, 20, 21, 22, -1, -1, -1, 26, -1, + -1, 29, 30, -1, 1, 33, 3, 4, 5, 6, + 7, 8, 9, 10, 11, 12, 13, 14, 15, -1, + 17, -1, 19, 20, 21, 22, -1, -1, -1, -1, + -1, -1, 29, 30, 31, 32, 33, -1, 66, -1, + -1, -1, 70, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 81, -1, -1, 84, -1, -1, -1, + -1, 89, -1, -1, -1, -1, -1, -1, -1, 66, + 67, 68, -1, 70, -1, 1, -1, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + -1, 17, 89, 19, 20, 21, 22, -1, -1, -1, + -1, -1, -1, 29, 30, 31, 32, 33, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, + 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, + 13, -1, -1, 16, 17, -1, 19, 20, 21, 22, + 66, 67, 68, 26, 70, -1, 29, 30, -1, 1, + 33, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 12, 13, -1, 89, 16, 17, 18, 19, 20, 21, + 22, -1, -1, 25, 26, -1, -1, 29, 30, -1, + -1, 33, -1, 66, -1, -1, -1, 70, -1, 72, + 73, -1, -1, -1, -1, -1, -1, -1, 81, -1, + -1, 84, -1, -1, -1, -1, 89, -1, -1, -1, + -1, -1, -1, -1, 66, -1, -1, -1, 70, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 81, + -1, -1, 84, -1, -1, -1, 1, 89, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, -1, 17, -1, 19, 20, 21, 22, -1, -1, + -1, -1, -1, -1, 29, 30, 31, 32, 33, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, + -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 12, 13, -1, -1, 16, 17, -1, 19, 20, 21, + 22, 66, 67, 68, 26, 70, -1, 29, 30, 31, + 32, 33, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 66, -1, -1, -1, 70, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 81, + -1, -1, 84, -1, -1, -1, 1, 89, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, -1, + -1, 16, 17, -1, 19, 20, 21, 22, -1, -1, + -1, 26, -1, -1, 29, 30, 31, 32, 33, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, + 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, + 13, 14, 15, -1, 17, -1, 19, 20, -1, 22, + -1, 66, -1, -1, -1, 70, 29, 30, 31, 32, + 33, -1, -1, -1, -1, -1, 81, -1, -1, 84, + -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 66, 67, 68, -1, 70, -1, 1, + -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 12, 13, -1, -1, 16, 17, 89, 19, 20, 21, + 22, -1, -1, -1, 26, -1, -1, 29, 30, -1, + 1, 33, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 13, -1, -1, 16, 17, -1, 19, 20, + 21, 22, -1, -1, -1, 26, -1, -1, 29, 30, + -1, -1, 33, -1, 66, -1, -1, -1, 70, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 81, + -1, -1, 84, -1, -1, -1, -1, 89, -1, -1, + -1, -1, -1, -1, -1, 66, -1, -1, -1, 70, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 81, -1, -1, 84, -1, -1, -1, 1, 89, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, + -1, -1, 16, 17, -1, 19, 20, 21, 22, -1, + -1, -1, 26, -1, -1, 29, 30, -1, 1, 33, + 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, + 13, -1, -1, 16, 17, -1, 19, 20, 21, 22, + -1, -1, -1, 26, -1, -1, 29, 30, -1, -1, + 33, -1, 66, -1, -1, -1, 70, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 81, -1, -1, + 84, -1, -1, -1, -1, 89, -1, -1, -1, -1, + -1, -1, -1, 66, -1, -1, -1, 70, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 81, -1, + -1, 84, -1, -1, -1, 1, 89, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 12, -1, 14, 15, + 16, -1, 18, 19, -1, -1, 22, -1, -1, 25, + 26, -1, 1, 29, 3, 4, 5, 6, 7, 8, + 9, 10, 11, 12, -1, 14, 15, 16, -1, -1, + 19, -1, -1, 22, -1, -1, -1, 26, -1, -1, + 29, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 66, -1, -1, -1, 70, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 81, -1, -1, 84, -1, + -1, 5, -1, 89, -1, -1, -1, 66, -1, -1, + -1, 70, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 81, -1, -1, 84, -1, -1, -1, -1, + 89, 35, 36, 37, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, 48, -1, -1, -1, 52, 53, + 54, 55, 56, -1, -1, -1, 60, -1, -1, 63, + 64, 65, 66, 67, 68, 5, -1, -1, -1, -1, + -1, -1, -1, 77, 78, 79, -1, -1, -1, -1, + -1, -1, -1, -1, 88, -1, 90, 91, 92, -1, + -1, -1, -1, -1, -1, 35, 36, 37, 38, 39, + 40, -1, 42, 43, 44, 45, -1, 47, -1, -1, + -1, -1, 52, 53, 54, 55, 56, -1, -1, -1, + 60, -1, -1, 63, 64, 65, 66, 67, 68, 5, + -1, -1, -1, -1, -1, 75, -1, 77, 78, 79, + -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, + 90, 91, 92, -1, -1, -1, -1, -1, -1, 35, + 36, -1, 38, 39, 40, 41, 42, 43, 44, 45, + 46, 47, 48, -1, -1, -1, -1, 53, 54, 55, + 56, -1, -1, -1, 60, 61, -1, 63, 5, 65, + 66, 67, 68, -1, -1, -1, -1, -1, -1, -1, + -1, 77, 78, 79, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 90, 91, 92, -1, 35, 36, + 37, 38, 39, 40, -1, 42, 43, 44, 45, -1, + 47, -1, -1, -1, -1, 52, 53, 54, 55, 56, + -1, -1, -1, 60, -1, -1, 63, 64, 65, 66, + 67, 68, 5, -1, -1, -1, -1, -1, -1, -1, + 77, 78, 79, -1, -1, -1, -1, -1, -1, -1, + -1, 88, -1, 90, 91, 92, -1, -1, -1, -1, + -1, -1, 35, 36, -1, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, 48, -1, -1, -1, -1, + 53, 54, 55, 56, -1, -1, -1, 60, -1, -1, + 63, 5, 65, 66, 67, 68, -1, -1, -1, -1, + -1, -1, 75, -1, 77, 78, 79, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 90, 91, 92, + -1, 35, 36, -1, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, 48, -1, -1, -1, -1, 53, + 54, 55, 56, -1, -1, -1, 60, -1, -1, 63, + 5, 65, 66, 67, 68, -1, -1, -1, -1, -1, + -1, -1, -1, 77, 78, 79, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 90, 91, 92, -1, + 35, 36, -1, 38, 39, 40, 41, 42, 43, 44, + 45, -1, 47, -1, -1, -1, -1, -1, 53, 54, + 55, 56, -1, -1, -1, 60, -1, -1, 63, 64, + 65, 66, 67, 68, 5, -1, -1, -1, -1, -1, + -1, -1, 77, 78, 79, -1, -1, -1, -1, -1, + -1, -1, -1, 88, -1, 90, 91, 92, -1, -1, + -1, -1, -1, -1, 35, 36, -1, 38, 39, 40, + -1, 42, 43, 44, 45, -1, 47, -1, -1, -1, + -1, -1, 53, 54, 55, 56, -1, -1, -1, 60, + -1, -1, 63, 64, 65, 66, 67, 68, 5, -1, + -1, -1, -1, -1, -1, -1, 77, 78, 79, -1, + -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, + 91, 92, -1, -1, -1, -1, -1, -1, 35, 36, + -1, 38, 39, 40, 41, 42, 43, 44, 45, -1, + 47, -1, -1, -1, -1, -1, 53, 54, 55, 56, + -1, -1, -1, 60, -1, -1, 5, 64, -1, 66, + 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, + 77, 78, 79, -1, -1, -1, -1, -1, -1, -1, + -1, 88, -1, 90, 91, 92, 35, 36, -1, 38, + 39, 40, -1, 42, 43, 44, 45, -1, 47, -1, + -1, -1, -1, -1, 53, 54, 55, 56, -1, -1, + -1, 60, -1, -1, 63, 5, 65, 66, 67, 68, + -1, 70, -1, -1, -1, -1, -1, -1, 77, 78, + 79, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 90, 91, 92, -1, 35, 36, -1, 38, 39, + 40, -1, 42, 43, 44, 45, -1, 47, -1, -1, + -1, -1, -1, 53, 54, 55, 56, -1, -1, -1, + 60, -1, -1, 63, 5, 65, 66, 67, 68, -1, + -1, -1, -1, -1, -1, -1, -1, 77, 78, 79, + -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, + 90, 91, 92, -1, 35, 36, -1, 38, 39, 40, + -1, 42, 43, 44, 45, -1, 47, -1, -1, -1, + -1, -1, 53, 54, 55, 56, -1, -1, -1, 60, + -1, -1, 63, 5, 65, 66, 67, 68, -1, -1, + -1, -1, -1, -1, -1, -1, 77, 78, 79, -1, + -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, + 91, 92, -1, 35, 36, -1, 38, 39, 40, 41, + 42, 43, 44, 45, -1, 47, -1, -1, -1, -1, + -1, 53, 54, 55, 56, -1, -1, -1, 60, -1, + -1, 63, 5, 65, 66, 67, 68, -1, -1, -1, + -1, -1, -1, -1, -1, 77, 78, 79, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 90, 91, + 92, -1, 35, 36, -1, 38, 39, 40, -1, 42, + 43, 44, 45, -1, 47, -1, -1, -1, -1, -1, + 53, 54, 55, 56, -1, -1, -1, 60, -1, -1, + 63, 5, 65, 66, 67, 68, -1, -1, -1, -1, + -1, -1, 75, -1, 77, 78, 79, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 90, 91, 92, + -1, 35, 36, -1, 38, 39, 40, -1, 42, 43, + 44, 45, -1, 47, -1, -1, -1, -1, -1, 53, + 54, 55, 56, -1, -1, -1, 60, -1, -1, 63, + 5, 65, 66, 67, 68, -1, -1, -1, -1, -1, + -1, -1, -1, 77, 78, 79, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 90, 91, 92, -1, + 35, 36, -1, 38, 39, 40, -1, 42, 43, 44, + 45, -1, 47, -1, -1, -1, -1, -1, 53, 54, + 55, 56, -1, -1, -1, 60, -1, -1, 5, -1, + -1, 66, 67, 68, -1, -1, -1, -1, -1, -1, + -1, -1, 77, 78, 79, -1, -1, -1, -1, -1, + -1, -1, -1, 88, -1, 90, 91, 92, 35, 36, + -1, 38, 39, 40, -1, 42, 43, 44, 45, -1, + 47, -1, -1, -1, -1, -1, 53, 54, 55, 56, + -1, -1, -1, 60, -1, -1, -1, -1, -1, 66, + 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, + 77, 78, 79, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 90, 91, 92, 3, 4, 5, 6, + 7, 8, 9, 10, 11, 12, 13, 14, 15, -1, + 17, -1, 19, 20, 21, 22, -1, -1, -1, -1, + -1, -1, 29, 30, 31, 32, 33, 3, 4, 5, + 6, 7, 8, 9, 10, 11, 12, 13, -1, -1, + -1, 17, -1, 19, 20, 21, 22, -1, -1, -1, + 26, -1, -1, 29, 30, -1, -1, 33, -1, 66, + 67, 68, -1, 70, -1, -1, -1, -1, -1, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, + 14, 15, 89, 17, -1, 19, 20, -1, 22, -1, + 66, -1, -1, -1, 70, 29, 30, 31, 32, 33, + -1, -1, -1, -1, -1, 81, -1, -1, 84, -1, + -1, -1, -1, 89, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 66, 67, 68, -1, 70 +}; + +/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing + symbol of state STATE-NUM. */ +static const yytype_uint8 yystos[] = +{ + 0, 1, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 13, 17, 19, 20, 21, 22, 26, 29, + 30, 33, 49, 50, 51, 66, 70, 81, 84, 95, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, + 117, 120, 121, 125, 128, 129, 130, 131, 132, 133, + 136, 137, 139, 154, 155, 165, 188, 89, 1, 1, + 6, 7, 8, 9, 10, 11, 12, 29, 89, 129, + 134, 198, 5, 35, 36, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, 48, 53, 54, 55, 56, + 60, 63, 65, 67, 68, 77, 78, 79, 90, 91, + 92, 159, 160, 161, 162, 163, 164, 165, 166, 167, + 168, 169, 170, 171, 172, 181, 189, 199, 200, 201, + 208, 134, 198, 134, 198, 134, 198, 1, 170, 170, + 170, 1, 170, 1, 75, 169, 1, 170, 1, 75, + 169, 198, 171, 186, 57, 58, 66, 67, 74, 76, + 83, 88, 190, 191, 192, 197, 41, 64, 88, 98, + 181, 5, 41, 45, 47, 53, 54, 55, 56, 60, + 64, 77, 78, 79, 88, 102, 159, 160, 161, 162, + 163, 164, 168, 175, 189, 199, 200, 201, 208, 1, + 61, 62, 75, 88, 171, 5, 1, 190, 0, 109, + 170, 89, 132, 130, 1, 5, 70, 89, 170, 170, + 170, 169, 14, 15, 16, 135, 1, 108, 123, 1, + 5, 59, 1, 190, 1, 165, 1, 165, 1, 165, + 173, 1, 59, 78, 209, 210, 1, 165, 1, 165, + 1, 59, 91, 93, 204, 206, 206, 4, 54, 68, + 92, 93, 158, 202, 203, 204, 207, 207, 185, 184, + 181, 181, 1, 74, 88, 171, 1, 181, 183, 64, + 88, 181, 187, 182, 1, 165, 1, 91, 204, 1, + 92, 202, 75, 41, 46, 48, 61, 181, 37, 52, + 64, 88, 1, 123, 1, 123, 1, 123, 75, 75, + 75, 75, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 13, 14, 15, 17, 19, 20, 22, 29, + 30, 31, 32, 33, 70, 150, 151, 152, 157, 168, + 198, 211, 75, 75, 198, 75, 1, 108, 75, 1, + 190, 1, 57, 66, 74, 75, 80, 81, 82, 83, + 84, 85, 86, 87, 88, 193, 194, 195, 196, 197, + 190, 80, 82, 83, 84, 85, 86, 87, 191, 64, + 88, 99, 181, 181, 96, 64, 88, 103, 206, 207, + 179, 178, 175, 177, 88, 175, 180, 176, 175, 97, + 181, 181, 171, 75, 5, 53, 71, 156, 168, 188, + 81, 75, 5, 75, 75, 75, 75, 134, 134, 14, + 15, 16, 124, 81, 181, 1, 59, 78, 210, 59, + 205, 206, 206, 70, 181, 207, 92, 93, 202, 187, + 187, 171, 74, 187, 181, 181, 187, 91, 92, 134, + 198, 174, 206, 207, 181, 88, 181, 88, 181, 181, + 181, 130, 198, 134, 198, 198, 129, 1, 170, 170, + 170, 170, 170, 170, 1, 186, 170, 170, 181, 181, + 89, 150, 1, 16, 21, 33, 140, 141, 142, 144, + 148, 149, 150, 150, 150, 198, 130, 1, 108, 130, + 198, 31, 32, 138, 198, 75, 74, 193, 76, 190, + 190, 190, 190, 101, 100, 181, 41, 106, 181, 105, + 104, 175, 180, 180, 180, 175, 180, 106, 75, 75, + 75, 71, 198, 53, 71, 188, 198, 198, 198, 59, + 1, 181, 207, 74, 1, 123, 181, 181, 181, 16, + 1, 108, 1, 123, 1, 108, 118, 16, 18, 25, + 122, 75, 75, 75, 75, 75, 75, 75, 75, 75, + 181, 186, 1, 140, 198, 186, 198, 75, 181, 16, + 140, 89, 89, 1, 140, 16, 122, 16, 16, 1, + 108, 75, 169, 198, 16, 1, 108, 196, 181, 181, + 175, 175, 1, 108, 71, 71, 123, 123, 186, 16, + 14, 15, 119, 16, 122, 170, 149, 170, 71, 16, + 75, 1, 75, 198, 1, 140, 16, 170, 198, 16, + 198, 75, 1, 108, 198, 73, 126, 16, 122, 71, + 198, 198, 198, 198, 170, 75, 23, 24, 25, 26, + 27, 28, 153, 75, 198, 198, 198, 16, 198, 75, + 198, 1, 108, 198, 186, 72, 127, 198, 170, 118, + 118, 75, 129, 149, 149, 170, 149, 170, 170, 16, + 140, 147, 1, 147, 198, 130, 138, 1, 108, 75, + 198, 16, 75, 198, 16, 153, 153, 75, 153, 75, + 75, 23, 24, 25, 26, 27, 28, 143, 73, 145, + 16, 138, 198, 108, 198, 198, 108, 149, 149, 149, + 198, 198, 170, 198, 170, 170, 16, 186, 72, 146, + 108, 108, 16, 153, 153, 153, 147, 147, 75, 147, + 75, 75, 198, 75, 198, 16, 126, 16, 198, 143, + 143, 198, 143, 198, 198, 198, 147, 198, 198, 147, + 147, 147, 147, 143, 143, 143, 145 +}; + +#define yyerrok (yyerrstatus = 0) +#define yyclearin (yychar = YYEMPTY) +#define YYEMPTY (-2) +#define YYEOF 0 + +#define YYACCEPT goto yyacceptlab +#define YYABORT goto yyabortlab +#define YYERROR goto yyerrorlab + + +/* Like YYERROR except do call yyerror. This remains here temporarily + to ease the transition to the new meaning of YYERROR, for GCC. + Once GCC version 2 has supplanted version 1, this can go. However, + YYFAIL appears to be in use. Nevertheless, it is formally deprecated + in Bison 2.4.2's NEWS entry, where a plan to phase it out is + discussed. */ + +#define YYFAIL goto yyerrlab +#if defined YYFAIL + /* This is here to suppress warnings from the GCC cpp's + -Wunused-macros. Normally we don't worry about that warning, but + some users do, and we want to make it easy for users to remove + YYFAIL uses, which will produce warnings from Bison 2.5. */ +#endif + +#define YYRECOVERING() (!!yyerrstatus) + +#define YYBACKUP(Token, Value) \ +do \ + if (yychar == YYEMPTY && yylen == 1) \ + { \ + yychar = (Token); \ + yylval = (Value); \ + YYPOPSTACK (1); \ + goto yybackup; \ + } \ + else \ + { \ + yyerror (scnr, parser, YY_("syntax error: cannot back up")); \ + YYERROR; \ + } \ +while (YYID (0)) + + +#define YYTERROR 1 +#define YYERRCODE 256 + + +/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. + If N is 0, then set CURRENT to the empty location which ends + the previous symbol: RHS[0] (always defined). */ + +#define YYRHSLOC(Rhs, K) ((Rhs)[K]) +#ifndef YYLLOC_DEFAULT +# define YYLLOC_DEFAULT(Current, Rhs, N) \ + do \ + if (YYID (N)) \ + { \ + (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ + (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ + (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ + (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ + } \ + else \ + { \ + (Current).first_line = (Current).last_line = \ + YYRHSLOC (Rhs, 0).last_line; \ + (Current).first_column = (Current).last_column = \ + YYRHSLOC (Rhs, 0).last_column; \ + } \ + while (YYID (0)) +#endif + + +/* This macro is provided for backward compatibility. */ + +#ifndef YY_LOCATION_PRINT +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +#endif + + +/* YYLEX -- calling `yylex' with the right arguments. */ + +#ifdef YYLEX_PARAM +# define YYLEX yylex (&yylval, YYLEX_PARAM) +#else +# define YYLEX yylex (&yylval, scnr) +#endif + +/* Enable debugging if requested. */ +#if YYDEBUG + +# ifndef YYFPRINTF +# include <stdio.h> /* INFRINGES ON USER NAME SPACE */ +# define YYFPRINTF fprintf +# endif + +# define YYDPRINTF(Args) \ +do { \ + if (yydebug) \ + YYFPRINTF Args; \ +} while (YYID (0)) + +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ +do { \ + if (yydebug) \ + { \ + YYFPRINTF (stderr, "%s ", Title); \ + yy_symbol_print (stderr, \ + Type, Value, scnr, parser); \ + YYFPRINTF (stderr, "\n"); \ + } \ +} while (YYID (0)) + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, scanner_t *scnr, parser_t *parser) +#else +static void +yy_symbol_value_print (yyoutput, yytype, yyvaluep, scnr, parser) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; + scanner_t *scnr; + parser_t *parser; +#endif +{ + if (!yyvaluep) + return; + YYUSE (scnr); + YYUSE (parser); +# ifdef YYPRINT + if (yytype < YYNTOKENS) + YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); +# else + YYUSE (yyoutput); +# endif + switch (yytype) + { + default: + break; + } +} + + +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, scanner_t *scnr, parser_t *parser) +#else +static void +yy_symbol_print (yyoutput, yytype, yyvaluep, scnr, parser) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; + scanner_t *scnr; + parser_t *parser; +#endif +{ + if (yytype < YYNTOKENS) + YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); + else + YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); + + yy_symbol_value_print (yyoutput, yytype, yyvaluep, scnr, parser); + YYFPRINTF (yyoutput, ")"); +} + +/*------------------------------------------------------------------. +| yy_stack_print -- Print the state stack from its BOTTOM up to its | +| TOP (included). | +`------------------------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) +#else +static void +yy_stack_print (yybottom, yytop) + yytype_int16 *yybottom; + yytype_int16 *yytop; +#endif +{ + YYFPRINTF (stderr, "Stack now"); + for (; yybottom <= yytop; yybottom++) + { + int yybot = *yybottom; + YYFPRINTF (stderr, " %d", yybot); + } + YYFPRINTF (stderr, "\n"); +} + +# define YY_STACK_PRINT(Bottom, Top) \ +do { \ + if (yydebug) \ + yy_stack_print ((Bottom), (Top)); \ +} while (YYID (0)) + + +/*------------------------------------------------. +| Report that the YYRULE is going to be reduced. | +`------------------------------------------------*/ + +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_reduce_print (YYSTYPE *yyvsp, int yyrule, scanner_t *scnr, parser_t *parser) +#else +static void +yy_reduce_print (yyvsp, yyrule, scnr, parser) + YYSTYPE *yyvsp; + int yyrule; + scanner_t *scnr; + parser_t *parser; +#endif +{ + int yynrhs = yyr2[yyrule]; + int yyi; + unsigned long int yylno = yyrline[yyrule]; + YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", + yyrule - 1, yylno); + /* The symbols being reduced. */ + for (yyi = 0; yyi < yynrhs; yyi++) + { + YYFPRINTF (stderr, " $%d = ", yyi + 1); + yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], + &(yyvsp[(yyi + 1) - (yynrhs)]) + , scnr, parser); + YYFPRINTF (stderr, "\n"); + } +} + +# define YY_REDUCE_PRINT(Rule) \ +do { \ + if (yydebug) \ + yy_reduce_print (yyvsp, Rule, scnr, parser); \ +} while (YYID (0)) + +/* Nonzero means print parse trace. It is left uninitialized so that + multiple parsers can coexist. */ +int yydebug; +#else /* !YYDEBUG */ +# define YYDPRINTF(Args) +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) +# define YY_STACK_PRINT(Bottom, Top) +# define YY_REDUCE_PRINT(Rule) +#endif /* !YYDEBUG */ + + +/* YYINITDEPTH -- initial size of the parser's stacks. */ +#ifndef YYINITDEPTH +# define YYINITDEPTH 200 +#endif + +/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only + if the built-in stack extension method is used). + + Do not make this value too large; the results are undefined if + YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) + evaluated with infinite-precision integer arithmetic. */ + +#ifndef YYMAXDEPTH +# define YYMAXDEPTH 10000 +#endif + + +#if YYERROR_VERBOSE + +# ifndef yystrlen +# if defined __GLIBC__ && defined _STRING_H +# define yystrlen strlen +# else +/* Return the length of YYSTR. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static YYSIZE_T +yystrlen (const char *yystr) +#else +static YYSIZE_T +yystrlen (yystr) + const char *yystr; +#endif +{ + YYSIZE_T yylen; + for (yylen = 0; yystr[yylen]; yylen++) + continue; + return yylen; +} +# endif +# endif + +# ifndef yystpcpy +# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE +# define yystpcpy stpcpy +# else +/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in + YYDEST. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static char * +yystpcpy (char *yydest, const char *yysrc) +#else +static char * +yystpcpy (yydest, yysrc) + char *yydest; + const char *yysrc; +#endif +{ + char *yyd = yydest; + const char *yys = yysrc; + + while ((*yyd++ = *yys++) != '\0') + continue; + + return yyd - 1; +} +# endif +# endif + +# ifndef yytnamerr +/* Copy to YYRES the contents of YYSTR after stripping away unnecessary + quotes and backslashes, so that it's suitable for yyerror. The + heuristic is that double-quoting is unnecessary unless the string + contains an apostrophe, a comma, or backslash (other than + backslash-backslash). YYSTR is taken from yytname. If YYRES is + null, do not copy; instead, return the length of what the result + would have been. */ +static YYSIZE_T +yytnamerr (char *yyres, const char *yystr) +{ + if (*yystr == '"') + { + YYSIZE_T yyn = 0; + char const *yyp = yystr; + + for (;;) + switch (*++yyp) + { + case '\'': + case ',': + goto do_not_strip_quotes; + + case '\\': + if (*++yyp != '\\') + goto do_not_strip_quotes; + /* Fall through. */ + default: + if (yyres) + yyres[yyn] = *yyp; + yyn++; + break; + + case '"': + if (yyres) + yyres[yyn] = '\0'; + return yyn; + } + do_not_strip_quotes: ; + } + + if (! yyres) + return yystrlen (yystr); + + return yystpcpy (yyres, yystr) - yyres; +} +# endif + +/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message + about the unexpected token YYTOKEN for the state stack whose top is + YYSSP. + + Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is + not large enough to hold the message. In that case, also set + *YYMSG_ALLOC to the required number of bytes. Return 2 if the + required number of bytes is too large to store. */ +static int +yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, + yytype_int16 *yyssp, int yytoken) +{ + YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); + YYSIZE_T yysize = yysize0; + YYSIZE_T yysize1; + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + /* Internationalized format string. */ + const char *yyformat = 0; + /* Arguments of yyformat. */ + char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + /* Number of reported tokens (one for the "unexpected", one per + "expected"). */ + int yycount = 0; + + /* There are many possibilities here to consider: + - Assume YYFAIL is not used. It's too flawed to consider. See + <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html> + for details. YYERROR is fine as it does not invoke this + function. + - If this state is a consistent state with a default action, then + the only way this function was invoked is if the default action + is an error action. In that case, don't check for expected + tokens because there are none. + - The only way there can be no lookahead present (in yychar) is if + this state is a consistent state with a default action. Thus, + detecting the absence of a lookahead is sufficient to determine + that there is no unexpected or expected token to report. In that + case, just report a simple "syntax error". + - Don't assume there isn't a lookahead just because this state is a + consistent state with a default action. There might have been a + previous inconsistent state, consistent state with a non-default + action, or user semantic action that manipulated yychar. + - Of course, the expected token list depends on states to have + correct lookahead information, and it depends on the parser not + to perform extra reductions after fetching a lookahead from the + scanner and before detecting a syntax error. Thus, state merging + (from LALR or IELR) and default reductions corrupt the expected + token list. However, the list is correct for canonical LR with + one exception: it will still contain any token that will not be + accepted due to an error action in a later state. + */ + if (yytoken != YYEMPTY) + { + int yyn = yypact[*yyssp]; + yyarg[yycount++] = yytname[yytoken]; + if (!yypact_value_is_default (yyn)) + { + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. In other words, skip the first -YYN actions for + this state because they are default actions. */ + int yyxbegin = yyn < 0 ? -yyn : 0; + /* Stay within bounds of both yycheck and yytname. */ + int yychecklim = YYLAST - yyn + 1; + int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; + int yyx; + + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR + && !yytable_value_is_error (yytable[yyx + yyn])) + { + if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + yycount = 1; + yysize = yysize0; + break; + } + yyarg[yycount++] = yytname[yyx]; + yysize1 = yysize + yytnamerr (0, yytname[yyx]); + if (! (yysize <= yysize1 + && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) + return 2; + yysize = yysize1; + } + } + } + + switch (yycount) + { +# define YYCASE_(N, S) \ + case N: \ + yyformat = S; \ + break + YYCASE_(0, YY_("syntax error")); + YYCASE_(1, YY_("syntax error, unexpected %s")); + YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); + YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); + YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); + YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); +# undef YYCASE_ + } + + yysize1 = yysize + yystrlen (yyformat); + if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) + return 2; + yysize = yysize1; + + if (*yymsg_alloc < yysize) + { + *yymsg_alloc = 2 * yysize; + if (! (yysize <= *yymsg_alloc + && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) + *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; + return 1; + } + + /* Avoid sprintf, as that infringes on the user's name space. + Don't have undefined behavior even if the translation + produced a string with the wrong number of "%s"s. */ + { + char *yyp = *yymsg; + int yyi = 0; + while ((*yyp = *yyformat) != '\0') + if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) + { + yyp += yytnamerr (yyp, yyarg[yyi++]); + yyformat += 2; + } + else + { + yyp++; + yyformat++; + } + } + return 0; +} +#endif /* YYERROR_VERBOSE */ + +/*-----------------------------------------------. +| Release the memory associated to this symbol. | +`-----------------------------------------------*/ + +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, scanner_t *scnr, parser_t *parser) +#else +static void +yydestruct (yymsg, yytype, yyvaluep, scnr, parser) + const char *yymsg; + int yytype; + YYSTYPE *yyvaluep; + scanner_t *scnr; + parser_t *parser; +#endif +{ + YYUSE (yyvaluep); + YYUSE (scnr); + YYUSE (parser); + + if (!yymsg) + yymsg = "Deleting"; + YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); + + switch (yytype) + { + + default: + break; + } +} + + +/* Prevent warnings from -Wmissing-prototypes. */ +#ifdef YYPARSE_PARAM +#if defined __STDC__ || defined __cplusplus +int yyparse (void *YYPARSE_PARAM); +#else +int yyparse (); +#endif +#else /* ! YYPARSE_PARAM */ +#if defined __STDC__ || defined __cplusplus +int yyparse (scanner_t *scnr, parser_t *parser); +#else +int yyparse (); +#endif +#endif /* ! YYPARSE_PARAM */ + + +/*----------. +| yyparse. | +`----------*/ + +#ifdef YYPARSE_PARAM +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (void *YYPARSE_PARAM) +#else +int +yyparse (YYPARSE_PARAM) + void *YYPARSE_PARAM; +#endif +#else /* ! YYPARSE_PARAM */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (scanner_t *scnr, parser_t *parser) +#else +int +yyparse (scnr, parser) + scanner_t *scnr; + parser_t *parser; +#endif +#endif +{ +/* The lookahead symbol. */ +int yychar; + +/* The semantic value of the lookahead symbol. */ +YYSTYPE yylval; + + /* Number of syntax errors so far. */ + int yynerrs; + + int yystate; + /* Number of tokens to shift before error messages enabled. */ + int yyerrstatus; + + /* The stacks and their tools: + `yyss': related to states. + `yyvs': related to semantic values. + + Refer to the stacks thru separate pointers, to allow yyoverflow + to reallocate them elsewhere. */ + + /* The state stack. */ + yytype_int16 yyssa[YYINITDEPTH]; + yytype_int16 *yyss; + yytype_int16 *yyssp; + + /* The semantic value stack. */ + YYSTYPE yyvsa[YYINITDEPTH]; + YYSTYPE *yyvs; + YYSTYPE *yyvsp; + + YYSIZE_T yystacksize; + + int yyn; + int yyresult; + /* Lookahead token as an internal (translated) token number. */ + int yytoken; + /* The variables used to return semantic value and location from the + action routines. */ + YYSTYPE yyval; + +#if YYERROR_VERBOSE + /* Buffer for error messages, and its allocated size. */ + char yymsgbuf[128]; + char *yymsg = yymsgbuf; + YYSIZE_T yymsg_alloc = sizeof yymsgbuf; +#endif + +#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) + + /* The number of symbols on the RHS of the reduced rule. + Keep to zero when no symbol should be popped. */ + int yylen = 0; + + yytoken = 0; + yyss = yyssa; + yyvs = yyvsa; + yystacksize = YYINITDEPTH; + + YYDPRINTF ((stderr, "Starting parse\n")); + + yystate = 0; + yyerrstatus = 0; + yynerrs = 0; + yychar = YYEMPTY; /* Cause a token to be read. */ + + /* Initialize stack pointers. + Waste one element of value and location stack + so that they stay on the same level as the state stack. + The wasted elements are never initialized. */ + yyssp = yyss; + yyvsp = yyvs; + + goto yysetstate; + +/*------------------------------------------------------------. +| yynewstate -- Push a new state, which is found in yystate. | +`------------------------------------------------------------*/ + yynewstate: + /* In all cases, when you get here, the value and location stacks + have just been pushed. So pushing a state here evens the stacks. */ + yyssp++; + + yysetstate: + *yyssp = yystate; + + if (yyss + yystacksize - 1 <= yyssp) + { + /* Get the current used size of the three stacks, in elements. */ + YYSIZE_T yysize = yyssp - yyss + 1; + +#ifdef yyoverflow + { + /* Give user a chance to reallocate the stack. Use copies of + these so that the &'s don't force the real ones into + memory. */ + YYSTYPE *yyvs1 = yyvs; + yytype_int16 *yyss1 = yyss; + + /* Each stack pointer address is followed by the size of the + data in use in that stack, in bytes. This used to be a + conditional around just the two extra args, but that might + be undefined if yyoverflow is a macro. */ + yyoverflow (YY_("memory exhausted"), + &yyss1, yysize * sizeof (*yyssp), + &yyvs1, yysize * sizeof (*yyvsp), + &yystacksize); + + yyss = yyss1; + yyvs = yyvs1; + } +#else /* no yyoverflow */ +# ifndef YYSTACK_RELOCATE + goto yyexhaustedlab; +# else + /* Extend the stack our own way. */ + if (YYMAXDEPTH <= yystacksize) + goto yyexhaustedlab; + yystacksize *= 2; + if (YYMAXDEPTH < yystacksize) + yystacksize = YYMAXDEPTH; + + { + yytype_int16 *yyss1 = yyss; + union yyalloc *yyptr = + (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); + if (! yyptr) + goto yyexhaustedlab; + YYSTACK_RELOCATE (yyss_alloc, yyss); + YYSTACK_RELOCATE (yyvs_alloc, yyvs); +# undef YYSTACK_RELOCATE + if (yyss1 != yyssa) + YYSTACK_FREE (yyss1); + } +# endif +#endif /* no yyoverflow */ + + yyssp = yyss + yysize - 1; + yyvsp = yyvs + yysize - 1; + + YYDPRINTF ((stderr, "Stack size increased to %lu\n", + (unsigned long int) yystacksize)); + + if (yyss + yystacksize - 1 <= yyssp) + YYABORT; + } + + YYDPRINTF ((stderr, "Entering state %d\n", yystate)); + + if (yystate == YYFINAL) + YYACCEPT; + + goto yybackup; + +/*-----------. +| yybackup. | +`-----------*/ +yybackup: + + /* Do appropriate processing given the current state. Read a + lookahead token if we need one and don't already have one. */ + + /* First try to decide what to do without reference to lookahead token. */ + yyn = yypact[yystate]; + if (yypact_value_is_default (yyn)) + goto yydefault; + + /* Not known => get a lookahead token if don't already have one. */ + + /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ + if (yychar == YYEMPTY) + { + YYDPRINTF ((stderr, "Reading a token: ")); + yychar = YYLEX; + } + + if (yychar <= YYEOF) + { + yychar = yytoken = YYEOF; + YYDPRINTF ((stderr, "Now at end of input.\n")); + } + else + { + yytoken = YYTRANSLATE (yychar); + YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); + } + + /* If the proper action on seeing token YYTOKEN is to reduce or to + detect an error, take that action. */ + yyn += yytoken; + if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) + goto yydefault; + yyn = yytable[yyn]; + if (yyn <= 0) + { + if (yytable_value_is_error (yyn)) + goto yyerrlab; + yyn = -yyn; + goto yyreduce; + } + + /* Count tokens shifted since error; after three, turn off error + status. */ + if (yyerrstatus) + yyerrstatus--; + + /* Shift the lookahead token. */ + YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); + + /* Discard the shifted token. */ + yychar = YYEMPTY; + + yystate = yyn; + *++yyvsp = yylval; + + goto yynewstate; + + +/*-----------------------------------------------------------. +| yydefault -- do the default action for the current state. | +`-----------------------------------------------------------*/ +yydefault: + yyn = yydefact[yystate]; + if (yyn == 0) + goto yyerrlab; + goto yyreduce; + + +/*-----------------------------. +| yyreduce -- Do a reduction. | +`-----------------------------*/ +yyreduce: + /* yyn is the number of a rule to reduce with. */ + yylen = yyr2[yyn]; + + /* If YYLEN is nonzero, implement the default value of the action: + `$$ = $1'. + + Otherwise, the following line sets YYVAL to garbage. + This behavior is undocumented and Bison + users should not rely upon it. Assigning to YYVAL + unconditionally makes the parser a bit smaller, and it avoids a + GCC warning that YYVAL may be used uninitialized. */ + yyval = yyvsp[1-yylen]; + + + YY_REDUCE_PRINT (yyn); + switch (yyn) + { + case 2: + +/* Line 1806 of yacc.c */ +#line 173 "parser.y" + { parser->syntax_tree = (yyvsp[(1) - (1)].val); } + break; + + case 3: + +/* Line 1806 of yacc.c */ +#line 174 "parser.y" + { parser->syntax_tree = (yyvsp[(2) - (2)].val); end_of_regex(scnr); } + break; + + case 4: + +/* Line 1806 of yacc.c */ +#line 176 "parser.y" + { parser->syntax_tree = (yyvsp[(2) - (2)].val); YYACCEPT; } + break; + + case 5: + +/* Line 1806 of yacc.c */ +#line 177 "parser.y" + { internal_error("notreached"); } + break; + + case 6: + +/* Line 1806 of yacc.c */ +#line 179 "parser.y" + { parser->syntax_tree = (yyvsp[(2) - (2)].val); YYACCEPT; } + break; + + case 7: + +/* Line 1806 of yacc.c */ +#line 180 "parser.y" + { internal_error("notreached"); } + break; + + case 8: + +/* Line 1806 of yacc.c */ +#line 181 "parser.y" + { if (yychar == YYEOF) { + parser->syntax_tree = nao; + YYACCEPT; + } else { + yybadtok(yychar, nil); + parser->syntax_tree = nil; + } } + break; + + case 9: + +/* Line 1806 of yacc.c */ +#line 188 "parser.y" + { if (yychar == YYEOF) { + parser->syntax_tree = nao; + YYACCEPT; + } else { + yybadtok(yychar, nil); + parser->syntax_tree = nil; + } } + break; + + case 10: + +/* Line 1806 of yacc.c */ +#line 195 "parser.y" + { parser->syntax_tree = nil; + if (parser->errors >= 8) + YYABORT; + yyerrok; + yybadtok(yychar, nil); } + break; + + case 11: + +/* Line 1806 of yacc.c */ +#line 204 "parser.y" + { parser->ignore = 1; } + break; + + case 12: + +/* Line 1806 of yacc.c */ +#line 205 "parser.y" + { parser->ignore = 0; + (yyval.val) = nao; } + break; + + case 13: + +/* Line 1806 of yacc.c */ +#line 207 "parser.y" + { parser->ignore = 1; } + break; + + case 14: + +/* Line 1806 of yacc.c */ +#line 208 "parser.y" + { parser->ignore = 0; + (yyval.val) = nao; } + break; + + case 15: + +/* Line 1806 of yacc.c */ +#line 210 "parser.y" + { parser->ignore = 1; } + break; + + case 16: + +/* Line 1806 of yacc.c */ +#line 211 "parser.y" + { parser->ignore = 0; + (yyval.val) = nao; } + break; + + case 17: + +/* Line 1806 of yacc.c */ +#line 213 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 18: + +/* Line 1806 of yacc.c */ +#line 214 "parser.y" + { (yyval.val) = uref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 19: + +/* Line 1806 of yacc.c */ +#line 215 "parser.y" + { (yyval.val) = uoref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 20: + +/* Line 1806 of yacc.c */ +#line 218 "parser.y" + { parser->ignore = 1; } + break; + + case 21: + +/* Line 1806 of yacc.c */ +#line 219 "parser.y" + { parser->ignore = 0; + (yyval.val) = nao; } + break; + + case 22: + +/* Line 1806 of yacc.c */ +#line 221 "parser.y" + { parser->ignore = 1; } + break; + + case 23: + +/* Line 1806 of yacc.c */ +#line 222 "parser.y" + { parser->ignore = 0; + (yyval.val) = nao; } + break; + + case 24: + +/* Line 1806 of yacc.c */ +#line 224 "parser.y" + { parser->ignore = 1; } + break; + + case 25: + +/* Line 1806 of yacc.c */ +#line 225 "parser.y" + { parser->ignore = 0; + (yyval.val) = nao; } + break; + + case 26: + +/* Line 1806 of yacc.c */ +#line 227 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 27: + +/* Line 1806 of yacc.c */ +#line 228 "parser.y" + { (yyval.val) = uref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 28: + +/* Line 1806 of yacc.c */ +#line 229 "parser.y" + { (yyval.val) = uoref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 29: + +/* Line 1806 of yacc.c */ +#line 234 "parser.y" + { internal_error("notreached"); } + break; + + case 30: + +/* Line 1806 of yacc.c */ +#line 235 "parser.y" + { internal_error("notreached"); } + break; + + case 31: + +/* Line 1806 of yacc.c */ +#line 236 "parser.y" + { internal_error("notreached"); } + break; + + case 32: + +/* Line 1806 of yacc.c */ +#line 239 "parser.y" + { (yyval.val) = check_parse_time_action(cons((yyvsp[(1) - (1)].val), nil)); } + break; + + case 33: + +/* Line 1806 of yacc.c */ +#line 240 "parser.y" + { (yyval.val) = check_parse_time_action(cons((yyvsp[(2) - (2)].val), (yyvsp[(1) - (2)].val))); } + break; + + case 34: + +/* Line 1806 of yacc.c */ +#line 243 "parser.y" + { (yyval.val) = us_nreverse((yyvsp[(1) - (1)].val)); } + break; + + case 35: + +/* Line 1806 of yacc.c */ +#line 244 "parser.y" + { (yyval.val) = nil; } + break; + + case 36: + +/* Line 1806 of yacc.c */ +#line 247 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 37: + +/* Line 1806 of yacc.c */ +#line 248 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 38: + +/* Line 1806 of yacc.c */ +#line 249 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 39: + +/* Line 1806 of yacc.c */ +#line 250 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 40: + +/* Line 1806 of yacc.c */ +#line 251 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 41: + +/* Line 1806 of yacc.c */ +#line 252 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 42: + +/* Line 1806 of yacc.c */ +#line 253 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 43: + +/* Line 1806 of yacc.c */ +#line 254 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 44: + +/* Line 1806 of yacc.c */ +#line 255 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 45: + +/* Line 1806 of yacc.c */ +#line 256 "parser.y" + { (yyval.val) = list(define_transform(parser, (yyvsp[(1) - (1)].val)), nao); + rlc(car((yyval.val)), (yyvsp[(1) - (1)].val)); + rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 46: + +/* Line 1806 of yacc.c */ +#line 259 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 47: + +/* Line 1806 of yacc.c */ +#line 260 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 48: + +/* Line 1806 of yacc.c */ +#line 261 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 49: + +/* Line 1806 of yacc.c */ +#line 262 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 50: + +/* Line 1806 of yacc.c */ +#line 265 "parser.y" + { (yyval.val) = list(all_s, (yyvsp[(3) - (3)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 51: + +/* Line 1806 of yacc.c */ +#line 267 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("all clause")); } + break; + + case 52: + +/* Line 1806 of yacc.c */ +#line 272 "parser.y" + { (yyval.val) = list(some_s, (yyvsp[(5) - (5)].val), (yyvsp[(2) - (5)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 53: + +/* Line 1806 of yacc.c */ +#line 276 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("some clause")); } + break; + + case 54: + +/* Line 1806 of yacc.c */ +#line 280 "parser.y" + { (yyval.val) = list(none_s, (yyvsp[(3) - (3)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 55: + +/* Line 1806 of yacc.c */ +#line 282 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("none clause")); } + break; + + case 56: + +/* Line 1806 of yacc.c */ +#line 286 "parser.y" + { (yyval.val) = list(maybe_s, (yyvsp[(3) - (3)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 57: + +/* Line 1806 of yacc.c */ +#line 288 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("maybe clause")); } + break; + + case 58: + +/* Line 1806 of yacc.c */ +#line 292 "parser.y" + { (yyval.val) = list(cases_s, (yyvsp[(3) - (3)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 59: + +/* Line 1806 of yacc.c */ +#line 294 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("cases clause")); } + break; + + case 60: + +/* Line 1806 of yacc.c */ +#line 300 "parser.y" + { val name = first((yyvsp[(2) - (7)].val)); + if (gt(length((yyvsp[(2) - (7)].val)), one)) + yyerr("block: takes zero or no arguments"); + if (name && !bindable(name)) + yyerrorf(scnr, + lit("block: ~s is not a bindable symbol"), + name, nao); + (yyval.val) = list(block_s, name, (yyvsp[(5) - (7)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (7)].lineno))); } + break; + + case 61: + +/* Line 1806 of yacc.c */ +#line 310 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("block clause")); } + break; + + case 62: + +/* Line 1806 of yacc.c */ +#line 315 "parser.y" + { (yyval.val) = list(choose_s, (yyvsp[(5) - (5)].val), (yyvsp[(2) - (5)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 63: + +/* Line 1806 of yacc.c */ +#line 318 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("choose clause")); } + break; + + case 64: + +/* Line 1806 of yacc.c */ +#line 324 "parser.y" + { val args = match_expand_keyword_args((yyvsp[(2) - (7)].val)); + (yyval.val) = list(gather_s, + append2(mapcar(pa_12_1(func_n2(cons), nil), + first((yyvsp[(5) - (7)].val))), rest((yyvsp[(5) - (7)].val))), + args, nao); + rl((yyval.val), num((yyvsp[(1) - (7)].lineno))); } + break; + + case 65: + +/* Line 1806 of yacc.c */ +#line 335 "parser.y" + { val args = match_expand_keyword_args((yyvsp[(2) - (12)].val)); + (yyval.val) = list(gather_s, + append2(mapcar(pa_12_1(func_n2(cons), nil), + first((yyvsp[(5) - (12)].val))), rest((yyvsp[(5) - (12)].val))), + args, cons(cdr((yyvsp[(6) - (12)].val)), + cons((yyvsp[(7) - (12)].val), (yyvsp[(10) - (12)].val))), nao); + rl((yyval.val), num((yyvsp[(1) - (12)].lineno))); } + break; + + case 66: + +/* Line 1806 of yacc.c */ +#line 344 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("gather clause")); } + break; + + case 67: + +/* Line 1806 of yacc.c */ +#line 349 "parser.y" + { (yyval.val) = if2((yyvsp[(1) - (2)].val), cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val))); } + break; + + case 68: + +/* Line 1806 of yacc.c */ +#line 352 "parser.y" + { (yyval.val) = (yyvsp[(3) - (3)].val); } + break; + + case 69: + +/* Line 1806 of yacc.c */ +#line 353 "parser.y" + { (yyval.val) = (yyvsp[(3) - (3)].val); } + break; + + case 70: + +/* Line 1806 of yacc.c */ +#line 354 "parser.y" + { (yyval.val) = nil; } + break; + + case 71: + +/* Line 1806 of yacc.c */ +#line 358 "parser.y" + { val args = match_expand_keyword_args((yyvsp[(2) - (7)].val)); + (yyval.val) = list(car((yyvsp[(1) - (7)].val)), + (yyvsp[(5) - (7)].val), nil, args, + nao); + rl((yyval.val), cdr((yyvsp[(1) - (7)].val))); } + break; + + case 72: + +/* Line 1806 of yacc.c */ +#line 366 "parser.y" + { val args = match_expand_keyword_args((yyvsp[(2) - (12)].val)); + if (nilp((yyvsp[(10) - (12)].val))) + yyerr("empty until/last in collect"); + (yyval.val) = list(car((yyvsp[(1) - (12)].val)), (yyvsp[(5) - (12)].val), + cons(cdr((yyvsp[(6) - (12)].val)), + cons((yyvsp[(7) - (12)].val), (yyvsp[(10) - (12)].val))), + args, nao); + rl((yyval.val), cdr((yyvsp[(1) - (12)].val))); + rl((yyvsp[(10) - (12)].val), car((yyvsp[(6) - (12)].val))); } + break; + + case 73: + +/* Line 1806 of yacc.c */ +#line 376 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("collect clause")); } + break; + + case 74: + +/* Line 1806 of yacc.c */ +#line 380 "parser.y" + { (yyval.val) = cons(collect_s, num((yyvsp[(1) - (1)].lineno))); } + break; + + case 75: + +/* Line 1806 of yacc.c */ +#line 381 "parser.y" + { (yyval.val) = cons(repeat_s, num((yyvsp[(1) - (1)].lineno))); } + break; + + case 76: + +/* Line 1806 of yacc.c */ +#line 384 "parser.y" + { (yyval.val) = cons(num((yyvsp[(1) - (1)].lineno)), until_s); } + break; + + case 77: + +/* Line 1806 of yacc.c */ +#line 385 "parser.y" + { (yyval.val) = cons(num((yyvsp[(1) - (1)].lineno)), last_s); } + break; + + case 78: + +/* Line 1806 of yacc.c */ +#line 388 "parser.y" + { (yyval.val) = if2((yyvsp[(1) - (2)].val), cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val))); } + break; + + case 79: + +/* Line 1806 of yacc.c */ +#line 391 "parser.y" + { (yyval.val) = nil; } + break; + + case 80: + +/* Line 1806 of yacc.c */ +#line 392 "parser.y" + { (yyval.val) = (yyvsp[(3) - (3)].val); } + break; + + case 81: + +/* Line 1806 of yacc.c */ +#line 393 "parser.y" + { (yyval.val) = (yyvsp[(3) - (3)].val); } + break; + + case 82: + +/* Line 1806 of yacc.c */ +#line 400 "parser.y" + { if (opt_compat && opt_compat <= 136) + { val xexp = expand_meta((yyvsp[(2) - (9)].val), nil); + val req = rlc(cons(require_s, xexp), (yyvsp[(2) - (9)].val)); + val iff = rlc(cons(cons(cons(req, nil), (yyvsp[(5) - (9)].val)), nil), (yyvsp[(2) - (9)].val)); + val elifs = (yyvsp[(6) - (9)].val); + val els = cons((yyvsp[(7) - (9)].val), nil); + val cases = nappend2(nappend2(iff, elifs), els); + (yyval.val) = list(cases_s, cases, nao); } + else + { val expr = expand(car((yyvsp[(2) - (9)].val)), nil); + val ifs = (yyvsp[(5) - (9)].val); + val branch = cons(cons(expr, ifs), nil); + val elifs = (yyvsp[(6) - (9)].val); + val els = (yyvsp[(7) - (9)].val); + if (cdr((yyvsp[(2) - (9)].val))) + yyerr("extra expression in if"); + (yyval.val) = cons(if_s, + nappend2(branch, nappend2(elifs, els))); + rl((yyval.val), num((yyvsp[(1) - (9)].lineno))); } } + break; + + case 83: + +/* Line 1806 of yacc.c */ +#line 420 "parser.y" + { (yyval.val) = nil; yybadtok(yychar, lit("if clause")); } + break; + + case 84: + +/* Line 1806 of yacc.c */ +#line 425 "parser.y" + { if (opt_compat && opt_compat <= 136) + { val xexp = expand_meta((yyvsp[(2) - (6)].val), nil); + val req = rlc(cons(require_s, xexp), (yyvsp[(2) - (6)].val)); + (yyval.val) = cons(cons(cons(req, nil), (yyvsp[(5) - (6)].val)), (yyvsp[(6) - (6)].val)); } + else + { val expr = expand(car((yyvsp[(2) - (6)].val)), nil); + val elifs = (yyvsp[(5) - (6)].val); + val branch = cons(cons(expr, elifs), nil); + if (cdr((yyvsp[(2) - (6)].val))) + yyerr("extra expression in elif"); + (yyval.val) = nappend2(branch, (yyvsp[(6) - (6)].val)); } } + break; + + case 85: + +/* Line 1806 of yacc.c */ +#line 436 "parser.y" + { (yyval.val) = nil; } + break; + + case 86: + +/* Line 1806 of yacc.c */ +#line 440 "parser.y" + { if (opt_compat && opt_compat <= 136) + { (yyval.val) = (yyvsp[(3) - (3)].val); } + else + { (yyval.val) = cons(cons(t, (yyvsp[(3) - (3)].val)), nil); } } + break; + + case 87: + +/* Line 1806 of yacc.c */ +#line 444 "parser.y" + { (yyval.val) = nil; } + break; + + case 88: + +/* Line 1806 of yacc.c */ +#line 447 "parser.y" + { (yyval.val) = (yyvsp[(1) - (2)].val); } + break; + + case 89: + +/* Line 1806 of yacc.c */ +#line 450 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 90: + +/* Line 1806 of yacc.c */ +#line 451 "parser.y" + { (yyval.val) = nil; } + break; + + case 91: + +/* Line 1806 of yacc.c */ +#line 454 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); + rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 92: + +/* Line 1806 of yacc.c */ +#line 456 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val)); + rlc((yyval.val), (yyvsp[(1) - (2)].val)); } + break; + + case 93: + +/* Line 1806 of yacc.c */ +#line 461 "parser.y" + { (yyval.val) = rl(string_own((yyvsp[(1) - (1)].lexeme)), num(parser->lineno)); } + break; + + case 94: + +/* Line 1806 of yacc.c */ +#line 462 "parser.y" + { if ((yyvsp[(1) - (1)].lexeme)[0] == ' ' && (yyvsp[(1) - (1)].lexeme)[1] == 0) + { val spaces = list(oneplus_s, + chr(' '), nao); + free((yyvsp[(1) - (1)].lexeme)); + (yyval.val) = regex_compile(spaces, nil); + rl((yyval.val), num(parser->lineno)); } + else + { (yyval.val) = rl(string_own((yyvsp[(1) - (1)].lexeme)), num(parser->lineno)); }} + break; + + case 95: + +/* Line 1806 of yacc.c */ +#line 470 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); + rl((yyval.val), num(parser->lineno)); } + break; + + case 96: + +/* Line 1806 of yacc.c */ +#line 472 "parser.y" + { (yyval.val) = null_string; } + break; + + case 97: + +/* Line 1806 of yacc.c */ +#line 475 "parser.y" + { (yyval.val) = rlc(cons((yyvsp[(1) - (1)].val), nil), (yyvsp[(1) - (1)].val)); } + break; + + case 98: + +/* Line 1806 of yacc.c */ +#line 476 "parser.y" + { (yyval.val) = rlc(cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val)), (yyvsp[(2) - (2)].val)); } + break; + + case 99: + +/* Line 1806 of yacc.c */ +#line 479 "parser.y" + { (yyval.val) = rlc(cons(text_s, (yyvsp[(1) - (1)].val)), (yyvsp[(1) - (1)].val)); + (yyval.val) = rlc(optimize_text((yyval.val)), (yyval.val)); } + break; + + case 100: + +/* Line 1806 of yacc.c */ +#line 481 "parser.y" + { (yyval.val) = rl((yyvsp[(1) - (1)].val), num(parser->lineno)); + match_reg_elem((yyval.val)); } + break; + + case 101: + +/* Line 1806 of yacc.c */ +#line 483 "parser.y" + { val sym = first((yyvsp[(1) - (1)].val)); + if (sym == do_s || sym == require_s) + (yyval.val) = rlc(cons(sym, + expand_forms(rest((yyvsp[(1) - (1)].val)), nil)), + (yyvsp[(1) - (1)].val)); + else + { (yyval.val) = match_expand_elem((yyvsp[(1) - (1)].val)); + match_reg_elem((yyval.val)); } } + break; + + case 102: + +/* Line 1806 of yacc.c */ +#line 491 "parser.y" + { val args = match_expand_keyword_args((yyvsp[(2) - (5)].val)); + (yyval.val) = list(coll_s, (yyvsp[(4) - (5)].val), nil, args, nao); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 103: + +/* Line 1806 of yacc.c */ +#line 496 "parser.y" + { val args = match_expand_keyword_args((yyvsp[(2) - (9)].val)); + (yyval.val) = list(coll_s, (yyvsp[(4) - (9)].val), cons(cdr((yyvsp[(5) - (9)].val)), + cons((yyvsp[(6) - (9)].val), (yyvsp[(8) - (9)].val))), + args, nao); + rl((yyval.val), num((yyvsp[(1) - (9)].lineno))); + rl((yyvsp[(6) - (9)].val), car((yyvsp[(5) - (9)].val))); } + break; + + case 104: + +/* Line 1806 of yacc.c */ +#line 502 "parser.y" + { val args = match_expand_keyword_args((yyvsp[(2) - (5)].val)); + (yyval.val) = list(rep_s, (yyvsp[(4) - (5)].val), nil, args, nao); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 105: + +/* Line 1806 of yacc.c */ +#line 508 "parser.y" + { val args = match_expand_keyword_args((yyvsp[(2) - (9)].val)); + (yyval.val) = list(rep_s, (yyvsp[(4) - (9)].val), cons(cdr((yyvsp[(5) - (9)].val)), + cons((yyvsp[(6) - (9)].val), (yyvsp[(8) - (9)].val))), + args, nao); + rl((yyval.val), num((yyvsp[(1) - (9)].lineno))); + rl((yyvsp[(6) - (9)].val), car((yyvsp[(5) - (9)].val))); } + break; + + case 106: + +/* Line 1806 of yacc.c */ +#line 514 "parser.y" + { (yyval.val) = list(block_s, car((yyvsp[(2) - (5)].val)), + cons((yyvsp[(4) - (5)].val), nil), nao); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 107: + +/* Line 1806 of yacc.c */ +#line 517 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("coll clause")); } + break; + + case 108: + +/* Line 1806 of yacc.c */ +#line 519 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("rep clause")); } + break; + + case 109: + +/* Line 1806 of yacc.c */ +#line 521 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("rep clause")); } + break; + + case 110: + +/* Line 1806 of yacc.c */ +#line 523 "parser.y" + { (yyval.val) = rl(list(all_s, t, (yyvsp[(2) - (2)].val), nao), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 111: + +/* Line 1806 of yacc.c */ +#line 525 "parser.y" + { (yyval.val) = rl(list(some_s, t, (yyvsp[(4) - (4)].val), (yyvsp[(2) - (4)].val), nao), num((yyvsp[(1) - (4)].lineno))); } + break; + + case 112: + +/* Line 1806 of yacc.c */ +#line 526 "parser.y" + { (yyval.val) = rl(list(none_s, t, (yyvsp[(2) - (2)].val), nao), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 113: + +/* Line 1806 of yacc.c */ +#line 527 "parser.y" + { (yyval.val) = rl(list(maybe_s, t, (yyvsp[(2) - (2)].val), nao), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 114: + +/* Line 1806 of yacc.c */ +#line 528 "parser.y" + { (yyval.val) = rl(list(cases_s, t, (yyvsp[(2) - (2)].val), nao), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 115: + +/* Line 1806 of yacc.c */ +#line 530 "parser.y" + { (yyval.val) = list(choose_s, t, (yyvsp[(4) - (4)].val), (yyvsp[(2) - (4)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (4)].lineno))); } + break; + + case 116: + +/* Line 1806 of yacc.c */ +#line 533 "parser.y" + { (yyval.val) = list(define_s, t, (yyvsp[(4) - (5)].val), (yyvsp[(2) - (5)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); + match_reg_params(second((yyvsp[(2) - (5)].val))); } + break; + + case 117: + +/* Line 1806 of yacc.c */ +#line 538 "parser.y" + { (yyval.val) = if2((yyvsp[(1) - (2)].val), cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val))); } + break; + + case 118: + +/* Line 1806 of yacc.c */ +#line 541 "parser.y" + { (yyval.val) = nil; } + break; + + case 119: + +/* Line 1806 of yacc.c */ +#line 542 "parser.y" + { (yyval.val) = (yyvsp[(2) - (2)].val); } + break; + + case 120: + +/* Line 1806 of yacc.c */ +#line 543 "parser.y" + { (yyval.val) = (yyvsp[(2) - (2)].val); } + break; + + case 121: + +/* Line 1806 of yacc.c */ +#line 548 "parser.y" + { (yyval.val) = list(define_s, (yyvsp[(2) - (7)].val), (yyvsp[(5) - (7)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (7)].lineno))); + match_reg_params(second((yyvsp[(2) - (7)].val))); } + break; + + case 122: + +/* Line 1806 of yacc.c */ +#line 553 "parser.y" + { (yyval.val) = list(define_s, nil, (yyvsp[(4) - (6)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (6)].lineno))); } + break; + + case 123: + +/* Line 1806 of yacc.c */ +#line 555 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("define directive")); } + break; + + case 124: + +/* Line 1806 of yacc.c */ +#line 558 "parser.y" + { (yyval.val) = nil; yybadtok(yychar, lit("define")); } + break; + + case 125: + +/* Line 1806 of yacc.c */ +#line 560 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("define")); } + break; + + case 126: + +/* Line 1806 of yacc.c */ +#line 567 "parser.y" + { (yyval.val) = list(try_s, + flatten(mapcar(func_n1(second), + (yyvsp[(4) - (6)].val))), + (yyvsp[(3) - (6)].val), (yyvsp[(4) - (6)].val), nao); + rl((yyval.val), num((yyvsp[(1) - (6)].lineno))); } + break; + + case 127: + +/* Line 1806 of yacc.c */ +#line 573 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("try clause")); } + break; + + case 128: + +/* Line 1806 of yacc.c */ +#line 579 "parser.y" + { (yyval.val) = cons(list(catch_s, cons(t, nil), + (yyvsp[(4) - (5)].val), nao), (yyvsp[(5) - (5)].val)); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 129: + +/* Line 1806 of yacc.c */ +#line 584 "parser.y" + { (yyval.val) = cons(list(catch_s, (yyvsp[(2) - (6)].val), (yyvsp[(5) - (6)].val), nao), + (yyvsp[(6) - (6)].val)); + process_catch_exprs((yyvsp[(2) - (6)].val)); + rl((yyval.val), num((yyvsp[(1) - (6)].lineno))); } + break; + + case 130: + +/* Line 1806 of yacc.c */ +#line 589 "parser.y" + { (yyval.val) = cons(list(finally_s, nil, + (yyvsp[(3) - (3)].val), nao), + nil); + rl((yyval.val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 131: + +/* Line 1806 of yacc.c */ +#line 593 "parser.y" + { (yyval.val) = nil; } + break; + + case 132: + +/* Line 1806 of yacc.c */ +#line 595 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("catch clause")); } + break; + + case 133: + +/* Line 1806 of yacc.c */ +#line 598 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("catch clause")); } + break; + + case 134: + +/* Line 1806 of yacc.c */ +#line 601 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("finally clause")); } + break; + + case 135: + +/* Line 1806 of yacc.c */ +#line 608 "parser.y" + { (yyval.val) = nil; + yyerr("obsolete output syntax: trailing material"); } + break; + + case 136: + +/* Line 1806 of yacc.c */ +#line 611 "parser.y" + { (yyval.val) = rl(list(output_s, nao), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 137: + +/* Line 1806 of yacc.c */ +#line 614 "parser.y" + { (yyval.val) = rl(list(output_s, (yyvsp[(4) - (6)].val), nao), num((yyvsp[(1) - (6)].lineno))); } + break; + + case 138: + +/* Line 1806 of yacc.c */ +#line 617 "parser.y" + { cons_bind (dest, rest, (yyvsp[(2) - (7)].val)); + val dest_ex = expand_form_ver(dest, 166); + val args = if3(dest_ex == dest, + (yyvsp[(2) - (7)].val), cons(dest_ex, rest)); + (yyval.val) = list(output_s, (yyvsp[(5) - (7)].val), args, nao); + rl((yyval.val), num((yyvsp[(1) - (7)].lineno))); + { val into_var = second(memql(into_k, args)); + val named_var = second(memql(named_k, args)); + match_reg_var(into_var); + match_reg_var(named_var); } } + break; + + case 139: + +/* Line 1806 of yacc.c */ +#line 629 "parser.y" + { (yyval.val) = nil; + yyerr("invalid combination of old and " + "new syntax in output directive"); } + break; + + case 140: + +/* Line 1806 of yacc.c */ +#line 632 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("output directive")); } + break; + + case 141: + +/* Line 1806 of yacc.c */ +#line 635 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("output clause")); } + break; + + case 142: + +/* Line 1806 of yacc.c */ +#line 638 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("output clause")); } + break; + + case 143: + +/* Line 1806 of yacc.c */ +#line 641 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("output clause")); } + break; + + case 144: + +/* Line 1806 of yacc.c */ +#line 644 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("output clause")); } + break; + + case 145: + +/* Line 1806 of yacc.c */ +#line 648 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); } + break; + + case 146: + +/* Line 1806 of yacc.c */ +#line 649 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val)); } + break; + + case 147: + +/* Line 1806 of yacc.c */ +#line 652 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); } + break; + + case 148: + +/* Line 1806 of yacc.c */ +#line 653 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); } + break; + + case 149: + +/* Line 1806 of yacc.c */ +#line 654 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 150: + +/* Line 1806 of yacc.c */ +#line 660 "parser.y" + { (yyval.val) = repeat_rep_helper(repeat_s, + (yyvsp[(2) - (8)].val), (yyvsp[(5) - (8)].val), (yyvsp[(6) - (8)].val)); + rl((yyval.val), num((yyvsp[(1) - (8)].lineno))); } + break; + + case 151: + +/* Line 1806 of yacc.c */ +#line 664 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("repeat clause")); } + break; + + case 152: + +/* Line 1806 of yacc.c */ +#line 670 "parser.y" + { (yyval.val) = cons(cons(single_s, (yyvsp[(3) - (4)].val)), (yyvsp[(4) - (4)].val)); + rl((yyval.val), num((yyvsp[(1) - (4)].lineno))); } + break; + + case 153: + +/* Line 1806 of yacc.c */ +#line 674 "parser.y" + { (yyval.val) = cons(cons(first_s, (yyvsp[(3) - (4)].val)), (yyvsp[(4) - (4)].val)); + rl((yyval.val), num((yyvsp[(1) - (4)].lineno))); } + break; + + case 154: + +/* Line 1806 of yacc.c */ +#line 678 "parser.y" + { if ((yyvsp[(2) - (6)].val)) + yyerrorf(scnr, + lit("last: in output, " + "takes no arguments"), + nao); + (yyval.val) = cons(cons(last_s, (yyvsp[(5) - (6)].val)), (yyvsp[(6) - (6)].val)); + rl((yyval.val), num((yyvsp[(1) - (6)].lineno))); } + break; + + case 155: + +/* Line 1806 of yacc.c */ +#line 687 "parser.y" + { (yyval.val) = cons(cons(empty_s, (yyvsp[(3) - (4)].val)), (yyvsp[(4) - (4)].val)); + rl((yyval.val), num((yyvsp[(1) - (4)].lineno))); } + break; + + case 156: + +/* Line 1806 of yacc.c */ +#line 692 "parser.y" + { (yyval.val) = cons(cons(mod_s, + cons(expand_forms_ver((yyvsp[(2) - (6)].val), 166), + (yyvsp[(5) - (6)].val))), (yyvsp[(6) - (6)].val)); + rl((yyval.val), num((yyvsp[(1) - (6)].lineno))); } + break; + + case 157: + +/* Line 1806 of yacc.c */ +#line 699 "parser.y" + { (yyval.val) = cons(cons(modlast_s, + cons(expand_forms_ver((yyvsp[(2) - (6)].val), 166), + (yyvsp[(5) - (6)].val))), (yyvsp[(6) - (6)].val)); + rl((yyval.val), num((yyvsp[(1) - (6)].lineno))); } + break; + + case 158: + +/* Line 1806 of yacc.c */ +#line 703 "parser.y" + { (yyval.val) = nil; } + break; + + case 159: + +/* Line 1806 of yacc.c */ +#line 710 "parser.y" + { val expr = expand((yyvsp[(2) - (9)].val), nil); + val ifs = (yyvsp[(5) - (9)].val); + val branch = cons(cons(expr, ifs), nil); + val elifs = (yyvsp[(6) - (9)].val); + val els = (yyvsp[(7) - (9)].val); + (yyval.val) = cons(if_s, + nappend2(branch, nappend2(elifs, els))); + rl((yyval.val), num((yyvsp[(1) - (9)].lineno))); } + break; + + case 160: + +/* Line 1806 of yacc.c */ +#line 719 "parser.y" + { (yyval.val) = nil; + yyerr("if requires expression"); } + break; + + case 161: + +/* Line 1806 of yacc.c */ +#line 722 "parser.y" + { (yyval.val) = nil; yybadtok(yychar, lit("if clause")); } + break; + + case 162: + +/* Line 1806 of yacc.c */ +#line 728 "parser.y" + { val expr = expand(car((yyvsp[(2) - (6)].val)), nil); + val elifs = (yyvsp[(5) - (6)].val); + val branch = cons(cons(expr, elifs), nil); + if (null((yyvsp[(2) - (6)].val))) + yyerr("elif requires expression"); + else if (cdr((yyvsp[(2) - (6)].val))) + yyerr("extra expression in elif"); + (yyval.val) = nappend2(branch, (yyvsp[(6) - (6)].val)); } + break; + + case 163: + +/* Line 1806 of yacc.c */ +#line 736 "parser.y" + { (yyval.val) = nil; } + break; + + case 164: + +/* Line 1806 of yacc.c */ +#line 741 "parser.y" + { (yyval.val) = cons(cons(t, (yyvsp[(3) - (3)].val)), nil); } + break; + + case 165: + +/* Line 1806 of yacc.c */ +#line 742 "parser.y" + { (yyval.val) = nil; } + break; + + case 166: + +/* Line 1806 of yacc.c */ +#line 745 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 167: + +/* Line 1806 of yacc.c */ +#line 746 "parser.y" + { (yyval.val) = nil; } + break; + + case 168: + +/* Line 1806 of yacc.c */ +#line 748 "parser.y" + { (yyval.val) = (yyvsp[(1) - (2)].val); } + break; + + case 169: + +/* Line 1806 of yacc.c */ +#line 751 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); + rl((yyval.val), num(parser->lineno)); } + break; + + case 170: + +/* Line 1806 of yacc.c */ +#line 753 "parser.y" + { (yyval.val) = nil; } + break; + + case 171: + +/* Line 1806 of yacc.c */ +#line 756 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); } + break; + + case 172: + +/* Line 1806 of yacc.c */ +#line 757 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val)); } + break; + + case 173: + +/* Line 1806 of yacc.c */ +#line 758 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); } + break; + + case 174: + +/* Line 1806 of yacc.c */ +#line 759 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val)); } + break; + + case 175: + +/* Line 1806 of yacc.c */ +#line 762 "parser.y" + { (yyval.val) = string_own((yyvsp[(1) - (1)].lexeme)); + rl((yyval.val), num(parser->lineno)); } + break; + + case 176: + +/* Line 1806 of yacc.c */ +#line 764 "parser.y" + { (yyval.val) = string_own((yyvsp[(1) - (1)].lexeme)); + rl((yyval.val), num(parser->lineno)); } + break; + + case 177: + +/* Line 1806 of yacc.c */ +#line 766 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 178: + +/* Line 1806 of yacc.c */ +#line 767 "parser.y" + { (yyval.val) = rlc(list(expr_s, + expand((yyvsp[(1) - (1)].val), nil), nao), (yyvsp[(1) - (1)].val)); } + break; + + case 179: + +/* Line 1806 of yacc.c */ +#line 769 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 180: + +/* Line 1806 of yacc.c */ +#line 773 "parser.y" + { (yyval.val) = repeat_rep_helper(rep_s, (yyvsp[(2) - (6)].val), (yyvsp[(4) - (6)].val), (yyvsp[(5) - (6)].val)); + rl((yyval.val), num((yyvsp[(1) - (6)].lineno))); } + break; + + case 181: + +/* Line 1806 of yacc.c */ +#line 775 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("rep clause")); } + break; + + case 182: + +/* Line 1806 of yacc.c */ +#line 780 "parser.y" + { (yyval.val) = cons(cons(single_s, (yyvsp[(2) - (3)].val)), (yyvsp[(3) - (3)].val)); + rl((yyval.val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 183: + +/* Line 1806 of yacc.c */ +#line 783 "parser.y" + { (yyval.val) = cons(cons(first_s, (yyvsp[(2) - (3)].val)), (yyvsp[(3) - (3)].val)); + rl((yyval.val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 184: + +/* Line 1806 of yacc.c */ +#line 786 "parser.y" + { if ((yyvsp[(2) - (5)].val)) + yyerrorf(scnr, + lit("last: in output, " + "takes no arguments"), + nao); + (yyval.val) = cons(cons(last_s, (yyvsp[(4) - (5)].val)), (yyvsp[(5) - (5)].val)); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 185: + +/* Line 1806 of yacc.c */ +#line 794 "parser.y" + { (yyval.val) = cons(cons(empty_s, (yyvsp[(2) - (3)].val)), (yyvsp[(3) - (3)].val)); + rl((yyval.val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 186: + +/* Line 1806 of yacc.c */ +#line 798 "parser.y" + { (yyval.val) = cons(cons(mod_s, + cons(expand_forms_ver((yyvsp[(2) - (5)].val), 166), + (yyvsp[(4) - (5)].val))), (yyvsp[(5) - (5)].val)); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 187: + +/* Line 1806 of yacc.c */ +#line 804 "parser.y" + { (yyval.val) = cons(cons(modlast_s, + cons(expand_forms_ver((yyvsp[(2) - (5)].val), 166), + (yyvsp[(4) - (5)].val))), (yyvsp[(5) - (5)].val)); + rl((yyval.val), num((yyvsp[(1) - (5)].lineno))); } + break; + + case 188: + +/* Line 1806 of yacc.c */ +#line 808 "parser.y" + { (yyval.val) = nil; } + break; + + case 189: + +/* Line 1806 of yacc.c */ +#line 815 "parser.y" + { (yyval.val) = list(var_s, symhlpr((yyvsp[(1) - (1)].lexeme), nil), nao); } + break; + + case 190: + +/* Line 1806 of yacc.c */ +#line 816 "parser.y" + { (yyval.val) = list(var_s, symhlpr((yyvsp[(2) - (3)].lexeme), nil), nao); } + break; + + case 191: + +/* Line 1806 of yacc.c */ +#line 817 "parser.y" + { (yyval.val) = list(var_s, symhlpr((yyvsp[(2) - (4)].lexeme), nil), (yyvsp[(3) - (4)].val), nao); } + break; + + case 192: + +/* Line 1806 of yacc.c */ +#line 818 "parser.y" + { (yyval.val) = list(var_s, symhlpr((yyvsp[(2) - (2)].lexeme), nil), (yyvsp[(1) - (2)].val), nao); } + break; + + case 193: + +/* Line 1806 of yacc.c */ +#line 819 "parser.y" + { (yyval.val) = list(var_s, symhlpr((yyvsp[(3) - (4)].lexeme), nil), (yyvsp[(1) - (4)].val), nao); } + break; + + case 194: + +/* Line 1806 of yacc.c */ +#line 820 "parser.y" + { (yyval.val) = nil; + yyerr("longest match " + "not useable with regex"); } + break; + + case 195: + +/* Line 1806 of yacc.c */ +#line 823 "parser.y" + { (yyval.val) = nil; + yyerr("longest match " + "not useable with " + "fixed width match"); } + break; + + case 196: + +/* Line 1806 of yacc.c */ +#line 827 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("variable spec")); } + break; + + case 197: + +/* Line 1806 of yacc.c */ +#line 829 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("variable spec")); } + break; + + case 198: + +/* Line 1806 of yacc.c */ +#line 833 "parser.y" + { (yyval.val) = list(t, nao); } + break; + + case 199: + +/* Line 1806 of yacc.c */ +#line 836 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); } + break; + + case 200: + +/* Line 1806 of yacc.c */ +#line 837 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); + rlc((yyval.val), (yyvsp[(1) - (1)].val)); } + break; + + case 201: + +/* Line 1806 of yacc.c */ +#line 839 "parser.y" + { (yyval.val) = rlc(cons(expand_meta((yyvsp[(1) - (1)].val), nil), + nil), (yyvsp[(1) - (1)].val)); } + break; + + case 202: + +/* Line 1806 of yacc.c */ +#line 841 "parser.y" + { (yyval.val) = cons(symhlpr((yyvsp[(1) - (1)].lexeme), nil), nil); } + break; + + case 203: + +/* Line 1806 of yacc.c */ +#line 844 "parser.y" + { val expr = symhlpr((yyvsp[(1) - (1)].lexeme), nil); + if (!opt_compat || opt_compat > 128) + expr = expand(expr, nil); + (yyval.val) = list(var_s, expr, nao); + rl((yyval.val), num(parser->lineno)); } + break; + + case 204: + +/* Line 1806 of yacc.c */ +#line 850 "parser.y" + { if (opt_compat && opt_compat <= 128) + { (yyval.val) = list(var_s, + expand_meta((yyvsp[(2) - (4)].val), nil), + expand_meta((yyvsp[(3) - (4)].val), nil), nao); } + else + { val quasi_var = list(var_s, (yyvsp[(2) - (4)].val), (yyvsp[(3) - (4)].val), nao); + val quasi_items = cons(quasi_var, nil); + (yyval.val) = car(expand_quasi(quasi_items, nil)); } } + break; + + case 205: + +/* Line 1806 of yacc.c */ +#line 858 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("variable spec")); } + break; + + case 206: + +/* Line 1806 of yacc.c */ +#line 863 "parser.y" + { (yyval.val) = list(var_s, (yyvsp[(3) - (5)].val), (yyvsp[(4) - (5)].val), nao); + rl((yyval.val), num(parser->lineno)); } + break; + + case 207: + +/* Line 1806 of yacc.c */ +#line 865 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("variable spec")); } + break; + + case 208: + +/* Line 1806 of yacc.c */ +#line 870 "parser.y" + { if (parser->quasi_level > 0 && unquotes_occur((yyvsp[(2) - (2)].val), 0)) + (yyval.val) = rlc(cons(vector_lit_s, + cons((yyvsp[(2) - (2)].val), nil)), (yyvsp[(2) - (2)].val)); + else + (yyval.val) = rlc(vec_list((yyvsp[(2) - (2)].val)), (yyvsp[(2) - (2)].val)); } + break; + + case 209: + +/* Line 1806 of yacc.c */ +#line 875 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("unassigned/reserved # notation")); } + break; + + case 210: + +/* Line 1806 of yacc.c */ +#line 879 "parser.y" + { if (parser->quasi_level > 0 && unquotes_occur((yyvsp[(2) - (2)].val), 0)) + (yyval.val) = rl(cons(hash_lit_s, (yyvsp[(2) - (2)].val)), num((yyvsp[(1) - (2)].lineno))); + else + (yyval.val) = rl(hash_construct(first((yyvsp[(2) - (2)].val)), + rest((yyvsp[(2) - (2)].val))), + num((yyvsp[(1) - (2)].lineno))); } + break; + + case 211: + +/* Line 1806 of yacc.c */ +#line 885 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("hash literal")); } + break; + + case 212: + +/* Line 1806 of yacc.c */ +#line 889 "parser.y" + { if (parser->quasi_level > 0 && unquotes_occur((yyvsp[(2) - (2)].val), 0)) + (yyval.val) = rl(cons(struct_lit_s, (yyvsp[(2) - (2)].val)), + num((yyvsp[(1) - (2)].lineno))); + else + { val strct = make_struct_lit(first((yyvsp[(2) - (2)].val)), + rest((yyvsp[(2) - (2)].val))); + (yyval.val) = rl(strct, num((yyvsp[(1) - (2)].lineno))); } } + break; + + case 213: + +/* Line 1806 of yacc.c */ +#line 896 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("struct literal")); } + break; + + case 214: + +/* Line 1806 of yacc.c */ +#line 900 "parser.y" + { if (length((yyvsp[(2) - (2)].val)) != two) + yyerr("range literal needs two elements"); + { val range = rcons(first((yyvsp[(2) - (2)].val)), second((yyvsp[(2) - (2)].val))); + (yyval.val) = rl(range, num((yyvsp[(1) - (2)].lineno))); } } + break; + + case 215: + +/* Line 1806 of yacc.c */ +#line 904 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("range literal")); } + break; + + case 216: + +/* Line 1806 of yacc.c */ +#line 908 "parser.y" + { if (gt(length((yyvsp[(2) - (2)].val)), three)) + yyerr("excess elements in tree node"); + { val tn = tnode(first((yyvsp[(2) - (2)].val)), second((yyvsp[(2) - (2)].val)), + third((yyvsp[(2) - (2)].val))); + (yyval.val) = rl(tn, num((yyvsp[(1) - (2)].lineno))); } } + break; + + case 217: + +/* Line 1806 of yacc.c */ +#line 913 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("tree node literal")); } + break; + + case 218: + +/* Line 1806 of yacc.c */ +#line 917 "parser.y" + { if (parser->quasi_level > 0 && unquotes_occur((yyvsp[(2) - (2)].val), 0)) + (yyval.val) = rl(cons(tree_lit_s, (yyvsp[(2) - (2)].val)), num((yyvsp[(1) - (2)].lineno))); + else + { val opts = first((yyvsp[(2) - (2)].val)); + val key_fn_name = pop(&opts); + val less_fn_name = pop(&opts); + val equal_fn_name = pop(&opts); + val key_fn = fname_helper(parser, key_fn_name); + val less_fn = fname_helper(parser, less_fn_name); + val equal_fn = fname_helper(parser, equal_fn_name); + val tr = tree(rest((yyvsp[(2) - (2)].val)), key_fn, + less_fn, equal_fn); + (yyval.val) = rl(tr, num((yyvsp[(1) - (2)].lineno))); } } + break; + + case 219: + +/* Line 1806 of yacc.c */ +#line 930 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("tree node literal")); } + break; + + case 220: + +/* Line 1806 of yacc.c */ +#line 934 "parser.y" + { (yyval.val) = rl((yyvsp[(2) - (3)].val), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 221: + +/* Line 1806 of yacc.c */ +#line 935 "parser.y" + { val a = car((yyvsp[(3) - (4)].val)); + val ur = uref_helper(parser, a); + if (ur == a) + (yyval.val) = (yyvsp[(3) - (4)].val); + else + (yyval.val) = rlc(cons(ur, cdr((yyvsp[(3) - (4)].val))), ur); } + break; + + case 222: + +/* Line 1806 of yacc.c */ +#line 941 "parser.y" + { (yyval.val) = nil; } + break; + + case 223: + +/* Line 1806 of yacc.c */ +#line 942 "parser.y" + { (yyval.val) = (yyvsp[(3) - (4)].val); } + break; + + case 224: + +/* Line 1806 of yacc.c */ +#line 943 "parser.y" + { (yyval.val) = (yyvsp[(3) - (4)].val); } + break; + + case 225: + +/* Line 1806 of yacc.c */ +#line 944 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("expression")); } + break; + + case 226: + +/* Line 1806 of yacc.c */ +#line 948 "parser.y" + { if (consp((yyvsp[(2) - (2)].val))) + (yyval.val) = rl(cons(expr_s, cons((yyvsp[(2) - (2)].val), nil)), num((yyvsp[(1) - (2)].lineno))); + else + (yyval.val) = rl(cons(var_s, cons((yyvsp[(2) - (2)].val), nil)), + num((yyvsp[(1) - (2)].lineno))); } + break; + + case 227: + +/* Line 1806 of yacc.c */ +#line 953 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("meta expression")); } + break; + + case 228: + +/* Line 1806 of yacc.c */ +#line 957 "parser.y" + { val a = car((yyvsp[(3) - (4)].val)); + val ur = uref_helper(parser, a); + (yyval.val) = rlcp_tree(cons(dwim_s, + cons(ur, cdr((yyvsp[(3) - (4)].val)))), ur); } + break; + + case 229: + +/* Line 1806 of yacc.c */ +#line 961 "parser.y" + { (yyval.val) = rl(cons(dwim_s, (yyvsp[(2) - (3)].val)), num((yyvsp[(1) - (3)].lineno))); } + break; + + case 230: + +/* Line 1806 of yacc.c */ +#line 962 "parser.y" + { (yyval.val) = rl(cons(dwim_s, nil), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 231: + +/* Line 1806 of yacc.c */ +#line 963 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("DWIM expression")); } + break; + + case 235: + +/* Line 1806 of yacc.c */ +#line 972 "parser.y" + { (yyval.val) = rlc(expand_meta((yyvsp[(1) - (1)].val), nil), (yyvsp[(1) - (1)].val)); } + break; + + case 236: + +/* Line 1806 of yacc.c */ +#line 975 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 237: + +/* Line 1806 of yacc.c */ +#line 976 "parser.y" + { (yyval.val) = nil; } + break; + + case 238: + +/* Line 1806 of yacc.c */ +#line 979 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val)->c.cdr; + (yyvsp[(1) - (1)].val)->c.cdr = nil; } + break; + + case 239: + +/* Line 1806 of yacc.c */ +#line 982 "parser.y" + { (yyval.val) = (yyvsp[(1) - (3)].val)->c.cdr; + (yyvsp[(1) - (3)].val)->c.cdr = (yyvsp[(3) - (3)].val); } + break; + + case 240: + +/* Line 1806 of yacc.c */ +#line 986 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); + rlc((yyval.val), (yyvsp[(1) - (1)].val)); + (yyval.val)->c.cdr = (yyval.val); } + break; + + case 241: + +/* Line 1806 of yacc.c */ +#line 989 "parser.y" + { parser->ignore = 1; } + break; + + case 242: + +/* Line 1806 of yacc.c */ +#line 990 "parser.y" + { parser->ignore = 0; + (yyval.val) = cons(nil, nil); + (yyval.val)->c.cdr = (yyval.val); } + break; + + case 243: + +/* Line 1806 of yacc.c */ +#line 993 "parser.y" + { parser->ignore = 1; } + break; + + case 244: + +/* Line 1806 of yacc.c */ +#line 994 "parser.y" + { parser->ignore = 0; + (yyval.val) = (yyvsp[(1) - (4)].val); } + break; + + case 245: + +/* Line 1806 of yacc.c */ +#line 996 "parser.y" + { uses_or2; + (yyval.val) = rlc(cons((yyvsp[(2) - (2)].val), (yyvsp[(1) - (2)].val)->c.cdr), or2((yyvsp[(2) - (2)].val), (yyvsp[(1) - (2)].val)->c.cdr)); + (yyvsp[(1) - (2)].val)->c.cdr = (yyval.val); } + break; + + case 246: + +/* Line 1806 of yacc.c */ +#line 999 "parser.y" + { (yyval.val) = lastcons(rl((yyvsp[(2) - (2)].val), num((yyvsp[(1) - (2)].lineno)))); + (yyval.val)->c.cdr = (yyvsp[(2) - (2)].val); } + break; + + case 247: + +/* Line 1806 of yacc.c */ +#line 1002 "parser.y" + { (yyval.val) = lastcons(rl((yyvsp[(3) - (3)].val), num((yyvsp[(2) - (3)].lineno)))); + (yyval.val)->c.cdr = (yyvsp[(1) - (3)].val)->c.cdr; + (yyvsp[(1) - (3)].val)->c.cdr = (yyvsp[(3) - (3)].val); } + break; + + case 248: + +/* Line 1806 of yacc.c */ +#line 1005 "parser.y" + { (yyval.val) = lastcons(rl((yyvsp[(2) - (2)].val), num((yyvsp[(1) - (2)].lineno)))); + (yyval.val)->c.cdr = (yyvsp[(2) - (2)].val); } + break; + + case 249: + +/* Line 1806 of yacc.c */ +#line 1008 "parser.y" + { (yyval.val) = lastcons(rl((yyvsp[(3) - (3)].val), num((yyvsp[(2) - (3)].lineno)))); + (yyval.val)->c.cdr = (yyvsp[(1) - (3)].val)->c.cdr; + (yyvsp[(1) - (3)].val)->c.cdr = (yyvsp[(3) - (3)].val); } + break; + + case 250: + +/* Line 1806 of yacc.c */ +#line 1013 "parser.y" + { (yyval.val) = ifnign(symhlpr((yyvsp[(1) - (1)].lexeme), t)); } + break; + + case 251: + +/* Line 1806 of yacc.c */ +#line 1014 "parser.y" + { (yyval.val) = cons(var_s, cons((yyvsp[(1) - (1)].val), nil)); + rl((yyval.val), num(parser->lineno)); } + break; + + case 252: + +/* Line 1806 of yacc.c */ +#line 1016 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 253: + +/* Line 1806 of yacc.c */ +#line 1017 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 254: + +/* Line 1806 of yacc.c */ +#line 1018 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 255: + +/* Line 1806 of yacc.c */ +#line 1019 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 256: + +/* Line 1806 of yacc.c */ +#line 1020 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 257: + +/* Line 1806 of yacc.c */ +#line 1021 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 258: + +/* Line 1806 of yacc.c */ +#line 1022 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 259: + +/* Line 1806 of yacc.c */ +#line 1023 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 260: + +/* Line 1806 of yacc.c */ +#line 1024 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 261: + +/* Line 1806 of yacc.c */ +#line 1025 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 262: + +/* Line 1806 of yacc.c */ +#line 1026 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 263: + +/* Line 1806 of yacc.c */ +#line 1027 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 264: + +/* Line 1806 of yacc.c */ +#line 1028 "parser.y" + { (yyval.val) = rl((yyvsp[(2) - (2)].val), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 265: + +/* Line 1806 of yacc.c */ +#line 1029 "parser.y" + { (yyval.val) = rl(cons(quasilist_s, (yyvsp[(2) - (2)].val)), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 266: + +/* Line 1806 of yacc.c */ +#line 1030 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 267: + +/* Line 1806 of yacc.c */ +#line 1031 "parser.y" + { (yyval.val) = rl(rlc(list(quote_s, (yyvsp[(2) - (2)].val), nao), (yyvsp[(2) - (2)].val)), + num(parser->lineno)); } + break; + + case 268: + +/* Line 1806 of yacc.c */ +#line 1033 "parser.y" + { parser->quasi_level++; } + break; + + case 269: + +/* Line 1806 of yacc.c */ +#line 1034 "parser.y" + { parser->quasi_level--; + (yyval.val) = rl(rlc(list(sys_qquote_s, (yyvsp[(3) - (3)].val), nao), (yyvsp[(3) - (3)].val)), + num(parser->lineno)); } + break; + + case 270: + +/* Line 1806 of yacc.c */ +#line 1037 "parser.y" + { parser->quasi_level--; } + break; + + case 271: + +/* Line 1806 of yacc.c */ +#line 1038 "parser.y" + { parser->quasi_level++; + (yyval.val) = rl(rlc(list(sys_unquote_s, (yyvsp[(3) - (3)].val), nao), (yyvsp[(3) - (3)].val)), + num(parser->lineno)); } + break; + + case 272: + +/* Line 1806 of yacc.c */ +#line 1041 "parser.y" + { parser->quasi_level--; } + break; + + case 273: + +/* Line 1806 of yacc.c */ +#line 1042 "parser.y" + { parser->quasi_level++; + (yyval.val) = rl(rlc(list(sys_splice_s, (yyvsp[(3) - (3)].val), nao), (yyvsp[(3) - (3)].val)), + num(parser->lineno)); } + break; + + case 274: + +/* Line 1806 of yacc.c */ +#line 1045 "parser.y" + { parser_circ_def(parser, (yyvsp[(1) - (1)].val), unique_s); } + break; + + case 275: + +/* Line 1806 of yacc.c */ +#line 1046 "parser.y" + { parser_circ_def(parser, (yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val)); + (yyval.val) = (yyvsp[(3) - (3)].val); } + break; + + case 276: + +/* Line 1806 of yacc.c */ +#line 1048 "parser.y" + { (yyval.val) = parser_circ_ref(parser, (yyvsp[(1) - (1)].val)); } + break; + + case 277: + +/* Line 1806 of yacc.c */ +#line 1051 "parser.y" + { (yyval.val) = uref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 278: + +/* Line 1806 of yacc.c */ +#line 1052 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 279: + +/* Line 1806 of yacc.c */ +#line 1054 "parser.y" + { (yyval.val) = ifnign(symhlpr((yyvsp[(1) - (1)].lexeme), t)); } + break; + + case 280: + +/* Line 1806 of yacc.c */ +#line 1055 "parser.y" + { (yyval.val) = cons(var_s, cons((yyvsp[(1) - (1)].val), nil)); + rl((yyval.val), num(parser->lineno)); } + break; + + case 281: + +/* Line 1806 of yacc.c */ +#line 1057 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 282: + +/* Line 1806 of yacc.c */ +#line 1058 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 283: + +/* Line 1806 of yacc.c */ +#line 1059 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 284: + +/* Line 1806 of yacc.c */ +#line 1060 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 285: + +/* Line 1806 of yacc.c */ +#line 1061 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 286: + +/* Line 1806 of yacc.c */ +#line 1062 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 287: + +/* Line 1806 of yacc.c */ +#line 1063 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 288: + +/* Line 1806 of yacc.c */ +#line 1064 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 289: + +/* Line 1806 of yacc.c */ +#line 1065 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 290: + +/* Line 1806 of yacc.c */ +#line 1066 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 291: + +/* Line 1806 of yacc.c */ +#line 1067 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 292: + +/* Line 1806 of yacc.c */ +#line 1068 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 293: + +/* Line 1806 of yacc.c */ +#line 1069 "parser.y" + { (yyval.val) = rl((yyvsp[(2) - (2)].val), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 294: + +/* Line 1806 of yacc.c */ +#line 1070 "parser.y" + { (yyval.val) = rl(cons(quasilist_s, (yyvsp[(2) - (2)].val)), num((yyvsp[(1) - (2)].lineno))); } + break; + + case 295: + +/* Line 1806 of yacc.c */ +#line 1071 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 296: + +/* Line 1806 of yacc.c */ +#line 1072 "parser.y" + { (yyval.val) = rl(rlc(list(quote_s, (yyvsp[(2) - (2)].val), nao), (yyvsp[(2) - (2)].val)), + num(parser->lineno)); } + break; + + case 297: + +/* Line 1806 of yacc.c */ +#line 1074 "parser.y" + { parser->quasi_level++; } + break; + + case 298: + +/* Line 1806 of yacc.c */ +#line 1075 "parser.y" + { parser->quasi_level--; + (yyval.val) = rl(rlc(list(sys_qquote_s, (yyvsp[(3) - (3)].val), nao), (yyvsp[(3) - (3)].val)), + num(parser->lineno)); } + break; + + case 299: + +/* Line 1806 of yacc.c */ +#line 1078 "parser.y" + { parser->quasi_level--; } + break; + + case 300: + +/* Line 1806 of yacc.c */ +#line 1079 "parser.y" + { parser->quasi_level++; + (yyval.val) = rl(rlc(list(sys_unquote_s, (yyvsp[(3) - (3)].val), nao), (yyvsp[(3) - (3)].val)), + num(parser->lineno)); } + break; + + case 301: + +/* Line 1806 of yacc.c */ +#line 1082 "parser.y" + { parser->quasi_level--; } + break; + + case 302: + +/* Line 1806 of yacc.c */ +#line 1083 "parser.y" + { parser->quasi_level++; + (yyval.val) = rl(rlc(list(sys_splice_s, (yyvsp[(3) - (3)].val), nao), (yyvsp[(3) - (3)].val)), + num(parser->lineno)); } + break; + + case 303: + +/* Line 1806 of yacc.c */ +#line 1086 "parser.y" + { uses_or2; + (yyval.val) = rlc(list(rcons_s, (yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val), nao), + or2((yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val))); } + break; + + case 304: + +/* Line 1806 of yacc.c */ +#line 1090 "parser.y" + { uses_or2; + (yyval.val) = rlc(list(rcons_s, (yyvsp[(1) - (4)].val), + uref_helper(parser, (yyvsp[(4) - (4)].val)), + nao), + or2((yyvsp[(1) - (4)].val), (yyvsp[(4) - (4)].val))); } + break; + + case 305: + +/* Line 1806 of yacc.c */ +#line 1096 "parser.y" + { uses_or2; + (yyval.val) = rlc(list(rcons_s, (yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val), nao), + or2((yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val))); } + break; + + case 306: + +/* Line 1806 of yacc.c */ +#line 1100 "parser.y" + { uses_or2; + (yyval.val) = rlc(list(rcons_s, (yyvsp[(1) - (4)].val), + uref_helper(parser, (yyvsp[(4) - (4)].val)), + nao), + or2((yyvsp[(1) - (4)].val), (yyvsp[(4) - (4)].val))); } + break; + + case 307: + +/* Line 1806 of yacc.c */ +#line 1105 "parser.y" + { (yyval.val) = qref_helper(parser, (yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val)); } + break; + + case 308: + +/* Line 1806 of yacc.c */ +#line 1106 "parser.y" + { (yyval.val) = qref_helper(parser, + cons(t, cons((yyvsp[(1) - (3)].val), nil)), + (yyvsp[(3) - (3)].val)); } + break; + + case 309: + +/* Line 1806 of yacc.c */ +#line 1109 "parser.y" + { (yyval.val) = uref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 310: + +/* Line 1806 of yacc.c */ +#line 1110 "parser.y" + { (yyval.val) = uoref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 311: + +/* Line 1806 of yacc.c */ +#line 1111 "parser.y" + { parser_circ_def(parser, (yyvsp[(1) - (1)].val), unique_s); } + break; + + case 312: + +/* Line 1806 of yacc.c */ +#line 1112 "parser.y" + { parser_circ_def(parser, (yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val)); + (yyval.val) = (yyvsp[(3) - (3)].val); } + break; + + case 313: + +/* Line 1806 of yacc.c */ +#line 1114 "parser.y" + { (yyval.val) = parser_circ_ref(parser, (yyvsp[(1) - (1)].val)); } + break; + + case 314: + +/* Line 1806 of yacc.c */ +#line 1117 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 315: + +/* Line 1806 of yacc.c */ +#line 1118 "parser.y" + { (yyval.val) = nil; } + break; + + case 316: + +/* Line 1806 of yacc.c */ +#line 1121 "parser.y" + { (yyval.val) = uref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 317: + +/* Line 1806 of yacc.c */ +#line 1122 "parser.y" + { (yyval.val) = uoref_helper(parser, (yyvsp[(2) - (2)].val)); } + break; + + case 318: + +/* Line 1806 of yacc.c */ +#line 1123 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 319: + +/* Line 1806 of yacc.c */ +#line 1126 "parser.y" + { (yyval.val) = regex_compile((yyvsp[(2) - (3)].val), nil); + end_of_regex(scnr); + rl((yyval.val), num(parser->lineno)); } + break; + + case 320: + +/* Line 1806 of yacc.c */ +#line 1129 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("regex")); + end_of_regex(scnr); } + break; + + case 321: + +/* Line 1806 of yacc.c */ +#line 1135 "parser.y" + { (yyval.val) = regex_compile((yyvsp[(2) - (3)].val), nil); + end_of_regex(scnr); + rl((yyval.val), num(parser->lineno)); } + break; + + case 322: + +/* Line 1806 of yacc.c */ +#line 1139 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("regex")); + end_of_regex(scnr); } + break; + + case 323: + +/* Line 1806 of yacc.c */ +#line 1144 "parser.y" + { (yyval.val) = if3(cdr((yyvsp[(1) - (1)].val)), + cons(compound_s, (yyvsp[(1) - (1)].val)), + car((yyvsp[(1) - (1)].val))); } + break; + + case 324: + +/* Line 1806 of yacc.c */ +#line 1147 "parser.y" + { (yyval.val) = list(or_s, (yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val), nao); } + break; + + case 325: + +/* Line 1806 of yacc.c */ +#line 1148 "parser.y" + { (yyval.val) = list(and_s, (yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val), nao); } + break; + + case 326: + +/* Line 1806 of yacc.c */ +#line 1149 "parser.y" + { (yyval.val) = list(compl_s, (yyvsp[(2) - (2)].val), nao); } + break; + + case 327: + +/* Line 1806 of yacc.c */ +#line 1150 "parser.y" + { (yyval.val) = nil; } + break; + + case 328: + +/* Line 1806 of yacc.c */ +#line 1153 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); } + break; + + case 329: + +/* Line 1806 of yacc.c */ +#line 1154 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val)); } + break; + + case 330: + +/* Line 1806 of yacc.c */ +#line 1155 "parser.y" + { (yyval.val) = list((yyvsp[(1) - (3)].val), list(compl_s, (yyvsp[(3) - (3)].val), nao), nao); } + break; + + case 331: + +/* Line 1806 of yacc.c */ +#line 1158 "parser.y" + { (yyval.val) = list(zeroplus_s, (yyvsp[(1) - (2)].val), nao); } + break; + + case 332: + +/* Line 1806 of yacc.c */ +#line 1159 "parser.y" + { (yyval.val) = list(oneplus_s, (yyvsp[(1) - (2)].val), nao); } + break; + + case 333: + +/* Line 1806 of yacc.c */ +#line 1160 "parser.y" + { (yyval.val) = list(optional_s, (yyvsp[(1) - (2)].val), nao); } + break; + + case 334: + +/* Line 1806 of yacc.c */ +#line 1161 "parser.y" + { (yyval.val) = list(nongreedy_s, (yyvsp[(1) - (3)].val), (yyvsp[(3) - (3)].val), nao); } + break; + + case 335: + +/* Line 1806 of yacc.c */ +#line 1162 "parser.y" + { if (first((yyvsp[(2) - (3)].val)) == chr('^')) + { if (rest((yyvsp[(2) - (3)].val))) + (yyval.val) = cons(cset_s, rest((yyvsp[(2) - (3)].val))); + else + (yyval.val) = wild_s; } + else + (yyval.val) = cons(set_s, (yyvsp[(2) - (3)].val)); } + break; + + case 336: + +/* Line 1806 of yacc.c */ +#line 1169 "parser.y" + { (yyval.val) = cons(set_s, nil); } + break; + + case 337: + +/* Line 1806 of yacc.c */ +#line 1170 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("regex character class")); } + break; + + case 338: + +/* Line 1806 of yacc.c */ +#line 1172 "parser.y" + { (yyval.val) = wild_s; } + break; + + case 339: + +/* Line 1806 of yacc.c */ +#line 1173 "parser.y" + { (yyval.val) = chr(']'); } + break; + + case 340: + +/* Line 1806 of yacc.c */ +#line 1174 "parser.y" + { (yyval.val) = chr('-'); } + break; + + case 341: + +/* Line 1806 of yacc.c */ +#line 1175 "parser.y" + { (yyval.val) = chr((yyvsp[(1) - (1)].chr)); } + break; + + case 342: + +/* Line 1806 of yacc.c */ +#line 1176 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 343: + +/* Line 1806 of yacc.c */ +#line 1177 "parser.y" + { (yyval.val) = (yyvsp[(2) - (3)].val); } + break; + + case 344: + +/* Line 1806 of yacc.c */ +#line 1178 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("regex subexpression")); } + break; + + case 345: + +/* Line 1806 of yacc.c */ +#line 1182 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); } + break; + + case 346: + +/* Line 1806 of yacc.c */ +#line 1183 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val)); } + break; + + case 347: + +/* Line 1806 of yacc.c */ +#line 1186 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 348: + +/* Line 1806 of yacc.c */ +#line 1187 "parser.y" + { (yyval.val) = chr((yyvsp[(1) - (1)].chr)); } + break; + + case 349: + +/* Line 1806 of yacc.c */ +#line 1188 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 350: + +/* Line 1806 of yacc.c */ +#line 1191 "parser.y" + { (yyval.val) = cons(chr((yyvsp[(1) - (3)].chr)), chr((yyvsp[(3) - (3)].chr))); } + break; + + case 351: + +/* Line 1806 of yacc.c */ +#line 1193 "parser.y" + { (yyval.chr) = '?'; } + break; + + case 352: + +/* Line 1806 of yacc.c */ +#line 1194 "parser.y" + { (yyval.chr) = '.'; } + break; + + case 353: + +/* Line 1806 of yacc.c */ +#line 1195 "parser.y" + { (yyval.chr) = '*'; } + break; + + case 354: + +/* Line 1806 of yacc.c */ +#line 1196 "parser.y" + { (yyval.chr) = '+'; } + break; + + case 355: + +/* Line 1806 of yacc.c */ +#line 1197 "parser.y" + { (yyval.chr) = '('; } + break; + + case 356: + +/* Line 1806 of yacc.c */ +#line 1198 "parser.y" + { (yyval.chr) = ')'; } + break; + + case 357: + +/* Line 1806 of yacc.c */ +#line 1199 "parser.y" + { (yyval.chr) = '|'; } + break; + + case 358: + +/* Line 1806 of yacc.c */ +#line 1200 "parser.y" + { (yyval.chr) = '~'; } + break; + + case 359: + +/* Line 1806 of yacc.c */ +#line 1201 "parser.y" + { (yyval.chr) = '&'; } + break; + + case 360: + +/* Line 1806 of yacc.c */ +#line 1202 "parser.y" + { (yyval.chr) = '%'; } + break; + + case 361: + +/* Line 1806 of yacc.c */ +#line 1203 "parser.y" + { (yyval.chr) = '/'; } + break; + + case 362: + +/* Line 1806 of yacc.c */ +#line 1204 "parser.y" + { (yyval.chr) = (yyvsp[(1) - (1)].chr); } + break; + + case 363: + +/* Line 1806 of yacc.c */ +#line 1207 "parser.y" + { switch ((yyvsp[(1) - (1)].chr)) + { case 's': + (yyval.val) = space_k; break; + case 'S': + (yyval.val) = cspace_k; break; + case 'd': + (yyval.val) = digit_k; break; + case 'D': + (yyval.val) = cdigit_k; break; + case 'w': + (yyval.val) = word_char_k; break; + case 'W': + (yyval.val) = cword_char_k; break; }} + break; + + case 365: + +/* Line 1806 of yacc.c */ +#line 1222 "parser.y" + { yyerr("newline expected after directive"); + yyerrok; } + break; + + case 366: + +/* Line 1806 of yacc.c */ +#line 1226 "parser.y" + { (yyval.val) = null_string; } + break; + + case 367: + +/* Line 1806 of yacc.c */ +#line 1227 "parser.y" + { (yyval.val) = (yyvsp[(2) - (3)].val); + rl((yyval.val), num(parser->lineno)); } + break; + + case 368: + +/* Line 1806 of yacc.c */ +#line 1229 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("string literal")); } + break; + + case 369: + +/* Line 1806 of yacc.c */ +#line 1233 "parser.y" + { wchar_t ch; + val str = string_own((yyvsp[(2) - (2)].lexeme)); + const wchar_t *cstr = c_str(str); + + if (cstr[1] == 0) + { ch = cstr[0]; } + else + { ch = char_from_name(cstr); + if (ch == L'!') + { yyerrorf(scnr, lit("unknown character name: ~a"), + str, nao); }} + end_of_char(scnr); + (yyval.val) = chr(ch); } + break; + + case 370: + +/* Line 1806 of yacc.c */ +#line 1246 "parser.y" + { (yyval.val) = chr((yyvsp[(2) - (2)].chr)); + end_of_char(scnr); } + break; + + case 371: + +/* Line 1806 of yacc.c */ +#line 1248 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, + lit("character literal")); } + break; + + case 372: + +/* Line 1806 of yacc.c */ +#line 1253 "parser.y" + { (yyval.val) = null_string; } + break; + + case 373: + +/* Line 1806 of yacc.c */ +#line 1254 "parser.y" + { (yyval.val) = cons(quasi_s, (yyvsp[(2) - (3)].val)); + rlc((yyval.val), (yyvsp[(2) - (3)].val)); + rl((yyval.val), num(parser->lineno)); } + break; + + case 374: + +/* Line 1806 of yacc.c */ +#line 1257 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("quasistring")); } + break; + + case 375: + +/* Line 1806 of yacc.c */ +#line 1261 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (1)].val), nil); + rl((yyval.val), num(parser->lineno)); } + break; + + case 376: + +/* Line 1806 of yacc.c */ +#line 1263 "parser.y" + { (yyval.val) = cons((yyvsp[(1) - (2)].val), (yyvsp[(2) - (2)].val)); + rl((yyval.val), num(parser->lineno)); } + break; + + case 377: + +/* Line 1806 of yacc.c */ +#line 1267 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 378: + +/* Line 1806 of yacc.c */ +#line 1268 "parser.y" + { (yyval.val) = string_own((yyvsp[(1) - (1)].lexeme)); } + break; + + case 379: + +/* Line 1806 of yacc.c */ +#line 1269 "parser.y" + { (yyval.val) = (yyvsp[(1) - (1)].val); } + break; + + case 380: + +/* Line 1806 of yacc.c */ +#line 1270 "parser.y" + { (yyval.val) = cons(var_s, cons((yyvsp[(1) - (1)].val), nil)); + rl((yyval.val), num(parser->lineno)); } + break; + + case 381: + +/* Line 1806 of yacc.c */ +#line 1272 "parser.y" + { if (integerp((yyvsp[(2) - (2)].val)) || symbolp((yyvsp[(2) - (2)].val))) + (yyval.val) = rlcp_tree(cons(var_s, cons((yyvsp[(2) - (2)].val), nil)), + (yyvsp[(2) - (2)].val)); + else + (yyval.val) = (yyvsp[(2) - (2)].val); } + break; + + case 382: + +/* Line 1806 of yacc.c */ +#line 1279 "parser.y" + { (yyval.val) = mkstring(one, chr((yyvsp[(1) - (1)].chr))); } + break; + + case 383: + +/* Line 1806 of yacc.c */ +#line 1280 "parser.y" + { val ch = mkstring(one, chr((yyvsp[(1) - (2)].chr))); + (yyval.val) = string_extend(ch, (yyvsp[(2) - (2)].val)); } + break; + + case 384: + +/* Line 1806 of yacc.c */ +#line 1284 "parser.y" + { (yyval.val) = mkstring(one, chr((yyvsp[(1) - (1)].chr))); } + break; + + case 385: + +/* Line 1806 of yacc.c */ +#line 1285 "parser.y" + { (yyval.val) = string_extend((yyvsp[(1) - (2)].val), chr((yyvsp[(2) - (2)].chr))); } + break; + + case 386: + +/* Line 1806 of yacc.c */ +#line 1288 "parser.y" + { (yyval.val) = nil; } + break; + + case 387: + +/* Line 1806 of yacc.c */ +#line 1289 "parser.y" + { (yyval.val) = (yyvsp[(2) - (2)].val); } + break; + + case 388: + +/* Line 1806 of yacc.c */ +#line 1290 "parser.y" + { val word = (yyvsp[(1) - (2)].val); + (yyval.val) = rlc(cons(word, (yyvsp[(2) - (2)].val)), (yyvsp[(1) - (2)].val)); } + break; + + case 389: + +/* Line 1806 of yacc.c */ +#line 1292 "parser.y" + { (yyval.val) = nil; + yybadtok(yychar, lit("word list")); } + break; + + case 390: + +/* Line 1806 of yacc.c */ +#line 1296 "parser.y" + { (yyval.val) = nil; } + break; + + case 391: + +/* Line 1806 of yacc.c */ +#line 1297 "parser.y" + { (yyval.val) = (yyvsp[(2) - (2)].val); } + break; + + case 392: + +/* Line 1806 of yacc.c */ +#line 1298 "parser.y" + { val qword = cons(quasi_s, (yyvsp[(1) - (2)].val)); + (yyval.val) = rlc(cons(qword, nil), (yyvsp[(1) - (2)].val)); } + break; + + case 393: + +/* Line 1806 of yacc.c */ +#line 1302 "parser.y" + { val qword = cons(quasi_s, (yyvsp[(1) - (3)].val)); + (yyval.val) = rlc(cons(qword, (yyvsp[(3) - (3)].val)), (yyvsp[(1) - (3)].val)); } + break; + + case 394: + +/* Line 1806 of yacc.c */ +#line 1306 "parser.y" + { (yyval.val) = make_buf(zero, nil, nil); + end_of_buflit(scnr); } + break; + + case 395: + +/* Line 1806 of yacc.c */ +#line 1308 "parser.y" + { end_of_buflit(scnr); + buf_trim((yyvsp[(2) - (3)].val)); + (yyval.val) = (yyvsp[(2) - (3)].val); } + break; + + case 396: + +/* Line 1806 of yacc.c */ +#line 1311 "parser.y" + { yyerr("unterminated buffer literal"); + end_of_buflit(scnr); + yyerrok; } + break; + + case 397: + +/* Line 1806 of yacc.c */ +#line 1316 "parser.y" + { buf_put_u8((yyvsp[(1) - (2)].val), length_buf((yyval.val)), (yyvsp[(2) - (2)].val)); + (yyval.val) = (yyvsp[(1) - (2)].val); } + break; + + case 398: + +/* Line 1806 of yacc.c */ +#line 1318 "parser.y" + { (yyval.val) = make_buf(zero, nil, num_fast(512)); + buf_put_u8((yyval.val), zero, (yyvsp[(1) - (1)].val)); } + break; + + case 399: + +/* Line 1806 of yacc.c */ +#line 1322 "parser.y" + { (yyval.val) = num((yyvsp[(1) - (2)].chr) << 4 | (yyvsp[(2) - (2)].chr)); } + break; + + case 400: + +/* Line 1806 of yacc.c */ +#line 1323 "parser.y" + { (yyval.val) = zero; + yyerr("unpaired digit in buffer literal"); + yyerrok; } + break; + + case 401: + +/* Line 1806 of yacc.c */ +#line 1330 "parser.y" + { (yyval.val) = mkexp(all_s, nil, num(parser->lineno)); } + break; + + case 402: + +/* Line 1806 of yacc.c */ +#line 1331 "parser.y" + { (yyval.val) = mkexp(some_s, nil, num(parser->lineno)); } + break; + + case 403: + +/* Line 1806 of yacc.c */ +#line 1332 "parser.y" + { (yyval.val) = mkexp(none_s, nil, num(parser->lineno)); } + break; + + case 404: + +/* Line 1806 of yacc.c */ +#line 1333 "parser.y" + { (yyval.val) = mkexp(maybe_s, nil, num(parser->lineno)); } + break; + + case 405: + +/* Line 1806 of yacc.c */ +#line 1334 "parser.y" + { (yyval.val) = mkexp(cases_s, nil, num(parser->lineno)); } + break; + + case 406: + +/* Line 1806 of yacc.c */ +#line 1335 "parser.y" + { (yyval.val) = mkexp(and_s, nil, num(parser->lineno)); } + break; + + case 407: + +/* Line 1806 of yacc.c */ +#line 1336 "parser.y" + { (yyval.val) = mkexp(or_s, nil, num(parser->lineno)); } + break; + + case 408: + +/* Line 1806 of yacc.c */ +#line 1337 "parser.y" + { (yyval.val) = mkexp(try_s, nil, num(parser->lineno)); } + break; + + case 409: + +/* Line 1806 of yacc.c */ +#line 1338 "parser.y" + { (yyval.val) = mkexp(finally_s, nil, num(parser->lineno)); } + break; + + case 410: + +/* Line 1806 of yacc.c */ +#line 1340 "parser.y" + { (yyval.val) = mkexp(block_s, (yyvsp[(2) - (3)].val), nil); } + break; + + case 411: + +/* Line 1806 of yacc.c */ +#line 1342 "parser.y" + { (yyval.val) = mkexp(choose_s, (yyvsp[(2) - (3)].val), nil); } + break; + + case 412: + +/* Line 1806 of yacc.c */ +#line 1344 "parser.y" + { (yyval.val) = mkexp(collect_s, (yyvsp[(2) - (3)].val), nil); } + break; + + case 413: + +/* Line 1806 of yacc.c */ +#line 1346 "parser.y" + { (yyval.val) = mkexp(coll_s, (yyvsp[(2) - (3)].val), nil); } + break; + + case 414: + +/* Line 1806 of yacc.c */ +#line 1348 "parser.y" + { (yyval.val) = mkexp(gather_s, (yyvsp[(2) - (3)].val), nil); } + break; + + case 415: + +/* Line 1806 of yacc.c */ +#line 1350 "parser.y" + { (yyval.val) = mkexp(define_s, (yyvsp[(2) - (3)].val), nil); } + break; + + case 416: + +/* Line 1806 of yacc.c */ +#line 1352 "parser.y" + { (yyval.val) = mkexp(catch_s, (yyvsp[(2) - (3)].val), nil); } + break; + + case 417: + +/* Line 1806 of yacc.c */ +#line 1354 "parser.y" + { (yyval.val) = mkexp(if_s, + cons((yyvsp[(2) - (5)].val), + cons((yyvsp[(3) - (5)].val), (yyvsp[(4) - (5)].val))), + nil); } + break; + + case 418: + +/* Line 1806 of yacc.c */ +#line 1359 "parser.y" + { yyerr("@(output) doesn't nest"); } + break; + + + +/* Line 1806 of yacc.c */ +#line 6411 "y.tab.c" + default: break; + } + /* User semantic actions sometimes alter yychar, and that requires + that yytoken be updated with the new translation. We take the + approach of translating immediately before every use of yytoken. + One alternative is translating here after every semantic action, + but that translation would be missed if the semantic action invokes + YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or + if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an + incorrect destructor might then be invoked immediately. In the + case of YYERROR or YYBACKUP, subsequent parser actions might lead + to an incorrect destructor call or verbose syntax error message + before the lookahead is translated. */ + YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); + + YYPOPSTACK (yylen); + yylen = 0; + YY_STACK_PRINT (yyss, yyssp); + + *++yyvsp = yyval; + + /* Now `shift' the result of the reduction. Determine what state + that goes to, based on the state we popped back to and the rule + number reduced by. */ + + yyn = yyr1[yyn]; + + yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; + if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) + yystate = yytable[yystate]; + else + yystate = yydefgoto[yyn - YYNTOKENS]; + + goto yynewstate; + + +/*------------------------------------. +| yyerrlab -- here on detecting error | +`------------------------------------*/ +yyerrlab: + /* Make sure we have latest lookahead translation. See comments at + user semantic actions for why this is necessary. */ + yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); + + /* If not already recovering from an error, report this error. */ + if (!yyerrstatus) + { + ++yynerrs; +#if ! YYERROR_VERBOSE + yyerror (scnr, parser, YY_("syntax error")); +#else +# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ + yyssp, yytoken) + { + char const *yymsgp = YY_("syntax error"); + int yysyntax_error_status; + yysyntax_error_status = YYSYNTAX_ERROR; + if (yysyntax_error_status == 0) + yymsgp = yymsg; + else if (yysyntax_error_status == 1) + { + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); + yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); + if (!yymsg) + { + yymsg = yymsgbuf; + yymsg_alloc = sizeof yymsgbuf; + yysyntax_error_status = 2; + } + else + { + yysyntax_error_status = YYSYNTAX_ERROR; + yymsgp = yymsg; + } + } + yyerror (scnr, parser, yymsgp); + if (yysyntax_error_status == 2) + goto yyexhaustedlab; + } +# undef YYSYNTAX_ERROR +#endif + } + + + + if (yyerrstatus == 3) + { + /* If just tried and failed to reuse lookahead token after an + error, discard it. */ + + if (yychar <= YYEOF) + { + /* Return failure if at end of input. */ + if (yychar == YYEOF) + YYABORT; + } + else + { + yydestruct ("Error: discarding", + yytoken, &yylval, scnr, parser); + yychar = YYEMPTY; + } + } + + /* Else will try to reuse lookahead token after shifting the error + token. */ + goto yyerrlab1; + + +/*---------------------------------------------------. +| yyerrorlab -- error raised explicitly by YYERROR. | +`---------------------------------------------------*/ +yyerrorlab: + + /* Pacify compilers like GCC when the user code never invokes + YYERROR and the label yyerrorlab therefore never appears in user + code. */ + if (/*CONSTCOND*/ 0) + goto yyerrorlab; + + /* Do not reclaim the symbols of the rule which action triggered + this YYERROR. */ + YYPOPSTACK (yylen); + yylen = 0; + YY_STACK_PRINT (yyss, yyssp); + yystate = *yyssp; + goto yyerrlab1; + + +/*-------------------------------------------------------------. +| yyerrlab1 -- common code for both syntax error and YYERROR. | +`-------------------------------------------------------------*/ +yyerrlab1: + yyerrstatus = 3; /* Each real token shifted decrements this. */ + + for (;;) + { + yyn = yypact[yystate]; + if (!yypact_value_is_default (yyn)) + { + yyn += YYTERROR; + if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) + { + yyn = yytable[yyn]; + if (0 < yyn) + break; + } + } + + /* Pop the current state because it cannot handle the error token. */ + if (yyssp == yyss) + YYABORT; + + + yydestruct ("Error: popping", + yystos[yystate], yyvsp, scnr, parser); + YYPOPSTACK (1); + yystate = *yyssp; + YY_STACK_PRINT (yyss, yyssp); + } + + *++yyvsp = yylval; + + + /* Shift the error token. */ + YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); + + yystate = yyn; + goto yynewstate; + + +/*-------------------------------------. +| yyacceptlab -- YYACCEPT comes here. | +`-------------------------------------*/ +yyacceptlab: + yyresult = 0; + goto yyreturn; + +/*-----------------------------------. +| yyabortlab -- YYABORT comes here. | +`-----------------------------------*/ +yyabortlab: + yyresult = 1; + goto yyreturn; + +#if !defined(yyoverflow) || YYERROR_VERBOSE +/*-------------------------------------------------. +| yyexhaustedlab -- memory exhaustion comes here. | +`-------------------------------------------------*/ +yyexhaustedlab: + yyerror (scnr, parser, YY_("memory exhausted")); + yyresult = 2; + /* Fall through. */ +#endif + +yyreturn: + if (yychar != YYEMPTY) + { + /* Make sure we have latest lookahead translation. See comments at + user semantic actions for why this is necessary. */ + yytoken = YYTRANSLATE (yychar); + yydestruct ("Cleanup: discarding lookahead", + yytoken, &yylval, scnr, parser); + } + /* Do not reclaim the symbols of the rule which action triggered + this YYABORT or YYACCEPT. */ + YYPOPSTACK (yylen); + YY_STACK_PRINT (yyss, yyssp); + while (yyssp != yyss) + { + yydestruct ("Cleanup: popping", + yystos[*yyssp], yyvsp, scnr, parser); + YYPOPSTACK (1); + } +#ifndef yyoverflow + if (yyss != yyssa) + YYSTACK_FREE (yyss); +#endif +#if YYERROR_VERBOSE + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); +#endif + /* Make sure YYID is used. */ + return YYID (yyresult); +} + + + +/* Line 2067 of yacc.c */ +#line 1363 "parser.y" + + +const int have_yydebug = YYDEBUG; + +int yylex(YYSTYPE *, yyscan_t scanner); + +void yydebug_onoff(int val) +{ +#if YYDEBUG + yydebug = val; +#else + (void) val; +#endif +} + +static val sym_helper(parser_t *parser, wchar_t *lexeme, val meta_allowed) +{ + scanner_t *scnr = parser->scanner; + int leading_at = *lexeme == L'@'; + wchar_t *tokfree = lexeme; + wchar_t *colon = wcschr(lexeme, L':'); + val sym; + + if (leading_at) { + if (!meta_allowed) { + val tok = string_own(lexeme); + yyerrorf(scnr, lit("~a: meta variable not allowed in this context"), tok, nao); + return nil; + } + lexeme++; + } + + if (colon != 0) + *colon = 0; + + if (colon == lexeme) { + val sym_name = string(colon + 1); + scrub_scanner(parser->scanner, SYMTOK, tokfree); + free(tokfree); + sym = intern(sym_name, keyword_package); + } else if (colon != 0) { + val pkg_name = string(lexeme); + val sym_name = string(colon + 1); + scrub_scanner(parser->scanner, SYMTOK, tokfree); + free(tokfree); + if (equal(pkg_name, lit("#"))) { + sym = make_sym(sym_name); + } else { + val package = find_package(pkg_name); + if (!package) { + yyerrorf(scnr, lit("~a:~a: package ~a not found"), + pkg_name, sym_name, pkg_name, nao); + return nil; + } + sym = intern(sym_name, package); + } + } else { + val sym_name = string(lexeme); + scrub_scanner(parser->scanner, SYMTOK, tokfree); + free(tokfree); + sym = intern_fallback(sym_name, cur_package); + } + + return leading_at ? rl(list(var_s, sym, nao), num(parser->lineno)) : sym; +} + +static val expand_repeat_rep_args(val args) +{ + list_collect_decl (out, ptail); + val exp_pair = nil, exp_pairs = nil; + + for (; args; args = cdr(args)) { + val arg = car(args); + + if (consp(arg)) { + if (exp_pairs) { + list_collect_decl (iout, iptail); + for (; arg; arg = cdr(arg)) { + val iarg = car(arg); + if (consp(iarg)) { + val sym = first(iarg); + iptail = list_collect(iptail, list(sym, + expand(second(iarg), nil), + nao)); + match_reg_var(sym); + } else { + iptail = list_collect(iptail, iarg); + match_reg_var(iarg); + } + } + ptail = list_collect(ptail, iout); + } else if (exp_pair) { + val sym = first(arg); + ptail = list_collect(ptail, list(sym, + expand(second(arg), nil), + nao)); + match_reg_var(sym); + } else { + ptail = list_collect(ptail, arg); + } + } else if (!exp_pair && !exp_pairs) { + if (arg == counter_k) { + exp_pair = t; + ptail = list_collect(ptail, arg); + continue; + } else if (arg == vars_k) { + exp_pairs = t; + ptail = list_collect(ptail, arg); + continue; + } + } else if (exp_pair) { + match_reg_var(arg); + } + + exp_pair = exp_pairs = nil; + ptail = list_collect(ptail, arg); + } + + return out; +} + +static val extract_vars(val output_spec) +{ + list_collect_decl (vars, tai); + + if (consp(output_spec)) { + val sym = first(output_spec); + if (sym == var_s) { + val name = second(output_spec); + val modifiers = third(output_spec); + + if (bindable(name)) + tai = list_collect(tai, name); + else + tai = list_collect_nconc(tai, extract_vars(name)); + + for (; modifiers; modifiers = cdr(modifiers)) { + val mod = car(modifiers); + if (bindable(mod)) { + tai = list_collect(tai, mod); + } else if (consp(mod)) { + val msym = car(mod); + + if (msym == dwim_s) { + val arg = second(mod); + + if (bindable(arg)) { + tai = list_collect(tai, arg); + } else if (consp(arg) && car(arg) == rcons_s) { + val f = second(arg); + val t = third(arg); + if (bindable(f)) + tai = list_collect(tai, f); + if (bindable(t)) + tai = list_collect(tai, t); + } + } + } + } + } else if (sym == expr_s) { + val expr = second(output_spec); + val frefs = expand_with_free_refs(expr, nil, nil); + tai = list_collect_nconc(tai, second(frefs)); + } else { + for (; output_spec; output_spec = cdr(output_spec)) + tai = list_collect_nconc(tai, extract_vars(car(output_spec))); + } + } + + return vars; +} + +static val repeat_rep_helper(val sym, val args, val main, val parts) +{ + uses_or2; + val exp_args = expand_repeat_rep_args(args); + val single_parts = nil, single_parts_p = nil; + val first_parts = nil, first_parts_p = nil; + val last_parts = nil, last_parts_p = nil; + val empty_parts = nil, empty_parts_p = nil; + val mod_parts = nil, mod_parts_p = nil; + val modlast_parts = nil, modlast_parts_p = nil; + val occur_vars = nil; + val iter; + + for (iter = parts; iter != nil; iter = cdr(iter)) { + val part = car(iter); + val sym = car(part); + val clauses = copy_list(cdr(part)); + + if (sym == single_s) { + single_parts = nappend2(single_parts, clauses); + single_parts_p = t; + } else if (sym == first_s) { + first_parts = nappend2(first_parts, clauses); + first_parts_p = t; + } else if (sym == last_s) { + last_parts = nappend2(last_parts, clauses); + last_parts_p = t; + } else if (sym == empty_s) { + empty_parts = nappend2(empty_parts, clauses); + empty_parts_p = t; + } else if (sym == mod_s) { + mod_parts = cons(clauses, mod_parts); + mod_parts_p = t; + } else if (sym == modlast_s) { + modlast_parts = cons(clauses, modlast_parts); + modlast_parts_p = t; + } else { + abort(); + } + } + + single_parts = or2(single_parts, single_parts_p); + first_parts = or2(first_parts, first_parts_p); + last_parts = or2(last_parts, last_parts_p); + empty_parts = or2(empty_parts, empty_parts_p); + mod_parts = or2(nreverse(mod_parts), mod_parts_p); + modlast_parts = or2(nreverse(modlast_parts), modlast_parts_p); + + occur_vars = extract_vars(main); + occur_vars = nappend2(occur_vars, extract_vars(single_parts)); + occur_vars = nappend2(occur_vars, extract_vars(first_parts)); + occur_vars = nappend2(occur_vars, extract_vars(last_parts)); + occur_vars = nappend2(occur_vars, extract_vars(empty_parts)); + occur_vars = nappend2(occur_vars, extract_vars(mod_parts)); + occur_vars = uniq(occur_vars); + + return list(sym, exp_args, main, single_parts, first_parts, + last_parts, empty_parts, nreverse(mod_parts), + nreverse(modlast_parts), occur_vars, nao); +} + +static void process_catch_exprs(val exprs) +{ + val params = second(exprs); + for (; params; params = cdr(params)) { + val param = first(params); + if (consp(param)) + match_reg_var(car(param)); + else + match_reg_var(param); + } +} + +static val define_transform(parser_t *parser, val define_form) +{ + scanner_t *scnr = parser->scanner; + val sym = first(define_form); + val args = second(define_form); + + if (define_form == nil) + return nil; + + assert (sym == define_s); + + if (args == nil) { + yyerr("define requires arguments"); + return define_form; + } + + if (!consp(args) || !listp(cdr(args))) { + yyerr("bad define argument syntax"); + return define_form; + } else { + val name = first(args); + val params = second(args); + + if (!symbolp(name)) { + yyerr("function name must be a symbol"); + return define_form; + } + + if (!proper_list_p(params)) { + yyerr("invalid function parameter list"); + return define_form; + } + + if (!all_satisfy(params, func_n1(symbolp), nil)) + yyerr("function parameters must be symbols"); + } + + return define_form; +} + +static val optimize_text(val text_form) +{ + if (all_satisfy(rest(text_form), func_n1(stringp), nil)) + return cat_str(rest(text_form), lit("")); + return text_form; +} + +static val unquotes_occur(val quoted_form, int level) +{ + uses_or2; + + if (atom(quoted_form)) { + return nil; + } else { + val sym = car(quoted_form); + if (sym == sys_unquote_s || sym == sys_splice_s) + return (level == 0) ? t : unquotes_occur(cdr(quoted_form), level - 1); + if (sym == sys_qquote_s) + return unquotes_occur(cdr(quoted_form), level + 1); + return or2(unquotes_occur(sym, level), + unquotes_occur(cdr(quoted_form), level)); + } +} + +val expand_meta(val form, val menv) +{ + val sym; + + if (atom(form)) + return form; + + menv = default_arg(menv, make_env(nil, nil, nil)); + + if ((sym = car(form)) == quasi_s) { + if (opt_compat && opt_compat <= 128) { + list_collect_decl (out, ptail); + + for (; consp(form); form = cdr(form)) { + val subform = car(form); + if (consp(subform) && car(subform) == expr_s) + ptail = list_collect(ptail, expand_meta(subform, menv)); + else + ptail = list_collect(ptail, subform); + } + + ptail = list_collect_nconc(ptail, form); + + return rlcp(out, form); + } + + return expand(form, nil); + } + + if ((sym = car(form)) == expr_s) { + val exp_x = expand(second(form), menv); + if (!bindable(exp_x)) + return rlcp(cons(sym, cons(exp_x, nil)), form); + return rlcp(cons(var_s, cons(exp_x, nil)), form); + } + + if (sym == var_s) { + val var_x = expand(second(form), menv); + if (!bindable(var_x)) + return rlcp(cons(expr_s, cons(var_x, nil)), form); + return rlcp(cons(var_s, cons(var_x, nil)), form); + } + + { + list_collect_decl (out, ptail); + + for (; consp(form); form = cdr(form)) { + loc nptail = list_collect(ptail, expand_meta(car(form), menv)); + rlcp(deref(ptail), form); + ptail = nptail; + } + + ptail = list_collect_nconc(ptail, form); + + return out; + } +} + +static val rlviable(val form) +{ + switch (type(form)) { + case NIL: + case LIT: + case CHR: + case NUM: + case SYM: + case BGNUM: + case FLNUM: + return nil; + default: + return t; + } +} + +val rlset(val form, val info) +{ + if (rlviable(form)) { + loc place = gethash_l(lit("rlcp"), form_to_ln_hash, form, nulloc); + if (nilp(deref(place))) + set(place, info); + } + return form; +} + +val rlrec(parser_t *parser, val form, val line) +{ + if (parser->rec_source_loc) + rlset(form, cons(line, parser->name)); + return form; +} + +val rlcp_parser(parser_t *parser, val to, val from) +{ + if (parser->rec_source_loc) + rlset(to, source_loc(from)); + return to; +} + +static val rlcp_tree_rec(val to, val from, struct circ_stack *up) +{ + val ret = to; + + while (consp(to)) { + val a = car(to); + struct circ_stack rlcs = { up, a }; + rlcp(to, from); + if (!parser_callgraph_circ_check(up, a)) + break; + rlcp_tree_rec(a, from, &rlcs); + to = cdr(to); + if (!parser_callgraph_circ_check(up, to)) + break; + } + return ret; +} + + +val rlcp_tree(val to, val from) +{ + return rlcp_tree_rec(to, from, 0); +} + +static wchar_t char_from_name(const wchar_t *name) +{ + static struct { + const wchar_t *name; + const wchar_t ch; + } map[] = { + { L"nul", 0 }, + { L"alarm", L'\a' }, + { L"backspace", L'\b' }, + { L"tab", L'\t' }, + { L"linefeed", L'\n' }, + { L"newline", L'\n' }, + { L"vtab", L'\v' }, + { L"page", L'\f' }, + { L"return", L'\r' }, + { L"esc", 27 }, + { L"space", L' ' }, + { L"pnul", 0xDC00 }, + { 0, 0 }, + }; + int i; + + for (i = 0; map[i].name; i++) { + if (wcscmp(map[i].name, name) == 0) + return map[i].ch; + } + + return L'!'; /* code meaning not found */ +} + +static val make_expr(parser_t *parser, val sym, val rest, val lineno) +{ + val expr = cons(sym, rest); + val ret = cons(expr_s, cons(expand(expr, nil), nil)); + + if (rest) { + rlc(expr, rest); + rlc(ret, rest); + } else { + rl(expr, lineno); + rl(ret, lineno); + } + + return ret; +} + +static val check_parse_time_action(val spec_rev) +{ + val line = first(spec_rev); + + if (consp(line)) { + val elem = first(line); + if (consp(elem)) { + val sym = car(elem); + if (sym == include_s) { + return nappend2(nreverse(include(line)), rest(spec_rev)); + } + if (sym == mdo_s) { + eval_intrinsic(cons(progn_s, cdr(elem)), nil); + return nil; + } + if (sym == in_package_s) { + eval_intrinsic(elem, nil); + return nil; + } + } + } + return spec_rev; +} + +static val uref_helper(parser_t *parser, val expr) +{ + if (consp(expr) && car(expr) == qref_s) { + return rplaca(expr, uref_s); + } else { + return rl(rlc(list(uref_s, expr, nao), expr), num(parser->lineno)); + } +} + +static val uoref_helper(parser_t *parser, val expr) +{ + val uref = uref_helper(parser, expr); + rplacd(uref, cons(t, cdr(uref))); + return uref; +} + +static val qref_helper(parser_t *parser, val lexpr, val rexpr) +{ + uses_or2; + + if (consp(rexpr) && car(rexpr) == qref_s) { + rplacd(rexpr, rlc(cons(lexpr, cdr(rexpr)), lexpr)); + return rl(rexpr, num(parser->lineno)); + } else { + return rl(rlc(list(qref_s, lexpr, rexpr, nao), + or2(lexpr, rexpr)), + num(parser->lineno)); + } +} + +static val fname_helper(parser_t *parser, val name) +{ + if (!name) { + return nil; + } else if (!bindable(name)) { + yyerrorf(parser->scanner, lit("#T: ~s isn't a function name"), + name, nao); + } else if (!memq(name, tree_fun_whitelist)) { + yyerrorf(parser->scanner, lit("#T: ~s not in *tree-fun-whitelist*"), + name, nao); + } else { + val fbinding = lookup_fun(nil, name); + if (fbinding) + return cdr(fbinding); + yyerrorf(parser->scanner, lit("#T: function named ~s doesn't exist"), + name, nao); + } + + return nil; +} + +#ifndef YYEOF +#define YYEOF 0 +#endif + +void yybadtoken(parser_t *parser, int tok, val context) +{ + val problem = nil; + scanner_t *scnr = parser->scanner; + + switch (tok) { + case ERRTOK: + return; + case SPACE: problem = lit("space"); break; + case TEXT: problem = lit("text"); break; + case SYMTOK: problem = lit("symbol-token"); break; + case METANUM: problem = lit("metanum"); break; + case ALL: problem = lit("\"all\""); break; + case SOME: problem = lit("\"some\""); break; + case NONE: problem = lit("\"none\""); break; + case MAYBE: problem = lit("\"maybe\""); break; + case CASES: problem = lit("\"cases\""); break; + case BLOCK: problem = lit("\"block\""); break; + case CHOOSE: problem = lit("\"choose\""); break; + case GATHER: problem = lit("\"gather\""); break; + case AND: problem = lit("\"and\""); break; + case OR: problem = lit("\"or\""); break; + case END: problem = lit("\"end\""); break; + case COLLECT: problem = lit("\"collect\""); break; + case UNTIL: problem = lit("\"until\""); break; + case COLL: problem = lit("\"coll\""); break; + case OUTPUT: problem = lit("\"output\""); break; + case REPEAT: problem = lit("\"repeat\""); break; + case REP: problem = lit("\"rep\""); break; + case SINGLE: problem = lit("\"single\""); break; + case FIRST: problem = lit("\"first\""); break; + case LAST: problem = lit("\"last\""); break; + case EMPTY: problem = lit("\"empty\""); break; + case MOD: problem = lit("\"mod\""); break; + case MODLAST: problem = lit("\"modlast\""); break; + case DEFINE: problem = lit("\"define\""); break; + case TRY: problem = lit("\"try\""); break; + case CATCH: problem = lit("\"catch\""); break; + case FINALLY: problem = lit("\"finally\""); break; + case IF: problem = lit("\"if\""); break; + case ELIF: problem = lit("\"elif\""); break; + case ELSE: problem = lit("\"else\""); break; + case NUMBER: problem = lit("number"); break; + case REGCHAR: problem = lit("regular expression character"); break; + case REGTOKEN: problem = lit("regular expression token"); break; + case LITCHAR: problem = lit("string literal character"); break; + case SPLICE: problem = lit("*"); break; + case CONSDOT: + case LAMBDOT: problem = lit("consing dot"); break; + case DOTDOT: problem = lit(".."); break; + case OLD_DOTDOT: problem = lit(".."); break; + case UREFDOT: problem = lit("referencing dot"); break; + case OREFDOT: + case UOREFDOT: problem = lit("referencing .?"); break; + case HASH_BACKSLASH: problem = lit("#\\"); break; + case HASH_SLASH: problem = lit("#/"); break; + case HASH_H: problem = lit("#H"); break; + case HASH_S: problem = lit("#S"); break; + case HASH_R: problem = lit("#R"); break; + case HASH_N: problem = lit("#N"); break; + case HASH_T: problem = lit("#T"); break; + case HASH_SEMI: problem = lit("#;"); break; + case HASH_N_EQUALS: problem = lit("#<n>="); break; + case HASH_N_HASH: problem = lit("#<n>#"); break; + case HASH_B_QUOTE: problem = lit("#b'"); break; + case WORDS: problem = lit("#\""); break; + case WSPLICE: problem = lit("#*\""); break; + case QWORDS: problem = lit("#`"); break; + case QWSPLICE: problem = lit("#*`"); break; + } + + if (problem != 0) + if (context) + yyerrorf(scnr, lit("misplaced ~a in ~a"), problem, context, nao); + else + yyerrorf(scnr, lit("unexpected ~a"), problem, nao); + else + if (context) /* Byacc sets yychar to 0 */ + if (tok == YYEOF || tok == YYEMPTY) + yyerrorf(scnr, lit("unterminated ~a"), context, nao); + else if (tok == '\n') + yyerrorf(scnr, lit("newline in ~a"), context, nao); + else + yyerrorf(scnr, lit("misplaced character ~a in ~a"), chr(tok), context, nao); + else + if (tok == YYEOF) + yyerrorf(scnr, lit("unexpected end of input"), nao); + else if (tok == YYEMPTY) + return; + else + yyerrorf(scnr, lit("unexpected character ~a"), chr(tok), nao); +} + +int parse_once(val self, val stream, val name) +{ + int res = 0; +#if CONFIG_DEBUG_SUPPORT + unsigned dbg_state = debug_clear(opt_dbg_expansion ? 0 : DBG_ENABLE); +#endif + val parser_obj = ensure_parser(stream, name); + parser_t *parser = parser_get_impl(self, parser_obj); + parser->rec_source_loc = 1; + + uw_catch_begin(cons(error_s, nil), esym, eobj); + + + res = yyparse(parser->scanner, parser); + + parser_resolve_circ(parser); + + uw_catch(esym, eobj) { + yyerrorf(parser->scanner, lit("error exception during parse"), nao); + uw_throw(esym, eobj); + } + + uw_unwind { +#if CONFIG_DEBUG_SUPPORT + debug_set(dbg_state); +#endif + } + + uw_catch_end; + + return res; +} + +int parse(parser_t *parser, val name, enum prime_parser prim) +{ + int res = 0; + cnum start_line = parser->lineno; + + parser->errors = 0; + parser->eof = 0; + parser->ignore = 0; + parser->prepared_msg = nil; + parser->circ_ref_hash = nil; + parser->circ_count = 0; + parser->syntax_tree = nil; + parser->quasi_level = 0; + + prime_parser(parser, name, prim); + + uw_catch_begin(cons(error_s, nil), esym, eobj); + + res = yyparse(parser->scanner, parser); + + prime_parser_post(parser, prim); + + parser_resolve_circ(parser); + + uw_catch(esym, eobj) { + yyerrorf(parser->scanner, lit("error exception during parse"), nao); + uw_throw(esym, eobj); + } + + uw_unwind; + + uw_catch_end; + + if (parser->errors && parser->syntax_tree == nil && + parser->lineno != start_line) + { + yyerrorf(parser->scanner, lit("while parsing form starting at line ~a"), + num(start_line), nao); + } + + return res; +} + diff --git a/y.tab.h.shipped b/y.tab.h.shipped new file mode 100644 index 00000000..59a490e3 --- /dev/null +++ b/y.tab.h.shipped @@ -0,0 +1,174 @@ +/* A Bison parser, made by GNU Bison 2.5. */ + + + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + SPACE = 258, + TEXT = 259, + SYMTOK = 260, + ALL = 261, + SOME = 262, + NONE = 263, + MAYBE = 264, + CASES = 265, + BLOCK = 266, + CHOOSE = 267, + GATHER = 268, + AND = 269, + OR = 270, + END = 271, + COLLECT = 272, + UNTIL = 273, + COLL = 274, + OUTPUT = 275, + REPEAT = 276, + REP = 277, + SINGLE = 278, + FIRST = 279, + LAST = 280, + EMPTY = 281, + MOD = 282, + MODLAST = 283, + DEFINE = 284, + TRY = 285, + CATCH = 286, + FINALLY = 287, + IF = 288, + ERRTOK = 289, + HASH_BACKSLASH = 290, + HASH_SLASH = 291, + DOTDOT = 292, + HASH_H = 293, + HASH_S = 294, + HASH_R = 295, + HASH_SEMI = 296, + HASH_B_QUOTE = 297, + HASH_N = 298, + HASH_T = 299, + WORDS = 300, + WSPLICE = 301, + QWORDS = 302, + QWSPLICE = 303, + SECRET_ESCAPE_R = 304, + SECRET_ESCAPE_E = 305, + SECRET_ESCAPE_I = 306, + OLD_DOTDOT = 307, + NUMBER = 308, + METANUM = 309, + HASH_N_EQUALS = 310, + HASH_N_HASH = 311, + REGCHAR = 312, + REGTOKEN = 313, + LITCHAR = 314, + SPLICE = 315, + CONSDOT = 316, + LAMBDOT = 317, + UREFDOT = 318, + OREFDOT = 319, + UOREFDOT = 320, + LOW = 321, + ELSE = 322, + ELIF = 323 + }; +#endif +/* Tokens. */ +#define SPACE 258 +#define TEXT 259 +#define SYMTOK 260 +#define ALL 261 +#define SOME 262 +#define NONE 263 +#define MAYBE 264 +#define CASES 265 +#define BLOCK 266 +#define CHOOSE 267 +#define GATHER 268 +#define AND 269 +#define OR 270 +#define END 271 +#define COLLECT 272 +#define UNTIL 273 +#define COLL 274 +#define OUTPUT 275 +#define REPEAT 276 +#define REP 277 +#define SINGLE 278 +#define FIRST 279 +#define LAST 280 +#define EMPTY 281 +#define MOD 282 +#define MODLAST 283 +#define DEFINE 284 +#define TRY 285 +#define CATCH 286 +#define FINALLY 287 +#define IF 288 +#define ERRTOK 289 +#define HASH_BACKSLASH 290 +#define HASH_SLASH 291 +#define DOTDOT 292 +#define HASH_H 293 +#define HASH_S 294 +#define HASH_R 295 +#define HASH_SEMI 296 +#define HASH_B_QUOTE 297 +#define HASH_N 298 +#define HASH_T 299 +#define WORDS 300 +#define WSPLICE 301 +#define QWORDS 302 +#define QWSPLICE 303 +#define SECRET_ESCAPE_R 304 +#define SECRET_ESCAPE_E 305 +#define SECRET_ESCAPE_I 306 +#define OLD_DOTDOT 307 +#define NUMBER 308 +#define METANUM 309 +#define HASH_N_EQUALS 310 +#define HASH_N_HASH 311 +#define REGCHAR 312 +#define REGTOKEN 313 +#define LITCHAR 314 +#define SPLICE 315 +#define CONSDOT 316 +#define LAMBDOT 317 +#define UREFDOT 318 +#define OREFDOT 319 +#define UOREFDOT 320 +#define LOW 321 +#define ELSE 322 +#define ELIF 323 + + + + +#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED +typedef union YYSTYPE +{ + +/* Line 2068 of yacc.c */ +#line 106 "parser.y" + + wchar_t *lexeme; + union obj *val; + wchar_t chr; + cnum lineno; + + + +/* Line 2068 of yacc.c */ +#line 195 "y.tab.h" +} YYSTYPE; +# define YYSTYPE_IS_TRIVIAL 1 +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 +#endif + + + + |