5213 lines
192 KiB
C
5213 lines
192 KiB
C
#include "config.h"
|
|
#include "util/configyyrename.h"
|
|
|
|
#line 3 "<stdout>"
|
|
|
|
#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 0
|
|
#if YY_FLEX_SUBMINOR_VERSION > 0
|
|
#define FLEX_BETA
|
|
#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
|
|
|
|
#endif /* ! C99 */
|
|
|
|
#endif /* ! FLEXINT_H */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
/* The "const" storage-class-modifier is valid. */
|
|
#define YY_USE_CONST
|
|
|
|
#else /* ! __cplusplus */
|
|
|
|
/* C99 requires __STDC__ to be defined as 1. */
|
|
#if defined (__STDC__)
|
|
|
|
#define YY_USE_CONST
|
|
|
|
#endif /* defined (__STDC__) */
|
|
#endif /* ! __cplusplus */
|
|
|
|
#ifdef YY_USE_CONST
|
|
#define yyconst const
|
|
#else
|
|
#define yyconst
|
|
#endif
|
|
|
|
/* Returned upon end-of-file. */
|
|
#define YY_NULL 0
|
|
|
|
/* Promotes a possibly negative, possibly signed char to an unsigned
|
|
* integer for use as an array index. If the signed char is negative,
|
|
* we want to instead treat it as an 8-bit unsigned char, hence the
|
|
* double cast.
|
|
*/
|
|
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
|
|
|
|
/* 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 (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 (((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 )
|
|
|
|
#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
|
|
|
|
extern yy_size_t yyleng;
|
|
|
|
extern FILE *yyin, *yyout;
|
|
|
|
#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. */ \
|
|
yy_size_t yyless_macro_arg = (n); \
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
*yy_cp = (yy_hold_char); \
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
|
(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, (yytext_ptr) )
|
|
|
|
#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.
|
|
*/
|
|
yy_size_t yy_buf_size;
|
|
|
|
/* Number of characters read into yy_ch_buf, not including EOB
|
|
* characters.
|
|
*/
|
|
yy_size_t 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 */
|
|
|
|
/* Stack of input buffers. */
|
|
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
|
|
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
|
|
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
|
|
|
|
/* 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 ( (yy_buffer_stack) \
|
|
? (yy_buffer_stack)[(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 (yy_buffer_stack)[(yy_buffer_stack_top)]
|
|
|
|
/* yy_hold_char holds the character lost when yytext is formed. */
|
|
static char yy_hold_char;
|
|
static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
yy_size_t yyleng;
|
|
|
|
/* Points to current character in buffer. */
|
|
static char *yy_c_buf_p = (char *) 0;
|
|
static int yy_init = 0; /* whether we need to initialize */
|
|
static int yy_start = 0; /* start state number */
|
|
|
|
/* Flag which is used to allow yywrap()'s to do buffer switches
|
|
* instead of setting up a fresh yyin. A bit of a hack ...
|
|
*/
|
|
static int yy_did_buffer_switch_on_eof;
|
|
|
|
void yyrestart (FILE *input_file );
|
|
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
|
|
YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
|
|
void yy_delete_buffer (YY_BUFFER_STATE b );
|
|
void yy_flush_buffer (YY_BUFFER_STATE b );
|
|
void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
|
|
void yypop_buffer_state (void );
|
|
|
|
static void yyensure_buffer_stack (void );
|
|
static void yy_load_buffer_state (void );
|
|
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
|
|
|
|
#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
|
|
|
|
YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
|
|
YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
|
|
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len );
|
|
|
|
void *yyalloc (yy_size_t );
|
|
void *yyrealloc (void *,yy_size_t );
|
|
void yyfree (void * );
|
|
|
|
#define yy_new_buffer yy_create_buffer
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
{ \
|
|
if ( ! YY_CURRENT_BUFFER ){ \
|
|
yyensure_buffer_stack (); \
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
|
yy_create_buffer(yyin,YY_BUF_SIZE ); \
|
|
} \
|
|
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
|
|
}
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
{ \
|
|
if ( ! YY_CURRENT_BUFFER ){\
|
|
yyensure_buffer_stack (); \
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
|
yy_create_buffer(yyin,YY_BUF_SIZE ); \
|
|
} \
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
|
|
}
|
|
|
|
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
|
|
|
|
/* Begin user sect3 */
|
|
|
|
typedef unsigned char YY_CHAR;
|
|
|
|
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
|
|
|
|
typedef int yy_state_type;
|
|
|
|
extern int yylineno;
|
|
|
|
int yylineno = 1;
|
|
|
|
extern char *yytext;
|
|
#ifdef yytext_ptr
|
|
#undef yytext_ptr
|
|
#endif
|
|
#define yytext_ptr yytext
|
|
|
|
static yy_state_type yy_get_previous_state (void );
|
|
static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
|
|
static int yy_get_next_buffer (void );
|
|
#if defined(__GNUC__) && __GNUC__ >= 3
|
|
__attribute__((__noreturn__))
|
|
#endif
|
|
static void yy_fatal_error (yyconst char msg[] );
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
* corresponding action - sets up yytext.
|
|
*/
|
|
#define YY_DO_BEFORE_ACTION \
|
|
(yytext_ptr) = yy_bp; \
|
|
(yytext_ptr) -= (yy_more_len); \
|
|
yyleng = (size_t) (yy_cp - (yytext_ptr)); \
|
|
(yy_hold_char) = *yy_cp; \
|
|
*yy_cp = '\0'; \
|
|
(yy_c_buf_p) = yy_cp;
|
|
|
|
#define YY_NUM_RULES 221
|
|
#define YY_END_OF_BUFFER 222
|
|
/* 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 yyconst flex_int16_t yy_accept[2165] =
|
|
{ 0,
|
|
1, 1, 203, 203, 207, 207, 211, 211, 215, 215,
|
|
1, 1, 222, 219, 1, 201, 201, 220, 2, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 220,
|
|
203, 204, 204, 205, 220, 207, 208, 208, 209, 220,
|
|
214, 211, 212, 212, 213, 220, 215, 216, 216, 217,
|
|
220, 218, 202, 2, 206, 218, 220, 219, 0, 1,
|
|
2, 2, 2, 2, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
203, 0, 207, 0, 214, 0, 211, 215, 0, 218,
|
|
0, 2, 2, 218, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 218, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
218, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 77, 219, 219, 219,
|
|
219, 219, 219, 8, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 88, 218, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 218,
|
|
219, 219, 219, 219, 219, 37, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 168, 219,
|
|
14, 15, 219, 18, 17, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 154, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 3, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 218, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 210, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 40, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 41, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 143, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 20, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 102, 219, 210, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 195, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 118, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
101, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 75, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 25, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 38, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 39, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 119, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
28, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 183, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 32, 219, 33,
|
|
219, 219, 219, 78, 219, 79, 219, 219, 76, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 7, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 161, 219, 219, 219, 219, 104, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 29, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 135, 219, 134, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 16, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 42, 219, 219,
|
|
219, 219, 219, 219, 142, 219, 219, 219, 219, 81,
|
|
80, 219, 219, 219, 219, 219, 219, 219, 219, 129,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 89, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 60, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 64, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 36, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 132,
|
|
133, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 6, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
193, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
26, 219, 219, 219, 219, 219, 219, 219, 219, 125,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
147, 219, 126, 219, 219, 159, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
27, 219, 219, 219, 219, 84, 219, 85, 219, 83,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 99, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
182, 219, 219, 127, 219, 219, 219, 219, 219, 130,
|
|
219, 219, 158, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 74, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 34, 219, 219, 22, 219,
|
|
219, 219, 219, 19, 219, 109, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
49, 51, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 197, 219, 219, 169, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
86, 219, 219, 219, 219, 219, 219, 219, 98, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 103, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 153, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
117, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 113, 219, 120, 219, 219, 219,
|
|
219, 219, 92, 219, 219, 70, 219, 219, 219, 145,
|
|
219, 219, 219, 219, 219, 160, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 174, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
116, 219, 219, 219, 219, 219, 52, 53, 219, 219,
|
|
219, 219, 219, 35, 59, 121, 219, 136, 219, 162,
|
|
|
|
131, 219, 219, 219, 45, 219, 123, 219, 219, 219,
|
|
219, 219, 9, 219, 219, 219, 73, 219, 219, 219,
|
|
219, 187, 219, 144, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
105, 196, 219, 219, 173, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 155, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 122, 219, 219, 219, 44, 46,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 72, 219, 219,
|
|
219, 219, 185, 219, 192, 219, 219, 219, 219, 219,
|
|
149, 23, 24, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 69, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 151, 148, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 43,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 100, 13,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 12, 219, 219, 21, 219, 219,
|
|
219, 191, 219, 194, 47, 219, 157, 219, 150, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 112, 111, 219, 219, 219, 219, 219, 219, 152,
|
|
146, 219, 219, 198, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 54, 219, 219, 219, 186, 219,
|
|
219, 219, 156, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 48, 219, 219, 219, 82, 219, 106, 108, 137,
|
|
219, 219, 219, 110, 219, 219, 163, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 170, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 138, 219, 219, 184, 219,
|
|
219, 219, 30, 219, 219, 219, 219, 4, 219, 219,
|
|
93, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
166, 219, 219, 219, 219, 219, 219, 199, 219, 219,
|
|
219, 219, 219, 172, 219, 219, 141, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 57, 219, 31, 190, 167,
|
|
219, 219, 11, 219, 219, 219, 219, 219, 219, 139,
|
|
61, 219, 219, 219, 115, 219, 219, 219, 219, 219,
|
|
95, 219, 219, 219, 219, 219, 219, 219, 171, 90,
|
|
219, 87, 219, 219, 219, 63, 67, 62, 219, 55,
|
|
|
|
219, 219, 10, 219, 219, 219, 188, 219, 219, 114,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 68, 66, 219, 56, 219,
|
|
219, 219, 128, 219, 219, 140, 219, 219, 219, 219,
|
|
107, 50, 219, 219, 200, 219, 219, 219, 219, 219,
|
|
219, 91, 65, 96, 97, 58, 219, 189, 219, 219,
|
|
219, 165, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 71, 219, 164, 219, 181, 219, 219,
|
|
219, 219, 219, 219, 5, 219, 219, 219, 219, 219,
|
|
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 94, 219, 219, 219, 219, 219, 219, 124,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 177, 219,
|
|
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
|
|
219, 219, 175, 219, 178, 179, 219, 219, 219, 219,
|
|
219, 176, 180, 0
|
|
} ;
|
|
|
|
static yyconst 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, 2, 1, 5, 6, 1, 1, 1, 7, 1,
|
|
1, 1, 1, 1, 8, 1, 1, 1, 9, 1,
|
|
10, 11, 1, 12, 1, 1, 1, 13, 1, 1,
|
|
1, 1, 1, 1, 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,
|
|
1, 40, 1, 1, 1, 1, 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, 66, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1
|
|
} ;
|
|
|
|
static yyconst YY_CHAR yy_meta[67] =
|
|
{ 0,
|
|
1, 2, 3, 4, 5, 1, 6, 1, 1, 1,
|
|
1, 1, 7, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1
|
|
} ;
|
|
|
|
static yyconst flex_uint16_t yy_base[2179] =
|
|
{ 0,
|
|
0, 0, 64, 67, 70, 72, 78, 84, 89, 92,
|
|
131, 137, 473, 390, 96, 6214, 6214, 6214, 109, 111,
|
|
142, 180, 86, 133, 138, 172, 50, 151, 91, 181,
|
|
197, 124, 241, 187, 225, 289, 233, 228, 253, 307,
|
|
385, 6214, 6214, 6214, 95, 362, 6214, 6214, 6214, 102,
|
|
331, 364, 6214, 6214, 6214, 311, 317, 6214, 6214, 6214,
|
|
116, 245, 6214, 321, 6214, 265, 328, 221, 334, 160,
|
|
0, 338, 0, 0, 141, 206, 184, 330, 322, 255,
|
|
323, 335, 324, 222, 268, 350, 325, 334, 344, 357,
|
|
358, 352, 367, 364, 389, 160, 361, 388, 394, 214,
|
|
|
|
373, 400, 391, 383, 399, 416, 410, 414, 407, 421,
|
|
437, 424, 448, 425, 434, 178, 431, 464, 441, 460,
|
|
458, 462, 461, 468, 263, 490, 488, 487, 476, 491,
|
|
212, 171, 170, 241, 164, 533, 146, 85, 284, 77,
|
|
539, 543, 0, 509, 511, 534, 526, 536, 523, 530,
|
|
546, 527, 539, 554, 553, 559, 557, 580, 624, 561,
|
|
571, 572, 586, 569, 589, 597, 581, 579, 619, 585,
|
|
609, 610, 646, 612, 627, 570, 622, 661, 630, 626,
|
|
642, 653, 670, 673, 681, 671, 669, 677, 665, 680,
|
|
662, 679, 688, 690, 703, 700, 699, 715, 717, 702,
|
|
|
|
704, 714, 708, 729, 723, 727, 728, 738, 741, 735,
|
|
763, 742, 764, 744, 758, 755, 765, 745, 772, 769,
|
|
760, 784, 761, 789, 778, 782, 792, 810, 813, 578,
|
|
797, 816, 819, 802, 806, 823, 824, 822, 832, 838,
|
|
837, 834, 849, 841, 836, 839, 846, 847, 868, 872,
|
|
853, 866, 859, 881, 873, 876, 883, 886, 878, 902,
|
|
897, 904, 899, 909, 938, 359, 924, 915, 928, 936,
|
|
944, 901, 951, 949, 942, 955, 946, 917, 959, 966,
|
|
961, 971, 970, 984, 987, 977, 994, 996, 999, 998,
|
|
1007, 980, 997, 1017, 1026, 1019, 1071, 1021, 1032, 1043,
|
|
|
|
1030, 1035, 1034, 1044, 1040, 1042, 1055, 1057, 1078, 1084,
|
|
1079, 1100, 1076, 1095, 1101, 1102, 1099, 1092, 1104, 1134,
|
|
1098, 1114, 1121, 1125, 1136, 1140, 1143, 1128, 1142, 1159,
|
|
1149, 1145, 1171, 1151, 1164, 1161, 1174, 1186, 1187, 1173,
|
|
1183, 1189, 1039, 1195, 1202, 1199, 1191, 1200, 1206, 1213,
|
|
1216, 1220, 1230, 1229, 1214, 1236, 6214, 1243, 1227, 1238,
|
|
1240, 1233, 1247, 6214, 1261, 1257, 1255, 1209, 1263, 1273,
|
|
1271, 1260, 1288, 1286, 1296, 1280, 1292, 1295, 1282, 1298,
|
|
1305, 1306, 1310, 1308, 1354, 1316, 1312, 1318, 1345, 1339,
|
|
1329, 1265, 1332, 1347, 1337, 1356, 1363, 1366, 1364, 1383,
|
|
|
|
1387, 1375, 1377, 1393, 6214, 1397, 1376, 1404, 1283, 1395,
|
|
1390, 979, 1411, 1406, 1414, 1415, 1426, 1417, 1425, 1431,
|
|
1420, 1421, 1451, 1442, 1440, 1449, 1465, 1450, 1462, 1470,
|
|
1447, 1466, 1453, 1467, 1469, 1484, 1477, 1483, 1480, 1486,
|
|
1488, 1482, 1476, 1513, 1500, 1504, 1502, 1514, 1517, 1509,
|
|
1529, 1526, 1527, 1533, 1534, 1546, 1542, 1550, 1560, 1561,
|
|
1552, 1555, 1547, 1566, 1573, 1577, 1578, 1557, 1582, 1586,
|
|
1584, 1603, 1588, 1601, 1617, 1595, 1607, 1619, 1602, 1615,
|
|
1622, 1614, 1627, 1636, 1637, 1618, 1648, 1639, 1653, 1642,
|
|
1644, 1649, 1652, 1657, 1647, 1663, 1673, 1667, 1666, 1697,
|
|
|
|
1677, 1679, 1700, 1699, 1704, 1702, 1693, 1692, 1708, 1705,
|
|
1717, 1726, 1732, 1735, 1723, 1736, 1738, 1731, 1742, 1749,
|
|
1752, 1753, 1725, 1774, 1762, 6214, 1758, 1761, 1766, 1787,
|
|
1778, 1776, 1792, 1788, 1779, 1782, 1800, 1843, 6214, 1784,
|
|
6214, 6214, 1795, 6214, 6214, 1822, 1802, 1826, 1815, 1832,
|
|
1805, 1892, 1836, 1819, 1827, 1839, 1847, 1844, 1849, 1860,
|
|
1858, 1879, 1876, 1875, 1885, 1895, 1874, 1906, 1889, 1908,
|
|
1907, 1913, 1903, 1929, 1921, 1920, 1923, 1944, 1941, 1842,
|
|
1934, 1948, 1947, 1949, 1950, 1942, 1959, 1955, 1969, 1963,
|
|
1956, 1971, 1954, 1974, 6214, 1985, 1986, 1996, 1992, 1989,
|
|
|
|
2001, 1990, 1991, 1980, 2022, 6214, 2007, 2008, 2016, 2034,
|
|
2017, 2020, 2019, 2028, 2036, 2046, 2024, 2035, 2044, 2047,
|
|
2043, 2052, 2056, 2062, 2064, 2081, 2092, 2084, 2071, 2083,
|
|
2089, 2072, 2096, 2101, 2099, 2086, 2087, 2106, 2098, 2107,
|
|
2114, 2112, 2120, 2133, 2117, 2116, 2124, 2122, 2125, 2171,
|
|
2156, 2144, 2139, 2143, 2173, 2163, 2167, 2175, 2158, 2179,
|
|
2184, 2181, 2207, 2186, 2183, 2200, 2203, 2219, 2231, 2228,
|
|
75, 2258, 2223, 2224, 2226, 2230, 2244, 2233, 2246, 2247,
|
|
2249, 2251, 2236, 2271, 6214, 2252, 2279, 2273, 2267, 2288,
|
|
2285, 2286, 2287, 2294, 2283, 2307, 2301, 2313, 2302, 2310,
|
|
|
|
2311, 2326, 2327, 2306, 6214, 2325, 2323, 2328, 2329, 2343,
|
|
2352, 2354, 2351, 2340, 2366, 2361, 6214, 2349, 2377, 2379,
|
|
2382, 2375, 2370, 2376, 2369, 2378, 2392, 2373, 2403, 2397,
|
|
2406, 2409, 2415, 6214, 2393, 2407, 2422, 2429, 2430, 2419,
|
|
2440, 2426, 2432, 2425, 2434, 2436, 2453, 2455, 6214, 2450,
|
|
2459, 2454, 2457, 2478, 2480, 2461, 2474, 2483, 2471, 2477,
|
|
2481, 291, 2482, 2485, 2492, 2472, 6214, 2495, 68, 2488,
|
|
2498, 2496, 2531, 2533, 2525, 2532, 2537, 2521, 2522, 2539,
|
|
2538, 2527, 2540, 2541, 2551, 2545, 2561, 2558, 2571, 2559,
|
|
2589, 6214, 2554, 2582, 2583, 2585, 2588, 2566, 2586, 2596,
|
|
|
|
2573, 2602, 2606, 6214, 2620, 2623, 2615, 2616, 2611, 2621,
|
|
2632, 2628, 2618, 2635, 2626, 2643, 2645, 2641, 2653, 2665,
|
|
6214, 2651, 2655, 2667, 2657, 2676, 2678, 2691, 2666, 2683,
|
|
2682, 2688, 2686, 2698, 2684, 2705, 2709, 2710, 2715, 2716,
|
|
2722, 2708, 2718, 2724, 2717, 2712, 2743, 2745, 2747, 2749,
|
|
2772, 2766, 153, 2751, 6214, 2756, 2758, 2750, 2755, 2771,
|
|
2770, 2787, 2782, 2794, 2789, 2791, 2795, 2806, 2785, 2815,
|
|
2807, 2811, 2825, 6214, 2832, 2822, 2817, 2839, 2821, 2840,
|
|
2838, 2829, 2845, 2837, 2853, 2847, 2856, 2859, 2851, 2865,
|
|
2866, 2862, 6214, 2881, 2884, 2885, 2886, 2882, 2876, 2883,
|
|
|
|
2897, 2879, 2887, 2878, 2909, 2905, 2896, 2903, 2906, 2911,
|
|
2926, 2917, 2914, 2913, 2930, 2945, 2928, 2943, 6214, 2940,
|
|
2965, 2941, 2953, 2949, 2956, 2964, 2977, 2967, 2978, 2980,
|
|
2976, 2966, 2973, 2991, 2990, 2992, 2993, 6214, 2998, 2997,
|
|
2970, 3011, 3007, 3012, 3016, 3014, 3025, 3028, 3039, 3029,
|
|
3036, 3048, 3038, 3040, 3043, 3054, 3056, 3066, 3067, 3076,
|
|
6214, 3069, 3074, 3070, 3071, 3080, 3073, 3063, 3113, 3115,
|
|
3072, 3098, 3099, 3101, 3107, 3095, 3104, 3105, 3129, 3108,
|
|
3114, 3124, 3130, 3125, 3132, 3131, 3135, 3134, 3155, 3165,
|
|
3163, 3170, 3156, 3162, 3159, 3185, 6214, 3158, 3184, 3175,
|
|
|
|
3176, 3189, 3186, 3192, 3195, 3182, 3207, 6214, 3199, 6214,
|
|
3216, 3222, 3229, 6214, 3225, 6214, 3228, 3214, 6214, 3232,
|
|
3237, 3224, 3220, 3226, 3231, 3246, 3254, 3256, 3248, 3269,
|
|
3249, 3263, 3273, 3259, 3275, 6214, 3279, 3264, 3285, 3283,
|
|
3287, 3288, 3293, 3294, 3311, 3297, 3320, 3318, 3298, 3307,
|
|
3333, 6214, 3315, 3331, 3332, 3330, 6214, 3328, 3338, 3340,
|
|
3319, 3346, 3345, 3350, 3349, 3368, 3358, 3365, 3372, 3375,
|
|
3357, 3384, 3388, 3389, 3373, 3385, 3383, 3398, 3400, 3399,
|
|
3396, 3401, 3420, 3416, 3411, 3414, 3415, 3410, 3422, 3427,
|
|
3431, 3445, 3430, 3432, 3441, 3443, 6214, 3453, 3440, 3468,
|
|
|
|
3454, 3458, 3466, 3467, 6214, 3484, 6214, 3449, 3486, 3488,
|
|
3487, 3470, 3493, 3491, 3494, 3500, 3497, 3513, 3517, 3508,
|
|
3512, 3510, 3511, 3514, 3526, 3531, 6214, 3520, 3530, 3550,
|
|
3536, 3553, 3549, 3559, 3555, 3565, 3566, 6214, 3570, 3572,
|
|
3573, 3579, 3576, 3582, 6214, 3575, 3578, 3585, 3604, 6214,
|
|
6214, 3577, 3600, 3601, 3602, 3597, 3623, 3603, 3615, 6214,
|
|
3621, 3612, 3622, 3631, 3639, 3640, 3628, 3629, 6214, 3642,
|
|
3638, 3647, 3655, 3656, 3658, 3654, 3660, 3659, 3663, 3674,
|
|
3671, 3651, 3688, 3676, 6214, 3689, 3684, 3696, 3687, 3703,
|
|
3686, 3690, 3704, 3719, 3700, 3698, 3713, 3729, 3726, 3718,
|
|
|
|
3727, 3741, 3749, 3731, 3740, 3723, 3747, 3737, 3760, 3745,
|
|
3763, 3767, 3778, 3774, 6214, 3783, 3762, 3786, 3770, 3779,
|
|
3785, 3787, 3796, 3805, 3800, 3801, 3804, 3806, 6214, 3808,
|
|
3802, 3809, 3811, 3813, 3833, 3822, 3828, 3836, 3825, 6214,
|
|
6214, 3832, 3835, 3854, 3843, 3860, 3862, 3846, 3864, 3848,
|
|
3863, 6214, 3873, 3881, 3866, 3875, 3885, 3889, 3888, 3890,
|
|
3887, 3877, 3884, 3898, 3904, 3900, 3893, 3920, 3911, 3924,
|
|
6214, 3913, 3914, 3916, 3938, 3927, 3930, 3936, 3956, 3949,
|
|
3931, 3947, 3948, 3955, 3964, 3978, 3975, 3954, 3965, 3989,
|
|
6214, 3973, 3982, 3981, 3962, 3995, 3974, 4002, 3991, 6214,
|
|
|
|
4007, 3997, 4006, 4011, 3999, 4020, 4015, 4012, 4022, 4018,
|
|
6214, 4026, 6214, 4029, 4023, 6214, 4024, 4040, 4041, 4034,
|
|
4055, 4057, 4044, 4056, 4048, 4050, 4068, 4071, 4078, 4067,
|
|
6214, 4073, 4062, 4077, 4079, 6214, 4090, 6214, 4093, 6214,
|
|
4087, 4083, 4116, 4101, 4120, 4117, 4122, 4115, 6214, 4124,
|
|
4105, 4126, 4128, 4112, 4129, 4145, 4147, 4108, 4148, 4160,
|
|
6214, 4142, 4150, 6214, 4168, 4138, 4153, 4176, 4175, 6214,
|
|
4169, 4183, 6214, 4174, 4191, 4187, 4189, 4190, 4199, 4202,
|
|
4193, 4203, 4227, 4219, 4212, 4220, 6214, 4214, 4218, 4235,
|
|
4236, 4229, 4222, 4241, 4238, 4246, 4245, 4252, 4260, 4265,
|
|
|
|
4256, 4255, 4266, 4269, 4279, 6214, 4262, 4281, 6214, 4282,
|
|
4270, 4280, 4283, 6214, 4294, 6214, 4296, 4297, 4289, 4306,
|
|
4311, 4310, 4320, 4309, 4326, 4327, 4318, 4340, 4335, 4324,
|
|
6214, 6214, 4334, 4348, 4341, 4352, 4355, 4353, 4342, 4369,
|
|
4361, 4372, 4368, 6214, 4370, 4358, 6214, 4359, 4376, 4371,
|
|
4387, 4386, 4388, 4393, 4389, 4400, 4392, 4405, 4396, 4398,
|
|
6214, 4411, 4401, 4415, 4416, 4419, 4414, 4427, 6214, 4432,
|
|
4445, 4449, 4437, 4441, 4443, 4457, 4460, 4461, 4454, 4465,
|
|
4462, 4482, 4471, 4473, 4480, 4474, 4486, 4477, 4497, 4499,
|
|
4488, 4484, 6214, 4501, 4508, 4498, 4510, 4496, 4513, 4509,
|
|
|
|
4515, 4527, 4526, 4523, 4528, 4532, 6214, 4529, 4525, 4536,
|
|
4530, 4560, 4543, 4564, 4546, 4561, 4553, 4570, 4558, 4575,
|
|
6214, 4557, 4576, 4565, 4573, 4578, 4596, 4602, 4594, 4603,
|
|
4605, 4597, 4588, 4606, 6214, 4598, 6214, 4613, 4615, 4624,
|
|
4626, 4628, 6214, 4629, 4637, 6214, 4640, 4604, 4645, 6214,
|
|
4655, 4654, 4641, 4651, 4660, 6214, 4665, 4664, 4671, 4670,
|
|
4662, 4673, 4668, 4679, 4675, 4682, 6214, 4695, 4701, 4705,
|
|
4703, 4691, 4692, 4700, 4709, 4696, 4710, 4722, 4718, 4707,
|
|
6214, 4717, 4741, 4734, 4739, 4748, 6214, 6214, 4740, 4752,
|
|
4755, 4730, 4761, 6214, 6214, 6214, 4759, 6214, 4745, 6214,
|
|
|
|
6214, 4760, 4764, 4770, 6214, 4771, 6214, 4781, 4777, 4768,
|
|
4772, 4788, 6214, 4782, 4790, 4800, 6214, 4797, 4808, 4789,
|
|
4795, 6214, 4812, 6214, 4813, 4818, 4820, 4817, 4809, 4816,
|
|
4821, 4831, 4832, 4838, 4837, 4824, 4853, 4843, 4844, 4848,
|
|
4857, 4841, 4863, 4858, 4846, 4859, 4864, 4868, 4882, 4873,
|
|
4884, 4880, 4875, 4885, 4900, 4905, 4909, 4878, 4913, 4915,
|
|
6214, 6214, 4899, 4907, 6214, 4901, 4904, 4911, 4919, 4920,
|
|
4930, 4934, 4953, 6214, 4951, 4946, 4940, 4956, 4944, 4947,
|
|
4957, 4960, 4943, 4964, 4968, 4974, 4970, 4978, 4977, 4967,
|
|
4980, 4986, 5003, 5007, 6214, 4989, 4990, 4992, 6214, 6214,
|
|
|
|
4994, 5015, 5012, 5013, 5004, 5024, 5025, 6214, 5017, 5039,
|
|
5026, 5033, 6214, 5047, 6214, 5048, 5031, 5054, 5052, 5061,
|
|
6214, 6214, 6214, 5062, 5042, 5055, 5056, 5066, 5067, 5059,
|
|
5077, 6214, 5081, 5075, 5082, 5086, 5076, 5097, 5093, 5105,
|
|
5111, 5112, 5114, 5103, 5116, 5119, 6214, 6214, 5108, 5131,
|
|
5120, 5127, 5129, 5135, 5141, 5134, 5128, 5146, 5145, 6214,
|
|
5156, 5148, 5147, 5158, 5155, 5160, 5178, 5161, 6214, 6214,
|
|
5162, 5173, 5175, 5190, 5176, 5192, 5184, 5204, 5188, 5205,
|
|
5139, 5210, 5206, 5208, 6214, 5203, 5211, 6214, 5219, 5202,
|
|
5227, 6214, 5217, 6214, 6214, 5225, 6214, 5228, 6214, 5229,
|
|
|
|
5246, 5253, 5254, 5258, 5259, 5260, 5243, 5250, 5267, 5263,
|
|
5262, 6214, 6214, 5272, 5255, 5265, 5270, 5275, 5279, 6214,
|
|
6214, 5290, 5293, 6214, 5276, 5291, 5299, 5289, 5292, 5297,
|
|
5313, 5302, 5306, 5318, 5324, 5329, 5331, 5326, 5338, 5327,
|
|
5323, 5335, 5340, 5341, 6214, 5346, 5352, 5345, 6214, 5366,
|
|
5370, 5368, 6214, 5362, 5378, 5379, 5372, 5369, 5391, 5385,
|
|
5392, 6214, 5394, 5400, 5402, 6214, 5388, 6214, 6214, 6214,
|
|
5411, 5419, 5408, 6214, 5418, 5429, 6214, 5422, 5415, 5412,
|
|
5407, 5443, 5436, 5447, 5437, 5434, 5449, 5440, 5467, 5441,
|
|
5465, 6214, 5450, 5456, 5472, 5460, 5474, 5475, 5464, 5470,
|
|
|
|
5482, 5481, 5477, 5488, 5487, 6214, 5495, 5510, 6214, 5512,
|
|
5502, 5514, 6214, 5520, 5501, 5500, 5505, 6214, 5525, 5517,
|
|
6214, 5513, 5534, 5536, 5530, 5542, 5539, 5538, 5540, 5555,
|
|
6214, 5548, 5544, 5547, 5568, 5569, 5561, 6214, 5573, 5558,
|
|
5585, 5575, 5584, 6214, 5589, 5571, 6214, 5594, 5596, 5583,
|
|
5598, 5607, 5608, 5609, 5610, 6214, 5613, 6214, 6214, 6214,
|
|
5600, 5617, 6214, 5614, 5612, 5611, 5620, 5632, 5628, 6214,
|
|
6214, 5635, 5646, 5645, 6214, 5634, 5637, 5647, 5636, 5659,
|
|
6214, 5658, 5649, 5653, 5651, 5670, 5662, 5663, 6214, 6214,
|
|
5679, 6214, 5682, 5691, 5696, 6214, 6214, 6214, 5701, 6214,
|
|
|
|
5704, 5703, 6214, 5705, 5690, 5697, 6214, 5712, 5698, 6214,
|
|
5702, 5710, 5715, 5721, 5722, 5718, 5731, 5741, 5725, 5729,
|
|
5730, 5748, 5749, 5740, 5755, 6214, 6214, 5761, 6214, 5762,
|
|
5764, 5765, 6214, 5757, 5769, 6214, 5758, 5771, 5768, 5773,
|
|
6214, 6214, 5776, 5784, 6214, 5779, 5788, 5785, 5782, 5786,
|
|
5789, 6214, 6214, 6214, 6214, 6214, 5815, 6214, 5803, 5799,
|
|
5806, 6214, 5800, 5797, 5809, 5821, 5825, 5828, 5812, 5826,
|
|
5831, 5838, 5845, 5856, 5858, 5857, 5855, 5861, 5848, 5847,
|
|
5868, 5863, 5869, 6214, 5864, 6214, 5874, 6214, 5875, 5881,
|
|
5885, 5883, 5886, 5884, 6214, 5891, 5910, 5888, 5896, 5904,
|
|
|
|
5901, 5911, 5922, 5906, 5929, 5934, 5937, 5940, 5941, 5931,
|
|
5944, 5948, 6214, 5952, 5936, 5938, 5956, 5947, 5963, 6214,
|
|
5965, 5961, 5962, 5972, 5977, 5982, 5975, 5990, 5995, 5993,
|
|
5999, 5992, 6000, 6003, 6008, 5997, 6023, 6012, 6214, 6024,
|
|
6027, 6017, 6021, 6033, 6022, 6026, 6046, 6052, 6050, 6062,
|
|
6064, 6058, 6214, 6061, 6214, 6214, 6070, 6059, 6063, 6069,
|
|
6071, 6214, 6214, 6214, 6122, 6129, 6136, 6143, 6150, 100,
|
|
6157, 6164, 6171, 6178, 6185, 6192, 6199, 6206
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_def[2179] =
|
|
{ 0,
|
|
2164, 1, 2165, 2165, 2166, 2166, 2167, 2167, 2168, 2168,
|
|
2169, 2169, 2164, 2170, 2164, 2164, 2164, 2164, 2171, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2172, 2164, 2164, 2164, 2172, 2173, 2164, 2164, 2164, 2173,
|
|
2174, 2164, 2164, 2164, 2164, 2174, 2175, 2164, 2164, 2164,
|
|
2175, 2176, 2164, 2177, 2164, 2176, 2176, 2170, 2170, 2164,
|
|
2178, 2171, 2178, 2171, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2172, 2172, 2173, 2173, 2174, 2174, 2164, 2175, 2175, 2176,
|
|
2176, 2177, 2177, 2176, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2176, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2176, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2164, 2176, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2176,
|
|
2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170,
|
|
2164, 2164, 2170, 2164, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2176, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2176, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2164,
|
|
2170, 2170, 2170, 2164, 2170, 2164, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2164,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2164, 2170, 2170, 2164, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2164, 2170, 2164, 2170, 2164,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2164,
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2164, 2170, 2164, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2164, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2164, 2170, 2170, 2164, 2170, 2170, 2170, 2164,
|
|
2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2164, 2164, 2170, 2170,
|
|
2170, 2170, 2170, 2164, 2164, 2164, 2170, 2164, 2170, 2164,
|
|
|
|
2164, 2170, 2170, 2170, 2164, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2164, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2164, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2164, 2164,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170,
|
|
2170, 2170, 2164, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2164, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2164, 2164, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2164,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2164, 2170, 2170,
|
|
2170, 2164, 2170, 2164, 2164, 2170, 2164, 2170, 2164, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2164,
|
|
2164, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2170, 2170, 2170, 2164, 2170, 2164, 2164, 2164,
|
|
2170, 2170, 2170, 2164, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2170, 2164, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170, 2170,
|
|
2170, 2170, 2170, 2164, 2170, 2170, 2164, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2164, 2170, 2164, 2164, 2164,
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2164,
|
|
2164, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2164,
|
|
2170, 2164, 2170, 2170, 2170, 2164, 2164, 2164, 2170, 2164,
|
|
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2164, 2170, 2170, 2164,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2164, 2164, 2170, 2164, 2170,
|
|
2170, 2170, 2164, 2170, 2170, 2164, 2170, 2170, 2170, 2170,
|
|
2164, 2164, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2164, 2164, 2164, 2164, 2170, 2164, 2170, 2170,
|
|
2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2164, 2170, 2164, 2170, 2164, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170,
|
|
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2164, 2170, 2170, 2170, 2170, 2170, 2170, 2164,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2164, 2170,
|
|
2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170,
|
|
2170, 2170, 2164, 2170, 2164, 2164, 2170, 2170, 2170, 2170,
|
|
2170, 2164, 2164, 0, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164
|
|
} ;
|
|
|
|
static yyconst flex_uint16_t yy_nxt[6281] =
|
|
{ 0,
|
|
14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
|
|
14, 14, 18, 20, 14, 21, 22, 23, 24, 14,
|
|
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
|
|
35, 36, 37, 38, 39, 14, 14, 14, 14, 40,
|
|
20, 14, 21, 22, 23, 24, 14, 25, 26, 27,
|
|
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
|
|
38, 39, 14, 14, 14, 14, 42, 43, 44, 42,
|
|
43, 44, 47, 48, 47, 48, 49, 97, 49, 52,
|
|
53, 54, 55, 805, 18, 52, 53, 54, 55, 69,
|
|
18, 58, 59, 60, 58, 59, 60, 70, 131, 131,
|
|
|
|
68, 71, 87, 45, 97, 133, 45, 141, 133, 50,
|
|
73, 50, 73, 73, 69, 73, 141, 56, 99, 138,
|
|
138, 73, 88, 56, 139, 69, 75, 76, 61, 87,
|
|
69, 61, 15, 16, 17, 63, 64, 65, 15, 16,
|
|
17, 63, 64, 65, 77, 99, 89, 137, 74, 88,
|
|
69, 91, 66, 75, 76, 78, 145, 107, 66, 92,
|
|
90, 70, 79, 69, 990, 71, 80, 173, 98, 81,
|
|
67, 77, 69, 89, 131, 131, 67, 69, 91, 66,
|
|
69, 69, 78, 145, 107, 66, 92, 90, 93, 79,
|
|
69, 94, 69, 80, 100, 98, 81, 82, 95, 69,
|
|
|
|
96, 83, 101, 136, 84, 197, 85, 86, 102, 134,
|
|
104, 69, 103, 113, 105, 93, 147, 69, 94, 69,
|
|
69, 100, 146, 69, 82, 95, 69, 96, 83, 101,
|
|
106, 84, 197, 85, 86, 102, 69, 104, 114, 103,
|
|
113, 105, 115, 147, 133, 69, 123, 133, 124, 146,
|
|
179, 132, 116, 69, 126, 117, 157, 106, 108, 127,
|
|
69, 69, 109, 125, 69, 114, 128, 69, 110, 115,
|
|
129, 111, 69, 123, 130, 124, 151, 179, 112, 116,
|
|
69, 126, 117, 157, 141, 108, 127, 138, 138, 109,
|
|
125, 144, 69, 128, 69, 110, 208, 129, 111, 158,
|
|
|
|
897, 130, 69, 151, 141, 112, 118, 69, 68, 119,
|
|
68, 68, 135, 68, 135, 135, 120, 135, 144, 68,
|
|
121, 122, 73, 208, 73, 73, 158, 73, 69, 140,
|
|
69, 140, 140, 118, 140, 68, 119, 68, 68, 73,
|
|
68, 73, 73, 120, 73, 148, 68, 121, 122, 152,
|
|
73, 161, 150, 153, 155, 156, 139, 159, 149, 154,
|
|
143, 69, 69, 69, 69, 137, 162, 163, 166, 69,
|
|
136, 357, 148, 69, 69, 160, 152, 74, 161, 150,
|
|
153, 155, 156, 69, 167, 149, 154, 164, 165, 69,
|
|
168, 69, 174, 162, 163, 166, 69, 69, 69, 180,
|
|
|
|
69, 134, 160, 69, 169, 175, 69, 170, 183, 177,
|
|
182, 167, 69, 178, 164, 165, 181, 168, 184, 174,
|
|
171, 172, 69, 188, 132, 176, 180, 69, 69, 69,
|
|
69, 169, 175, 69, 170, 183, 177, 182, 69, 69,
|
|
178, 185, 186, 181, 187, 184, 69, 171, 172, 69,
|
|
188, 189, 176, 69, 190, 69, 192, 194, 191, 195,
|
|
69, 193, 198, 69, 69, 196, 201, 202, 185, 186,
|
|
69, 187, 2164, 69, 2164, 204, 69, 2164, 189, 2164,
|
|
69, 190, 203, 192, 194, 191, 195, 69, 193, 198,
|
|
199, 206, 196, 201, 200, 205, 207, 69, 2164, 69,
|
|
|
|
69, 69, 204, 69, 209, 211, 213, 69, 214, 203,
|
|
2164, 212, 2164, 2164, 2164, 69, 2164, 199, 206, 2164,
|
|
2164, 200, 205, 207, 215, 210, 69, 69, 216, 69,
|
|
69, 209, 211, 213, 135, 214, 135, 135, 212, 135,
|
|
140, 217, 140, 140, 73, 140, 73, 73, 141, 73,
|
|
69, 215, 210, 218, 220, 216, 219, 221, 2164, 223,
|
|
224, 225, 69, 222, 229, 69, 69, 226, 2164, 69,
|
|
227, 2164, 228, 69, 238, 69, 2164, 258, 69, 2164,
|
|
218, 220, 143, 219, 221, 69, 223, 224, 316, 240,
|
|
222, 230, 69, 69, 226, 231, 69, 227, 69, 228,
|
|
|
|
69, 238, 239, 241, 242, 243, 246, 245, 69, 69,
|
|
69, 69, 232, 2164, 244, 249, 240, 69, 69, 69,
|
|
69, 2164, 231, 2164, 69, 69, 250, 251, 69, 239,
|
|
241, 242, 243, 246, 245, 259, 69, 262, 2164, 232,
|
|
233, 244, 249, 247, 256, 234, 248, 263, 69, 69,
|
|
235, 69, 2164, 250, 251, 257, 236, 237, 69, 252,
|
|
265, 69, 259, 69, 253, 69, 69, 233, 260, 69,
|
|
247, 256, 234, 248, 263, 264, 254, 235, 255, 261,
|
|
267, 69, 257, 236, 237, 69, 252, 266, 268, 2164,
|
|
269, 253, 69, 2164, 270, 271, 274, 272, 273, 275,
|
|
|
|
69, 69, 264, 254, 69, 255, 261, 277, 69, 69,
|
|
69, 284, 69, 276, 266, 287, 69, 269, 69, 69,
|
|
69, 270, 271, 274, 272, 273, 275, 69, 279, 69,
|
|
278, 280, 281, 282, 277, 291, 283, 289, 69, 69,
|
|
276, 69, 69, 69, 285, 286, 290, 69, 294, 297,
|
|
2164, 2164, 304, 69, 69, 279, 69, 278, 280, 281,
|
|
282, 288, 69, 283, 289, 293, 69, 69, 69, 292,
|
|
295, 285, 286, 290, 69, 294, 306, 69, 298, 300,
|
|
69, 69, 301, 69, 69, 303, 302, 307, 288, 305,
|
|
2164, 309, 293, 296, 69, 299, 292, 141, 311, 69,
|
|
|
|
69, 2164, 69, 69, 69, 298, 300, 313, 69, 301,
|
|
308, 69, 303, 302, 307, 310, 305, 69, 309, 312,
|
|
296, 69, 299, 69, 314, 311, 315, 317, 69, 318,
|
|
320, 69, 319, 321, 313, 2164, 69, 308, 322, 325,
|
|
323, 69, 310, 324, 327, 69, 312, 328, 330, 69,
|
|
2164, 314, 69, 315, 317, 69, 318, 320, 69, 319,
|
|
321, 69, 69, 69, 326, 322, 329, 323, 331, 332,
|
|
324, 69, 334, 69, 328, 69, 69, 69, 69, 333,
|
|
69, 335, 338, 337, 2164, 69, 69, 336, 69, 339,
|
|
343, 326, 69, 329, 340, 331, 332, 2164, 69, 334,
|
|
|
|
342, 344, 345, 341, 2164, 69, 333, 69, 335, 338,
|
|
337, 69, 69, 364, 336, 69, 339, 69, 350, 351,
|
|
69, 340, 69, 346, 353, 69, 2164, 342, 344, 345,
|
|
341, 347, 348, 354, 349, 2164, 69, 352, 69, 358,
|
|
69, 69, 2164, 69, 359, 350, 351, 360, 69, 370,
|
|
346, 353, 355, 356, 69, 361, 69, 362, 347, 348,
|
|
354, 349, 366, 69, 352, 363, 358, 69, 365, 367,
|
|
369, 359, 368, 372, 360, 69, 370, 69, 374, 355,
|
|
356, 69, 361, 69, 362, 69, 371, 375, 69, 366,
|
|
69, 526, 363, 373, 69, 365, 367, 369, 69, 368,
|
|
|
|
69, 376, 378, 380, 379, 69, 385, 377, 2164, 69,
|
|
69, 2164, 389, 371, 375, 386, 69, 384, 69, 69,
|
|
373, 2164, 381, 69, 390, 382, 69, 383, 376, 378,
|
|
380, 379, 387, 69, 377, 69, 69, 69, 69, 389,
|
|
388, 392, 386, 391, 384, 394, 69, 410, 402, 381,
|
|
404, 390, 382, 403, 383, 405, 69, 393, 69, 387,
|
|
69, 408, 2164, 406, 452, 69, 407, 388, 392, 141,
|
|
391, 69, 394, 69, 69, 402, 409, 411, 69, 69,
|
|
403, 69, 69, 69, 393, 395, 396, 412, 408, 413,
|
|
406, 452, 2164, 407, 69, 397, 69, 398, 399, 400,
|
|
|
|
2164, 415, 401, 409, 411, 414, 416, 417, 418, 421,
|
|
69, 2164, 395, 396, 412, 69, 413, 69, 69, 419,
|
|
423, 424, 397, 69, 398, 399, 400, 420, 415, 401,
|
|
427, 69, 414, 416, 69, 418, 422, 69, 69, 69,
|
|
69, 69, 428, 69, 425, 426, 419, 423, 424, 429,
|
|
431, 430, 2164, 69, 420, 2164, 432, 427, 435, 433,
|
|
69, 2164, 441, 422, 69, 2164, 2164, 69, 436, 428,
|
|
440, 444, 443, 69, 434, 69, 429, 431, 430, 69,
|
|
437, 69, 69, 432, 69, 435, 433, 442, 69, 441,
|
|
69, 438, 446, 439, 445, 436, 450, 440, 69, 443,
|
|
|
|
69, 434, 447, 69, 448, 449, 451, 437, 453, 454,
|
|
69, 2164, 69, 69, 442, 455, 476, 457, 438, 446,
|
|
439, 445, 69, 450, 456, 69, 69, 458, 69, 447,
|
|
69, 448, 449, 451, 69, 453, 461, 459, 69, 69,
|
|
460, 69, 455, 462, 457, 69, 463, 464, 69, 465,
|
|
2164, 456, 69, 69, 458, 69, 466, 2164, 468, 69,
|
|
467, 469, 2164, 461, 459, 470, 69, 460, 69, 69,
|
|
462, 471, 69, 463, 464, 69, 465, 69, 507, 69,
|
|
480, 475, 69, 466, 477, 468, 69, 467, 469, 474,
|
|
478, 472, 470, 473, 69, 481, 69, 479, 471, 69,
|
|
|
|
69, 482, 69, 483, 69, 507, 485, 480, 475, 486,
|
|
69, 477, 69, 523, 489, 488, 474, 478, 472, 69,
|
|
473, 69, 69, 491, 479, 69, 484, 69, 482, 487,
|
|
2164, 69, 490, 485, 69, 69, 486, 69, 492, 493,
|
|
523, 489, 488, 501, 69, 69, 502, 69, 500, 69,
|
|
491, 69, 503, 484, 505, 69, 487, 69, 2164, 490,
|
|
509, 506, 504, 2164, 510, 492, 493, 494, 69, 508,
|
|
501, 69, 495, 502, 496, 500, 69, 2164, 69, 2164,
|
|
511, 505, 497, 521, 69, 498, 69, 509, 506, 504,
|
|
512, 510, 499, 69, 494, 69, 508, 513, 514, 495,
|
|
|
|
515, 496, 69, 69, 518, 69, 517, 511, 516, 497,
|
|
525, 519, 498, 520, 69, 69, 69, 512, 527, 499,
|
|
524, 529, 69, 2164, 513, 514, 69, 515, 522, 69,
|
|
528, 518, 69, 517, 69, 516, 141, 525, 519, 530,
|
|
520, 531, 533, 69, 532, 69, 534, 524, 535, 537,
|
|
69, 536, 541, 69, 69, 522, 69, 528, 538, 69,
|
|
69, 542, 544, 539, 69, 69, 530, 540, 531, 533,
|
|
69, 532, 543, 534, 545, 535, 537, 546, 536, 69,
|
|
547, 69, 2164, 548, 549, 551, 69, 550, 69, 69,
|
|
69, 552, 69, 553, 540, 557, 2164, 555, 2164, 558,
|
|
|
|
2164, 69, 559, 2164, 69, 69, 69, 547, 69, 69,
|
|
548, 549, 551, 554, 550, 69, 69, 564, 556, 69,
|
|
553, 69, 69, 69, 555, 69, 558, 69, 560, 559,
|
|
563, 566, 565, 561, 567, 568, 569, 562, 2164, 69,
|
|
554, 69, 571, 69, 564, 556, 2164, 570, 69, 572,
|
|
2164, 574, 69, 69, 582, 560, 69, 563, 566, 565,
|
|
561, 567, 568, 575, 562, 69, 69, 2164, 69, 571,
|
|
576, 573, 69, 69, 570, 577, 572, 578, 574, 581,
|
|
580, 69, 579, 2164, 583, 69, 69, 587, 584, 69,
|
|
575, 69, 585, 589, 69, 586, 69, 576, 573, 69,
|
|
|
|
69, 590, 577, 592, 578, 69, 581, 580, 588, 579,
|
|
591, 583, 69, 2164, 587, 584, 69, 69, 593, 585,
|
|
596, 69, 586, 69, 594, 69, 598, 69, 590, 595,
|
|
592, 2164, 597, 599, 69, 588, 600, 601, 603, 2164,
|
|
69, 69, 69, 605, 604, 593, 69, 596, 606, 2164,
|
|
607, 2164, 602, 69, 69, 608, 69, 69, 69, 597,
|
|
599, 69, 609, 600, 601, 603, 69, 611, 617, 2164,
|
|
610, 604, 612, 616, 613, 69, 69, 607, 69, 602,
|
|
614, 69, 608, 69, 615, 2164, 69, 69, 69, 609,
|
|
618, 69, 69, 621, 611, 617, 69, 610, 620, 612,
|
|
|
|
616, 613, 69, 619, 622, 69, 69, 614, 623, 2164,
|
|
624, 615, 69, 625, 2164, 626, 69, 618, 69, 628,
|
|
621, 629, 2164, 630, 632, 620, 2164, 627, 2164, 2164,
|
|
619, 69, 69, 631, 633, 623, 69, 624, 69, 69,
|
|
625, 69, 626, 69, 69, 634, 628, 69, 629, 635,
|
|
630, 632, 636, 637, 627, 638, 69, 640, 645, 639,
|
|
631, 633, 69, 641, 69, 69, 642, 643, 650, 644,
|
|
69, 69, 634, 2164, 69, 69, 635, 69, 2164, 636,
|
|
637, 69, 638, 648, 640, 645, 639, 646, 141, 649,
|
|
641, 69, 69, 642, 643, 647, 644, 69, 651, 655,
|
|
|
|
69, 69, 653, 652, 2164, 69, 654, 2164, 656, 657,
|
|
648, 665, 672, 69, 646, 69, 649, 69, 69, 658,
|
|
668, 69, 647, 69, 666, 651, 69, 69, 670, 653,
|
|
652, 69, 659, 654, 69, 656, 657, 2164, 665, 69,
|
|
2164, 69, 669, 667, 69, 671, 658, 668, 2164, 707,
|
|
2164, 666, 681, 680, 69, 670, 685, 682, 69, 659,
|
|
660, 69, 684, 2164, 661, 69, 69, 662, 686, 669,
|
|
667, 69, 671, 687, 663, 69, 683, 664, 69, 681,
|
|
680, 69, 69, 69, 682, 688, 69, 660, 69, 684,
|
|
691, 661, 689, 690, 662, 686, 2164, 69, 694, 69,
|
|
|
|
687, 663, 692, 683, 664, 673, 674, 2164, 675, 693,
|
|
2164, 676, 688, 69, 69, 69, 677, 691, 69, 689,
|
|
690, 696, 678, 679, 69, 694, 699, 698, 69, 692,
|
|
700, 69, 673, 674, 69, 675, 693, 695, 676, 697,
|
|
704, 708, 69, 677, 703, 69, 69, 69, 696, 678,
|
|
679, 702, 69, 699, 698, 701, 705, 700, 706, 69,
|
|
69, 720, 69, 709, 695, 710, 697, 704, 69, 711,
|
|
712, 703, 713, 69, 715, 717, 714, 718, 702, 2164,
|
|
69, 69, 701, 69, 2164, 706, 69, 69, 69, 69,
|
|
709, 719, 710, 69, 69, 69, 711, 712, 69, 713,
|
|
|
|
716, 715, 69, 714, 718, 721, 722, 723, 69, 725,
|
|
69, 724, 729, 69, 727, 726, 730, 728, 719, 69,
|
|
734, 733, 2164, 2164, 69, 69, 2164, 716, 69, 69,
|
|
69, 69, 721, 722, 723, 69, 725, 731, 724, 729,
|
|
69, 727, 726, 730, 728, 732, 69, 69, 733, 735,
|
|
737, 736, 738, 739, 743, 69, 69, 741, 69, 69,
|
|
740, 69, 742, 69, 731, 745, 744, 69, 749, 747,
|
|
748, 746, 732, 69, 69, 69, 735, 737, 736, 738,
|
|
739, 743, 69, 69, 741, 69, 69, 740, 752, 742,
|
|
751, 69, 745, 744, 750, 69, 747, 748, 746, 753,
|
|
|
|
754, 69, 755, 69, 2164, 759, 758, 756, 761, 760,
|
|
69, 69, 764, 765, 762, 757, 763, 751, 2164, 767,
|
|
69, 750, 69, 69, 769, 69, 69, 754, 69, 755,
|
|
766, 69, 759, 758, 756, 69, 760, 69, 69, 764,
|
|
69, 762, 757, 763, 768, 69, 69, 770, 772, 771,
|
|
774, 141, 773, 69, 775, 69, 69, 766, 776, 69,
|
|
784, 69, 2164, 69, 69, 791, 785, 2164, 2164, 783,
|
|
792, 768, 69, 2164, 770, 772, 771, 774, 69, 773,
|
|
786, 775, 69, 69, 789, 776, 777, 784, 778, 787,
|
|
788, 2164, 779, 785, 780, 69, 783, 69, 2164, 781,
|
|
|
|
794, 790, 69, 798, 782, 793, 69, 786, 795, 799,
|
|
69, 789, 69, 777, 69, 778, 787, 788, 69, 779,
|
|
69, 780, 69, 69, 796, 69, 781, 794, 790, 801,
|
|
798, 782, 793, 800, 797, 795, 799, 802, 803, 69,
|
|
804, 812, 69, 2164, 2164, 2164, 69, 811, 821, 2164,
|
|
816, 796, 813, 2164, 814, 2164, 801, 815, 69, 823,
|
|
800, 797, 69, 69, 802, 69, 817, 69, 812, 69,
|
|
69, 806, 69, 818, 811, 69, 807, 816, 808, 813,
|
|
819, 814, 820, 69, 815, 69, 69, 822, 69, 809,
|
|
69, 69, 826, 817, 824, 827, 810, 69, 806, 2164,
|
|
|
|
818, 2164, 828, 807, 825, 808, 69, 819, 830, 820,
|
|
69, 832, 69, 841, 822, 831, 809, 829, 69, 826,
|
|
2164, 824, 69, 810, 69, 69, 69, 69, 833, 828,
|
|
835, 825, 834, 69, 836, 830, 837, 2164, 832, 2164,
|
|
69, 69, 831, 838, 829, 69, 69, 839, 840, 69,
|
|
69, 842, 69, 850, 843, 833, 845, 835, 844, 834,
|
|
846, 836, 69, 837, 69, 69, 69, 69, 69, 847,
|
|
838, 848, 849, 851, 839, 840, 862, 853, 842, 69,
|
|
850, 843, 69, 845, 854, 844, 852, 846, 69, 855,
|
|
69, 69, 856, 69, 2164, 857, 847, 858, 848, 849,
|
|
|
|
69, 859, 860, 861, 853, 69, 865, 864, 69, 69,
|
|
863, 871, 69, 852, 69, 69, 69, 69, 69, 856,
|
|
866, 69, 857, 868, 858, 867, 869, 2164, 859, 860,
|
|
861, 69, 69, 865, 864, 872, 69, 863, 871, 870,
|
|
873, 874, 69, 882, 2164, 69, 69, 866, 69, 876,
|
|
868, 875, 867, 869, 69, 877, 878, 880, 69, 881,
|
|
2164, 69, 872, 879, 69, 69, 870, 873, 69, 69,
|
|
883, 69, 884, 69, 886, 69, 876, 887, 875, 69,
|
|
885, 888, 877, 878, 880, 889, 881, 890, 891, 69,
|
|
879, 892, 69, 69, 69, 893, 69, 883, 69, 884,
|
|
|
|
69, 886, 894, 895, 887, 896, 899, 885, 888, 901,
|
|
69, 69, 898, 69, 903, 891, 69, 69, 892, 69,
|
|
69, 69, 69, 900, 69, 904, 902, 69, 905, 894,
|
|
895, 69, 896, 899, 69, 69, 901, 69, 906, 898,
|
|
907, 903, 908, 2164, 2164, 2164, 909, 911, 912, 2164,
|
|
900, 2164, 904, 902, 910, 905, 913, 919, 915, 916,
|
|
69, 69, 2164, 2164, 69, 914, 69, 927, 917, 908,
|
|
69, 69, 69, 909, 911, 912, 69, 69, 69, 69,
|
|
69, 910, 918, 913, 69, 915, 916, 920, 921, 922,
|
|
69, 923, 914, 69, 927, 917, 932, 69, 69, 928,
|
|
|
|
69, 2164, 929, 931, 935, 69, 924, 933, 2164, 918,
|
|
69, 930, 69, 934, 920, 921, 922, 925, 923, 936,
|
|
926, 69, 69, 932, 69, 69, 928, 69, 69, 929,
|
|
931, 935, 938, 924, 933, 69, 940, 937, 930, 939,
|
|
934, 69, 942, 941, 925, 69, 936, 926, 943, 946,
|
|
69, 944, 945, 2164, 69, 69, 948, 69, 954, 69,
|
|
69, 949, 69, 940, 937, 69, 939, 69, 947, 942,
|
|
941, 69, 950, 951, 69, 943, 946, 2164, 944, 945,
|
|
69, 955, 69, 948, 69, 952, 953, 956, 949, 957,
|
|
69, 968, 69, 958, 69, 947, 69, 962, 960, 950,
|
|
|
|
951, 965, 959, 961, 69, 69, 69, 964, 955, 963,
|
|
2164, 966, 952, 953, 956, 69, 957, 69, 969, 967,
|
|
958, 69, 69, 69, 962, 69, 970, 69, 965, 959,
|
|
69, 971, 972, 973, 964, 974, 963, 69, 966, 976,
|
|
975, 977, 979, 978, 69, 969, 967, 69, 69, 69,
|
|
980, 69, 981, 970, 69, 69, 69, 69, 971, 972,
|
|
973, 69, 974, 69, 982, 983, 976, 975, 977, 979,
|
|
978, 2164, 992, 2164, 991, 2164, 995, 2164, 996, 989,
|
|
994, 2164, 69, 997, 69, 993, 69, 2164, 69, 69,
|
|
69, 982, 983, 984, 69, 69, 998, 69, 985, 992,
|
|
|
|
986, 991, 987, 995, 988, 69, 989, 994, 999, 69,
|
|
69, 69, 993, 1000, 1001, 1002, 1004, 1003, 2164, 1008,
|
|
984, 69, 1006, 998, 69, 985, 69, 986, 69, 987,
|
|
69, 988, 1007, 69, 69, 999, 1005, 1010, 1009, 1012,
|
|
1000, 1001, 1002, 1004, 1003, 69, 69, 1011, 1013, 1006,
|
|
69, 1014, 1016, 1015, 69, 1017, 69, 1019, 2164, 1007,
|
|
69, 69, 1018, 1005, 69, 1009, 1012, 1022, 69, 1020,
|
|
1021, 69, 1024, 1023, 1011, 1013, 69, 69, 69, 69,
|
|
1015, 1025, 1017, 1026, 69, 1027, 69, 1028, 1029, 1018,
|
|
69, 1030, 69, 1032, 1022, 69, 1020, 1021, 69, 1024,
|
|
|
|
1023, 69, 1031, 1033, 69, 69, 1035, 1034, 1025, 1036,
|
|
1026, 1037, 1027, 1039, 1028, 69, 1040, 69, 69, 1038,
|
|
69, 69, 69, 69, 69, 69, 69, 1044, 1043, 1031,
|
|
1033, 1041, 1045, 1035, 1034, 69, 69, 1042, 1037, 1047,
|
|
1039, 1046, 69, 1050, 69, 69, 1038, 1051, 69, 1048,
|
|
69, 1049, 69, 69, 1044, 1043, 69, 1052, 1041, 1045,
|
|
1054, 2164, 1058, 1053, 1042, 69, 1047, 69, 1046, 69,
|
|
1050, 1055, 1056, 1059, 1051, 1060, 1048, 1057, 1049, 69,
|
|
69, 1063, 69, 1061, 69, 1066, 1062, 1054, 69, 1058,
|
|
1053, 1064, 69, 1065, 2164, 69, 1067, 1069, 1055, 1068,
|
|
|
|
1059, 1077, 1060, 69, 69, 69, 69, 1072, 1063, 69,
|
|
1061, 1070, 69, 1062, 1075, 69, 69, 69, 1064, 69,
|
|
1065, 1071, 1073, 1067, 1069, 1074, 1068, 1076, 1077, 69,
|
|
69, 69, 69, 1079, 1072, 1078, 69, 69, 1070, 1080,
|
|
2164, 1075, 1083, 1081, 2164, 1082, 69, 1084, 1071, 1073,
|
|
69, 69, 1074, 69, 1076, 69, 1085, 1087, 1090, 1086,
|
|
1079, 1088, 1078, 1093, 69, 1089, 1080, 69, 69, 1083,
|
|
1081, 1092, 1082, 1094, 1084, 69, 1091, 69, 69, 69,
|
|
1095, 1097, 69, 1085, 1087, 1090, 1086, 69, 1088, 1096,
|
|
1098, 1099, 1089, 69, 1103, 69, 2164, 1101, 1092, 1102,
|
|
|
|
2164, 1100, 69, 1091, 1108, 69, 69, 1095, 69, 69,
|
|
69, 69, 69, 69, 1112, 69, 1096, 1098, 1099, 69,
|
|
1104, 1103, 1106, 1115, 1101, 1105, 1102, 1107, 1100, 1109,
|
|
1110, 1108, 1111, 1113, 69, 1114, 1116, 69, 69, 1117,
|
|
69, 2164, 2164, 69, 69, 1118, 69, 69, 1124, 1125,
|
|
1115, 1121, 69, 69, 69, 1119, 1109, 1110, 1123, 1111,
|
|
1113, 1120, 1114, 69, 69, 1122, 1117, 2164, 69, 69,
|
|
69, 69, 1118, 69, 69, 1124, 1125, 1127, 1121, 1126,
|
|
1128, 1130, 1119, 1131, 1132, 1123, 1129, 1138, 1120, 1144,
|
|
1136, 2164, 1122, 1139, 69, 69, 2164, 69, 69, 1133,
|
|
|
|
2164, 69, 69, 1134, 69, 1140, 1126, 1128, 1130, 69,
|
|
1131, 1132, 1137, 1129, 69, 69, 1135, 1136, 1141, 1145,
|
|
1139, 69, 1142, 69, 69, 69, 1133, 1143, 69, 1146,
|
|
1134, 69, 1140, 1147, 69, 1148, 1149, 1150, 69, 1137,
|
|
1151, 2164, 1152, 1135, 2164, 1141, 69, 1153, 1158, 1142,
|
|
1154, 1155, 1157, 69, 1143, 69, 1146, 1156, 2164, 69,
|
|
1147, 69, 1148, 69, 69, 69, 1160, 69, 69, 1152,
|
|
69, 69, 1161, 1159, 1153, 1158, 69, 1154, 1155, 1157,
|
|
1162, 2164, 1163, 1164, 1156, 69, 1165, 69, 69, 1166,
|
|
1167, 1169, 1168, 69, 1170, 69, 1172, 2164, 69, 1161,
|
|
|
|
1159, 2164, 69, 69, 1173, 1181, 2164, 1162, 69, 1163,
|
|
1164, 1171, 69, 1165, 69, 1176, 1166, 1167, 69, 1168,
|
|
1174, 1170, 69, 1172, 69, 1175, 69, 69, 1177, 1178,
|
|
2164, 1173, 69, 69, 1179, 1180, 69, 69, 1171, 1182,
|
|
1183, 1184, 1176, 1185, 2164, 2164, 69, 1174, 1187, 1191,
|
|
69, 1189, 1175, 1190, 69, 1177, 1178, 69, 69, 69,
|
|
1193, 1179, 1180, 1186, 1188, 1199, 1182, 69, 1184, 69,
|
|
69, 69, 69, 1192, 1194, 1187, 1191, 69, 1189, 69,
|
|
1190, 1195, 1200, 1196, 69, 69, 1197, 1193, 69, 69,
|
|
1186, 1188, 1202, 1201, 1203, 1205, 69, 69, 1198, 1204,
|
|
|
|
1192, 1194, 1206, 1207, 69, 1210, 1212, 69, 1195, 1200,
|
|
1196, 69, 69, 1197, 69, 1209, 1208, 1211, 1214, 1202,
|
|
1201, 1203, 69, 69, 69, 1198, 1204, 69, 69, 1206,
|
|
1207, 1213, 1215, 1216, 2164, 69, 1220, 69, 69, 69,
|
|
69, 1217, 1209, 1208, 1211, 1214, 1218, 1219, 1221, 69,
|
|
69, 1222, 1224, 69, 69, 69, 1223, 2164, 1213, 69,
|
|
1216, 69, 1225, 1220, 1226, 1229, 69, 1227, 1217, 69,
|
|
69, 69, 1230, 1218, 1219, 1221, 1228, 1233, 1222, 69,
|
|
69, 1232, 69, 1223, 69, 1231, 1239, 1234, 69, 1225,
|
|
1235, 1226, 69, 69, 1227, 1236, 2164, 69, 1240, 1230,
|
|
|
|
1241, 1243, 1242, 1228, 1233, 69, 69, 69, 1232, 69,
|
|
1244, 1237, 1231, 1239, 1234, 1246, 1238, 1235, 1248, 1245,
|
|
1252, 1249, 1236, 69, 1251, 69, 69, 69, 1243, 1242,
|
|
69, 1247, 69, 69, 1250, 1254, 69, 1244, 1237, 69,
|
|
1256, 1255, 1246, 1238, 1253, 1248, 1245, 69, 1249, 69,
|
|
69, 69, 69, 69, 1257, 1258, 69, 1259, 1247, 69,
|
|
1260, 1250, 1254, 1261, 1262, 69, 1264, 1256, 1255, 69,
|
|
69, 1253, 1265, 1270, 1263, 69, 1267, 1272, 1271, 1268,
|
|
1274, 1257, 1258, 1276, 1259, 1279, 1266, 1260, 69, 69,
|
|
1261, 1262, 69, 1264, 69, 1269, 1275, 2164, 69, 1265,
|
|
|
|
1277, 1263, 1273, 1267, 69, 69, 1268, 1278, 1283, 69,
|
|
1280, 69, 69, 1266, 69, 69, 69, 69, 69, 1281,
|
|
1284, 69, 1269, 1275, 69, 1282, 1285, 1277, 1287, 1273,
|
|
1288, 1289, 1286, 1291, 1278, 1283, 69, 1280, 1293, 69,
|
|
69, 69, 69, 69, 1292, 1290, 1281, 1284, 1294, 1297,
|
|
1300, 69, 1282, 1285, 69, 1287, 1295, 1296, 1289, 1286,
|
|
69, 69, 69, 1311, 1298, 1293, 1307, 69, 69, 1299,
|
|
69, 1292, 1290, 1301, 1302, 1294, 1297, 69, 69, 69,
|
|
1303, 69, 1304, 1295, 1296, 1305, 69, 1308, 1313, 1310,
|
|
69, 1298, 1306, 69, 69, 69, 1299, 69, 69, 69,
|
|
|
|
1301, 1302, 69, 1312, 1309, 1315, 1314, 1303, 1316, 1304,
|
|
69, 1317, 1305, 69, 1308, 69, 1310, 1318, 1319, 1306,
|
|
2164, 1323, 1324, 69, 1320, 69, 69, 69, 69, 69,
|
|
1312, 1309, 1315, 1314, 1321, 69, 1322, 69, 1317, 69,
|
|
1325, 2164, 69, 69, 1318, 1319, 1326, 1327, 1323, 1324,
|
|
1329, 1320, 69, 1331, 1330, 1335, 1332, 69, 69, 1336,
|
|
1328, 1321, 69, 1322, 1333, 69, 69, 1325, 69, 1337,
|
|
69, 1334, 1338, 1326, 1327, 1340, 69, 1329, 1339, 69,
|
|
69, 1330, 1335, 1341, 69, 1342, 69, 1328, 69, 1343,
|
|
1344, 1333, 1345, 1346, 1348, 2164, 1337, 1349, 1334, 69,
|
|
|
|
1350, 69, 69, 1351, 2164, 1339, 69, 1347, 2164, 69,
|
|
1341, 1358, 2164, 69, 2164, 1360, 1343, 69, 69, 1345,
|
|
1361, 1348, 69, 1364, 69, 69, 69, 1350, 1362, 1352,
|
|
1353, 1354, 1356, 1357, 1347, 69, 1355, 1370, 1359, 69,
|
|
69, 69, 1363, 69, 69, 69, 1366, 69, 69, 1369,
|
|
69, 1365, 69, 1371, 1367, 1362, 1352, 1353, 1354, 1356,
|
|
1357, 69, 1368, 1355, 69, 1359, 1373, 69, 1372, 1363,
|
|
1374, 69, 69, 1366, 69, 69, 1369, 1378, 1365, 1375,
|
|
1371, 1367, 69, 1376, 1377, 69, 1379, 69, 1382, 1368,
|
|
1381, 1380, 1385, 69, 1384, 1372, 1386, 1374, 1383, 69,
|
|
|
|
1387, 69, 69, 69, 1378, 69, 1375, 1388, 1389, 1390,
|
|
1376, 1377, 69, 1379, 69, 1391, 69, 1381, 1380, 1393,
|
|
69, 1384, 1392, 69, 69, 1383, 69, 69, 69, 69,
|
|
1394, 1395, 69, 1396, 1388, 1389, 1390, 69, 1397, 69,
|
|
1398, 1401, 1391, 69, 1400, 1404, 1393, 1402, 1406, 1392,
|
|
69, 1405, 69, 69, 1403, 69, 1399, 1394, 1395, 69,
|
|
1396, 1409, 1413, 69, 1410, 1397, 69, 1398, 1401, 69,
|
|
69, 1400, 1404, 1411, 1402, 69, 1414, 69, 1405, 1407,
|
|
1412, 1403, 1417, 1399, 1408, 1415, 69, 69, 69, 1419,
|
|
1416, 1410, 1418, 69, 69, 69, 1420, 1421, 1422, 1424,
|
|
|
|
1411, 69, 1425, 69, 69, 1423, 1407, 1412, 1426, 1427,
|
|
1430, 1408, 69, 69, 69, 1428, 1419, 69, 1431, 1418,
|
|
69, 69, 1429, 1432, 1421, 1422, 1424, 1434, 69, 1436,
|
|
69, 1433, 1423, 1435, 69, 1426, 69, 1430, 69, 1438,
|
|
1437, 69, 1428, 1439, 1440, 69, 69, 1441, 1442, 1429,
|
|
69, 69, 2164, 1444, 69, 1445, 1436, 69, 1433, 69,
|
|
1435, 69, 69, 69, 1443, 69, 1438, 1437, 69, 1447,
|
|
1439, 1440, 1446, 69, 1441, 1442, 1448, 1449, 1450, 69,
|
|
69, 1451, 1445, 69, 1452, 1454, 1456, 69, 1453, 69,
|
|
2164, 1443, 1458, 1455, 69, 69, 69, 1457, 1459, 1446,
|
|
|
|
1460, 69, 1461, 1448, 1449, 1450, 69, 69, 1451, 1464,
|
|
69, 1452, 69, 1456, 1463, 1453, 69, 69, 69, 1458,
|
|
1455, 1462, 69, 1465, 1457, 1459, 69, 1460, 2164, 69,
|
|
1466, 1468, 69, 1467, 1469, 1470, 1464, 1472, 2164, 1473,
|
|
69, 1463, 2164, 1471, 69, 1475, 1479, 69, 1462, 1474,
|
|
2164, 69, 1486, 1476, 69, 69, 69, 1466, 1468, 69,
|
|
1467, 69, 1470, 69, 1472, 69, 1473, 69, 69, 1477,
|
|
1471, 1478, 1475, 1479, 1483, 1480, 1474, 69, 1481, 1486,
|
|
1476, 69, 1484, 1487, 69, 1485, 69, 69, 2164, 69,
|
|
1490, 1482, 69, 1488, 1489, 2164, 1477, 1491, 1478, 69,
|
|
|
|
1492, 1483, 1480, 1493, 1496, 1481, 1495, 69, 69, 1484,
|
|
1487, 2164, 1485, 69, 69, 69, 1497, 1490, 1482, 1498,
|
|
1488, 1489, 69, 1499, 1491, 1494, 69, 1492, 69, 69,
|
|
69, 1496, 69, 1495, 1501, 1500, 1502, 1503, 69, 2164,
|
|
1504, 69, 69, 1497, 1506, 1505, 1498, 1507, 1511, 1508,
|
|
1499, 69, 1494, 69, 1510, 1512, 1509, 69, 69, 69,
|
|
1513, 69, 1500, 1502, 1503, 1515, 69, 1504, 69, 1514,
|
|
1519, 1506, 1505, 1516, 69, 69, 1508, 69, 1521, 1524,
|
|
69, 1510, 1512, 1509, 69, 69, 1517, 1513, 1520, 1518,
|
|
1522, 69, 1515, 2164, 69, 69, 1514, 1519, 1525, 69,
|
|
|
|
1516, 69, 1527, 1523, 69, 69, 1524, 1526, 69, 69,
|
|
1528, 1529, 1530, 1517, 1531, 1520, 1518, 1522, 69, 69,
|
|
69, 69, 69, 1535, 1532, 1525, 1533, 1534, 69, 1527,
|
|
1523, 1536, 1537, 69, 1526, 69, 69, 1528, 1529, 1530,
|
|
1538, 1531, 1539, 1541, 1540, 69, 1546, 1542, 69, 69,
|
|
69, 1532, 1543, 1533, 1534, 1544, 1545, 69, 1536, 69,
|
|
2164, 1547, 1549, 69, 1550, 69, 69, 1538, 1551, 1539,
|
|
1541, 1540, 1553, 69, 69, 1548, 1554, 1552, 1555, 69,
|
|
69, 69, 1544, 1545, 1556, 1557, 1558, 69, 1547, 1549,
|
|
1559, 69, 69, 1561, 69, 1551, 1560, 69, 69, 1553,
|
|
|
|
69, 1567, 1548, 1564, 1552, 1555, 1562, 69, 69, 69,
|
|
69, 69, 1557, 1558, 1563, 69, 1568, 1559, 1565, 1569,
|
|
1561, 1566, 1570, 1560, 2164, 69, 69, 69, 69, 1572,
|
|
1564, 69, 69, 1562, 1571, 69, 1574, 69, 1578, 69,
|
|
69, 1563, 1573, 1568, 69, 1565, 1569, 1576, 1566, 1570,
|
|
69, 1575, 1577, 69, 69, 69, 1572, 1581, 69, 1580,
|
|
1579, 1571, 1583, 1574, 1582, 1578, 69, 1584, 1585, 1573,
|
|
1586, 69, 1587, 1588, 1576, 1591, 69, 2164, 1575, 1577,
|
|
69, 1589, 69, 1594, 69, 1595, 1580, 1579, 69, 1583,
|
|
1590, 1582, 1596, 69, 1584, 1585, 69, 1586, 1598, 69,
|
|
|
|
69, 69, 1591, 1592, 69, 1597, 1593, 1599, 1589, 1600,
|
|
69, 1601, 69, 69, 1602, 1603, 69, 1590, 1604, 69,
|
|
1605, 69, 1607, 69, 1610, 69, 1608, 69, 1611, 1606,
|
|
1592, 1609, 1597, 1593, 1599, 69, 69, 69, 69, 1613,
|
|
69, 1602, 1603, 1612, 1617, 1604, 1621, 69, 69, 69,
|
|
1615, 1610, 69, 1608, 69, 1611, 1606, 1614, 1609, 1616,
|
|
1619, 1618, 69, 1620, 69, 69, 69, 69, 69, 69,
|
|
1612, 69, 1622, 1621, 1623, 69, 1624, 1615, 1625, 1629,
|
|
1626, 1631, 69, 1628, 1614, 69, 1616, 1619, 1618, 1630,
|
|
1620, 1627, 69, 1632, 2164, 1642, 69, 69, 1634, 69,
|
|
|
|
69, 1623, 1633, 69, 69, 1625, 1629, 1626, 1631, 69,
|
|
1628, 1635, 69, 1636, 69, 69, 1630, 69, 1627, 1637,
|
|
1632, 1638, 1643, 1641, 1639, 1634, 1640, 69, 1646, 1633,
|
|
1644, 1647, 1655, 69, 1645, 69, 69, 69, 1635, 1648,
|
|
1636, 69, 69, 69, 69, 69, 1637, 1649, 1638, 1643,
|
|
1641, 1639, 69, 1640, 69, 1646, 1652, 1644, 1653, 1655,
|
|
1650, 1645, 1651, 69, 1654, 69, 1648, 69, 69, 1656,
|
|
1657, 1658, 1661, 1659, 1649, 1660, 69, 1662, 1664, 69,
|
|
69, 1663, 1665, 1652, 69, 1653, 1667, 1650, 1666, 1651,
|
|
69, 1654, 1668, 69, 69, 1671, 1656, 1657, 1658, 69,
|
|
|
|
1659, 69, 1660, 69, 69, 1669, 1670, 69, 1663, 69,
|
|
69, 1672, 69, 1667, 69, 1666, 1673, 1674, 69, 1668,
|
|
1675, 69, 1671, 1676, 1677, 1679, 1678, 1681, 1680, 1682,
|
|
69, 69, 1669, 1670, 69, 69, 1683, 1684, 1672, 69,
|
|
69, 1687, 69, 1673, 69, 1685, 69, 1675, 69, 69,
|
|
1676, 1677, 1679, 1678, 1681, 1680, 69, 69, 1686, 1688,
|
|
2164, 69, 1689, 1683, 1684, 1691, 1690, 2164, 1693, 69,
|
|
1692, 1695, 1685, 69, 1694, 1696, 2164, 1697, 69, 69,
|
|
69, 1698, 1699, 1700, 69, 1686, 1688, 69, 1701, 1689,
|
|
1702, 69, 1691, 1690, 69, 1693, 1703, 1692, 69, 69,
|
|
|
|
69, 1694, 1696, 69, 1697, 1705, 1704, 69, 1698, 69,
|
|
69, 69, 1708, 1706, 1707, 1710, 69, 1702, 1709, 1711,
|
|
69, 69, 1712, 1703, 1713, 2164, 1714, 69, 69, 69,
|
|
1715, 1717, 1705, 1704, 69, 1718, 69, 1716, 1720, 69,
|
|
1706, 1707, 1719, 1721, 1722, 1709, 1711, 69, 69, 1712,
|
|
1723, 69, 69, 1714, 1725, 69, 69, 69, 1717, 69,
|
|
69, 1724, 1718, 69, 1716, 1720, 1726, 1727, 1728, 1719,
|
|
69, 69, 1729, 1731, 1730, 1732, 69, 69, 2164, 1733,
|
|
69, 1725, 69, 69, 1734, 69, 1739, 69, 1724, 1736,
|
|
1747, 1735, 69, 1726, 1727, 1728, 69, 69, 69, 1729,
|
|
|
|
1731, 1730, 69, 69, 1737, 1740, 1733, 69, 1738, 1742,
|
|
1741, 1734, 69, 1739, 69, 1744, 1736, 69, 1735, 69,
|
|
1743, 69, 1745, 69, 69, 1748, 1746, 2164, 1749, 1750,
|
|
1751, 1737, 1740, 1752, 1753, 1738, 1742, 1741, 69, 69,
|
|
69, 1756, 1744, 69, 69, 1754, 69, 1743, 69, 1745,
|
|
69, 1755, 69, 1746, 69, 1749, 1750, 1751, 69, 69,
|
|
1752, 1753, 1757, 1760, 1758, 2164, 1759, 1761, 1756, 69,
|
|
1762, 1764, 1754, 69, 1768, 1763, 1769, 1765, 1755, 69,
|
|
1770, 1771, 69, 69, 1775, 69, 69, 1766, 1767, 1757,
|
|
69, 1758, 69, 1759, 1761, 69, 69, 1762, 1764, 69,
|
|
|
|
1772, 1768, 1763, 69, 1765, 1773, 69, 69, 1774, 69,
|
|
1780, 1775, 1776, 69, 1766, 1767, 69, 69, 1777, 69,
|
|
1778, 1779, 1781, 1782, 1785, 69, 1783, 1772, 69, 69,
|
|
1784, 69, 1773, 69, 1787, 1774, 1788, 1780, 1792, 1776,
|
|
1786, 1789, 69, 69, 1790, 1777, 69, 1778, 1779, 1781,
|
|
1782, 69, 69, 1783, 69, 1791, 69, 1784, 1793, 1794,
|
|
1795, 1787, 1796, 69, 69, 69, 1797, 1786, 1789, 1798,
|
|
69, 1790, 69, 1799, 2164, 1800, 1801, 1803, 69, 2164,
|
|
1802, 69, 1791, 1804, 1805, 1793, 69, 69, 1812, 1796,
|
|
1806, 69, 1809, 69, 69, 69, 1798, 1807, 69, 1810,
|
|
|
|
69, 69, 1800, 1801, 1803, 69, 69, 1802, 1808, 1813,
|
|
1804, 1805, 1814, 1811, 69, 69, 69, 1806, 1816, 1809,
|
|
69, 69, 1815, 2164, 1807, 69, 1810, 1818, 1820, 1817,
|
|
1819, 1821, 69, 1822, 1826, 1808, 69, 1825, 1823, 1814,
|
|
1811, 2164, 69, 1824, 69, 1827, 1852, 69, 1831, 1815,
|
|
69, 69, 1828, 69, 1818, 69, 1817, 1819, 69, 69,
|
|
1822, 1830, 1829, 1832, 1825, 1835, 69, 69, 69, 1833,
|
|
69, 1834, 1827, 69, 69, 1831, 1838, 1836, 69, 1828,
|
|
69, 1839, 1841, 1837, 69, 69, 69, 69, 1830, 1829,
|
|
1832, 1840, 1835, 1842, 69, 69, 1833, 69, 1834, 69,
|
|
|
|
69, 69, 1845, 1838, 1836, 1843, 1844, 1846, 1839, 1841,
|
|
1837, 1848, 69, 1847, 69, 69, 1849, 69, 1840, 1850,
|
|
1842, 1851, 1853, 69, 1856, 1855, 1854, 69, 1859, 69,
|
|
1861, 69, 1843, 1844, 1846, 1858, 1857, 1862, 1848, 2164,
|
|
1847, 69, 69, 69, 69, 69, 1850, 69, 1851, 69,
|
|
69, 1856, 1855, 1854, 1860, 1859, 69, 1861, 69, 1865,
|
|
1863, 1864, 1858, 1857, 69, 1866, 69, 69, 69, 1867,
|
|
1868, 1869, 1870, 1871, 1873, 1874, 1872, 1880, 1875, 1876,
|
|
2164, 1860, 69, 1879, 1877, 69, 1865, 1863, 1864, 69,
|
|
1878, 2164, 69, 69, 69, 1882, 1867, 69, 69, 69,
|
|
|
|
1871, 69, 69, 1872, 69, 1875, 69, 1883, 1884, 69,
|
|
1879, 69, 1881, 1885, 69, 69, 1888, 1878, 69, 1889,
|
|
1886, 1887, 1882, 1891, 1890, 1892, 1894, 2164, 69, 69,
|
|
69, 69, 69, 1893, 1883, 1884, 69, 1896, 69, 1881,
|
|
1885, 69, 1897, 1888, 1898, 69, 1889, 1886, 1887, 1895,
|
|
1891, 1890, 69, 1894, 1899, 1900, 1903, 69, 1906, 1901,
|
|
1893, 1902, 69, 69, 1896, 69, 69, 1907, 69, 1897,
|
|
69, 1898, 1904, 1905, 69, 1908, 1895, 69, 1909, 69,
|
|
69, 1899, 1900, 1903, 69, 69, 1901, 1910, 1902, 1911,
|
|
1913, 69, 1912, 1915, 1907, 1914, 1916, 2164, 1917, 1904,
|
|
|
|
1905, 69, 1908, 1918, 2164, 69, 1921, 69, 69, 69,
|
|
1919, 69, 2164, 1920, 1910, 2164, 1911, 69, 69, 1912,
|
|
1915, 1922, 1914, 1916, 69, 1924, 1923, 69, 1925, 1927,
|
|
69, 69, 1926, 69, 1931, 1928, 1932, 1919, 1934, 69,
|
|
1920, 69, 1929, 1936, 1933, 1930, 69, 69, 1922, 1938,
|
|
69, 69, 1924, 1923, 69, 1925, 1927, 69, 69, 1926,
|
|
1935, 69, 1928, 1932, 1937, 1934, 1940, 1939, 69, 1929,
|
|
1941, 1933, 1930, 69, 1942, 69, 69, 1944, 1943, 69,
|
|
69, 1945, 69, 1946, 1947, 1948, 69, 1935, 69, 69,
|
|
1949, 1937, 1951, 1940, 1939, 69, 1950, 1941, 1954, 69,
|
|
|
|
1956, 1952, 1953, 69, 69, 1943, 69, 1958, 1945, 69,
|
|
1946, 69, 1948, 69, 69, 1955, 69, 1949, 1957, 1951,
|
|
69, 69, 1959, 1950, 1960, 1954, 69, 69, 1952, 1953,
|
|
1961, 1962, 1963, 1964, 69, 1965, 1966, 2164, 1967, 69,
|
|
69, 69, 1955, 1968, 69, 1957, 1970, 1969, 1971, 69,
|
|
1975, 69, 69, 69, 1980, 1976, 69, 1961, 1962, 69,
|
|
1964, 1972, 1965, 1966, 69, 1967, 1973, 2164, 1977, 69,
|
|
1968, 1974, 1978, 69, 1969, 69, 1979, 69, 69, 69,
|
|
1981, 69, 1976, 69, 1982, 2164, 69, 69, 1972, 1985,
|
|
1984, 1983, 1986, 1973, 69, 1977, 1989, 69, 1974, 1978,
|
|
|
|
69, 1990, 1991, 1979, 1987, 1988, 1992, 69, 69, 1994,
|
|
69, 1982, 69, 1993, 69, 1995, 1985, 1984, 1983, 1996,
|
|
1997, 1998, 69, 69, 69, 2000, 2003, 1999, 69, 1991,
|
|
2002, 1987, 1988, 69, 2001, 69, 1994, 69, 2004, 69,
|
|
1993, 2006, 1995, 2005, 2007, 2008, 69, 69, 69, 69,
|
|
69, 69, 69, 69, 1999, 2009, 69, 2002, 2010, 69,
|
|
2015, 2001, 2011, 2164, 2014, 2004, 2012, 69, 2006, 2013,
|
|
2005, 69, 2008, 69, 69, 69, 69, 2016, 2017, 2020,
|
|
2024, 2018, 2009, 2019, 69, 69, 69, 2015, 69, 2011,
|
|
69, 2014, 69, 2012, 2026, 2023, 2013, 69, 69, 2021,
|
|
|
|
2022, 69, 69, 2027, 2016, 2017, 2020, 2024, 2018, 69,
|
|
2019, 2025, 2028, 2029, 2030, 2031, 2164, 2033, 69, 2032,
|
|
2034, 69, 2023, 2035, 2036, 2037, 2021, 2022, 2040, 69,
|
|
69, 2039, 2038, 2041, 2042, 69, 69, 69, 2025, 2028,
|
|
69, 69, 69, 69, 69, 2043, 2032, 2034, 2044, 69,
|
|
2035, 69, 2037, 2045, 69, 2040, 2047, 69, 2039, 2038,
|
|
69, 69, 2046, 2048, 69, 2049, 2050, 2052, 69, 69,
|
|
69, 2051, 2043, 2053, 2054, 2044, 2055, 2056, 2057, 69,
|
|
69, 2058, 2059, 2047, 2060, 2062, 2065, 69, 69, 2046,
|
|
2048, 2164, 2049, 2050, 69, 2061, 69, 69, 2051, 2064,
|
|
|
|
69, 69, 2067, 69, 69, 2057, 2063, 69, 69, 2059,
|
|
69, 2060, 69, 2068, 2066, 69, 2069, 2070, 69, 2072,
|
|
2076, 69, 2061, 69, 69, 69, 2064, 69, 69, 2067,
|
|
2071, 2073, 2074, 2063, 2077, 2075, 69, 2164, 69, 69,
|
|
2068, 2066, 69, 2069, 2070, 69, 2072, 2076, 69, 2081,
|
|
2084, 69, 2078, 2082, 69, 2079, 2080, 2071, 2073, 2074,
|
|
69, 2077, 2075, 2083, 69, 69, 2085, 69, 2086, 2088,
|
|
69, 2087, 2089, 2164, 2092, 2093, 2081, 69, 2090, 2078,
|
|
2082, 2095, 2079, 2080, 69, 2091, 69, 69, 2099, 2094,
|
|
2083, 2096, 2100, 2085, 69, 69, 69, 69, 2087, 2089,
|
|
|
|
69, 2092, 69, 69, 2097, 2090, 2098, 69, 69, 2101,
|
|
2164, 2102, 2091, 69, 69, 2103, 2094, 2104, 2096, 2106,
|
|
69, 2107, 69, 69, 69, 69, 2105, 69, 2110, 2108,
|
|
69, 2097, 2109, 2098, 2164, 69, 2101, 2112, 2102, 2111,
|
|
69, 2113, 2103, 69, 2104, 69, 2106, 2114, 2107, 69,
|
|
69, 2119, 2164, 2105, 2115, 2110, 2108, 2116, 2117, 2109,
|
|
2120, 69, 2118, 2124, 2112, 2164, 2111, 2122, 69, 2123,
|
|
69, 2121, 2164, 69, 2114, 69, 69, 69, 2125, 69,
|
|
69, 2115, 2127, 69, 2116, 2117, 69, 69, 2126, 2118,
|
|
2131, 69, 2128, 2129, 2122, 69, 2123, 2130, 2121, 2132,
|
|
|
|
69, 69, 69, 2134, 69, 2125, 2133, 2164, 2135, 2127,
|
|
2136, 69, 2139, 2164, 69, 2126, 69, 2131, 2137, 2128,
|
|
2129, 69, 2140, 2138, 2130, 2164, 2132, 2141, 2142, 69,
|
|
2134, 69, 69, 2133, 69, 2135, 69, 2136, 69, 69,
|
|
2143, 2145, 69, 2144, 2146, 2137, 2149, 69, 2147, 2140,
|
|
2138, 69, 2148, 2150, 2141, 2142, 69, 2151, 2164, 2152,
|
|
69, 69, 69, 69, 2153, 69, 69, 2143, 2145, 2154,
|
|
2144, 2146, 69, 2149, 2155, 2147, 2156, 2157, 2158, 2148,
|
|
2150, 2162, 2164, 2163, 2151, 69, 2152, 2159, 2164, 69,
|
|
2160, 69, 2164, 2164, 2161, 2164, 2154, 69, 69, 2164,
|
|
|
|
69, 69, 69, 69, 2157, 2158, 2164, 2164, 69, 69,
|
|
69, 2164, 2164, 2164, 2159, 2164, 2164, 2160, 2164, 2164,
|
|
2164, 2161, 41, 41, 41, 41, 41, 41, 41, 46,
|
|
46, 46, 46, 46, 46, 46, 51, 51, 51, 51,
|
|
51, 51, 51, 57, 57, 57, 57, 57, 57, 57,
|
|
62, 62, 62, 62, 62, 62, 62, 72, 72, 2164,
|
|
72, 72, 72, 72, 131, 131, 2164, 2164, 2164, 131,
|
|
131, 133, 133, 2164, 2164, 133, 2164, 133, 135, 2164,
|
|
2164, 2164, 2164, 2164, 135, 138, 138, 2164, 2164, 2164,
|
|
138, 138, 140, 2164, 2164, 2164, 2164, 2164, 140, 142,
|
|
|
|
142, 2164, 142, 142, 142, 142, 73, 73, 2164, 73,
|
|
73, 73, 73, 13, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_chk[6281] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 3, 3, 3, 4,
|
|
4, 4, 5, 5, 6, 6, 5, 27, 6, 7,
|
|
7, 7, 7, 671, 7, 8, 8, 8, 8, 27,
|
|
8, 9, 9, 9, 10, 10, 10, 15, 45, 45,
|
|
|
|
2170, 15, 23, 3, 27, 50, 4, 769, 50, 5,
|
|
19, 6, 19, 19, 671, 19, 140, 7, 29, 61,
|
|
61, 19, 23, 8, 138, 23, 20, 20, 9, 23,
|
|
29, 10, 11, 11, 11, 11, 11, 11, 12, 12,
|
|
12, 12, 12, 12, 20, 29, 24, 137, 19, 23,
|
|
20, 25, 11, 20, 20, 21, 75, 32, 12, 25,
|
|
24, 70, 21, 32, 853, 70, 21, 96, 28, 21,
|
|
11, 20, 24, 24, 132, 132, 12, 25, 25, 11,
|
|
75, 21, 21, 75, 32, 12, 25, 24, 26, 21,
|
|
28, 26, 853, 21, 30, 28, 21, 22, 26, 96,
|
|
|
|
26, 22, 30, 135, 22, 116, 22, 22, 30, 133,
|
|
31, 26, 30, 34, 31, 26, 77, 116, 26, 22,
|
|
30, 30, 76, 77, 22, 26, 34, 26, 22, 30,
|
|
31, 22, 116, 22, 22, 30, 31, 31, 35, 30,
|
|
34, 31, 35, 77, 134, 76, 37, 134, 37, 76,
|
|
100, 131, 35, 100, 38, 35, 84, 31, 33, 38,
|
|
68, 84, 33, 37, 35, 35, 39, 38, 33, 35,
|
|
39, 33, 37, 37, 39, 37, 80, 100, 33, 35,
|
|
33, 38, 35, 84, 62, 33, 38, 139, 139, 33,
|
|
37, 66, 39, 39, 80, 33, 125, 39, 33, 85,
|
|
|
|
762, 39, 125, 80, 66, 33, 36, 85, 40, 36,
|
|
40, 40, 56, 40, 56, 56, 36, 56, 66, 40,
|
|
36, 36, 64, 125, 64, 64, 85, 64, 36, 67,
|
|
762, 67, 67, 36, 67, 69, 36, 69, 69, 72,
|
|
69, 72, 72, 36, 72, 78, 69, 36, 36, 81,
|
|
72, 87, 79, 82, 83, 83, 57, 86, 78, 82,
|
|
64, 79, 81, 83, 87, 52, 88, 89, 92, 78,
|
|
51, 266, 78, 88, 82, 86, 81, 72, 87, 79,
|
|
82, 83, 83, 89, 93, 78, 82, 90, 91, 86,
|
|
94, 92, 97, 88, 89, 92, 90, 91, 266, 101,
|
|
|
|
97, 46, 86, 94, 95, 98, 93, 95, 104, 99,
|
|
103, 93, 101, 99, 90, 91, 102, 94, 105, 97,
|
|
95, 95, 104, 109, 41, 98, 101, 98, 95, 14,
|
|
103, 95, 98, 99, 95, 104, 99, 103, 105, 102,
|
|
99, 106, 107, 102, 108, 105, 109, 95, 95, 107,
|
|
109, 110, 98, 108, 111, 106, 112, 114, 111, 115,
|
|
110, 113, 117, 112, 114, 115, 119, 120, 106, 107,
|
|
117, 108, 13, 115, 0, 122, 111, 0, 110, 0,
|
|
119, 111, 121, 112, 114, 111, 115, 113, 113, 117,
|
|
118, 123, 115, 119, 118, 122, 124, 121, 0, 120,
|
|
|
|
123, 122, 122, 118, 126, 127, 129, 124, 130, 121,
|
|
0, 128, 0, 0, 0, 129, 0, 118, 123, 0,
|
|
0, 118, 122, 124, 144, 126, 128, 127, 145, 126,
|
|
130, 126, 127, 129, 136, 130, 136, 136, 128, 136,
|
|
141, 146, 141, 141, 142, 141, 142, 142, 144, 142,
|
|
145, 144, 126, 147, 149, 145, 148, 150, 0, 152,
|
|
153, 154, 149, 151, 157, 147, 152, 154, 0, 150,
|
|
155, 0, 156, 146, 160, 148, 0, 176, 153, 0,
|
|
147, 149, 142, 148, 150, 151, 152, 153, 230, 162,
|
|
151, 158, 155, 154, 154, 158, 157, 155, 156, 156,
|
|
|
|
160, 160, 161, 163, 164, 165, 168, 167, 164, 176,
|
|
161, 162, 158, 0, 166, 170, 162, 230, 168, 158,
|
|
167, 0, 158, 0, 170, 163, 171, 172, 165, 161,
|
|
163, 164, 165, 168, 167, 177, 166, 179, 0, 158,
|
|
159, 166, 170, 169, 174, 159, 169, 180, 171, 172,
|
|
159, 174, 0, 171, 172, 175, 159, 159, 169, 173,
|
|
182, 177, 177, 159, 173, 180, 175, 159, 178, 179,
|
|
169, 174, 159, 169, 180, 181, 173, 159, 173, 178,
|
|
184, 181, 175, 159, 159, 173, 173, 183, 185, 0,
|
|
186, 173, 182, 0, 187, 188, 191, 189, 190, 192,
|
|
|
|
178, 191, 181, 173, 189, 173, 178, 194, 187, 183,
|
|
186, 201, 184, 193, 183, 203, 188, 186, 192, 190,
|
|
185, 187, 188, 191, 189, 190, 192, 193, 196, 194,
|
|
195, 197, 198, 199, 194, 207, 200, 205, 197, 196,
|
|
193, 200, 195, 201, 202, 202, 206, 203, 210, 212,
|
|
0, 0, 218, 202, 198, 196, 199, 195, 197, 198,
|
|
199, 204, 205, 200, 205, 209, 206, 207, 204, 208,
|
|
211, 202, 202, 206, 210, 210, 220, 208, 213, 214,
|
|
209, 212, 215, 214, 218, 217, 216, 221, 204, 219,
|
|
0, 223, 209, 211, 216, 213, 208, 215, 225, 221,
|
|
|
|
223, 0, 211, 213, 217, 213, 214, 227, 220, 215,
|
|
222, 219, 217, 216, 221, 224, 219, 225, 223, 226,
|
|
211, 226, 213, 222, 228, 225, 229, 231, 224, 232,
|
|
234, 227, 233, 235, 227, 0, 231, 222, 236, 239,
|
|
237, 234, 224, 238, 241, 235, 226, 242, 244, 228,
|
|
0, 228, 229, 229, 231, 232, 232, 234, 233, 233,
|
|
235, 238, 236, 237, 240, 236, 243, 237, 245, 246,
|
|
238, 239, 248, 242, 242, 245, 241, 240, 246, 247,
|
|
244, 249, 252, 251, 0, 247, 248, 250, 243, 253,
|
|
257, 240, 251, 243, 254, 245, 246, 0, 253, 248,
|
|
|
|
256, 258, 259, 255, 0, 252, 247, 249, 249, 252,
|
|
251, 250, 255, 272, 250, 256, 253, 259, 261, 262,
|
|
254, 254, 257, 260, 263, 258, 0, 256, 258, 259,
|
|
255, 260, 260, 264, 260, 0, 261, 262, 263, 267,
|
|
272, 260, 0, 262, 268, 261, 262, 268, 264, 278,
|
|
260, 263, 265, 265, 268, 269, 278, 270, 260, 260,
|
|
264, 260, 274, 267, 262, 271, 267, 269, 273, 275,
|
|
277, 268, 276, 280, 268, 270, 278, 265, 282, 265,
|
|
265, 275, 269, 271, 270, 277, 279, 283, 274, 274,
|
|
273, 412, 271, 281, 276, 273, 275, 277, 279, 276,
|
|
|
|
281, 284, 285, 286, 285, 280, 289, 284, 0, 283,
|
|
282, 0, 292, 279, 283, 290, 286, 288, 412, 292,
|
|
281, 0, 287, 284, 293, 287, 285, 287, 284, 285,
|
|
286, 285, 291, 287, 284, 288, 293, 290, 289, 292,
|
|
291, 295, 290, 294, 288, 296, 291, 305, 298, 287,
|
|
300, 293, 287, 299, 287, 300, 294, 295, 296, 291,
|
|
298, 303, 0, 301, 343, 295, 302, 291, 295, 301,
|
|
294, 299, 296, 303, 302, 298, 304, 306, 343, 305,
|
|
299, 306, 300, 304, 295, 297, 297, 307, 303, 308,
|
|
301, 343, 0, 302, 307, 297, 308, 297, 297, 297,
|
|
|
|
0, 310, 297, 304, 306, 309, 311, 312, 313, 316,
|
|
297, 0, 297, 297, 307, 313, 308, 309, 311, 314,
|
|
318, 319, 297, 310, 297, 297, 297, 315, 310, 297,
|
|
321, 318, 309, 311, 314, 313, 317, 321, 317, 312,
|
|
315, 316, 322, 319, 320, 320, 314, 318, 319, 323,
|
|
325, 324, 0, 322, 315, 0, 326, 321, 328, 327,
|
|
323, 0, 332, 317, 324, 0, 0, 328, 329, 322,
|
|
331, 335, 334, 320, 327, 325, 323, 325, 324, 326,
|
|
330, 329, 327, 326, 332, 328, 327, 333, 331, 332,
|
|
334, 330, 337, 330, 336, 329, 341, 331, 330, 334,
|
|
|
|
336, 327, 338, 335, 339, 340, 342, 330, 344, 345,
|
|
333, 0, 340, 337, 333, 346, 368, 348, 330, 337,
|
|
330, 336, 341, 341, 347, 338, 339, 349, 342, 338,
|
|
347, 339, 340, 342, 344, 344, 352, 350, 346, 348,
|
|
351, 345, 346, 353, 348, 349, 354, 355, 368, 356,
|
|
0, 347, 350, 355, 349, 351, 358, 0, 360, 352,
|
|
359, 361, 0, 352, 350, 362, 359, 351, 354, 353,
|
|
353, 363, 362, 354, 355, 356, 356, 360, 392, 361,
|
|
372, 367, 358, 358, 369, 360, 363, 359, 361, 366,
|
|
370, 365, 362, 365, 367, 373, 366, 371, 363, 372,
|
|
|
|
365, 374, 369, 375, 392, 392, 376, 372, 367, 377,
|
|
371, 369, 370, 409, 380, 379, 366, 370, 365, 376,
|
|
365, 379, 409, 382, 371, 374, 375, 373, 374, 378,
|
|
0, 377, 381, 376, 378, 375, 377, 380, 383, 384,
|
|
409, 380, 379, 387, 381, 382, 388, 384, 386, 383,
|
|
382, 387, 389, 375, 390, 386, 378, 388, 0, 381,
|
|
394, 391, 389, 0, 395, 383, 384, 385, 391, 393,
|
|
387, 393, 385, 388, 385, 386, 395, 0, 390, 0,
|
|
396, 390, 385, 407, 389, 385, 394, 394, 391, 389,
|
|
397, 395, 385, 385, 385, 396, 393, 398, 399, 385,
|
|
|
|
400, 385, 397, 399, 403, 398, 402, 396, 401, 385,
|
|
411, 404, 385, 406, 402, 407, 403, 397, 413, 385,
|
|
410, 415, 400, 0, 398, 399, 401, 400, 408, 411,
|
|
414, 403, 404, 402, 410, 401, 406, 411, 404, 416,
|
|
406, 417, 419, 408, 418, 414, 420, 410, 421, 422,
|
|
413, 421, 425, 415, 416, 408, 418, 414, 423, 421,
|
|
422, 426, 428, 423, 419, 417, 416, 424, 417, 419,
|
|
420, 418, 427, 420, 429, 421, 422, 430, 421, 425,
|
|
431, 424, 0, 432, 433, 435, 431, 434, 426, 428,
|
|
423, 436, 433, 437, 424, 441, 0, 439, 0, 442,
|
|
|
|
0, 429, 443, 0, 427, 432, 434, 431, 435, 430,
|
|
432, 433, 435, 438, 434, 443, 437, 446, 440, 439,
|
|
437, 442, 438, 436, 439, 440, 442, 441, 444, 443,
|
|
445, 448, 447, 444, 449, 450, 451, 444, 0, 445,
|
|
438, 447, 453, 446, 446, 440, 0, 452, 450, 454,
|
|
0, 455, 444, 448, 463, 444, 449, 445, 448, 447,
|
|
444, 449, 450, 456, 444, 452, 453, 0, 451, 453,
|
|
457, 454, 454, 455, 452, 458, 454, 459, 455, 462,
|
|
461, 457, 460, 0, 464, 456, 463, 468, 465, 458,
|
|
456, 461, 466, 470, 462, 467, 468, 457, 454, 459,
|
|
|
|
460, 471, 458, 473, 459, 464, 462, 461, 469, 460,
|
|
472, 464, 465, 0, 468, 465, 466, 467, 474, 466,
|
|
476, 469, 467, 471, 475, 470, 478, 473, 471, 475,
|
|
473, 0, 477, 479, 476, 469, 480, 481, 482, 0,
|
|
474, 479, 472, 484, 483, 474, 477, 476, 484, 0,
|
|
485, 0, 481, 482, 480, 486, 475, 486, 478, 477,
|
|
479, 481, 487, 480, 481, 482, 483, 489, 495, 0,
|
|
488, 483, 490, 494, 491, 484, 485, 485, 488, 481,
|
|
492, 490, 486, 491, 493, 0, 495, 487, 492, 487,
|
|
496, 493, 489, 499, 489, 495, 494, 488, 498, 490,
|
|
|
|
494, 491, 496, 497, 500, 499, 498, 492, 501, 0,
|
|
502, 493, 497, 503, 0, 504, 501, 496, 502, 506,
|
|
499, 507, 0, 508, 510, 498, 0, 505, 0, 0,
|
|
497, 508, 507, 509, 511, 501, 500, 502, 504, 503,
|
|
503, 506, 504, 505, 510, 512, 506, 509, 507, 513,
|
|
508, 510, 514, 515, 505, 516, 511, 518, 523, 517,
|
|
509, 511, 515, 519, 523, 512, 520, 521, 528, 522,
|
|
518, 513, 512, 0, 514, 516, 513, 517, 0, 514,
|
|
515, 519, 516, 525, 518, 523, 517, 524, 520, 527,
|
|
519, 521, 522, 520, 521, 524, 522, 527, 529, 533,
|
|
|
|
528, 525, 531, 530, 0, 529, 532, 0, 534, 535,
|
|
525, 540, 551, 524, 524, 532, 527, 531, 535, 536,
|
|
547, 536, 524, 540, 543, 529, 530, 534, 549, 531,
|
|
530, 533, 537, 532, 543, 534, 535, 0, 540, 537,
|
|
0, 547, 548, 546, 551, 550, 536, 547, 0, 580,
|
|
0, 543, 554, 553, 549, 549, 558, 555, 554, 537,
|
|
538, 546, 557, 0, 538, 548, 555, 538, 559, 548,
|
|
546, 550, 550, 560, 538, 553, 556, 538, 556, 554,
|
|
553, 580, 538, 558, 555, 561, 557, 538, 559, 557,
|
|
564, 538, 562, 563, 538, 559, 0, 561, 567, 560,
|
|
|
|
560, 538, 565, 556, 538, 552, 552, 0, 552, 566,
|
|
0, 552, 561, 567, 564, 563, 552, 564, 562, 562,
|
|
563, 569, 552, 552, 565, 567, 572, 571, 569, 565,
|
|
573, 552, 552, 552, 566, 552, 566, 568, 552, 570,
|
|
577, 581, 573, 552, 576, 568, 571, 570, 569, 552,
|
|
552, 575, 572, 572, 571, 574, 578, 573, 579, 576,
|
|
575, 593, 577, 582, 568, 583, 570, 577, 574, 584,
|
|
585, 576, 586, 581, 588, 590, 587, 591, 575, 0,
|
|
579, 586, 574, 578, 0, 579, 583, 582, 584, 585,
|
|
582, 592, 583, 593, 588, 591, 584, 585, 587, 586,
|
|
|
|
589, 588, 590, 587, 591, 594, 596, 597, 589, 599,
|
|
592, 598, 603, 594, 601, 600, 604, 602, 592, 604,
|
|
608, 607, 0, 0, 596, 597, 0, 589, 600, 602,
|
|
603, 599, 594, 596, 597, 598, 599, 605, 598, 603,
|
|
601, 601, 600, 604, 602, 605, 607, 608, 607, 609,
|
|
611, 610, 612, 613, 617, 609, 611, 615, 613, 612,
|
|
614, 605, 616, 617, 605, 619, 618, 614, 623, 621,
|
|
622, 620, 605, 610, 618, 615, 609, 611, 610, 612,
|
|
613, 617, 621, 619, 615, 616, 620, 614, 626, 616,
|
|
625, 622, 619, 618, 624, 623, 621, 622, 620, 627,
|
|
|
|
628, 624, 629, 625, 0, 632, 631, 630, 634, 633,
|
|
629, 632, 637, 638, 635, 630, 636, 625, 0, 640,
|
|
626, 624, 630, 628, 642, 636, 637, 628, 631, 629,
|
|
639, 627, 632, 631, 630, 633, 633, 639, 635, 637,
|
|
634, 635, 630, 636, 641, 638, 640, 643, 645, 644,
|
|
647, 642, 646, 641, 648, 646, 645, 639, 649, 643,
|
|
652, 648, 0, 647, 649, 659, 653, 0, 0, 651,
|
|
659, 641, 644, 0, 643, 645, 644, 647, 653, 646,
|
|
654, 648, 654, 652, 657, 649, 650, 652, 650, 655,
|
|
656, 0, 650, 653, 650, 651, 651, 659, 0, 650,
|
|
|
|
661, 658, 656, 664, 650, 660, 657, 654, 662, 665,
|
|
650, 657, 655, 650, 658, 650, 655, 656, 660, 650,
|
|
662, 650, 665, 661, 663, 664, 650, 661, 658, 667,
|
|
664, 650, 660, 666, 663, 662, 665, 668, 669, 666,
|
|
670, 674, 667, 0, 0, 0, 663, 673, 683, 0,
|
|
678, 663, 675, 0, 676, 0, 667, 677, 668, 686,
|
|
666, 663, 673, 674, 668, 675, 679, 670, 674, 676,
|
|
669, 672, 678, 680, 673, 683, 672, 678, 672, 675,
|
|
681, 676, 682, 677, 677, 679, 680, 684, 681, 672,
|
|
682, 686, 689, 679, 687, 690, 672, 672, 672, 0,
|
|
|
|
680, 0, 691, 672, 688, 672, 689, 681, 693, 682,
|
|
684, 695, 688, 704, 684, 694, 672, 692, 687, 689,
|
|
0, 687, 695, 672, 691, 692, 693, 690, 696, 691,
|
|
698, 688, 697, 694, 699, 693, 700, 0, 695, 0,
|
|
697, 699, 694, 701, 692, 704, 696, 702, 703, 700,
|
|
701, 706, 698, 714, 707, 696, 709, 698, 708, 697,
|
|
710, 699, 707, 700, 706, 702, 703, 708, 709, 711,
|
|
701, 712, 713, 715, 702, 703, 725, 718, 706, 714,
|
|
714, 707, 710, 709, 719, 708, 716, 710, 718, 719,
|
|
713, 711, 720, 712, 0, 720, 711, 721, 712, 713,
|
|
|
|
716, 722, 723, 724, 718, 715, 728, 727, 725, 723,
|
|
726, 735, 728, 716, 722, 724, 719, 726, 720, 720,
|
|
729, 721, 720, 731, 721, 730, 732, 0, 722, 723,
|
|
724, 727, 735, 728, 727, 736, 730, 726, 735, 733,
|
|
737, 738, 729, 746, 0, 731, 736, 729, 732, 740,
|
|
731, 739, 730, 732, 733, 741, 742, 744, 740, 745,
|
|
0, 737, 736, 743, 744, 742, 733, 737, 738, 739,
|
|
747, 743, 748, 745, 751, 746, 740, 752, 739, 741,
|
|
750, 753, 741, 742, 744, 754, 745, 755, 756, 750,
|
|
743, 757, 747, 752, 748, 758, 753, 747, 751, 748,
|
|
|
|
756, 751, 759, 760, 752, 761, 764, 750, 753, 766,
|
|
759, 766, 763, 757, 770, 756, 760, 754, 757, 755,
|
|
761, 763, 758, 765, 764, 771, 768, 770, 772, 759,
|
|
760, 765, 761, 764, 768, 772, 766, 771, 773, 763,
|
|
774, 770, 775, 0, 0, 0, 776, 778, 779, 0,
|
|
765, 0, 771, 768, 777, 772, 780, 786, 782, 783,
|
|
778, 779, 0, 0, 775, 781, 782, 793, 784, 775,
|
|
773, 776, 774, 776, 778, 779, 777, 781, 780, 783,
|
|
784, 777, 785, 780, 786, 782, 783, 787, 788, 789,
|
|
785, 790, 781, 793, 793, 784, 798, 788, 790, 794,
|
|
|
|
787, 0, 795, 797, 801, 798, 791, 799, 0, 785,
|
|
789, 796, 801, 800, 787, 788, 789, 791, 790, 802,
|
|
791, 794, 795, 798, 796, 799, 794, 797, 791, 795,
|
|
797, 801, 805, 791, 799, 800, 807, 803, 796, 806,
|
|
800, 802, 809, 808, 791, 803, 802, 791, 810, 813,
|
|
809, 811, 812, 0, 807, 808, 815, 813, 822, 805,
|
|
810, 816, 806, 807, 803, 815, 806, 812, 814, 809,
|
|
808, 811, 817, 818, 814, 810, 813, 0, 811, 812,
|
|
818, 823, 816, 815, 817, 819, 820, 824, 816, 825,
|
|
822, 835, 819, 826, 823, 814, 825, 829, 828, 817,
|
|
|
|
818, 832, 827, 828, 820, 829, 824, 831, 823, 830,
|
|
0, 833, 819, 820, 824, 826, 825, 827, 836, 834,
|
|
826, 831, 830, 835, 829, 833, 837, 832, 832, 827,
|
|
828, 838, 839, 840, 831, 841, 830, 834, 833, 843,
|
|
842, 844, 846, 845, 836, 836, 834, 842, 837, 838,
|
|
847, 846, 848, 837, 839, 840, 845, 843, 838, 839,
|
|
840, 841, 841, 844, 849, 850, 843, 842, 844, 846,
|
|
845, 0, 856, 0, 854, 0, 859, 0, 860, 852,
|
|
858, 0, 847, 860, 848, 857, 849, 0, 850, 858,
|
|
854, 849, 850, 851, 859, 856, 861, 857, 851, 856,
|
|
|
|
851, 854, 851, 859, 851, 852, 852, 858, 862, 861,
|
|
860, 851, 857, 863, 864, 865, 867, 866, 0, 871,
|
|
851, 863, 869, 861, 869, 851, 862, 851, 865, 851,
|
|
866, 851, 870, 864, 867, 862, 868, 873, 872, 876,
|
|
863, 864, 865, 867, 866, 868, 871, 875, 877, 869,
|
|
872, 878, 880, 879, 870, 881, 877, 883, 0, 870,
|
|
879, 876, 882, 868, 873, 872, 876, 886, 882, 884,
|
|
885, 875, 888, 887, 875, 877, 884, 881, 878, 880,
|
|
879, 889, 881, 890, 883, 891, 886, 892, 894, 882,
|
|
889, 895, 885, 897, 886, 887, 884, 885, 888, 888,
|
|
|
|
887, 892, 896, 898, 890, 891, 900, 899, 889, 901,
|
|
890, 902, 891, 904, 892, 899, 905, 904, 902, 903,
|
|
894, 898, 900, 895, 896, 897, 903, 908, 907, 896,
|
|
898, 906, 909, 900, 899, 907, 901, 906, 902, 911,
|
|
904, 910, 908, 914, 906, 909, 903, 915, 905, 912,
|
|
910, 913, 914, 913, 908, 907, 912, 916, 906, 909,
|
|
918, 0, 922, 917, 906, 911, 911, 917, 910, 915,
|
|
914, 920, 921, 923, 915, 924, 912, 921, 913, 920,
|
|
922, 926, 918, 925, 916, 929, 925, 918, 924, 922,
|
|
917, 927, 923, 928, 0, 925, 930, 932, 920, 931,
|
|
|
|
923, 941, 924, 926, 921, 932, 928, 935, 926, 941,
|
|
925, 933, 933, 925, 939, 931, 927, 929, 927, 930,
|
|
928, 934, 936, 930, 932, 937, 931, 940, 941, 935,
|
|
934, 936, 937, 943, 935, 942, 940, 939, 933, 944,
|
|
0, 939, 947, 945, 0, 946, 943, 948, 934, 936,
|
|
942, 944, 937, 946, 940, 945, 949, 951, 954, 950,
|
|
943, 952, 942, 957, 947, 953, 944, 948, 950, 947,
|
|
945, 956, 946, 958, 948, 951, 955, 953, 949, 954,
|
|
959, 962, 955, 949, 951, 954, 950, 952, 952, 960,
|
|
963, 964, 953, 956, 968, 957, 0, 966, 956, 967,
|
|
|
|
0, 965, 968, 955, 971, 958, 959, 959, 962, 964,
|
|
965, 971, 967, 963, 975, 960, 960, 963, 964, 966,
|
|
969, 968, 970, 978, 966, 969, 967, 970, 965, 972,
|
|
973, 971, 974, 976, 976, 977, 979, 972, 973, 980,
|
|
974, 0, 0, 977, 978, 981, 975, 980, 987, 988,
|
|
978, 984, 969, 981, 970, 982, 972, 973, 986, 974,
|
|
976, 983, 977, 982, 984, 985, 980, 0, 979, 983,
|
|
986, 985, 981, 988, 987, 987, 988, 990, 984, 989,
|
|
991, 993, 982, 994, 995, 986, 992, 1000, 983, 1006,
|
|
998, 0, 985, 1001, 989, 993, 0, 998, 995, 996,
|
|
|
|
0, 994, 991, 996, 990, 1002, 989, 991, 993, 992,
|
|
994, 995, 999, 992, 1000, 1001, 996, 998, 1003, 1007,
|
|
1001, 1006, 1004, 999, 996, 1003, 996, 1005, 1002, 1009,
|
|
996, 1004, 1002, 1011, 1005, 1012, 1013, 1015, 1009, 999,
|
|
1017, 0, 1018, 996, 0, 1003, 1007, 1020, 1025, 1004,
|
|
1021, 1022, 1024, 1018, 1005, 1011, 1009, 1023, 0, 1023,
|
|
1011, 1012, 1012, 1022, 1015, 1024, 1027, 1017, 1013, 1018,
|
|
1025, 1020, 1028, 1026, 1020, 1025, 1021, 1021, 1022, 1024,
|
|
1029, 0, 1030, 1031, 1023, 1026, 1032, 1029, 1031, 1033,
|
|
1034, 1037, 1035, 1027, 1038, 1028, 1040, 0, 1034, 1028,
|
|
|
|
1026, 0, 1032, 1038, 1041, 1049, 0, 1029, 1030, 1030,
|
|
1031, 1039, 1033, 1032, 1035, 1044, 1033, 1034, 1037, 1035,
|
|
1042, 1038, 1040, 1040, 1039, 1043, 1041, 1042, 1045, 1046,
|
|
0, 1041, 1043, 1044, 1047, 1048, 1046, 1049, 1039, 1050,
|
|
1051, 1053, 1044, 1054, 0, 0, 1050, 1042, 1056, 1061,
|
|
1045, 1059, 1043, 1060, 1053, 1045, 1046, 1048, 1061, 1047,
|
|
1063, 1047, 1048, 1055, 1058, 1067, 1050, 1058, 1053, 1056,
|
|
1054, 1055, 1051, 1062, 1064, 1056, 1061, 1059, 1059, 1060,
|
|
1060, 1065, 1068, 1066, 1063, 1062, 1066, 1063, 1065, 1064,
|
|
1055, 1058, 1070, 1069, 1071, 1073, 1071, 1067, 1066, 1072,
|
|
|
|
1062, 1064, 1074, 1075, 1068, 1078, 1080, 1066, 1065, 1068,
|
|
1066, 1069, 1075, 1066, 1070, 1077, 1076, 1079, 1082, 1070,
|
|
1069, 1071, 1077, 1072, 1076, 1066, 1072, 1073, 1074, 1074,
|
|
1075, 1081, 1083, 1084, 0, 1081, 1088, 1078, 1080, 1079,
|
|
1082, 1085, 1077, 1076, 1079, 1082, 1086, 1087, 1089, 1088,
|
|
1085, 1090, 1092, 1086, 1087, 1084, 1091, 0, 1081, 1083,
|
|
1084, 1089, 1093, 1088, 1094, 1098, 1090, 1095, 1085, 1093,
|
|
1091, 1094, 1099, 1086, 1087, 1089, 1096, 1102, 1090, 1099,
|
|
1095, 1101, 1096, 1091, 1092, 1100, 1108, 1103, 1108, 1093,
|
|
1103, 1094, 1098, 1101, 1095, 1104, 0, 1102, 1109, 1099,
|
|
|
|
1110, 1112, 1111, 1096, 1102, 1103, 1104, 1100, 1101, 1112,
|
|
1113, 1106, 1100, 1108, 1103, 1115, 1106, 1103, 1117, 1114,
|
|
1120, 1117, 1104, 1106, 1119, 1109, 1111, 1110, 1112, 1111,
|
|
1114, 1116, 1113, 1115, 1118, 1122, 1117, 1113, 1106, 1116,
|
|
1124, 1123, 1115, 1106, 1121, 1117, 1114, 1120, 1117, 1122,
|
|
1123, 1121, 1118, 1124, 1125, 1126, 1119, 1128, 1116, 1128,
|
|
1129, 1118, 1122, 1130, 1131, 1125, 1133, 1124, 1123, 1129,
|
|
1126, 1121, 1134, 1137, 1132, 1131, 1135, 1139, 1137, 1135,
|
|
1141, 1125, 1126, 1143, 1128, 1147, 1134, 1129, 1133, 1130,
|
|
1130, 1131, 1132, 1133, 1135, 1136, 1142, 0, 1134, 1134,
|
|
|
|
1144, 1132, 1140, 1135, 1136, 1137, 1135, 1146, 1152, 1139,
|
|
1148, 1140, 1141, 1134, 1146, 1143, 1152, 1147, 1142, 1149,
|
|
1153, 1144, 1136, 1142, 1148, 1149, 1154, 1144, 1156, 1140,
|
|
1157, 1158, 1155, 1161, 1146, 1152, 1156, 1148, 1163, 1153,
|
|
1154, 1155, 1158, 1149, 1162, 1159, 1149, 1153, 1164, 1167,
|
|
1171, 1162, 1149, 1154, 1159, 1156, 1165, 1166, 1158, 1155,
|
|
1161, 1163, 1157, 1182, 1168, 1163, 1178, 1167, 1168, 1170,
|
|
1164, 1162, 1159, 1172, 1173, 1164, 1167, 1171, 1165, 1166,
|
|
1174, 1170, 1175, 1165, 1166, 1176, 1172, 1179, 1184, 1181,
|
|
1182, 1168, 1177, 1176, 1173, 1174, 1170, 1175, 1178, 1177,
|
|
|
|
1172, 1173, 1179, 1183, 1180, 1187, 1186, 1174, 1188, 1175,
|
|
1181, 1189, 1176, 1180, 1179, 1184, 1181, 1190, 1191, 1177,
|
|
0, 1195, 1196, 1187, 1192, 1191, 1189, 1183, 1186, 1192,
|
|
1183, 1180, 1187, 1186, 1193, 1188, 1194, 1196, 1189, 1195,
|
|
1197, 0, 1190, 1193, 1190, 1191, 1198, 1199, 1195, 1196,
|
|
1200, 1192, 1197, 1202, 1201, 1206, 1203, 1200, 1194, 1207,
|
|
1199, 1193, 1206, 1194, 1204, 1199, 1201, 1197, 1198, 1208,
|
|
1204, 1205, 1209, 1198, 1199, 1211, 1208, 1200, 1210, 1205,
|
|
1202, 1201, 1206, 1212, 1210, 1213, 1207, 1199, 1203, 1214,
|
|
1216, 1204, 1217, 1218, 1220, 0, 1208, 1221, 1205, 1209,
|
|
|
|
1222, 1217, 1211, 1223, 0, 1210, 1212, 1219, 0, 1219,
|
|
1212, 1227, 0, 1214, 0, 1230, 1214, 1213, 1220, 1217,
|
|
1230, 1220, 1216, 1233, 1221, 1218, 1222, 1222, 1231, 1224,
|
|
1224, 1224, 1225, 1226, 1219, 1223, 1224, 1239, 1228, 1225,
|
|
1226, 1231, 1232, 1227, 1224, 1228, 1235, 1230, 1232, 1238,
|
|
1233, 1234, 1234, 1242, 1236, 1231, 1224, 1224, 1224, 1225,
|
|
1226, 1236, 1237, 1224, 1239, 1228, 1244, 1237, 1243, 1232,
|
|
1245, 1242, 1235, 1235, 1243, 1238, 1238, 1249, 1234, 1246,
|
|
1242, 1236, 1245, 1247, 1248, 1248, 1250, 1250, 1254, 1237,
|
|
1253, 1251, 1257, 1244, 1256, 1243, 1258, 1245, 1255, 1246,
|
|
|
|
1259, 1247, 1251, 1249, 1249, 1255, 1246, 1260, 1261, 1262,
|
|
1247, 1248, 1253, 1250, 1256, 1263, 1262, 1253, 1251, 1265,
|
|
1254, 1256, 1264, 1263, 1257, 1255, 1261, 1259, 1258, 1260,
|
|
1266, 1267, 1267, 1268, 1260, 1261, 1262, 1264, 1269, 1266,
|
|
1270, 1273, 1263, 1265, 1272, 1276, 1265, 1274, 1278, 1264,
|
|
1269, 1277, 1272, 1273, 1275, 1274, 1270, 1266, 1267, 1268,
|
|
1268, 1280, 1284, 1270, 1281, 1269, 1276, 1270, 1273, 1277,
|
|
1281, 1272, 1276, 1282, 1274, 1278, 1285, 1275, 1277, 1279,
|
|
1283, 1275, 1287, 1270, 1279, 1286, 1282, 1283, 1280, 1289,
|
|
1286, 1281, 1288, 1288, 1284, 1279, 1290, 1292, 1293, 1295,
|
|
|
|
1282, 1295, 1296, 1285, 1289, 1294, 1279, 1283, 1297, 1298,
|
|
1302, 1279, 1292, 1297, 1287, 1299, 1289, 1286, 1303, 1288,
|
|
1294, 1293, 1301, 1304, 1292, 1293, 1295, 1306, 1290, 1308,
|
|
1299, 1305, 1294, 1307, 1296, 1297, 1302, 1302, 1305, 1310,
|
|
1309, 1298, 1299, 1312, 1314, 1303, 1301, 1315, 1317, 1301,
|
|
1304, 1308, 0, 1319, 1307, 1320, 1308, 1310, 1305, 1306,
|
|
1307, 1309, 1315, 1317, 1318, 1312, 1310, 1309, 1314, 1322,
|
|
1312, 1314, 1321, 1320, 1315, 1317, 1323, 1324, 1325, 1318,
|
|
1319, 1326, 1320, 1323, 1327, 1329, 1332, 1325, 1328, 1326,
|
|
0, 1318, 1333, 1330, 1321, 1324, 1322, 1332, 1334, 1321,
|
|
|
|
1335, 1333, 1337, 1323, 1324, 1325, 1330, 1327, 1326, 1342,
|
|
1328, 1327, 1332, 1332, 1341, 1328, 1334, 1329, 1335, 1333,
|
|
1330, 1339, 1342, 1343, 1332, 1334, 1341, 1335, 0, 1337,
|
|
1344, 1346, 1339, 1345, 1347, 1348, 1342, 1351, 0, 1352,
|
|
1344, 1341, 0, 1350, 1351, 1354, 1358, 1358, 1339, 1353,
|
|
0, 1354, 1366, 1355, 1348, 1343, 1346, 1344, 1346, 1345,
|
|
1345, 1347, 1348, 1350, 1351, 1352, 1352, 1353, 1355, 1356,
|
|
1350, 1357, 1354, 1358, 1362, 1359, 1353, 1366, 1360, 1366,
|
|
1355, 1362, 1363, 1367, 1356, 1365, 1357, 1359, 0, 1363,
|
|
1371, 1360, 1367, 1368, 1369, 0, 1356, 1372, 1357, 1360,
|
|
|
|
1374, 1362, 1359, 1375, 1378, 1360, 1377, 1365, 1371, 1363,
|
|
1367, 0, 1365, 1374, 1369, 1368, 1379, 1371, 1360, 1380,
|
|
1368, 1369, 1372, 1381, 1372, 1376, 1376, 1374, 1377, 1378,
|
|
1375, 1378, 1381, 1377, 1383, 1382, 1384, 1385, 1379, 0,
|
|
1386, 1380, 1382, 1379, 1389, 1388, 1380, 1390, 1394, 1391,
|
|
1381, 1385, 1376, 1388, 1393, 1395, 1392, 1389, 1384, 1386,
|
|
1396, 1393, 1382, 1384, 1385, 1398, 1383, 1386, 1392, 1397,
|
|
1401, 1389, 1388, 1399, 1390, 1391, 1391, 1395, 1403, 1407,
|
|
1394, 1393, 1395, 1392, 1397, 1396, 1400, 1396, 1402, 1400,
|
|
1404, 1398, 1398, 0, 1402, 1401, 1397, 1401, 1408, 1399,
|
|
|
|
1399, 1407, 1411, 1405, 1400, 1403, 1407, 1410, 1404, 1411,
|
|
1412, 1413, 1415, 1400, 1417, 1402, 1400, 1404, 1405, 1412,
|
|
1408, 1410, 1413, 1421, 1418, 1408, 1419, 1420, 1419, 1411,
|
|
1405, 1422, 1423, 1415, 1410, 1417, 1418, 1412, 1413, 1415,
|
|
1424, 1417, 1425, 1427, 1426, 1420, 1433, 1428, 1424, 1422,
|
|
1421, 1418, 1428, 1419, 1420, 1429, 1430, 1427, 1422, 1423,
|
|
0, 1434, 1435, 1430, 1436, 1425, 1426, 1424, 1437, 1425,
|
|
1427, 1426, 1439, 1433, 1429, 1434, 1440, 1438, 1441, 1428,
|
|
1435, 1439, 1429, 1430, 1442, 1443, 1445, 1434, 1434, 1435,
|
|
1446, 1436, 1438, 1449, 1437, 1437, 1448, 1446, 1448, 1439,
|
|
|
|
1441, 1455, 1434, 1452, 1438, 1441, 1450, 1443, 1440, 1445,
|
|
1450, 1442, 1443, 1445, 1451, 1449, 1456, 1446, 1453, 1457,
|
|
1449, 1454, 1458, 1448, 0, 1452, 1451, 1453, 1455, 1460,
|
|
1452, 1457, 1454, 1450, 1459, 1459, 1463, 1460, 1467, 1456,
|
|
1463, 1451, 1462, 1456, 1458, 1453, 1457, 1465, 1454, 1458,
|
|
1462, 1464, 1466, 1467, 1464, 1465, 1460, 1471, 1466, 1470,
|
|
1468, 1459, 1473, 1463, 1472, 1467, 1468, 1474, 1475, 1462,
|
|
1476, 1470, 1477, 1478, 1465, 1481, 1473, 0, 1464, 1466,
|
|
1474, 1479, 1475, 1483, 1471, 1484, 1470, 1468, 1472, 1473,
|
|
1480, 1472, 1485, 1479, 1474, 1475, 1476, 1476, 1487, 1477,
|
|
|
|
1478, 1481, 1481, 1482, 1480, 1486, 1482, 1488, 1479, 1489,
|
|
1483, 1490, 1484, 1486, 1491, 1492, 1488, 1480, 1494, 1485,
|
|
1495, 1482, 1497, 1492, 1500, 1487, 1498, 1491, 1501, 1496,
|
|
1482, 1499, 1486, 1482, 1488, 1498, 1489, 1496, 1490, 1502,
|
|
1494, 1491, 1492, 1501, 1506, 1494, 1511, 1495, 1500, 1497,
|
|
1504, 1500, 1499, 1498, 1501, 1501, 1496, 1503, 1499, 1505,
|
|
1509, 1508, 1504, 1510, 1509, 1503, 1502, 1505, 1508, 1511,
|
|
1501, 1506, 1512, 1511, 1513, 1510, 1514, 1504, 1515, 1519,
|
|
1516, 1522, 1513, 1518, 1503, 1515, 1505, 1509, 1508, 1520,
|
|
1510, 1517, 1517, 1523, 0, 1533, 1522, 1519, 1525, 1512,
|
|
|
|
1516, 1513, 1524, 1514, 1524, 1515, 1519, 1516, 1522, 1518,
|
|
1518, 1526, 1525, 1527, 1520, 1523, 1520, 1526, 1517, 1528,
|
|
1523, 1529, 1534, 1532, 1530, 1525, 1531, 1533, 1539, 1524,
|
|
1536, 1540, 1548, 1529, 1538, 1527, 1532, 1536, 1526, 1541,
|
|
1527, 1528, 1530, 1548, 1531, 1534, 1528, 1541, 1529, 1534,
|
|
1532, 1530, 1538, 1531, 1539, 1539, 1544, 1536, 1545, 1548,
|
|
1542, 1538, 1542, 1540, 1547, 1541, 1541, 1542, 1544, 1549,
|
|
1551, 1552, 1555, 1553, 1541, 1554, 1545, 1557, 1559, 1547,
|
|
1553, 1558, 1560, 1544, 1549, 1545, 1562, 1542, 1561, 1542,
|
|
1554, 1547, 1563, 1552, 1551, 1566, 1549, 1551, 1552, 1555,
|
|
|
|
1553, 1561, 1554, 1558, 1557, 1564, 1565, 1563, 1558, 1560,
|
|
1559, 1568, 1562, 1562, 1565, 1561, 1569, 1570, 1564, 1563,
|
|
1571, 1566, 1566, 1572, 1573, 1575, 1574, 1577, 1576, 1578,
|
|
1572, 1573, 1564, 1565, 1568, 1576, 1579, 1580, 1568, 1574,
|
|
1569, 1584, 1571, 1569, 1570, 1582, 1580, 1571, 1575, 1577,
|
|
1572, 1573, 1575, 1574, 1577, 1576, 1582, 1579, 1583, 1585,
|
|
0, 1578, 1586, 1579, 1580, 1590, 1589, 0, 1592, 1592,
|
|
1591, 1597, 1582, 1584, 1593, 1599, 0, 1602, 1585, 1589,
|
|
1583, 1603, 1604, 1606, 1599, 1583, 1585, 1586, 1608, 1586,
|
|
1609, 1590, 1590, 1589, 1591, 1592, 1610, 1591, 1597, 1602,
|
|
|
|
1593, 1593, 1599, 1603, 1602, 1612, 1611, 1610, 1603, 1604,
|
|
1606, 1611, 1616, 1614, 1615, 1619, 1609, 1609, 1618, 1620,
|
|
1608, 1614, 1621, 1610, 1623, 0, 1625, 1612, 1620, 1615,
|
|
1626, 1628, 1612, 1611, 1621, 1629, 1618, 1627, 1631, 1616,
|
|
1614, 1615, 1630, 1632, 1633, 1618, 1620, 1619, 1629, 1621,
|
|
1634, 1623, 1625, 1625, 1636, 1630, 1628, 1626, 1628, 1627,
|
|
1631, 1635, 1629, 1636, 1627, 1631, 1637, 1638, 1639, 1630,
|
|
1632, 1633, 1640, 1642, 1641, 1643, 1635, 1634, 0, 1644,
|
|
1642, 1636, 1638, 1639, 1645, 1645, 1650, 1640, 1635, 1647,
|
|
1658, 1646, 1637, 1637, 1638, 1639, 1641, 1644, 1646, 1640,
|
|
|
|
1642, 1641, 1643, 1647, 1648, 1651, 1644, 1648, 1649, 1653,
|
|
1652, 1645, 1650, 1650, 1653, 1655, 1647, 1658, 1646, 1652,
|
|
1654, 1649, 1656, 1651, 1654, 1659, 1657, 0, 1660, 1663,
|
|
1664, 1648, 1651, 1666, 1667, 1649, 1653, 1652, 1663, 1655,
|
|
1666, 1670, 1655, 1667, 1656, 1668, 1664, 1654, 1657, 1656,
|
|
1668, 1669, 1659, 1657, 1660, 1660, 1663, 1664, 1669, 1670,
|
|
1666, 1667, 1671, 1675, 1672, 0, 1673, 1676, 1670, 1671,
|
|
1677, 1679, 1668, 1672, 1683, 1678, 1684, 1680, 1669, 1677,
|
|
1685, 1686, 1683, 1679, 1690, 1676, 1680, 1681, 1682, 1671,
|
|
1675, 1672, 1673, 1673, 1676, 1678, 1681, 1677, 1679, 1682,
|
|
|
|
1687, 1683, 1678, 1684, 1680, 1688, 1690, 1685, 1689, 1687,
|
|
1696, 1690, 1691, 1686, 1681, 1682, 1689, 1688, 1692, 1691,
|
|
1693, 1694, 1697, 1698, 1703, 1692, 1701, 1687, 1696, 1697,
|
|
1702, 1698, 1688, 1701, 1705, 1689, 1706, 1696, 1711, 1691,
|
|
1704, 1707, 1693, 1705, 1709, 1692, 1694, 1693, 1694, 1697,
|
|
1698, 1703, 1704, 1701, 1702, 1710, 1709, 1702, 1712, 1714,
|
|
1716, 1705, 1717, 1706, 1707, 1711, 1718, 1704, 1707, 1719,
|
|
1717, 1709, 1712, 1720, 0, 1724, 1725, 1727, 1710, 0,
|
|
1726, 1725, 1710, 1728, 1729, 1712, 1714, 1716, 1737, 1717,
|
|
1730, 1719, 1734, 1718, 1726, 1727, 1719, 1731, 1730, 1735,
|
|
|
|
1720, 1724, 1724, 1725, 1727, 1728, 1729, 1726, 1733, 1738,
|
|
1728, 1729, 1739, 1736, 1734, 1737, 1731, 1730, 1741, 1734,
|
|
1733, 1735, 1740, 0, 1731, 1736, 1735, 1743, 1745, 1742,
|
|
1744, 1746, 1739, 1749, 1752, 1733, 1738, 1751, 1750, 1739,
|
|
1736, 0, 1744, 1750, 1740, 1753, 1781, 1749, 1757, 1740,
|
|
1741, 1742, 1754, 1743, 1743, 1745, 1742, 1744, 1746, 1751,
|
|
1749, 1756, 1755, 1758, 1751, 1762, 1752, 1757, 1753, 1759,
|
|
1750, 1761, 1753, 1756, 1754, 1757, 1765, 1763, 1781, 1754,
|
|
1755, 1766, 1768, 1764, 1759, 1758, 1763, 1762, 1756, 1755,
|
|
1758, 1767, 1762, 1771, 1765, 1761, 1759, 1764, 1761, 1766,
|
|
|
|
1768, 1771, 1774, 1765, 1763, 1772, 1773, 1775, 1766, 1768,
|
|
1764, 1777, 1772, 1776, 1773, 1775, 1778, 1767, 1767, 1779,
|
|
1771, 1780, 1782, 1777, 1786, 1784, 1783, 1779, 1790, 1774,
|
|
1793, 1776, 1772, 1773, 1775, 1789, 1787, 1796, 1777, 0,
|
|
1776, 1790, 1786, 1778, 1780, 1783, 1779, 1784, 1780, 1782,
|
|
1787, 1786, 1784, 1783, 1791, 1790, 1793, 1793, 1789, 1801,
|
|
1798, 1800, 1789, 1787, 1796, 1802, 1791, 1798, 1800, 1803,
|
|
1804, 1805, 1806, 1807, 1809, 1810, 1808, 1817, 1811, 1814,
|
|
0, 1791, 1807, 1816, 1814, 1801, 1801, 1798, 1800, 1808,
|
|
1815, 0, 1802, 1803, 1815, 1819, 1803, 1804, 1805, 1806,
|
|
|
|
1807, 1811, 1810, 1808, 1816, 1811, 1809, 1822, 1823, 1817,
|
|
1816, 1814, 1818, 1825, 1818, 1825, 1827, 1815, 1819, 1828,
|
|
1826, 1826, 1819, 1830, 1829, 1831, 1833, 0, 1828, 1822,
|
|
1826, 1829, 1823, 1832, 1822, 1823, 1830, 1835, 1827, 1818,
|
|
1825, 1832, 1836, 1827, 1837, 1833, 1828, 1826, 1826, 1834,
|
|
1830, 1829, 1831, 1833, 1838, 1839, 1842, 1834, 1846, 1840,
|
|
1832, 1841, 1841, 1835, 1835, 1838, 1840, 1847, 1836, 1836,
|
|
1837, 1837, 1843, 1844, 1842, 1848, 1834, 1839, 1850, 1843,
|
|
1844, 1838, 1839, 1842, 1848, 1846, 1840, 1851, 1841, 1852,
|
|
1855, 1847, 1854, 1857, 1847, 1856, 1858, 0, 1859, 1843,
|
|
|
|
1844, 1854, 1848, 1859, 0, 1850, 1863, 1852, 1858, 1851,
|
|
1860, 1857, 0, 1861, 1851, 0, 1852, 1855, 1856, 1854,
|
|
1857, 1864, 1856, 1858, 1860, 1867, 1865, 1867, 1871, 1873,
|
|
1859, 1861, 1872, 1863, 1878, 1875, 1879, 1860, 1881, 1864,
|
|
1861, 1865, 1876, 1883, 1880, 1876, 1881, 1873, 1864, 1885,
|
|
1871, 1880, 1867, 1865, 1879, 1871, 1873, 1875, 1872, 1872,
|
|
1882, 1878, 1875, 1879, 1884, 1881, 1887, 1886, 1876, 1876,
|
|
1888, 1880, 1876, 1886, 1889, 1883, 1885, 1891, 1890, 1888,
|
|
1890, 1893, 1882, 1894, 1895, 1896, 1884, 1882, 1887, 1893,
|
|
1897, 1884, 1899, 1887, 1886, 1894, 1898, 1888, 1902, 1896,
|
|
|
|
1904, 1900, 1901, 1899, 1891, 1890, 1889, 1907, 1893, 1900,
|
|
1894, 1895, 1896, 1897, 1898, 1903, 1903, 1897, 1905, 1899,
|
|
1902, 1901, 1908, 1898, 1910, 1902, 1905, 1904, 1900, 1901,
|
|
1911, 1912, 1914, 1915, 1907, 1916, 1917, 0, 1919, 1916,
|
|
1915, 1911, 1903, 1920, 1917, 1905, 1923, 1922, 1924, 1908,
|
|
1928, 1910, 1922, 1912, 1934, 1929, 1920, 1911, 1912, 1914,
|
|
1915, 1925, 1916, 1917, 1919, 1919, 1926, 0, 1930, 1925,
|
|
1920, 1927, 1932, 1923, 1922, 1924, 1933, 1928, 1927, 1929,
|
|
1935, 1926, 1929, 1933, 1936, 0, 1934, 1932, 1925, 1940,
|
|
1939, 1937, 1941, 1926, 1930, 1930, 1943, 1940, 1927, 1932,
|
|
|
|
1937, 1945, 1946, 1933, 1942, 1942, 1948, 1935, 1936, 1950,
|
|
1946, 1936, 1939, 1949, 1942, 1951, 1940, 1939, 1937, 1952,
|
|
1953, 1954, 1950, 1943, 1941, 1957, 1964, 1955, 1945, 1946,
|
|
1962, 1942, 1942, 1948, 1961, 1949, 1950, 1951, 1965, 1961,
|
|
1949, 1967, 1951, 1966, 1968, 1969, 1952, 1953, 1954, 1955,
|
|
1966, 1965, 1957, 1964, 1955, 1972, 1962, 1962, 1973, 1967,
|
|
1979, 1961, 1974, 0, 1978, 1965, 1976, 1969, 1967, 1977,
|
|
1966, 1968, 1969, 1976, 1972, 1979, 1977, 1980, 1982, 1985,
|
|
1988, 1983, 1972, 1984, 1974, 1973, 1978, 1979, 1983, 1974,
|
|
1985, 1978, 1984, 1976, 1993, 1987, 1977, 1982, 1980, 1986,
|
|
|
|
1986, 1987, 1988, 1994, 1980, 1982, 1985, 1988, 1983, 1986,
|
|
1984, 1991, 1995, 1999, 2001, 2001, 0, 2004, 1991, 2002,
|
|
2005, 1993, 1987, 2006, 2008, 2009, 1986, 1986, 2013, 2005,
|
|
1994, 2012, 2011, 2014, 2015, 1995, 2006, 2009, 1991, 1995,
|
|
1999, 2011, 2002, 2001, 2004, 2016, 2002, 2005, 2017, 2012,
|
|
2006, 2008, 2009, 2018, 2013, 2013, 2020, 2016, 2012, 2011,
|
|
2014, 2015, 2019, 2021, 2019, 2022, 2023, 2025, 2020, 2021,
|
|
2017, 2024, 2016, 2028, 2030, 2017, 2031, 2032, 2034, 2024,
|
|
2018, 2035, 2037, 2020, 2038, 2040, 2046, 2022, 2023, 2019,
|
|
2021, 0, 2022, 2023, 2025, 2039, 2034, 2037, 2024, 2044,
|
|
|
|
2028, 2030, 2048, 2031, 2032, 2034, 2043, 2039, 2035, 2037,
|
|
2038, 2038, 2040, 2049, 2047, 2043, 2050, 2051, 2046, 2059,
|
|
2064, 2049, 2039, 2044, 2048, 2050, 2044, 2047, 2051, 2048,
|
|
2057, 2060, 2061, 2043, 2065, 2063, 2064, 0, 2060, 2063,
|
|
2049, 2047, 2059, 2050, 2051, 2061, 2059, 2064, 2065, 2069,
|
|
2072, 2069, 2066, 2070, 2057, 2067, 2068, 2057, 2060, 2061,
|
|
2066, 2065, 2063, 2071, 2067, 2070, 2073, 2068, 2074, 2076,
|
|
2071, 2075, 2077, 0, 2080, 2081, 2069, 2072, 2078, 2066,
|
|
2070, 2083, 2067, 2068, 2073, 2079, 2080, 2079, 2090, 2082,
|
|
2071, 2085, 2091, 2073, 2077, 2074, 2076, 2075, 2075, 2077,
|
|
|
|
2078, 2080, 2082, 2085, 2087, 2078, 2089, 2081, 2083, 2092,
|
|
0, 2093, 2079, 2087, 2089, 2094, 2082, 2096, 2085, 2098,
|
|
2090, 2099, 2092, 2094, 2091, 2093, 2097, 2098, 2102, 2100,
|
|
2096, 2087, 2101, 2089, 0, 2099, 2092, 2104, 2093, 2103,
|
|
2101, 2105, 2094, 2100, 2096, 2104, 2098, 2106, 2099, 2097,
|
|
2102, 2111, 0, 2097, 2107, 2102, 2100, 2108, 2109, 2101,
|
|
2112, 2103, 2110, 2117, 2104, 0, 2103, 2115, 2105, 2116,
|
|
2110, 2114, 0, 2106, 2106, 2115, 2107, 2116, 2118, 2108,
|
|
2109, 2107, 2121, 2111, 2108, 2109, 2118, 2112, 2119, 2110,
|
|
2125, 2114, 2122, 2123, 2115, 2117, 2116, 2124, 2114, 2126,
|
|
|
|
2122, 2123, 2119, 2128, 2121, 2118, 2127, 0, 2129, 2121,
|
|
2130, 2124, 2133, 0, 2127, 2119, 2125, 2125, 2131, 2122,
|
|
2123, 2126, 2134, 2132, 2124, 0, 2126, 2135, 2136, 2128,
|
|
2128, 2132, 2130, 2127, 2129, 2129, 2136, 2130, 2131, 2133,
|
|
2137, 2140, 2134, 2138, 2141, 2131, 2144, 2135, 2142, 2134,
|
|
2132, 2138, 2143, 2145, 2135, 2136, 2142, 2146, 0, 2147,
|
|
2143, 2145, 2137, 2140, 2148, 2146, 2141, 2137, 2140, 2149,
|
|
2138, 2141, 2144, 2144, 2150, 2142, 2151, 2152, 2154, 2143,
|
|
2145, 2160, 0, 2161, 2146, 2147, 2147, 2157, 0, 2149,
|
|
2158, 2148, 0, 0, 2159, 0, 2149, 2152, 2158, 0,
|
|
|
|
2154, 2150, 2159, 2151, 2152, 2154, 0, 0, 2160, 2157,
|
|
2161, 0, 0, 0, 2157, 0, 0, 2158, 0, 0,
|
|
0, 2159, 2165, 2165, 2165, 2165, 2165, 2165, 2165, 2166,
|
|
2166, 2166, 2166, 2166, 2166, 2166, 2167, 2167, 2167, 2167,
|
|
2167, 2167, 2167, 2168, 2168, 2168, 2168, 2168, 2168, 2168,
|
|
2169, 2169, 2169, 2169, 2169, 2169, 2169, 2171, 2171, 0,
|
|
2171, 2171, 2171, 2171, 2172, 2172, 0, 0, 0, 2172,
|
|
2172, 2173, 2173, 0, 0, 2173, 0, 2173, 2174, 0,
|
|
0, 0, 0, 0, 2174, 2175, 2175, 0, 0, 0,
|
|
2175, 2175, 2176, 0, 0, 0, 0, 0, 2176, 2177,
|
|
|
|
2177, 0, 2177, 2177, 2177, 2177, 2178, 2178, 0, 2178,
|
|
2178, 2178, 2178, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164,
|
|
2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164, 2164
|
|
} ;
|
|
|
|
static yy_state_type yy_last_accepting_state;
|
|
static char *yy_last_accepting_cpos;
|
|
|
|
extern int yy_flex_debug;
|
|
int yy_flex_debug = 0;
|
|
|
|
/* The intent behind this definition is that it'll catch
|
|
* any uses of REJECT which flex missed.
|
|
*/
|
|
#define REJECT reject_used_but_not_detected
|
|
static int yy_more_flag = 0;
|
|
static int yy_more_len = 0;
|
|
#define yymore() ((yy_more_flag) = 1)
|
|
#define YY_MORE_ADJ (yy_more_len)
|
|
#define YY_RESTORE_YY_MORE_OFFSET
|
|
char *yytext;
|
|
#line 1 "util/configlexer.lex"
|
|
#line 2 "util/configlexer.lex"
|
|
/*
|
|
* configlexer.lex - lexical analyzer for unbound config file
|
|
*
|
|
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved
|
|
*
|
|
* See LICENSE for the license.
|
|
*
|
|
*/
|
|
|
|
/* because flex keeps having sign-unsigned compare problems that are unfixed*/
|
|
#if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2))))
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
|
#endif
|
|
|
|
#include <ctype.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#ifdef HAVE_GLOB_H
|
|
# include <glob.h>
|
|
#endif
|
|
|
|
#include "util/config_file.h"
|
|
#include "util/configparser.h"
|
|
void ub_c_error(const char *message);
|
|
|
|
#if 0
|
|
#define LEXOUT(s) printf s /* used ONLY when debugging */
|
|
#else
|
|
#define LEXOUT(s)
|
|
#endif
|
|
|
|
/** avoid warning in about fwrite return value */
|
|
#define ECHO ub_c_error_msg("syntax error at text: %s", yytext)
|
|
|
|
/** A parser variable, this is a statement in the config file which is
|
|
* of the form variable: value1 value2 ... nargs is the number of values. */
|
|
#define YDVAR(nargs, var) \
|
|
num_args=(nargs); \
|
|
LEXOUT(("v(%s%d) ", yytext, num_args)); \
|
|
if(num_args > 0) { BEGIN(val); } \
|
|
return (var);
|
|
|
|
struct inc_state {
|
|
char* filename;
|
|
int line;
|
|
YY_BUFFER_STATE buffer;
|
|
struct inc_state* next;
|
|
};
|
|
static struct inc_state* config_include_stack = NULL;
|
|
static int inc_depth = 0;
|
|
static int inc_prev = 0;
|
|
static int num_args = 0;
|
|
|
|
void init_cfg_parse(void)
|
|
{
|
|
config_include_stack = NULL;
|
|
inc_depth = 0;
|
|
inc_prev = 0;
|
|
num_args = 0;
|
|
}
|
|
|
|
static void config_start_include(const char* filename)
|
|
{
|
|
FILE *input;
|
|
struct inc_state* s;
|
|
char* nm;
|
|
if(inc_depth++ > 100000) {
|
|
ub_c_error_msg("too many include files");
|
|
return;
|
|
}
|
|
if(*filename == '\0') {
|
|
ub_c_error_msg("empty include file name");
|
|
return;
|
|
}
|
|
s = (struct inc_state*)malloc(sizeof(*s));
|
|
if(!s) {
|
|
ub_c_error_msg("include %s: malloc failure", filename);
|
|
return;
|
|
}
|
|
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
|
|
strlen(cfg_parser->chroot)) == 0) {
|
|
filename += strlen(cfg_parser->chroot);
|
|
}
|
|
nm = strdup(filename);
|
|
if(!nm) {
|
|
ub_c_error_msg("include %s: strdup failure", filename);
|
|
free(s);
|
|
return;
|
|
}
|
|
input = fopen(filename, "r");
|
|
if(!input) {
|
|
ub_c_error_msg("cannot open include file '%s': %s",
|
|
filename, strerror(errno));
|
|
free(s);
|
|
free(nm);
|
|
return;
|
|
}
|
|
LEXOUT(("switch_to_include_file(%s)\n", filename));
|
|
s->filename = cfg_parser->filename;
|
|
s->line = cfg_parser->line;
|
|
s->buffer = YY_CURRENT_BUFFER;
|
|
s->next = config_include_stack;
|
|
config_include_stack = s;
|
|
cfg_parser->filename = nm;
|
|
cfg_parser->line = 1;
|
|
yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
|
|
}
|
|
|
|
static void config_start_include_glob(const char* filename)
|
|
{
|
|
|
|
/* check for wildcards */
|
|
#ifdef HAVE_GLOB
|
|
glob_t g;
|
|
size_t i;
|
|
int r, flags;
|
|
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
|
|
!strchr(filename, '{') && !strchr(filename, '~'))) {
|
|
flags = 0
|
|
#ifdef GLOB_ERR
|
|
| GLOB_ERR
|
|
#endif
|
|
#ifdef GLOB_NOSORT
|
|
| GLOB_NOSORT
|
|
#endif
|
|
#ifdef GLOB_BRACE
|
|
| GLOB_BRACE
|
|
#endif
|
|
#ifdef GLOB_TILDE
|
|
| GLOB_TILDE
|
|
#endif
|
|
;
|
|
memset(&g, 0, sizeof(g));
|
|
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
|
|
strlen(cfg_parser->chroot)) == 0) {
|
|
filename += strlen(cfg_parser->chroot);
|
|
}
|
|
r = glob(filename, flags, NULL, &g);
|
|
if(r) {
|
|
/* some error */
|
|
globfree(&g);
|
|
if(r == GLOB_NOMATCH)
|
|
return; /* no matches for pattern */
|
|
config_start_include(filename); /* let original deal with it */
|
|
return;
|
|
}
|
|
/* process files found, if any */
|
|
for(i=0; i<(size_t)g.gl_pathc; i++) {
|
|
config_start_include(g.gl_pathv[i]);
|
|
}
|
|
globfree(&g);
|
|
return;
|
|
}
|
|
#endif /* HAVE_GLOB */
|
|
|
|
config_start_include(filename);
|
|
}
|
|
|
|
static void config_end_include(void)
|
|
{
|
|
struct inc_state* s = config_include_stack;
|
|
--inc_depth;
|
|
if(!s) return;
|
|
free(cfg_parser->filename);
|
|
cfg_parser->filename = s->filename;
|
|
cfg_parser->line = s->line;
|
|
yy_delete_buffer(YY_CURRENT_BUFFER);
|
|
yy_switch_to_buffer(s->buffer);
|
|
config_include_stack = s->next;
|
|
free(s);
|
|
}
|
|
|
|
#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
|
|
#define yy_set_bol(at_bol) \
|
|
{ \
|
|
if ( ! yy_current_buffer ) \
|
|
yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \
|
|
yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
|
|
}
|
|
#endif
|
|
|
|
#define YY_NO_INPUT 1
|
|
#line 187 "util/configlexer.lex"
|
|
#ifndef YY_NO_UNPUT
|
|
#define YY_NO_UNPUT 1
|
|
#endif
|
|
#ifndef YY_NO_INPUT
|
|
#define YY_NO_INPUT 1
|
|
#endif
|
|
|
|
#line 2756 "<stdout>"
|
|
|
|
#define INITIAL 0
|
|
#define quotedstring 1
|
|
#define singlequotedstr 2
|
|
#define include 3
|
|
#define include_quoted 4
|
|
#define val 5
|
|
|
|
#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
|
|
|
|
#ifndef YY_EXTRA_TYPE
|
|
#define YY_EXTRA_TYPE void *
|
|
#endif
|
|
|
|
static int yy_init_globals (void );
|
|
|
|
/* Accessor methods to globals.
|
|
These are made visible to non-reentrant scanners for convenience. */
|
|
|
|
int yylex_destroy (void );
|
|
|
|
int yyget_debug (void );
|
|
|
|
void yyset_debug (int debug_flag );
|
|
|
|
YY_EXTRA_TYPE yyget_extra (void );
|
|
|
|
void yyset_extra (YY_EXTRA_TYPE user_defined );
|
|
|
|
FILE *yyget_in (void );
|
|
|
|
void yyset_in (FILE * _in_str );
|
|
|
|
FILE *yyget_out (void );
|
|
|
|
void yyset_out (FILE * _out_str );
|
|
|
|
yy_size_t yyget_leng (void );
|
|
|
|
char *yyget_text (void );
|
|
|
|
int yyget_lineno (void );
|
|
|
|
void yyset_lineno (int _line_number );
|
|
|
|
/* Macros after this point can all be overridden by user definitions in
|
|
* section 1.
|
|
*/
|
|
|
|
#ifndef YY_SKIP_YYWRAP
|
|
#ifdef __cplusplus
|
|
extern "C" int yywrap (void );
|
|
#else
|
|
extern int yywrap (void );
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef YY_NO_UNPUT
|
|
|
|
#endif
|
|
|
|
#ifndef yytext_ptr
|
|
static void yy_flex_strncpy (char *,yyconst char *,int );
|
|
#endif
|
|
|
|
#ifdef YY_NEED_STRLEN
|
|
static int yy_flex_strlen (yyconst char * );
|
|
#endif
|
|
|
|
#ifndef YY_NO_INPUT
|
|
|
|
#ifdef __cplusplus
|
|
static int yyinput (void );
|
|
#else
|
|
static int input (void );
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* 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, 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 = '*'; \
|
|
size_t 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 = fread(buf, 1, 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 )
|
|
#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 (void);
|
|
|
|
#define YY_DECL int yylex (void)
|
|
#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 \
|
|
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;
|
|
|
|
if ( !(yy_init) )
|
|
{
|
|
(yy_init) = 1;
|
|
|
|
#ifdef YY_USER_INIT
|
|
YY_USER_INIT;
|
|
#endif
|
|
|
|
if ( ! (yy_start) )
|
|
(yy_start) = 1; /* first start state */
|
|
|
|
if ( ! yyin )
|
|
yyin = stdin;
|
|
|
|
if ( ! yyout )
|
|
yyout = stdout;
|
|
|
|
if ( ! YY_CURRENT_BUFFER ) {
|
|
yyensure_buffer_stack ();
|
|
YY_CURRENT_BUFFER_LVALUE =
|
|
yy_create_buffer(yyin,YY_BUF_SIZE );
|
|
}
|
|
|
|
yy_load_buffer_state( );
|
|
}
|
|
|
|
{
|
|
#line 207 "util/configlexer.lex"
|
|
|
|
#line 2979 "<stdout>"
|
|
|
|
while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
|
|
{
|
|
(yy_more_len) = 0;
|
|
if ( (yy_more_flag) )
|
|
{
|
|
(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
|
|
(yy_more_flag) = 0;
|
|
}
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
/* Support of yytext. */
|
|
*yy_cp = (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 = (yy_start);
|
|
yy_match:
|
|
do
|
|
{
|
|
YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
|
|
if ( yy_accept[yy_current_state] )
|
|
{
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
(yy_last_accepting_cpos) = 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 >= 2165 )
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
}
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
++yy_cp;
|
|
}
|
|
while ( yy_base[yy_current_state] != 6214 );
|
|
|
|
yy_find_action:
|
|
yy_act = yy_accept[yy_current_state];
|
|
if ( yy_act == 0 )
|
|
{ /* have to back up */
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
yy_current_state = (yy_last_accepting_state);
|
|
yy_act = 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 0: /* must back up */
|
|
/* undo the effects of YY_DO_BEFORE_ACTION */
|
|
*yy_cp = (yy_hold_char);
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
yy_current_state = (yy_last_accepting_state);
|
|
goto yy_find_action;
|
|
|
|
case 1:
|
|
YY_RULE_SETUP
|
|
#line 208 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("SP ")); /* ignore */ }
|
|
YY_BREAK
|
|
case 2:
|
|
YY_RULE_SETUP
|
|
#line 210 "util/configlexer.lex"
|
|
{
|
|
/* note that flex makes the longest match and '.' is any but not nl */
|
|
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
|
|
YY_BREAK
|
|
case 3:
|
|
YY_RULE_SETUP
|
|
#line 213 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_SERVER) }
|
|
YY_BREAK
|
|
case 4:
|
|
YY_RULE_SETUP
|
|
#line 214 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
|
|
YY_BREAK
|
|
case 5:
|
|
YY_RULE_SETUP
|
|
#line 215 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
|
|
YY_BREAK
|
|
case 6:
|
|
YY_RULE_SETUP
|
|
#line 216 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_NUM_THREADS) }
|
|
YY_BREAK
|
|
case 7:
|
|
YY_RULE_SETUP
|
|
#line 217 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VERBOSITY) }
|
|
YY_BREAK
|
|
case 8:
|
|
YY_RULE_SETUP
|
|
#line 218 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PORT) }
|
|
YY_BREAK
|
|
case 9:
|
|
YY_RULE_SETUP
|
|
#line 219 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_RANGE) }
|
|
YY_BREAK
|
|
case 10:
|
|
YY_RULE_SETUP
|
|
#line 220 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
|
|
YY_BREAK
|
|
case 11:
|
|
YY_RULE_SETUP
|
|
#line 221 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
|
|
YY_BREAK
|
|
case 12:
|
|
YY_RULE_SETUP
|
|
#line 222 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
|
|
YY_BREAK
|
|
case 13:
|
|
YY_RULE_SETUP
|
|
#line 223 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
|
|
YY_BREAK
|
|
case 14:
|
|
YY_RULE_SETUP
|
|
#line 224 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_IP4) }
|
|
YY_BREAK
|
|
case 15:
|
|
YY_RULE_SETUP
|
|
#line 225 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_IP6) }
|
|
YY_BREAK
|
|
case 16:
|
|
YY_RULE_SETUP
|
|
#line 226 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PREFER_IP6) }
|
|
YY_BREAK
|
|
case 17:
|
|
YY_RULE_SETUP
|
|
#line 227 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_UDP) }
|
|
YY_BREAK
|
|
case 18:
|
|
YY_RULE_SETUP
|
|
#line 228 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_TCP) }
|
|
YY_BREAK
|
|
case 19:
|
|
YY_RULE_SETUP
|
|
#line 229 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TCP_UPSTREAM) }
|
|
YY_BREAK
|
|
case 20:
|
|
YY_RULE_SETUP
|
|
#line 230 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TCP_MSS) }
|
|
YY_BREAK
|
|
case 21:
|
|
YY_RULE_SETUP
|
|
#line 231 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
|
|
YY_BREAK
|
|
case 22:
|
|
YY_RULE_SETUP
|
|
#line 232 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SSL_UPSTREAM) }
|
|
YY_BREAK
|
|
case 23:
|
|
YY_RULE_SETUP
|
|
#line 233 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
|
|
YY_BREAK
|
|
case 24:
|
|
YY_RULE_SETUP
|
|
#line 234 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
|
|
YY_BREAK
|
|
case 25:
|
|
YY_RULE_SETUP
|
|
#line 235 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SSL_PORT) }
|
|
YY_BREAK
|
|
case 26:
|
|
YY_RULE_SETUP
|
|
#line 236 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_USE_SYSTEMD) }
|
|
YY_BREAK
|
|
case 27:
|
|
YY_RULE_SETUP
|
|
#line 237 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_DAEMONIZE) }
|
|
YY_BREAK
|
|
case 28:
|
|
YY_RULE_SETUP
|
|
#line 238 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
|
YY_BREAK
|
|
case 29:
|
|
YY_RULE_SETUP
|
|
#line 239 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
|
YY_BREAK
|
|
case 30:
|
|
YY_RULE_SETUP
|
|
#line 240 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
|
|
YY_BREAK
|
|
case 31:
|
|
YY_RULE_SETUP
|
|
#line 241 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
|
|
YY_BREAK
|
|
case 32:
|
|
YY_RULE_SETUP
|
|
#line 242 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SO_RCVBUF) }
|
|
YY_BREAK
|
|
case 33:
|
|
YY_RULE_SETUP
|
|
#line 243 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SO_SNDBUF) }
|
|
YY_BREAK
|
|
case 34:
|
|
YY_RULE_SETUP
|
|
#line 244 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SO_REUSEPORT) }
|
|
YY_BREAK
|
|
case 35:
|
|
YY_RULE_SETUP
|
|
#line 245 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IP_TRANSPARENT) }
|
|
YY_BREAK
|
|
case 36:
|
|
YY_RULE_SETUP
|
|
#line 246 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IP_FREEBIND) }
|
|
YY_BREAK
|
|
case 37:
|
|
YY_RULE_SETUP
|
|
#line 247 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CHROOT) }
|
|
YY_BREAK
|
|
case 38:
|
|
YY_RULE_SETUP
|
|
#line 248 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_USERNAME) }
|
|
YY_BREAK
|
|
case 39:
|
|
YY_RULE_SETUP
|
|
#line 249 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DIRECTORY) }
|
|
YY_BREAK
|
|
case 40:
|
|
YY_RULE_SETUP
|
|
#line 250 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOGFILE) }
|
|
YY_BREAK
|
|
case 41:
|
|
YY_RULE_SETUP
|
|
#line 251 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PIDFILE) }
|
|
YY_BREAK
|
|
case 42:
|
|
YY_RULE_SETUP
|
|
#line 252 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_ROOT_HINTS) }
|
|
YY_BREAK
|
|
case 43:
|
|
YY_RULE_SETUP
|
|
#line 253 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
|
|
YY_BREAK
|
|
case 44:
|
|
YY_RULE_SETUP
|
|
#line 254 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
|
|
YY_BREAK
|
|
case 45:
|
|
YY_RULE_SETUP
|
|
#line 255 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
|
|
YY_BREAK
|
|
case 46:
|
|
YY_RULE_SETUP
|
|
#line 256 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
|
|
YY_BREAK
|
|
case 47:
|
|
YY_RULE_SETUP
|
|
#line 257 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
|
|
YY_BREAK
|
|
case 48:
|
|
YY_RULE_SETUP
|
|
#line 258 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
|
|
YY_BREAK
|
|
case 49:
|
|
YY_RULE_SETUP
|
|
#line 259 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
|
|
YY_BREAK
|
|
case 50:
|
|
YY_RULE_SETUP
|
|
#line 260 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
|
|
YY_BREAK
|
|
case 51:
|
|
YY_RULE_SETUP
|
|
#line 261 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
|
|
YY_BREAK
|
|
case 52:
|
|
YY_RULE_SETUP
|
|
#line 262 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
|
|
YY_BREAK
|
|
case 53:
|
|
YY_RULE_SETUP
|
|
#line 263 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
|
|
YY_BREAK
|
|
case 54:
|
|
YY_RULE_SETUP
|
|
#line 264 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
|
|
YY_BREAK
|
|
case 55:
|
|
YY_RULE_SETUP
|
|
#line 265 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
|
|
YY_BREAK
|
|
case 56:
|
|
YY_RULE_SETUP
|
|
#line 266 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
|
|
YY_BREAK
|
|
case 57:
|
|
YY_RULE_SETUP
|
|
#line 267 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
|
|
YY_BREAK
|
|
case 58:
|
|
YY_RULE_SETUP
|
|
#line 268 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
|
|
YY_BREAK
|
|
case 59:
|
|
YY_RULE_SETUP
|
|
#line 269 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
|
|
YY_BREAK
|
|
case 60:
|
|
YY_RULE_SETUP
|
|
#line 270 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DELAY_CLOSE) }
|
|
YY_BREAK
|
|
case 61:
|
|
YY_RULE_SETUP
|
|
#line 271 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
|
|
YY_BREAK
|
|
case 62:
|
|
YY_RULE_SETUP
|
|
#line 272 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
|
|
YY_BREAK
|
|
case 63:
|
|
YY_RULE_SETUP
|
|
#line 273 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
|
|
YY_BREAK
|
|
case 64:
|
|
YY_RULE_SETUP
|
|
#line 274 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_GLUE) }
|
|
YY_BREAK
|
|
case 65:
|
|
YY_RULE_SETUP
|
|
#line 275 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
|
|
YY_BREAK
|
|
case 66:
|
|
YY_RULE_SETUP
|
|
#line 276 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
|
|
YY_BREAK
|
|
case 67:
|
|
YY_RULE_SETUP
|
|
#line 277 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
|
|
YY_BREAK
|
|
case 68:
|
|
YY_RULE_SETUP
|
|
#line 278 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
|
|
YY_BREAK
|
|
case 69:
|
|
YY_RULE_SETUP
|
|
#line 279 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
|
|
YY_BREAK
|
|
case 70:
|
|
YY_RULE_SETUP
|
|
#line 280 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CAPS_WHITELIST) }
|
|
YY_BREAK
|
|
case 71:
|
|
YY_RULE_SETUP
|
|
#line 281 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
|
|
YY_BREAK
|
|
case 72:
|
|
YY_RULE_SETUP
|
|
#line 282 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
|
|
YY_BREAK
|
|
case 73:
|
|
YY_RULE_SETUP
|
|
#line 283 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
|
|
YY_BREAK
|
|
case 74:
|
|
YY_RULE_SETUP
|
|
#line 284 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PREFETCH_KEY) }
|
|
YY_BREAK
|
|
case 75:
|
|
YY_RULE_SETUP
|
|
#line 285 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PREFETCH) }
|
|
YY_BREAK
|
|
case 76:
|
|
YY_RULE_SETUP
|
|
#line 286 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_STUB_ZONE) }
|
|
YY_BREAK
|
|
case 77:
|
|
YY_RULE_SETUP
|
|
#line 287 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_NAME) }
|
|
YY_BREAK
|
|
case 78:
|
|
YY_RULE_SETUP
|
|
#line 288 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STUB_ADDR) }
|
|
YY_BREAK
|
|
case 79:
|
|
YY_RULE_SETUP
|
|
#line 289 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STUB_HOST) }
|
|
YY_BREAK
|
|
case 80:
|
|
YY_RULE_SETUP
|
|
#line 290 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STUB_PRIME) }
|
|
YY_BREAK
|
|
case 81:
|
|
YY_RULE_SETUP
|
|
#line 291 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STUB_FIRST) }
|
|
YY_BREAK
|
|
case 82:
|
|
YY_RULE_SETUP
|
|
#line 292 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
|
|
YY_BREAK
|
|
case 83:
|
|
YY_RULE_SETUP
|
|
#line 293 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_FORWARD_ZONE) }
|
|
YY_BREAK
|
|
case 84:
|
|
YY_RULE_SETUP
|
|
#line 294 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_FORWARD_ADDR) }
|
|
YY_BREAK
|
|
case 85:
|
|
YY_RULE_SETUP
|
|
#line 295 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_FORWARD_HOST) }
|
|
YY_BREAK
|
|
case 86:
|
|
YY_RULE_SETUP
|
|
#line 296 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_FORWARD_FIRST) }
|
|
YY_BREAK
|
|
case 87:
|
|
YY_RULE_SETUP
|
|
#line 297 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
|
|
YY_BREAK
|
|
case 88:
|
|
YY_RULE_SETUP
|
|
#line 298 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_VIEW) }
|
|
YY_BREAK
|
|
case 89:
|
|
YY_RULE_SETUP
|
|
#line 299 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VIEW_FIRST) }
|
|
YY_BREAK
|
|
case 90:
|
|
YY_RULE_SETUP
|
|
#line 300 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
|
|
YY_BREAK
|
|
case 91:
|
|
YY_RULE_SETUP
|
|
#line 301 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
|
|
YY_BREAK
|
|
case 92:
|
|
YY_RULE_SETUP
|
|
#line 302 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL) }
|
|
YY_BREAK
|
|
case 93:
|
|
YY_RULE_SETUP
|
|
#line 303 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
|
|
YY_BREAK
|
|
case 94:
|
|
YY_RULE_SETUP
|
|
#line 304 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
|
|
YY_BREAK
|
|
case 95:
|
|
YY_RULE_SETUP
|
|
#line 305 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
|
|
YY_BREAK
|
|
case 96:
|
|
YY_RULE_SETUP
|
|
#line 306 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
|
|
YY_BREAK
|
|
case 97:
|
|
YY_RULE_SETUP
|
|
#line 307 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
|
|
YY_BREAK
|
|
case 98:
|
|
YY_RULE_SETUP
|
|
#line 308 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HIDE_IDENTITY) }
|
|
YY_BREAK
|
|
case 99:
|
|
YY_RULE_SETUP
|
|
#line 309 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HIDE_VERSION) }
|
|
YY_BREAK
|
|
case 100:
|
|
YY_RULE_SETUP
|
|
#line 310 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
|
|
YY_BREAK
|
|
case 101:
|
|
YY_RULE_SETUP
|
|
#line 311 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IDENTITY) }
|
|
YY_BREAK
|
|
case 102:
|
|
YY_RULE_SETUP
|
|
#line 312 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VERSION) }
|
|
YY_BREAK
|
|
case 103:
|
|
YY_RULE_SETUP
|
|
#line 313 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MODULE_CONF) }
|
|
YY_BREAK
|
|
case 104:
|
|
YY_RULE_SETUP
|
|
#line 314 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DLV_ANCHOR) }
|
|
YY_BREAK
|
|
case 105:
|
|
YY_RULE_SETUP
|
|
#line 315 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
|
|
YY_BREAK
|
|
case 106:
|
|
YY_RULE_SETUP
|
|
#line 316 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
|
|
YY_BREAK
|
|
case 107:
|
|
YY_RULE_SETUP
|
|
#line 317 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
|
|
YY_BREAK
|
|
case 108:
|
|
YY_RULE_SETUP
|
|
#line 318 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
|
|
YY_BREAK
|
|
case 109:
|
|
YY_RULE_SETUP
|
|
#line 319 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR) }
|
|
YY_BREAK
|
|
case 110:
|
|
YY_RULE_SETUP
|
|
#line 320 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
|
|
YY_BREAK
|
|
case 111:
|
|
YY_RULE_SETUP
|
|
#line 321 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
|
|
YY_BREAK
|
|
case 112:
|
|
YY_RULE_SETUP
|
|
#line 322 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
|
|
YY_BREAK
|
|
case 113:
|
|
YY_RULE_SETUP
|
|
#line 323 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_BOGUS_TTL) }
|
|
YY_BREAK
|
|
case 114:
|
|
YY_RULE_SETUP
|
|
#line 324 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
|
|
YY_BREAK
|
|
case 115:
|
|
YY_RULE_SETUP
|
|
#line 325 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
|
|
YY_BREAK
|
|
case 116:
|
|
YY_RULE_SETUP
|
|
#line 326 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
|
|
YY_BREAK
|
|
case 117:
|
|
YY_RULE_SETUP
|
|
#line 327 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED) }
|
|
YY_BREAK
|
|
case 118:
|
|
YY_RULE_SETUP
|
|
#line 328 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_FAKE_DSA) }
|
|
YY_BREAK
|
|
case 119:
|
|
YY_RULE_SETUP
|
|
#line 329 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_FAKE_SHA1) }
|
|
YY_BREAK
|
|
case 120:
|
|
YY_RULE_SETUP
|
|
#line 330 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
|
|
YY_BREAK
|
|
case 121:
|
|
YY_RULE_SETUP
|
|
#line 331 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
|
|
YY_BREAK
|
|
case 122:
|
|
YY_RULE_SETUP
|
|
#line 332 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
|
|
YY_BREAK
|
|
case 123:
|
|
YY_RULE_SETUP
|
|
#line 333 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
|
|
YY_BREAK
|
|
case 124:
|
|
YY_RULE_SETUP
|
|
#line 334 "util/configlexer.lex"
|
|
{
|
|
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
|
|
YY_BREAK
|
|
case 125:
|
|
YY_RULE_SETUP
|
|
#line 336 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
|
|
YY_BREAK
|
|
case 126:
|
|
YY_RULE_SETUP
|
|
#line 337 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
|
|
YY_BREAK
|
|
case 127:
|
|
YY_RULE_SETUP
|
|
#line 338 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_KEEP_MISSING) }
|
|
YY_BREAK
|
|
case 128:
|
|
YY_RULE_SETUP
|
|
#line 339 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
|
|
YY_BREAK
|
|
case 129:
|
|
YY_RULE_SETUP
|
|
#line 340 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_USE_SYSLOG) }
|
|
YY_BREAK
|
|
case 130:
|
|
YY_RULE_SETUP
|
|
#line 341 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOG_IDENTITY) }
|
|
YY_BREAK
|
|
case 131:
|
|
YY_RULE_SETUP
|
|
#line 342 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
|
|
YY_BREAK
|
|
case 132:
|
|
YY_RULE_SETUP
|
|
#line 343 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOG_QUERIES) }
|
|
YY_BREAK
|
|
case 133:
|
|
YY_RULE_SETUP
|
|
#line 344 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOG_REPLIES) }
|
|
YY_BREAK
|
|
case 134:
|
|
YY_RULE_SETUP
|
|
#line 345 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_LOCAL_ZONE) }
|
|
YY_BREAK
|
|
case 135:
|
|
YY_RULE_SETUP
|
|
#line 346 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOCAL_DATA) }
|
|
YY_BREAK
|
|
case 136:
|
|
YY_RULE_SETUP
|
|
#line 347 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
|
|
YY_BREAK
|
|
case 137:
|
|
YY_RULE_SETUP
|
|
#line 348 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
|
|
YY_BREAK
|
|
case 138:
|
|
YY_RULE_SETUP
|
|
#line 349 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
|
|
YY_BREAK
|
|
case 139:
|
|
YY_RULE_SETUP
|
|
#line 350 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
|
|
YY_BREAK
|
|
case 140:
|
|
YY_RULE_SETUP
|
|
#line 351 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
|
|
YY_BREAK
|
|
case 141:
|
|
YY_RULE_SETUP
|
|
#line 352 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
|
|
YY_BREAK
|
|
case 142:
|
|
YY_RULE_SETUP
|
|
#line 353 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SHM_ENABLE) }
|
|
YY_BREAK
|
|
case 143:
|
|
YY_RULE_SETUP
|
|
#line 354 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SHM_KEY) }
|
|
YY_BREAK
|
|
case 144:
|
|
YY_RULE_SETUP
|
|
#line 355 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_REMOTE_CONTROL) }
|
|
YY_BREAK
|
|
case 145:
|
|
YY_RULE_SETUP
|
|
#line 356 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_ENABLE) }
|
|
YY_BREAK
|
|
case 146:
|
|
YY_RULE_SETUP
|
|
#line 357 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
|
|
YY_BREAK
|
|
case 147:
|
|
YY_RULE_SETUP
|
|
#line 358 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_PORT) }
|
|
YY_BREAK
|
|
case 148:
|
|
YY_RULE_SETUP
|
|
#line 359 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
|
|
YY_BREAK
|
|
case 149:
|
|
YY_RULE_SETUP
|
|
#line 360 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
|
|
YY_BREAK
|
|
case 150:
|
|
YY_RULE_SETUP
|
|
#line 361 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
|
|
YY_BREAK
|
|
case 151:
|
|
YY_RULE_SETUP
|
|
#line 362 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
|
|
YY_BREAK
|
|
case 152:
|
|
YY_RULE_SETUP
|
|
#line 363 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
|
|
YY_BREAK
|
|
case 153:
|
|
YY_RULE_SETUP
|
|
#line 364 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
|
|
YY_BREAK
|
|
case 154:
|
|
YY_RULE_SETUP
|
|
#line 365 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_PYTHON) }
|
|
YY_BREAK
|
|
case 155:
|
|
YY_RULE_SETUP
|
|
#line 366 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
|
|
YY_BREAK
|
|
case 156:
|
|
YY_RULE_SETUP
|
|
#line 367 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
|
|
YY_BREAK
|
|
case 157:
|
|
YY_RULE_SETUP
|
|
#line 368 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
|
|
YY_BREAK
|
|
case 158:
|
|
YY_RULE_SETUP
|
|
#line 369 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
|
|
YY_BREAK
|
|
case 159:
|
|
YY_RULE_SETUP
|
|
#line 370 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNS64_PREFIX) }
|
|
YY_BREAK
|
|
case 160:
|
|
YY_RULE_SETUP
|
|
#line 371 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
|
|
YY_BREAK
|
|
case 161:
|
|
YY_RULE_SETUP
|
|
#line 372 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DEFINE_TAG) }
|
|
YY_BREAK
|
|
case 162:
|
|
YY_RULE_SETUP
|
|
#line 373 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
|
|
YY_BREAK
|
|
case 163:
|
|
YY_RULE_SETUP
|
|
#line 374 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
|
|
YY_BREAK
|
|
case 164:
|
|
YY_RULE_SETUP
|
|
#line 375 "util/configlexer.lex"
|
|
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
|
|
YY_BREAK
|
|
case 165:
|
|
YY_RULE_SETUP
|
|
#line 376 "util/configlexer.lex"
|
|
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
|
|
YY_BREAK
|
|
case 166:
|
|
YY_RULE_SETUP
|
|
#line 377 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
|
|
YY_BREAK
|
|
case 167:
|
|
YY_RULE_SETUP
|
|
#line 378 "util/configlexer.lex"
|
|
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
|
|
YY_BREAK
|
|
case 168:
|
|
YY_RULE_SETUP
|
|
#line 379 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_DNSTAP) }
|
|
YY_BREAK
|
|
case 169:
|
|
YY_RULE_SETUP
|
|
#line 380 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
|
|
YY_BREAK
|
|
case 170:
|
|
YY_RULE_SETUP
|
|
#line 381 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
|
|
YY_BREAK
|
|
case 171:
|
|
YY_RULE_SETUP
|
|
#line 382 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
|
|
YY_BREAK
|
|
case 172:
|
|
YY_RULE_SETUP
|
|
#line 383 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
|
|
YY_BREAK
|
|
case 173:
|
|
YY_RULE_SETUP
|
|
#line 384 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
|
|
YY_BREAK
|
|
case 174:
|
|
YY_RULE_SETUP
|
|
#line 385 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSTAP_VERSION) }
|
|
YY_BREAK
|
|
case 175:
|
|
YY_RULE_SETUP
|
|
#line 386 "util/configlexer.lex"
|
|
{
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
|
|
YY_BREAK
|
|
case 176:
|
|
YY_RULE_SETUP
|
|
#line 388 "util/configlexer.lex"
|
|
{
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
|
|
YY_BREAK
|
|
case 177:
|
|
YY_RULE_SETUP
|
|
#line 390 "util/configlexer.lex"
|
|
{
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
|
|
YY_BREAK
|
|
case 178:
|
|
YY_RULE_SETUP
|
|
#line 392 "util/configlexer.lex"
|
|
{
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
|
|
YY_BREAK
|
|
case 179:
|
|
YY_RULE_SETUP
|
|
#line 394 "util/configlexer.lex"
|
|
{
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
|
|
YY_BREAK
|
|
case 180:
|
|
YY_RULE_SETUP
|
|
#line 396 "util/configlexer.lex"
|
|
{
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
|
|
YY_BREAK
|
|
case 181:
|
|
YY_RULE_SETUP
|
|
#line 398 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
|
|
YY_BREAK
|
|
case 182:
|
|
YY_RULE_SETUP
|
|
#line 399 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IP_RATELIMIT) }
|
|
YY_BREAK
|
|
case 183:
|
|
YY_RULE_SETUP
|
|
#line 400 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RATELIMIT) }
|
|
YY_BREAK
|
|
case 184:
|
|
YY_RULE_SETUP
|
|
#line 401 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
|
|
YY_BREAK
|
|
case 185:
|
|
YY_RULE_SETUP
|
|
#line 402 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
|
|
YY_BREAK
|
|
case 186:
|
|
YY_RULE_SETUP
|
|
#line 403 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
|
|
YY_BREAK
|
|
case 187:
|
|
YY_RULE_SETUP
|
|
#line 404 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
|
|
YY_BREAK
|
|
case 188:
|
|
YY_RULE_SETUP
|
|
#line 405 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
|
|
YY_BREAK
|
|
case 189:
|
|
YY_RULE_SETUP
|
|
#line 406 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
|
|
YY_BREAK
|
|
case 190:
|
|
YY_RULE_SETUP
|
|
#line 407 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
|
|
YY_BREAK
|
|
case 191:
|
|
YY_RULE_SETUP
|
|
#line 408 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
|
|
YY_BREAK
|
|
case 192:
|
|
YY_RULE_SETUP
|
|
#line 409 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
|
|
YY_BREAK
|
|
case 193:
|
|
YY_RULE_SETUP
|
|
#line 410 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_RESPONSE_IP) }
|
|
YY_BREAK
|
|
case 194:
|
|
YY_RULE_SETUP
|
|
#line 411 "util/configlexer.lex"
|
|
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
|
|
YY_BREAK
|
|
case 195:
|
|
YY_RULE_SETUP
|
|
#line 412 "util/configlexer.lex"
|
|
{ YDVAR(0, VAR_DNSCRYPT) }
|
|
YY_BREAK
|
|
case 196:
|
|
YY_RULE_SETUP
|
|
#line 413 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
|
|
YY_BREAK
|
|
case 197:
|
|
YY_RULE_SETUP
|
|
#line 414 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
|
|
YY_BREAK
|
|
case 198:
|
|
YY_RULE_SETUP
|
|
#line 415 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
|
|
YY_BREAK
|
|
case 199:
|
|
YY_RULE_SETUP
|
|
#line 416 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
|
|
YY_BREAK
|
|
case 200:
|
|
YY_RULE_SETUP
|
|
#line 417 "util/configlexer.lex"
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
|
|
YY_BREAK
|
|
case 201:
|
|
/* rule 201 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 418 "util/configlexer.lex"
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++; }
|
|
YY_BREAK
|
|
/* Quoted strings. Strip leading and ending quotes */
|
|
case 202:
|
|
YY_RULE_SETUP
|
|
#line 421 "util/configlexer.lex"
|
|
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
|
|
YY_BREAK
|
|
case YY_STATE_EOF(quotedstring):
|
|
#line 422 "util/configlexer.lex"
|
|
{
|
|
yyerror("EOF inside quoted string");
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
else { BEGIN(val); }
|
|
}
|
|
YY_BREAK
|
|
case 203:
|
|
YY_RULE_SETUP
|
|
#line 427 "util/configlexer.lex"
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
|
YY_BREAK
|
|
case 204:
|
|
/* rule 204 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 428 "util/configlexer.lex"
|
|
{ yyerror("newline inside quoted string, no end \"");
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
|
YY_BREAK
|
|
case 205:
|
|
YY_RULE_SETUP
|
|
#line 430 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("QE "));
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
else { BEGIN(val); }
|
|
yytext[yyleng - 1] = '\0';
|
|
yylval.str = strdup(yytext);
|
|
if(!yylval.str)
|
|
yyerror("out of memory");
|
|
return STRING_ARG;
|
|
}
|
|
YY_BREAK
|
|
/* Single Quoted strings. Strip leading and ending quotes */
|
|
case 206:
|
|
YY_RULE_SETUP
|
|
#line 442 "util/configlexer.lex"
|
|
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
|
|
YY_BREAK
|
|
case YY_STATE_EOF(singlequotedstr):
|
|
#line 443 "util/configlexer.lex"
|
|
{
|
|
yyerror("EOF inside quoted string");
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
else { BEGIN(val); }
|
|
}
|
|
YY_BREAK
|
|
case 207:
|
|
YY_RULE_SETUP
|
|
#line 448 "util/configlexer.lex"
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
|
YY_BREAK
|
|
case 208:
|
|
/* rule 208 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 449 "util/configlexer.lex"
|
|
{ yyerror("newline inside quoted string, no end '");
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
|
YY_BREAK
|
|
case 209:
|
|
YY_RULE_SETUP
|
|
#line 451 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("SQE "));
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
else { BEGIN(val); }
|
|
yytext[yyleng - 1] = '\0';
|
|
yylval.str = strdup(yytext);
|
|
if(!yylval.str)
|
|
yyerror("out of memory");
|
|
return STRING_ARG;
|
|
}
|
|
YY_BREAK
|
|
/* include: directive */
|
|
case 210:
|
|
YY_RULE_SETUP
|
|
#line 463 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
|
|
YY_BREAK
|
|
case YY_STATE_EOF(include):
|
|
#line 465 "util/configlexer.lex"
|
|
{
|
|
yyerror("EOF inside include directive");
|
|
BEGIN(inc_prev);
|
|
}
|
|
YY_BREAK
|
|
case 211:
|
|
YY_RULE_SETUP
|
|
#line 469 "util/configlexer.lex"
|
|
{ LEXOUT(("ISP ")); /* ignore */ }
|
|
YY_BREAK
|
|
case 212:
|
|
/* rule 212 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 470 "util/configlexer.lex"
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++;}
|
|
YY_BREAK
|
|
case 213:
|
|
YY_RULE_SETUP
|
|
#line 471 "util/configlexer.lex"
|
|
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
|
|
YY_BREAK
|
|
case 214:
|
|
YY_RULE_SETUP
|
|
#line 472 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("Iunquotedstr(%s) ", yytext));
|
|
config_start_include_glob(yytext);
|
|
BEGIN(inc_prev);
|
|
}
|
|
YY_BREAK
|
|
case YY_STATE_EOF(include_quoted):
|
|
#line 477 "util/configlexer.lex"
|
|
{
|
|
yyerror("EOF inside quoted string");
|
|
BEGIN(inc_prev);
|
|
}
|
|
YY_BREAK
|
|
case 215:
|
|
YY_RULE_SETUP
|
|
#line 481 "util/configlexer.lex"
|
|
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
|
|
YY_BREAK
|
|
case 216:
|
|
/* rule 216 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 482 "util/configlexer.lex"
|
|
{ yyerror("newline before \" in include name");
|
|
cfg_parser->line++; BEGIN(inc_prev); }
|
|
YY_BREAK
|
|
case 217:
|
|
YY_RULE_SETUP
|
|
#line 484 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("IQE "));
|
|
yytext[yyleng - 1] = '\0';
|
|
config_start_include_glob(yytext);
|
|
BEGIN(inc_prev);
|
|
}
|
|
YY_BREAK
|
|
case YY_STATE_EOF(INITIAL):
|
|
case YY_STATE_EOF(val):
|
|
#line 490 "util/configlexer.lex"
|
|
{
|
|
LEXOUT(("LEXEOF "));
|
|
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
|
|
if (!config_include_stack) {
|
|
yyterminate();
|
|
} else {
|
|
fclose(yyin);
|
|
config_end_include();
|
|
}
|
|
}
|
|
YY_BREAK
|
|
case 218:
|
|
YY_RULE_SETUP
|
|
#line 501 "util/configlexer.lex"
|
|
{ LEXOUT(("unquotedstr(%s) ", yytext));
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
|
yylval.str = strdup(yytext); return STRING_ARG; }
|
|
YY_BREAK
|
|
case 219:
|
|
YY_RULE_SETUP
|
|
#line 505 "util/configlexer.lex"
|
|
{
|
|
ub_c_error_msg("unknown keyword '%s'", yytext);
|
|
}
|
|
YY_BREAK
|
|
case 220:
|
|
YY_RULE_SETUP
|
|
#line 509 "util/configlexer.lex"
|
|
{
|
|
ub_c_error_msg("stray '%s'", yytext);
|
|
}
|
|
YY_BREAK
|
|
case 221:
|
|
YY_RULE_SETUP
|
|
#line 513 "util/configlexer.lex"
|
|
ECHO;
|
|
YY_BREAK
|
|
#line 4246 "<stdout>"
|
|
|
|
case YY_END_OF_BUFFER:
|
|
{
|
|
/* Amount of text matched not including the EOB char. */
|
|
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
|
|
|
|
/* Undo the effects of YY_DO_BEFORE_ACTION. */
|
|
*yy_cp = (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.
|
|
*/
|
|
(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 ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
|
{ /* This was really a NUL. */
|
|
yy_state_type yy_next_state;
|
|
|
|
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
|
|
|
|
yy_current_state = yy_get_previous_state( );
|
|
|
|
/* 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 );
|
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
|
|
|
if ( yy_next_state )
|
|
{
|
|
/* Consume the NUL. */
|
|
yy_cp = ++(yy_c_buf_p);
|
|
yy_current_state = yy_next_state;
|
|
goto yy_match;
|
|
}
|
|
|
|
else
|
|
{
|
|
yy_cp = (yy_c_buf_p);
|
|
goto yy_find_action;
|
|
}
|
|
}
|
|
|
|
else switch ( yy_get_next_buffer( ) )
|
|
{
|
|
case EOB_ACT_END_OF_FILE:
|
|
{
|
|
(yy_did_buffer_switch_on_eof) = 0;
|
|
|
|
if ( yywrap( ) )
|
|
{
|
|
/* 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.
|
|
*/
|
|
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
|
|
|
|
yy_act = YY_STATE_EOF(YY_START);
|
|
goto do_action;
|
|
}
|
|
|
|
else
|
|
{
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
|
YY_NEW_FILE;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
|
(yy_c_buf_p) =
|
|
(yytext_ptr) + yy_amount_of_matched_text;
|
|
|
|
yy_current_state = yy_get_previous_state( );
|
|
|
|
yy_cp = (yy_c_buf_p);
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
|
goto yy_match;
|
|
|
|
case EOB_ACT_LAST_MATCH:
|
|
(yy_c_buf_p) =
|
|
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
|
|
|
|
yy_current_state = yy_get_previous_state( );
|
|
|
|
yy_cp = (yy_c_buf_p);
|
|
yy_bp = (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 (void)
|
|
{
|
|
char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
|
|
char *source = (yytext_ptr);
|
|
yy_size_t number_to_move, i;
|
|
int ret_val;
|
|
|
|
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(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 ( (yy_c_buf_p) - (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 = (yy_size_t) ((yy_c_buf_p) - (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 = (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. */
|
|
|
|
/* just a shorter name for the current buffer */
|
|
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
|
|
|
|
int yy_c_buf_p_offset =
|
|
(int) ((yy_c_buf_p) - b->yy_ch_buf);
|
|
|
|
if ( b->yy_is_our_buffer )
|
|
{
|
|
yy_size_t new_size = b->yy_buf_size * 2;
|
|
|
|
if ( new_size <= 0 )
|
|
b->yy_buf_size += b->yy_buf_size / 8;
|
|
else
|
|
b->yy_buf_size *= 2;
|
|
|
|
b->yy_ch_buf = (char *)
|
|
/* Include room in for 2 EOB chars. */
|
|
yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
|
|
}
|
|
else
|
|
/* Can't grow it, we don't own it. */
|
|
b->yy_ch_buf = 0;
|
|
|
|
if ( ! b->yy_ch_buf )
|
|
YY_FATAL_ERROR(
|
|
"fatal error - scanner input buffer overflow" );
|
|
|
|
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
|
|
|
|
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
|
|
number_to_move - 1;
|
|
|
|
}
|
|
|
|
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]),
|
|
(yy_n_chars), num_to_read );
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
|
}
|
|
|
|
if ( (yy_n_chars) == 0 )
|
|
{
|
|
if ( number_to_move == YY_MORE_ADJ )
|
|
{
|
|
ret_val = EOB_ACT_END_OF_FILE;
|
|
yyrestart(yyin );
|
|
}
|
|
|
|
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 ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
|
|
/* Extend the array by 50%, plus the number we really need. */
|
|
yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
|
|
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
|
|
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
|
|
}
|
|
|
|
(yy_n_chars) += number_to_move;
|
|
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
|
|
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
(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 (void)
|
|
{
|
|
yy_state_type yy_current_state;
|
|
char *yy_cp;
|
|
|
|
yy_current_state = (yy_start);
|
|
|
|
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
|
|
{
|
|
YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
|
|
if ( yy_accept[yy_current_state] )
|
|
{
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
(yy_last_accepting_cpos) = 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 >= 2165 )
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
}
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
}
|
|
|
|
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 )
|
|
{
|
|
int yy_is_jam;
|
|
char *yy_cp = (yy_c_buf_p);
|
|
|
|
YY_CHAR yy_c = 1;
|
|
if ( yy_accept[yy_current_state] )
|
|
{
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
(yy_last_accepting_cpos) = 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 >= 2165 )
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
}
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
yy_is_jam = (yy_current_state == 2164);
|
|
|
|
return yy_is_jam ? 0 : yy_current_state;
|
|
}
|
|
|
|
#ifndef YY_NO_UNPUT
|
|
|
|
#endif
|
|
|
|
#ifndef YY_NO_INPUT
|
|
#ifdef __cplusplus
|
|
static int yyinput (void)
|
|
#else
|
|
static int input (void)
|
|
#endif
|
|
|
|
{
|
|
int c;
|
|
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
|
|
|
if ( *(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 ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
|
/* This was really a NUL. */
|
|
*(yy_c_buf_p) = '\0';
|
|
|
|
else
|
|
{ /* need more input */
|
|
yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
|
|
++(yy_c_buf_p);
|
|
|
|
switch ( yy_get_next_buffer( ) )
|
|
{
|
|
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 );
|
|
|
|
/*FALLTHROUGH*/
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
{
|
|
if ( yywrap( ) )
|
|
return EOF;
|
|
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
|
YY_NEW_FILE;
|
|
#ifdef __cplusplus
|
|
return yyinput();
|
|
#else
|
|
return input();
|
|
#endif
|
|
}
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
|
(yy_c_buf_p) = (yytext_ptr) + offset;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
|
|
*(yy_c_buf_p) = '\0'; /* preserve yytext */
|
|
(yy_hold_char) = *++(yy_c_buf_p);
|
|
|
|
return c;
|
|
}
|
|
#endif /* ifndef YY_NO_INPUT */
|
|
|
|
/** Immediately switch to a different input stream.
|
|
* @param input_file A readable stream.
|
|
*
|
|
* @note This function does not reset the start condition to @c INITIAL .
|
|
*/
|
|
void yyrestart (FILE * input_file )
|
|
{
|
|
|
|
if ( ! YY_CURRENT_BUFFER ){
|
|
yyensure_buffer_stack ();
|
|
YY_CURRENT_BUFFER_LVALUE =
|
|
yy_create_buffer(yyin,YY_BUF_SIZE );
|
|
}
|
|
|
|
yy_init_buffer(YY_CURRENT_BUFFER,input_file );
|
|
yy_load_buffer_state( );
|
|
}
|
|
|
|
/** Switch to a different input buffer.
|
|
* @param new_buffer The new input buffer.
|
|
*
|
|
*/
|
|
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
|
|
{
|
|
|
|
/* TODO. We should be able to replace this entire function body
|
|
* with
|
|
* yypop_buffer_state();
|
|
* yypush_buffer_state(new_buffer);
|
|
*/
|
|
yyensure_buffer_stack ();
|
|
if ( YY_CURRENT_BUFFER == new_buffer )
|
|
return;
|
|
|
|
if ( YY_CURRENT_BUFFER )
|
|
{
|
|
/* Flush out information for old buffer. */
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
|
}
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
|
yy_load_buffer_state( );
|
|
|
|
/* 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.
|
|
*/
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
}
|
|
|
|
static void yy_load_buffer_state (void)
|
|
{
|
|
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
|
|
(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
|
|
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
|
|
(yy_hold_char) = *(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.
|
|
*
|
|
* @return the allocated buffer state.
|
|
*/
|
|
YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
|
|
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
|
|
|
|
b->yy_buf_size = (yy_size_t)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(b->yy_buf_size + 2 );
|
|
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 );
|
|
|
|
return b;
|
|
}
|
|
|
|
/** Destroy the buffer.
|
|
* @param b a buffer created with yy_create_buffer()
|
|
*
|
|
*/
|
|
void yy_delete_buffer (YY_BUFFER_STATE b )
|
|
{
|
|
|
|
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 );
|
|
|
|
yyfree((void *) b );
|
|
}
|
|
|
|
/* 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 )
|
|
|
|
{
|
|
int oerrno = errno;
|
|
|
|
yy_flush_buffer(b );
|
|
|
|
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 = file ? (isatty( fileno(file) ) > 0) : 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.
|
|
*
|
|
*/
|
|
void yy_flush_buffer (YY_BUFFER_STATE b )
|
|
{
|
|
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( );
|
|
}
|
|
|
|
/** 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.
|
|
*
|
|
*/
|
|
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
|
|
{
|
|
if (new_buffer == NULL)
|
|
return;
|
|
|
|
yyensure_buffer_stack();
|
|
|
|
/* This block is copied from yy_switch_to_buffer. */
|
|
if ( YY_CURRENT_BUFFER )
|
|
{
|
|
/* Flush out information for old buffer. */
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
|
}
|
|
|
|
/* Only push if top exists. Otherwise, replace top. */
|
|
if (YY_CURRENT_BUFFER)
|
|
(yy_buffer_stack_top)++;
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
|
|
|
/* copied from yy_switch_to_buffer. */
|
|
yy_load_buffer_state( );
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
}
|
|
|
|
/** Removes and deletes the top of the stack, if present.
|
|
* The next element becomes the new top.
|
|
*
|
|
*/
|
|
void yypop_buffer_state (void)
|
|
{
|
|
if (!YY_CURRENT_BUFFER)
|
|
return;
|
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER );
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
if ((yy_buffer_stack_top) > 0)
|
|
--(yy_buffer_stack_top);
|
|
|
|
if (YY_CURRENT_BUFFER) {
|
|
yy_load_buffer_state( );
|
|
(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 (void)
|
|
{
|
|
yy_size_t num_to_alloc;
|
|
|
|
if (!(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... */
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
|
|
(num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
);
|
|
if ( ! (yy_buffer_stack) )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
|
|
|
|
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
|
|
|
|
(yy_buffer_stack_max) = num_to_alloc;
|
|
(yy_buffer_stack_top) = 0;
|
|
return;
|
|
}
|
|
|
|
if ((yy_buffer_stack_top) >= ((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 = (yy_buffer_stack_max) + grow_size;
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
|
|
((yy_buffer_stack),
|
|
num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
);
|
|
if ( ! (yy_buffer_stack) )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
|
|
|
|
/* zero only the new slots.*/
|
|
memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
|
|
(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
|
|
*
|
|
* @return the newly allocated buffer state object.
|
|
*/
|
|
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
|
|
{
|
|
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 0;
|
|
|
|
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
|
|
|
|
b->yy_buf_size = 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 = 0;
|
|
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 );
|
|
|
|
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
|
|
*
|
|
* @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 (yyconst char * yystr )
|
|
{
|
|
|
|
return yy_scan_bytes(yystr,strlen(yystr) );
|
|
}
|
|
|
|
/** 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.
|
|
*
|
|
* @return the newly allocated buffer state object.
|
|
*/
|
|
YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len )
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
char *buf;
|
|
yy_size_t n;
|
|
yy_size_t i;
|
|
|
|
/* Get memory for full buffer, including space for trailing EOB's. */
|
|
n = _yybytes_len + 2;
|
|
buf = (char *) yyalloc(n );
|
|
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 );
|
|
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;
|
|
}
|
|
|
|
#ifndef YY_EXIT_FAILURE
|
|
#define YY_EXIT_FAILURE 2
|
|
#endif
|
|
|
|
static void yy_fatal_error (yyconst char* msg )
|
|
{
|
|
(void) 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. */ \
|
|
yy_size_t yyless_macro_arg = (n); \
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
yytext[yyleng] = (yy_hold_char); \
|
|
(yy_c_buf_p) = yytext + yyless_macro_arg; \
|
|
(yy_hold_char) = *(yy_c_buf_p); \
|
|
*(yy_c_buf_p) = '\0'; \
|
|
yyleng = yyless_macro_arg; \
|
|
} \
|
|
while ( 0 )
|
|
|
|
/* Accessor methods (get/set functions) to struct members. */
|
|
|
|
/** Get the current line number.
|
|
*
|
|
*/
|
|
int yyget_lineno (void)
|
|
{
|
|
|
|
return yylineno;
|
|
}
|
|
|
|
/** Get the input stream.
|
|
*
|
|
*/
|
|
FILE *yyget_in (void)
|
|
{
|
|
return yyin;
|
|
}
|
|
|
|
/** Get the output stream.
|
|
*
|
|
*/
|
|
FILE *yyget_out (void)
|
|
{
|
|
return yyout;
|
|
}
|
|
|
|
/** Get the length of the current token.
|
|
*
|
|
*/
|
|
yy_size_t yyget_leng (void)
|
|
{
|
|
return yyleng;
|
|
}
|
|
|
|
/** Get the current token.
|
|
*
|
|
*/
|
|
|
|
char *yyget_text (void)
|
|
{
|
|
return yytext;
|
|
}
|
|
|
|
/** Set the current line number.
|
|
* @param _line_number line number
|
|
*
|
|
*/
|
|
void yyset_lineno (int _line_number )
|
|
{
|
|
|
|
yylineno = _line_number;
|
|
}
|
|
|
|
/** Set the input stream. This does not discard the current
|
|
* input buffer.
|
|
* @param _in_str A readable stream.
|
|
*
|
|
* @see yy_switch_to_buffer
|
|
*/
|
|
void yyset_in (FILE * _in_str )
|
|
{
|
|
yyin = _in_str ;
|
|
}
|
|
|
|
void yyset_out (FILE * _out_str )
|
|
{
|
|
yyout = _out_str ;
|
|
}
|
|
|
|
int yyget_debug (void)
|
|
{
|
|
return yy_flex_debug;
|
|
}
|
|
|
|
void yyset_debug (int _bdebug )
|
|
{
|
|
yy_flex_debug = _bdebug ;
|
|
}
|
|
|
|
static int yy_init_globals (void)
|
|
{
|
|
/* Initialization is the same as for the non-reentrant scanner.
|
|
* This function is called from yylex_destroy(), so don't allocate here.
|
|
*/
|
|
|
|
(yy_buffer_stack) = 0;
|
|
(yy_buffer_stack_top) = 0;
|
|
(yy_buffer_stack_max) = 0;
|
|
(yy_c_buf_p) = (char *) 0;
|
|
(yy_init) = 0;
|
|
(yy_start) = 0;
|
|
|
|
/* Defined in main.c */
|
|
#ifdef YY_STDINIT
|
|
yyin = stdin;
|
|
yyout = stdout;
|
|
#else
|
|
yyin = (FILE *) 0;
|
|
yyout = (FILE *) 0;
|
|
#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 (void)
|
|
{
|
|
|
|
/* Pop the buffer stack, destroying each element. */
|
|
while(YY_CURRENT_BUFFER){
|
|
yy_delete_buffer(YY_CURRENT_BUFFER );
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
yypop_buffer_state();
|
|
}
|
|
|
|
/* Destroy the stack itself. */
|
|
yyfree((yy_buffer_stack) );
|
|
(yy_buffer_stack) = 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( );
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Internal utility routines.
|
|
*/
|
|
|
|
#ifndef yytext_ptr
|
|
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
|
|
{
|
|
|
|
int i;
|
|
for ( i = 0; i < n; ++i )
|
|
s1[i] = s2[i];
|
|
}
|
|
#endif
|
|
|
|
#ifdef YY_NEED_STRLEN
|
|
static int yy_flex_strlen (yyconst char * s )
|
|
{
|
|
int n;
|
|
for ( n = 0; s[n]; ++n )
|
|
;
|
|
|
|
return n;
|
|
}
|
|
#endif
|
|
|
|
void *yyalloc (yy_size_t size )
|
|
{
|
|
return (void *) malloc( size );
|
|
}
|
|
|
|
void *yyrealloc (void * ptr, yy_size_t size )
|
|
{
|
|
|
|
/* 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 (void *) realloc( (char *) ptr, size );
|
|
}
|
|
|
|
void yyfree (void * ptr )
|
|
{
|
|
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
|
|
}
|
|
|
|
#define YYTABLES_NAME "yytables"
|
|
|
|
#line 513 "util/configlexer.lex"
|
|
|
|
|
|
|