
privs. Previously, only root or a user with the ability to run any command as either root or the target user on the current host could use the -U option. For "sudo -l [-U otheruser] command", NewArgv[0] is now set to "list" (just like "sudo -l") and the actual command to be checked starts with NewArgv[1].
6012 lines
228 KiB
C
6012 lines
228 KiB
C
/*
|
|
* This is an open source non-commercial project. Dear PVS-Studio, please check it.
|
|
* PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#line 3 "toke.c"
|
|
|
|
#define YY_INT_ALIGNED short int
|
|
|
|
/* $OpenBSD: flex.skl,v 1.18 2021/11/30 15:50:06 millert Exp $ */
|
|
|
|
/* A lexical scanner generated by flex */
|
|
|
|
#define yy_create_buffer sudoers_create_buffer
|
|
#define yy_delete_buffer sudoers_delete_buffer
|
|
#define yy_flex_debug sudoers_flex_debug
|
|
#define yy_init_buffer sudoers_init_buffer
|
|
#define yy_flush_buffer sudoers_flush_buffer
|
|
#define yy_load_buffer_state sudoers_load_buffer_state
|
|
#define yy_switch_to_buffer sudoers_switch_to_buffer
|
|
#define yyin sudoersin
|
|
#define yyleng sudoersleng
|
|
#define yylex sudoerslex
|
|
#define yylineno sudoerslineno
|
|
#define yyout sudoersout
|
|
#define yyrestart sudoersrestart
|
|
#define yytext sudoerstext
|
|
#define yywrap sudoerswrap
|
|
#define yyalloc sudoersalloc
|
|
#define yyrealloc sudoersrealloc
|
|
#define yyfree sudoersfree
|
|
|
|
#define FLEX_SCANNER
|
|
#define YY_FLEX_MAJOR_VERSION 2
|
|
#define YY_FLEX_MINOR_VERSION 5
|
|
#define YY_FLEX_SUBMINOR_VERSION 39
|
|
#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. */
|
|
|
|
/* $OpenBSD: flexint.h,v 1.1 2015/11/19 19:43:40 tedu Exp $ */
|
|
|
|
/* 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 sudoersrestart(sudoersin )
|
|
|
|
#define YY_END_OF_BUFFER_CHAR 0
|
|
|
|
/* Size of default input buffer. */
|
|
#ifndef YY_BUF_SIZE
|
|
#define YY_BUF_SIZE 16384
|
|
#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 sudoersleng;
|
|
|
|
extern FILE *sudoersin, *sudoersout;
|
|
|
|
#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 sudoerstext. */ \
|
|
int 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 sudoerstext 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 sudoersrestart()), so that the user can continue scanning by
|
|
* just pointing sudoersin 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 sudoerstext 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 sudoersleng;
|
|
|
|
/* 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 sudoerswrap()'s to do buffer switches
|
|
* instead of setting up a fresh sudoersin. A bit of a hack ...
|
|
*/
|
|
static int yy_did_buffer_switch_on_eof;
|
|
|
|
void sudoersrestart (FILE *input_file );
|
|
void sudoers_switch_to_buffer (YY_BUFFER_STATE new_buffer );
|
|
YY_BUFFER_STATE sudoers_create_buffer (FILE *file,int size );
|
|
void sudoers_delete_buffer (YY_BUFFER_STATE b );
|
|
void sudoers_flush_buffer (YY_BUFFER_STATE b );
|
|
void sudoerspush_buffer_state (YY_BUFFER_STATE new_buffer );
|
|
void sudoerspop_buffer_state (void );
|
|
|
|
static void sudoersensure_buffer_stack (void );
|
|
static void sudoers_load_buffer_state (void );
|
|
static void sudoers_init_buffer (YY_BUFFER_STATE b,FILE *file );
|
|
|
|
#define YY_FLUSH_BUFFER sudoers_flush_buffer(YY_CURRENT_BUFFER )
|
|
|
|
YY_BUFFER_STATE sudoers_scan_buffer (char *base,yy_size_t size );
|
|
YY_BUFFER_STATE sudoers_scan_string (yyconst char *yy_str );
|
|
YY_BUFFER_STATE sudoers_scan_bytes (yyconst char *bytes,yy_size_t len );
|
|
|
|
void *sudoersalloc (yy_size_t );
|
|
void *sudoersrealloc (void *,yy_size_t );
|
|
void sudoersfree (void * );
|
|
|
|
#define yy_new_buffer sudoers_create_buffer
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
{ \
|
|
if ( ! YY_CURRENT_BUFFER ){ \
|
|
sudoersensure_buffer_stack (); \
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
|
sudoers_create_buffer(sudoersin,YY_BUF_SIZE ); \
|
|
} \
|
|
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
|
|
}
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
{ \
|
|
if ( ! YY_CURRENT_BUFFER ){\
|
|
sudoersensure_buffer_stack (); \
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
|
sudoers_create_buffer(sudoersin,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 */
|
|
|
|
#define sudoerswrap() 1
|
|
#define YY_SKIP_YYWRAP
|
|
|
|
typedef unsigned char YY_CHAR;
|
|
|
|
FILE *sudoersin = (FILE *) 0, *sudoersout = (FILE *) 0;
|
|
|
|
typedef int yy_state_type;
|
|
|
|
extern int sudoerslineno;
|
|
|
|
int sudoerslineno = 1;
|
|
|
|
extern char *sudoerstext;
|
|
#define yytext_ptr sudoerstext
|
|
|
|
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 );
|
|
static void yy_fatal_error (yyconst char msg[] );
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
* corresponding action - sets up sudoerstext.
|
|
*/
|
|
#define YY_DO_BEFORE_ACTION \
|
|
(yytext_ptr) = yy_bp; \
|
|
sudoersleng = (size_t) (yy_cp - yy_bp); \
|
|
(yy_hold_char) = *yy_cp; \
|
|
*yy_cp = '\0'; \
|
|
(yy_c_buf_p) = yy_cp;
|
|
|
|
#define YY_NUM_RULES 90
|
|
#define YY_END_OF_BUFFER 91
|
|
/* 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[1254] =
|
|
{ 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
91, 76, 86, 85, 89, 84, 75, 88, 46, 79,
|
|
80, 46, 81, 76, 76, 76, 76, 83, 82, 89,
|
|
76, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 89, 76, 76, 76, 76,
|
|
86, 88, 64, 64, 64, 64, 64, 2, 89, 1,
|
|
76, 64, 64, 64, 64, 76, 76, 17, 16, 16,
|
|
17, 16, 16, 89, 21, 21, 19, 19, 21, 19,
|
|
20, 89, 88, 89, 3, 9, 8, 9, 4, 9,
|
|
|
|
5, 89, 13, 13, 13, 11, 12, 89, 23, 23,
|
|
22, 22, 22, 23, 22, 22, 22, 22, 23, 23,
|
|
23, 23, 23, 23, 23, 89, 22, 23, 23, 23,
|
|
77, 77, 78, 77, 72, 72, 72, 72, 72, 72,
|
|
72, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 89, 72, 72, 72, 72, 76, 0, 86,
|
|
85, 84, 88, 88, 0, 0, 76, 48, 0, 46,
|
|
0, 47, 0, 73, 73, 0, 76, 76, 0, 76,
|
|
76, 76, 76, 0, 51, 76, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
|
|
64, 64, 64, 64, 64, 0, 87, 76, 76, 76,
|
|
0, 74, 0, 76, 76, 76, 86, 0, 0, 0,
|
|
0, 0, 88, 76, 76, 76, 76, 76, 2, 1,
|
|
0, 1, 65, 65, 0, 64, 76, 0, 65, 0,
|
|
76, 17, 17, 15, 0, 14, 15, 21, 21, 21,
|
|
18, 18, 0, 3, 9, 0, 6, 7, 9, 9,
|
|
13, 0, 13, 13, 0, 10, 0, 48, 0, 0,
|
|
47, 23, 23, 0, 23, 0, 0, 22, 22, 22,
|
|
22, 22, 22, 23, 23, 64, 23, 23, 23, 23,
|
|
23, 23, 23, 23, 74, 0, 23, 23, 23, 77,
|
|
|
|
77, 77, 72, 0, 48, 0, 47, 0, 72, 72,
|
|
0, 72, 72, 72, 72, 72, 72, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 64, 72, 72,
|
|
72, 72, 0, 72, 72, 72, 88, 88, 88, 0,
|
|
48, 76, 76, 76, 76, 76, 0, 0, 51, 51,
|
|
76, 64, 53, 64, 64, 57, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 74, 76, 76, 76,
|
|
76, 0, 0, 0, 0, 0, 88, 76, 76, 76,
|
|
76, 76, 76, 0, 65, 0, 65, 76, 76, 10,
|
|
|
|
0, 0, 0, 22, 22, 22, 23, 23, 23, 23,
|
|
23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
|
|
23, 74, 23, 23, 23, 0, 72, 72, 72, 72,
|
|
72, 64, 53, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 72, 72, 72,
|
|
72, 72, 88, 88, 88, 76, 76, 76, 76, 76,
|
|
76, 0, 52, 52, 52, 0, 0, 51, 51, 51,
|
|
51, 51, 51, 51, 76, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 59, 64, 64, 60, 70,
|
|
|
|
76, 76, 76, 76, 0, 0, 0, 0, 0, 0,
|
|
88, 76, 76, 76, 65, 76, 0, 0, 0, 0,
|
|
0, 22, 22, 23, 23, 23, 64, 23, 23, 23,
|
|
23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
|
|
23, 23, 72, 72, 72, 72, 72, 72, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 70, 72, 72, 72, 72, 76, 76,
|
|
76, 0, 0, 52, 52, 52, 0, 51, 51, 0,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 76, 64, 64, 0, 33, 64, 64, 64, 64,
|
|
|
|
64, 0, 42, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 62, 64, 64, 76, 76, 76, 76,
|
|
76, 0, 0, 0, 88, 76, 76, 76, 0, 0,
|
|
0, 22, 22, 23, 23, 64, 64, 23, 23, 23,
|
|
23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
|
|
23, 72, 72, 72, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 72, 72, 72,
|
|
72, 72, 76, 76, 76, 76, 76, 0, 52, 0,
|
|
51, 51, 51, 0, 0, 0, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 76,
|
|
|
|
64, 58, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 64, 64, 66,
|
|
67, 68, 69, 76, 0, 0, 88, 76, 76, 76,
|
|
0, 0, 0, 0, 0, 23, 23, 64, 64, 23,
|
|
23, 23, 64, 23, 23, 23, 23, 23, 23, 23,
|
|
23, 23, 23, 72, 72, 72, 72, 72, 64, 64,
|
|
64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 66, 67, 68, 69, 72, 49, 49, 49, 0,
|
|
0, 51, 51, 51, 51, 51, 51, 51, 0, 0,
|
|
0, 0, 0, 51, 51, 51, 51, 51, 51, 51,
|
|
|
|
51, 51, 51, 51, 51, 51, 51, 76, 64, 0,
|
|
44, 64, 64, 64, 64, 0, 32, 64, 64, 64,
|
|
64, 0, 43, 64, 64, 64, 64, 0, 31, 0,
|
|
36, 54, 76, 0, 0, 88, 76, 76, 76, 49,
|
|
49, 49, 23, 64, 64, 23, 23, 64, 64, 23,
|
|
23, 23, 49, 49, 49, 64, 64, 64, 64, 64,
|
|
64, 64, 64, 64, 72, 76, 49, 49, 49, 49,
|
|
0, 51, 0, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 0, 0, 0, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
|
|
24, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
64, 64, 56, 64, 71, 0, 0, 88, 76, 28,
|
|
65, 0, 49, 49, 49, 49, 23, 64, 64, 23,
|
|
23, 64, 64, 23, 23, 23, 72, 49, 49, 49,
|
|
49, 64, 64, 64, 64, 64, 64, 64, 64, 64,
|
|
71, 50, 50, 50, 50, 51, 0, 0, 0, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 0, 0, 0, 0, 0, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 76, 64, 64, 64, 64,
|
|
64, 0, 45, 64, 64, 64, 0, 30, 0, 37,
|
|
|
|
55, 0, 28, 26, 88, 29, 0, 76, 50, 50,
|
|
50, 50, 23, 64, 64, 23, 64, 64, 50, 50,
|
|
50, 50, 64, 64, 64, 64, 64, 64, 76, 76,
|
|
50, 50, 50, 50, 0, 0, 0, 0, 0, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 76,
|
|
64, 0, 34, 63, 0, 40, 64, 64, 64, 64,
|
|
29, 26, 26, 26, 26, 88, 28, 0, 0, 0,
|
|
0, 0, 28, 0, 0, 0, 50, 50, 50, 50,
|
|
64, 23, 64, 64, 72, 72, 50, 50, 50, 50,
|
|
|
|
64, 64, 64, 64, 76, 76, 76, 0, 0, 0,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 25, 64,
|
|
0, 38, 64, 64, 64, 26, 88, 0, 28, 0,
|
|
0, 0, 23, 64, 64, 72, 72, 72, 64, 64,
|
|
64, 76, 76, 76, 76, 76, 0, 0, 0, 0,
|
|
0, 51, 51, 51, 51, 51, 51, 51, 51, 64,
|
|
0, 35, 0, 41, 64, 27, 0, 0, 0, 0,
|
|
0, 64, 72, 72, 72, 72, 72, 64, 76, 76,
|
|
76, 51, 51, 51, 51, 51, 51, 64, 0, 39,
|
|
|
|
27, 27, 27, 27, 0, 0, 0, 72, 72, 72,
|
|
76, 76, 76, 76, 76, 51, 51, 51, 51, 51,
|
|
64, 27, 0, 0, 0, 0, 0, 72, 72, 72,
|
|
72, 72, 49, 49, 49, 64, 49, 49, 49, 49,
|
|
49, 49, 49, 49, 49, 61, 49, 49, 49, 49,
|
|
49, 49, 0
|
|
} ;
|
|
|
|
static yyconst flex_int32_t yy_ec[256] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
|
|
4, 4, 5, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 6, 7, 8, 9, 10, 11, 1, 1, 12,
|
|
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
|
|
23, 24, 25, 26, 27, 28, 29, 30, 1, 1,
|
|
31, 32, 14, 33, 34, 35, 36, 37, 38, 39,
|
|
40, 41, 42, 43, 43, 44, 45, 46, 47, 48,
|
|
43, 49, 50, 51, 52, 53, 54, 55, 56, 43,
|
|
14, 57, 14, 58, 59, 1, 60, 61, 62, 63,
|
|
|
|
64, 65, 66, 67, 68, 66, 66, 69, 70, 71,
|
|
72, 66, 66, 73, 74, 75, 76, 66, 66, 66,
|
|
66, 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 flex_int32_t yy_meta[77] =
|
|
{ 0,
|
|
1, 2, 3, 4, 3, 2, 5, 6, 7, 8,
|
|
1, 9, 9, 1, 10, 11, 1, 12, 13, 14,
|
|
14, 14, 14, 14, 14, 14, 14, 14, 14, 15,
|
|
16, 9, 1, 14, 14, 14, 14, 14, 14, 17,
|
|
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
|
|
17, 17, 17, 17, 17, 17, 18, 1, 19, 20,
|
|
20, 20, 20, 20, 20, 21, 21, 21, 21, 21,
|
|
21, 21, 21, 21, 21, 21
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_base[1378] =
|
|
{ 0,
|
|
0, 75, 126, 199, 83, 91, 99, 180, 272, 347,
|
|
422, 478, 131, 147, 535, 0, 189, 219, 611, 0,
|
|
6456, 6375, 76, 9534, 6417, 6405, 9534, 685, 101, 9534,
|
|
9534, 6354, 9534, 199, 697, 238, 143, 6380, 9534, 9534,
|
|
23, 762, 35, 103, 71, 132, 819, 6339, 76, 6348,
|
|
6334, 112, 6333, 6330, 61, 883, 914, 262, 73, 152,
|
|
266, 969, 251, 166, 6295, 122, 6266, 197, 338, 123,
|
|
369, 6291, 6255, 6254, 6264, 1036, 177, 0, 9534, 6284,
|
|
6258, 9534, 0, 1092, 0, 214, 9534, 6258, 6252, 9534,
|
|
9534, 236, 1148, 249, 0, 6190, 9534, 239, 9534, 240,
|
|
|
|
9534, 306, 6168, 311, 262, 9534, 320, 172, 1177, 1236,
|
|
1281, 363, 349, 1340, 1391, 6135, 249, 254, 1448, 6117,
|
|
6113, 6125, 6109, 6121, 6114, 300, 422, 0, 6078, 173,
|
|
6088, 323, 9534, 397, 6087, 425, 6076, 456, 1496, 476,
|
|
373, 1561, 6077, 272, 331, 1618, 6061, 6059, 6071, 6047,
|
|
6048, 6013, 1682, 1713, 494, 384, 399, 5993, 737, 318,
|
|
9534, 6019, 168, 9534, 6022, 504, 671, 5966, 848, 707,
|
|
926, 5954, 971, 893, 5953, 1769, 984, 1784, 5979, 5944,
|
|
939, 994, 437, 5931, 446, 243, 1849, 1906, 5903, 5896,
|
|
5894, 5902, 5895, 5881, 5873, 5878, 5881, 5875, 1012, 5865,
|
|
|
|
5872, 5869, 5858, 5862, 5850, 430, 9534, 348, 1022, 1970,
|
|
691, 5840, 1024, 415, 410, 414, 1033, 5826, 5813, 5804,
|
|
5798, 5799, 847, 684, 686, 416, 421, 714, 891, 504,
|
|
1089, 505, 896, 5802, 2026, 1082, 2057, 718, 5772, 1078,
|
|
803, 0, 5821, 946, 5823, 9534, 9534, 0, 750, 5805,
|
|
9534, 1070, 1116, 0, 5746, 1184, 9534, 9534, 5745, 1152,
|
|
5744, 5775, 979, 682, 1157, 768, 5765, 1062, 1077, 1191,
|
|
5710, 2114, 0, 1250, 2173, 1211, 1250, 2215, 5748, 1263,
|
|
1360, 1208, 2266, 2323, 5713, 0, 5717, 5699, 5679, 5687,
|
|
5684, 1451, 5662, 5660, 9534, 931, 5636, 5644, 5640, 5645,
|
|
|
|
1123, 854, 5631, 1536, 5616, 1725, 5615, 1756, 1660, 5607,
|
|
2387, 1679, 2402, 5588, 1370, 1769, 1482, 2467, 2524, 5546,
|
|
5548, 5539, 5531, 5539, 5531, 1621, 5522, 5510, 737, 1746,
|
|
2588, 5503, 1823, 417, 802, 860, 907, 970, 1027, 1926,
|
|
1936, 2628, 2668, 2708, 2746, 5515, 5502, 2792, 868, 2839,
|
|
983, 2904, 2961, 5497, 5448, 0, 5458, 5449, 5454, 5449,
|
|
5421, 5395, 5383, 5367, 5367, 5364, 5365, 5364, 5359, 695,
|
|
5278, 5273, 5275, 5273, 5272, 5271, 3025, 3081, 862, 1652,
|
|
897, 24, 5230, 5212, 5214, 5220, 1086, 996, 1001, 5205,
|
|
872, 1043, 821, 1979, 9534, 990, 3137, 3193, 898, 1059,
|
|
|
|
1993, 2023, 2054, 3231, 5244, 3282, 3339, 5224, 5204, 5202,
|
|
5180, 5194, 5137, 5144, 5124, 5122, 5134, 5133, 5128, 5102,
|
|
5113, 1021, 5049, 1160, 5051, 2089, 3387, 3427, 3467, 3507,
|
|
5104, 3553, 0, 5085, 5069, 5067, 5039, 5053, 5041, 5034,
|
|
5033, 5021, 5022, 5008, 5003, 4980, 4980, 3617, 3673, 1002,
|
|
1804, 1033, 9534, 1099, 1128, 2113, 160, 3713, 3753, 1969,
|
|
708, 4972, 4971, 2128, 1204, 4970, 4960, 1137, 1182, 3793,
|
|
2139, 1814, 3840, 2174, 237, 3905, 1098, 952, 1534, 1159,
|
|
1172, 1154, 1508, 1716, 1181, 1122, 1188, 1221, 1054, 1215,
|
|
1308, 1449, 1222, 1184, 1450, 4959, 1267, 1377, 4948, 4920,
|
|
|
|
1472, 1470, 1351, 879, 4902, 4895, 4880, 4864, 4864, 4849,
|
|
1755, 86, 1516, 1480, 1471, 1506, 2187, 4881, 2199, 2237,
|
|
2079, 3962, 4013, 4088, 2006, 2060, 1527, 1973, 2367, 2368,
|
|
2404, 2361, 2374, 2562, 2405, 2444, 2563, 0, 1139, 4859,
|
|
4849, 4789, 2550, 1391, 4136, 4176, 2603, 1619, 4822, 2268,
|
|
4804, 4765, 1669, 2442, 4768, 4761, 4753, 4744, 4733, 4724,
|
|
4722, 4712, 4712, 4700, 1636, 1682, 1494, 1671, 4216, 4256,
|
|
4296, 4726, 4680, 2609, 4680, 4678, 4665, 4664, 1667, 2641,
|
|
1812, 2651, 2066, 4336, 0, 2680, 4384, 2691, 2718, 4431,
|
|
2726, 1594, 1697, 1729, 2443, 9534, 1786, 1717, 1736, 1268,
|
|
|
|
1813, 2445, 9534, 1737, 1620, 1509, 1720, 1710, 1954, 1824,
|
|
2010, 1966, 1821, 4663, 1944, 1977, 1122, 1314, 1949, 1795,
|
|
1967, 4636, 4579, 4560, 2103, 1968, 2053, 1997, 2768, 2814,
|
|
2861, 4584, 4583, 2842, 2611, 4559, 4517, 3000, 2757, 3009,
|
|
2999, 3010, 3012, 3042, 3044, 3043, 4511, 4508, 4509, 4502,
|
|
4460, 4479, 4519, 4559, 4468, 4462, 4444, 4437, 4428, 4419,
|
|
4424, 4384, 4381, 4366, 4357, 4349, 4316, 2069, 2029, 2070,
|
|
2089, 2050, 3078, 2112, 4599, 4639, 3097, 4338, 4322, 4285,
|
|
4282, 4677, 2093, 3105, 3137, 3152, 2159, 2253, 2336, 3162,
|
|
2360, 4725, 0, 3045, 4773, 3190, 3206, 4820, 3214, 2119,
|
|
|
|
2199, 4281, 2905, 2091, 2218, 2145, 2041, 3190, 2226, 2326,
|
|
2335, 3191, 1827, 1547, 2334, 2252, 3242, 3243, 2217, 4253,
|
|
4230, 4215, 4213, 2345, 4178, 4163, 2552, 2385, 2358, 2386,
|
|
3254, 4212, 3361, 3399, 3373, 3284, 3427, 4107, 4096, 3428,
|
|
3429, 3430, 2367, 3436, 3467, 3437, 3468, 3469, 0, 0,
|
|
0, 0, 4078, 3480, 2266, 4868, 4908, 3492, 3517, 4090,
|
|
4073, 4069, 3520, 4059, 4044, 2410, 3553, 4038, 4025, 3554,
|
|
3555, 3989, 3988, 3973, 3972, 2401, 4947, 4986, 5025, 3991,
|
|
3990, 3887, 3573, 5065, 3583, 3614, 5111, 3632, 3642, 3896,
|
|
3670, 3688, 3700, 2537, 2561, 2584, 2592, 3723, 2876, 5159,
|
|
|
|
0, 3735, 5207, 3763, 3620, 5254, 3775, 2419, 5319, 3556,
|
|
9534, 1807, 2557, 2319, 1889, 3670, 9534, 2633, 815, 2559,
|
|
2591, 3671, 9534, 2672, 2674, 3848, 3797, 3803, 9534, 3841,
|
|
9534, 3777, 2404, 3756, 3687, 2578, 2624, 2650, 2703, 3861,
|
|
3983, 4076, 5381, 3680, 3654, 2708, 2709, 3632, 3599, 2843,
|
|
2751, 3571, 5439, 5478, 5517, 5574, 2750, 3574, 2710, 2797,
|
|
2660, 2798, 2861, 2752, 2704, 4109, 2994, 5632, 5671, 3815,
|
|
3518, 3509, 4147, 2974, 4157, 2989, 5711, 0, 4188, 5724,
|
|
4199, 3871, 5770, 4228, 4240, 4268, 4280, 2990, 2998, 3041,
|
|
3118, 4306, 3122, 5818, 0, 4318, 5866, 4356, 3993, 4406,
|
|
|
|
2853, 5931, 2861, 3025, 3002, 2951, 4479, 2811, 3174, 3026,
|
|
4519, 4559, 3461, 2833, 3429, 3422, 3394, 3475, 3035, 4360,
|
|
3406, 4451, 3427, 4491, 4531, 4120, 5993, 3390, 3319, 4385,
|
|
2370, 3292, 3288, 4560, 4561, 0, 4572, 3057, 6051, 6090,
|
|
4507, 6147, 3238, 1947, 4600, 3057, 3156, 3233, 4601, 4602,
|
|
3141, 6206, 6246, 6286, 6326, 3141, 4615, 4651, 4663, 3126,
|
|
3269, 3270, 4697, 3362, 6366, 0, 4747, 6379, 4707, 4167,
|
|
6425, 4795, 4840, 3133, 4880, 4892, 4550, 3442, 3521, 3534,
|
|
2098, 2125, 6473, 0, 4807, 3497, 3572, 4921, 2984, 4957,
|
|
3065, 3843, 9534, 3573, 3027, 3713, 3906, 9534, 4229, 9534,
|
|
|
|
3087, 3068, 3818, 3761, 3839, 3053, 4936, 4946, 4999, 5011,
|
|
5037, 5049, 5112, 4269, 3001, 3389, 2956, 2869, 6485, 6525,
|
|
6565, 6605, 5113, 5114, 2800, 3515, 2607, 3636, 5133, 2442,
|
|
6645, 6685, 4854, 2626, 5179, 2829, 5229, 5276, 4758, 2795,
|
|
2747, 3388, 3689, 5189, 3776, 6725, 0, 4961, 6738, 5449,
|
|
4417, 6784, 5461, 5489, 5500, 5528, 3822, 2703, 2805, 2161,
|
|
2421, 4652, 9534, 2557, 4958, 9534, 5528, 3212, 3859, 3459,
|
|
9534, 3259, 4344, 9534, 3367, 4868, 5660, 5668, 5699, 5707,
|
|
5542, 5319, 5763, 5906, 5658, 2548, 5840, 6063, 4974, 2363,
|
|
5078, 2273, 2218, 2136, 5753, 2879, 6832, 6872, 5793, 3190,
|
|
|
|
5257, 2017, 1972, 2942, 6912, 6952, 6992, 6075, 6102, 6114,
|
|
1909, 1785, 3881, 4001, 6216, 4089, 7032, 0, 6228, 7045,
|
|
6256, 4625, 6268, 1764, 6297, 6308, 5699, 1705, 1639, 4148,
|
|
5574, 9534, 5904, 6339, 3862, 9534, 4481, 6336, 6350, 6401,
|
|
6447, 6497, 5819, 5575, 1440, 7093, 7133, 7173, 5821, 5869,
|
|
1398, 6507, 3228, 7213, 7253, 6459, 6545, 1405, 6577, 6589,
|
|
6413, 1343, 1309, 4199, 1246, 1198, 6617, 0, 3700, 2854,
|
|
5910, 9534, 6147, 9534, 6618, 4944, 6629, 884, 6658, 6670,
|
|
6537, 6148, 6700, 3750, 7293, 7333, 6712, 6784, 7373, 7413,
|
|
7453, 6804, 6842, 6852, 763, 0, 685, 3256, 6336, 9534,
|
|
|
|
3459, 5104, 9534, 3623, 6884, 6896, 6924, 7493, 7533, 7573,
|
|
6934, 3751, 7613, 7653, 6760, 9534, 6972, 7002, 6555, 9534,
|
|
2538, 9534, 7012, 516, 7067, 7105, 6771, 7115, 3880, 7693,
|
|
7733, 7146, 7153, 7191, 7229, 4032, 7239, 7267, 7277, 7306,
|
|
7316, 7354, 451, 7392, 7164, 320, 9534, 7430, 6816, 179,
|
|
7440, 7346, 9534, 7790, 7811, 7832, 7853, 7874, 7895, 7916,
|
|
7937, 7958, 7979, 8000, 4374, 8021, 8042, 8063, 8084, 8105,
|
|
8126, 3974, 8147, 8168, 8189, 8210, 8231, 8252, 8273, 8294,
|
|
8315, 8336, 8357, 8378, 8399, 8420, 8441, 8462, 8483, 8504,
|
|
8525, 8546, 4595, 4942, 8555, 8575, 8596, 8617, 8638, 8659,
|
|
|
|
8680, 8701, 8722, 4195, 8743, 8764, 8785, 8806, 8818, 8839,
|
|
5247, 8860, 8881, 8902, 8923, 8944, 8965, 8986, 9007, 9028,
|
|
9049, 5097, 9058, 9078, 9099, 9120, 9141, 5292, 6240, 6242,
|
|
9150, 9158, 9178, 9199, 5308, 6285, 6524, 6724, 9208, 9217,
|
|
6868, 6871, 6951, 9225, 9234, 6968, 6970, 9242, 9251, 9271,
|
|
5805, 9283, 9304, 6988, 9314, 9322, 9331, 9351, 7028, 9363,
|
|
9384, 6991, 9394, 9402, 9411, 9431, 9452, 9473, 7083, 9483,
|
|
4331, 7132, 9492, 7208, 5651, 9512, 4468
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_def[1378] =
|
|
{ 0,
|
|
1253, 1, 1, 1, 1254, 1254, 1255, 1255, 1256, 1256,
|
|
1257, 1257, 1258, 1258, 1253, 15, 1259, 1259, 1253, 19,
|
|
1253, 1260, 1253, 1253, 1253, 1253, 1253, 1261, 1262, 1253,
|
|
1253, 1263, 1253, 1264, 1260, 35, 35, 1265, 1253, 1253,
|
|
1260, 1253, 42, 42, 42, 42, 42, 47, 47, 47,
|
|
47, 47, 47, 47, 47, 1260, 1266, 35, 1260, 1260,
|
|
1253, 1261, 42, 42, 47, 47, 47, 1253, 1253, 1253,
|
|
1267, 42, 47, 47, 47, 1268, 1260, 1269, 1253, 1253,
|
|
1269, 1253, 1269, 1253, 1270, 1270, 1253, 1253, 1270, 1253,
|
|
1253, 1271, 1261, 1253, 1272, 1273, 1253, 1273, 1253, 1273,
|
|
|
|
1253, 1274, 1275, 1275, 1275, 1253, 1253, 1276, 1277, 1278,
|
|
1253, 111, 111, 111, 1253, 115, 115, 115, 115, 119,
|
|
119, 119, 119, 119, 119, 1279, 111, 114, 114, 114,
|
|
1280, 1280, 1253, 1280, 1281, 1282, 1283, 1284, 1281, 139,
|
|
139, 1253, 142, 142, 142, 142, 146, 146, 146, 146,
|
|
146, 146, 1281, 1285, 139, 1281, 1281, 1286, 1286, 1253,
|
|
1253, 1253, 1287, 1253, 1253, 1288, 1253, 1289, 1253, 1276,
|
|
1289, 1290, 1290, 1291, 1292, 1286, 1286, 1286, 1293, 178,
|
|
178, 178, 178, 1294, 1295, 1286, 1253, 187, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
|
|
188, 188, 188, 188, 188, 1253, 1253, 1286, 1286, 1296,
|
|
1297, 1286, 1296, 1286, 1286, 1286, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1287, 1286, 178, 1286, 1286, 1286, 1253, 1253,
|
|
1253, 1253, 1298, 1299, 1286, 188, 1300, 1301, 1286, 1300,
|
|
1286, 1302, 1302, 1253, 1253, 1253, 1253, 1303, 1303, 1303,
|
|
1253, 1253, 1288, 1304, 1305, 1305, 1253, 1253, 1305, 1305,
|
|
1306, 1253, 1306, 1306, 1253, 1253, 1253, 1276, 1276, 1276,
|
|
1307, 1308, 1309, 1307, 1310, 1253, 1253, 1309, 278, 278,
|
|
278, 278, 1253, 283, 284, 1311, 284, 284, 284, 284,
|
|
284, 284, 284, 284, 1253, 1297, 1309, 1309, 1309, 1312,
|
|
|
|
1312, 1312, 1313, 1313, 1314, 1314, 1315, 1315, 1316, 1317,
|
|
1313, 1313, 1313, 313, 313, 313, 313, 1253, 318, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 319, 1313, 1313,
|
|
1318, 1313, 1318, 1313, 1313, 1313, 1319, 1319, 1320, 1253,
|
|
1253, 1321, 1321, 1321, 1321, 345, 1322, 1253, 1323, 1253,
|
|
1321, 1253, 352, 353, 353, 353, 353, 353, 353, 353,
|
|
353, 353, 353, 353, 353, 353, 353, 353, 353, 353,
|
|
353, 353, 353, 353, 353, 353, 1324, 1324, 1321, 1321,
|
|
1321, 1253, 1253, 1253, 1253, 1253, 1319, 1321, 1321, 345,
|
|
1321, 1321, 1321, 1253, 1253, 1325, 1326, 1326, 1321, 1253,
|
|
|
|
1253, 1253, 1253, 1309, 404, 1253, 406, 407, 407, 407,
|
|
407, 407, 407, 407, 407, 407, 407, 407, 407, 407,
|
|
407, 1327, 1309, 1309, 1309, 1253, 1313, 1313, 1313, 313,
|
|
430, 318, 319, 319, 319, 319, 319, 319, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 1318, 1318, 1313,
|
|
1313, 1313, 1253, 1320, 1320, 1321, 1321, 1321, 1321, 1321,
|
|
1321, 1328, 1329, 1329, 464, 1330, 1329, 1331, 1332, 1253,
|
|
470, 470, 1253, 470, 1321, 1253, 476, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 476, 476, 476, 476, 1321,
|
|
|
|
1321, 1321, 1321, 1321, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1333, 1321, 1321, 1321, 1334, 1321, 1253, 1253, 1253, 1253,
|
|
1253, 1309, 1253, 523, 524, 524, 1335, 524, 524, 524,
|
|
524, 524, 524, 524, 524, 524, 524, 1309, 1309, 1309,
|
|
1309, 1309, 1313, 1313, 1313, 1313, 1313, 1313, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 319, 319, 319,
|
|
319, 319, 319, 1313, 1313, 1313, 1313, 1313, 1321, 1321,
|
|
1321, 1253, 1336, 1336, 574, 1336, 1337, 1338, 1339, 1253,
|
|
1340, 473, 1340, 1253, 584, 1340, 1253, 587, 587, 1253,
|
|
587, 1321, 476, 476, 1253, 1253, 476, 476, 476, 476,
|
|
|
|
476, 1253, 1253, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 476, 1321, 1321, 1321, 1321,
|
|
1321, 1253, 1253, 1253, 1333, 1321, 1321, 1321, 1253, 1253,
|
|
1253, 522, 523, 524, 524, 1335, 1335, 524, 524, 524,
|
|
524, 524, 524, 524, 524, 524, 1309, 1309, 1309, 1309,
|
|
1309, 1313, 1313, 1313, 319, 319, 319, 319, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 1313, 1313, 1313,
|
|
1313, 1313, 1321, 1321, 1321, 1321, 1321, 1341, 1341, 1342,
|
|
1343, 1253, 1253, 1253, 1253, 1253, 1344, 1344, 1345, 590,
|
|
1345, 1253, 692, 1345, 1253, 695, 695, 1253, 695, 1321,
|
|
|
|
476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 476, 476, 476, 476, 1321,
|
|
1321, 1321, 1321, 1321, 1253, 1253, 1333, 1321, 1321, 1321,
|
|
1253, 1253, 1253, 1253, 1253, 524, 524, 1335, 1335, 524,
|
|
524, 524, 1335, 524, 524, 524, 524, 524, 1309, 1309,
|
|
1309, 1309, 1309, 1313, 1313, 1313, 1313, 1313, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 319, 319, 319,
|
|
319, 1313, 1313, 1313, 1313, 1313, 1321, 1321, 1321, 1253,
|
|
1346, 1347, 682, 1253, 784, 784, 1253, 784, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1348, 1348, 1349, 698, 1349, 1253,
|
|
|
|
800, 1349, 1253, 803, 803, 1253, 803, 1321, 1253, 1253,
|
|
1253, 809, 809, 809, 809, 1253, 1253, 809, 809, 809,
|
|
809, 1253, 1253, 809, 809, 809, 809, 1253, 1253, 1253,
|
|
1253, 809, 1321, 1253, 1253, 1350, 1321, 1321, 1321, 1253,
|
|
1253, 1253, 1253, 1351, 1351, 843, 843, 1351, 1351, 843,
|
|
843, 1352, 1353, 1353, 1353, 1253, 856, 856, 856, 856,
|
|
856, 856, 856, 856, 1353, 1321, 1321, 1321, 1321, 1321,
|
|
1253, 1354, 1253, 1355, 787, 1355, 1355, 877, 1355, 1253,
|
|
880, 880, 1253, 880, 1253, 1253, 1253, 1253, 1356, 1356,
|
|
1357, 806, 1357, 1253, 894, 1357, 1253, 897, 897, 897,
|
|
|
|
1321, 1253, 902, 902, 902, 902, 902, 902, 902, 902,
|
|
902, 902, 902, 902, 1321, 1253, 1253, 1358, 1321, 1321,
|
|
1321, 1253, 1253, 1253, 1253, 1253, 1253, 1359, 1359, 927,
|
|
927, 1359, 1359, 927, 927, 1360, 1361, 1361, 1361, 1361,
|
|
1361, 1253, 942, 942, 942, 942, 942, 942, 942, 942,
|
|
1361, 1321, 1321, 1321, 1321, 1253, 1253, 1253, 1253, 1362,
|
|
1362, 1363, 883, 1363, 1363, 965, 1363, 1253, 968, 968,
|
|
1253, 968, 1253, 1253, 1253, 1253, 1253, 1253, 1364, 1364,
|
|
1365, 1365, 1365, 983, 1365, 1321, 902, 902, 902, 902,
|
|
902, 1253, 1253, 902, 902, 902, 1253, 1253, 1253, 1253,
|
|
|
|
902, 1253, 1253, 1366, 1358, 1321, 1367, 1368, 1253, 1253,
|
|
1253, 1253, 927, 1359, 1359, 927, 1359, 1359, 1361, 1361,
|
|
1361, 1361, 942, 942, 942, 942, 942, 942, 1321, 1321,
|
|
1321, 1321, 1321, 1321, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1369, 1369, 1370, 971, 1370, 1370, 1046, 1370, 1253, 1049,
|
|
1049, 1253, 1049, 1253, 1253, 1253, 1253, 1371, 1371, 1321,
|
|
902, 1253, 1253, 902, 1253, 1253, 902, 902, 902, 902,
|
|
1253, 1366, 1366, 1253, 1366, 1358, 1367, 1367, 1367, 1367,
|
|
1253, 1367, 1368, 1368, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1359, 927, 1359, 1359, 1361, 1361, 1361, 1361, 1361, 1361,
|
|
|
|
942, 942, 942, 942, 1321, 1321, 1321, 1253, 1253, 1253,
|
|
1253, 1372, 1372, 1373, 1052, 1373, 1373, 1117, 1373, 1253,
|
|
1120, 1120, 1120, 1253, 1253, 1253, 1253, 1253, 1321, 902,
|
|
1253, 1253, 902, 902, 902, 1253, 1358, 1253, 1253, 1253,
|
|
1253, 1253, 927, 1359, 1359, 1361, 1361, 1361, 942, 942,
|
|
942, 1321, 1321, 1321, 1321, 1321, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1374, 1374, 1375, 1375, 1375, 1167, 1167, 902,
|
|
1253, 1253, 1253, 1253, 902, 1376, 1253, 1253, 1253, 1253,
|
|
1253, 1359, 1361, 1361, 1361, 1361, 1361, 942, 1321, 1321,
|
|
1321, 1253, 1253, 1253, 1253, 1377, 1377, 902, 1253, 1253,
|
|
|
|
1376, 1376, 1253, 1376, 1253, 1253, 1253, 1361, 1361, 1361,
|
|
1321, 1321, 1321, 1321, 1321, 1253, 1253, 1253, 1253, 1253,
|
|
902, 1253, 1253, 1253, 1253, 1253, 1253, 1361, 1361, 1361,
|
|
1361, 1361, 1321, 1321, 1321, 902, 1253, 1253, 1253, 1361,
|
|
1361, 1361, 1321, 1321, 1321, 902, 1253, 1253, 1253, 1361,
|
|
1361, 1361, 0, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_nxt[9611] =
|
|
{ 0,
|
|
22, 23, 24, 22, 25, 23, 26, 27, 28, 22,
|
|
29, 30, 31, 22, 32, 33, 22, 22, 34, 35,
|
|
36, 37, 35, 35, 35, 35, 35, 35, 35, 38,
|
|
39, 40, 41, 42, 43, 44, 43, 45, 46, 47,
|
|
47, 48, 47, 49, 50, 51, 47, 52, 53, 54,
|
|
55, 47, 47, 47, 47, 47, 56, 57, 22, 58,
|
|
58, 58, 58, 58, 58, 22, 22, 22, 59, 22,
|
|
22, 22, 22, 60, 22, 22, 61, 160, 188, 159,
|
|
61, 160, 188, 62, 23, 79, 505, 80, 23, 81,
|
|
186, 82, 23, 79, 506, 80, 23, 81, 82, 82,
|
|
|
|
86, 87, 204, 88, 86, 89, 82, 90, 91, 169,
|
|
63, 64, 82, 83, 188, 65, 205, 196, 188, 626,
|
|
82, 83, 197, 66, 232, 193, 67, 68, 232, 159,
|
|
170, 68, 104, 24, 69, 25, 104, 105, 106, 84,
|
|
214, 70, 159, 191, 71, 200, 188, 84, 104, 24,
|
|
188, 25, 104, 105, 106, 92, 192, 171, 22, 72,
|
|
201, 43, 182, 182, 182, 182, 182, 183, 202, 73,
|
|
164, 74, 338, 75, 47, 188, 47, 456, 194, 188,
|
|
169, 86, 87, 76, 88, 86, 89, 107, 90, 91,
|
|
23, 24, 40, 25, 23, 132, 133, 227, 229, 77,
|
|
|
|
68, 269, 229, 107, 68, 175, 175, 69, 159, 188,
|
|
175, 175, 230, 188, 70, 249, 159, 71, 215, 249,
|
|
23, 24, 40, 25, 23, 132, 133, 216, 270, 225,
|
|
175, 22, 72, 159, 43, 304, 92, 252, 207, 298,
|
|
245, 252, 73, 215, 74, 134, 75, 47, 299, 47,
|
|
206, 207, 241, 245, 206, 176, 76, 181, 181, 181,
|
|
181, 181, 181, 181, 181, 181, 181, 217, 264, 257,
|
|
258, 217, 77, 23, 24, 134, 25, 23, 26, 158,
|
|
93, 180, 180, 180, 180, 180, 180, 180, 180, 180,
|
|
180, 191, 284, 159, 188, 256, 256, 284, 188, 159,
|
|
|
|
288, 218, 219, 287, 192, 592, 220, 260, 207, 295,
|
|
245, 260, 263, 351, 221, 319, 263, 222, 262, 160,
|
|
224, 265, 266, 160, 267, 265, 321, 261, 94, 302,
|
|
95, 95, 95, 95, 95, 95, 95, 95, 95, 95,
|
|
95, 95, 95, 95, 95, 95, 95, 95, 23, 24,
|
|
207, 25, 23, 26, 231, 93, 296, 167, 167, 167,
|
|
167, 167, 167, 167, 167, 167, 167, 262, 281, 281,
|
|
281, 281, 281, 282, 319, 234, 234, 322, 188, 301,
|
|
234, 234, 280, 280, 280, 280, 280, 280, 280, 280,
|
|
280, 280, 316, 316, 316, 316, 316, 317, 206, 207,
|
|
|
|
234, 245, 206, 94, 159, 95, 95, 95, 95, 95,
|
|
95, 95, 95, 95, 95, 95, 95, 95, 95, 95,
|
|
95, 95, 95, 23, 24, 235, 25, 23, 26, 97,
|
|
93, 206, 207, 169, 245, 206, 98, 99, 100, 1253,
|
|
304, 279, 279, 279, 279, 279, 279, 279, 279, 279,
|
|
279, 334, 101, 301, 269, 304, 346, 346, 346, 346,
|
|
346, 346, 310, 310, 348, 335, 159, 310, 310, 380,
|
|
159, 159, 159, 304, 336, 350, 381, 159, 102, 23,
|
|
24, 306, 25, 23, 26, 97, 93, 310, 379, 391,
|
|
450, 392, 98, 99, 100, 315, 315, 315, 315, 315,
|
|
|
|
315, 315, 315, 315, 315, 232, 232, 159, 101, 232,
|
|
232, 303, 311, 314, 314, 314, 314, 314, 314, 314,
|
|
314, 314, 314, 167, 167, 167, 167, 167, 167, 167,
|
|
167, 167, 167, 1223, 102, 40, 23, 24, 40, 25,
|
|
23, 26, 40, 40, 40, 108, 30, 31, 40, 109,
|
|
33, 40, 40, 110, 111, 112, 113, 111, 111, 111,
|
|
111, 111, 111, 111, 38, 114, 40, 40, 115, 116,
|
|
116, 116, 117, 118, 119, 119, 120, 119, 121, 122,
|
|
123, 119, 124, 119, 125, 119, 119, 119, 119, 119,
|
|
119, 94, 126, 40, 127, 127, 127, 127, 127, 127,
|
|
|
|
128, 128, 128, 129, 128, 128, 128, 128, 130, 128,
|
|
128, 135, 23, 24, 135, 25, 23, 26, 40, 40,
|
|
135, 136, 30, 31, 135, 137, 33, 135, 135, 138,
|
|
139, 140, 141, 139, 139, 139, 139, 139, 139, 139,
|
|
38, 39, 40, 135, 142, 143, 143, 143, 144, 145,
|
|
146, 146, 147, 146, 148, 149, 150, 146, 151, 146,
|
|
152, 146, 146, 146, 146, 146, 146, 153, 154, 135,
|
|
155, 155, 155, 155, 155, 155, 135, 135, 135, 156,
|
|
135, 135, 135, 135, 157, 135, 135, 164, 264, 165,
|
|
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
|
|
|
|
295, 166, 873, 158, 167, 167, 167, 167, 167, 167,
|
|
167, 167, 167, 167, 177, 169, 178, 178, 178, 178,
|
|
178, 178, 178, 178, 178, 178, 179, 395, 492, 493,
|
|
180, 180, 180, 180, 180, 180, 1253, 179, 262, 207,
|
|
159, 158, 158, 158, 158, 158, 388, 296, 158, 158,
|
|
390, 249, 158, 159, 389, 249, 180, 180, 180, 180,
|
|
180, 180, 158, 270, 159, 158, 158, 158, 158, 400,
|
|
159, 158, 158, 400, 396, 158, 158, 393, 158, 158,
|
|
158, 187, 187, 187, 187, 187, 187, 187, 187, 187,
|
|
187, 179, 1115, 304, 158, 187, 187, 187, 187, 187,
|
|
|
|
187, 188, 188, 188, 188, 189, 188, 188, 188, 190,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 159, 158,
|
|
188, 180, 180, 180, 180, 180, 180, 158, 158, 158,
|
|
158, 158, 158, 158, 158, 158, 158, 158, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 1253, 164,
|
|
908, 338, 188, 188, 188, 188, 188, 188, 304, 159,
|
|
302, 451, 188, 188, 340, 399, 188, 341, 341, 341,
|
|
341, 341, 341, 341, 341, 341, 341, 159, 158, 158,
|
|
158, 158, 158, 158, 206, 207, 348, 208, 209, 158,
|
|
158, 158, 229, 388, 158, 158, 229, 469, 158, 175,
|
|
|
|
175, 1177, 234, 234, 175, 175, 230, 234, 234, 164,
|
|
301, 338, 158, 158, 158, 211, 304, 387, 159, 211,
|
|
211, 211, 452, 212, 175, 211, 211, 234, 159, 211,
|
|
168, 168, 168, 168, 168, 159, 500, 168, 168, 211,
|
|
422, 168, 621, 211, 211, 211, 388, 206, 207, 176,
|
|
245, 206, 235, 159, 159, 168, 168, 168, 346, 346,
|
|
346, 346, 346, 346, 346, 346, 346, 346, 504, 516,
|
|
213, 164, 453, 165, 338, 172, 172, 172, 172, 172,
|
|
263, 1253, 172, 172, 263, 166, 172, 296, 167, 167,
|
|
167, 167, 167, 167, 167, 167, 167, 167, 594, 515,
|
|
|
|
172, 172, 172, 342, 343, 344, 342, 342, 342, 342,
|
|
342, 342, 342, 346, 346, 346, 346, 346, 346, 346,
|
|
346, 346, 346, 206, 207, 211, 245, 206, 158, 164,
|
|
295, 455, 210, 377, 217, 262, 223, 238, 217, 159,
|
|
159, 238, 238, 238, 475, 239, 396, 238, 238, 363,
|
|
364, 238, 159, 365, 512, 366, 367, 159, 304, 368,
|
|
400, 369, 370, 388, 400, 238, 238, 238, 218, 219,
|
|
1253, 206, 207, 220, 245, 206, 564, 296, 159, 238,
|
|
378, 221, 158, 1253, 222, 169, 237, 397, 164, 304,
|
|
338, 1253, 240, 244, 207, 608, 245, 244, 246, 159,
|
|
|
|
247, 164, 514, 455, 568, 246, 1253, 247, 167, 167,
|
|
167, 167, 167, 167, 167, 167, 167, 167, 270, 363,
|
|
364, 247, 247, 365, 300, 366, 367, 1253, 300, 368,
|
|
453, 369, 455, 270, 398, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 720, 593, 511, 247, 246,
|
|
164, 1253, 165, 206, 207, 348, 245, 206, 265, 266,
|
|
647, 267, 265, 648, 253, 605, 469, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 271, 159, 301,
|
|
271, 539, 540, 1253, 541, 255, 271, 271, 1253, 255,
|
|
271, 255, 255, 271, 271, 268, 268, 268, 268, 255,
|
|
|
|
348, 1253, 268, 268, 599, 597, 268, 273, 256, 271,
|
|
1253, 473, 175, 1253, 255, 1253, 175, 1253, 604, 175,
|
|
598, 268, 268, 576, 576, 576, 175, 405, 405, 405,
|
|
405, 405, 405, 274, 271, 271, 175, 613, 606, 175,
|
|
175, 175, 175, 175, 1253, 175, 175, 175, 175, 175,
|
|
1253, 1253, 175, 175, 271, 271, 271, 271, 271, 612,
|
|
607, 271, 271, 873, 609, 271, 273, 175, 175, 401,
|
|
402, 403, 401, 401, 401, 401, 401, 401, 401, 271,
|
|
271, 271, 405, 405, 405, 405, 405, 405, 405, 405,
|
|
405, 405, 276, 175, 175, 273, 1253, 1253, 277, 273,
|
|
|
|
278, 278, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
179, 273, 615, 706, 279, 279, 279, 279, 279, 279,
|
|
273, 273, 273, 273, 273, 273, 273, 273, 273, 273,
|
|
273, 273, 273, 273, 273, 273, 273, 1253, 1115, 721,
|
|
279, 279, 279, 279, 279, 279, 273, 273, 273, 273,
|
|
273, 273, 273, 273, 273, 273, 273, 1253, 610, 273,
|
|
273, 273, 273, 273, 273, 273, 273, 273, 273, 1253,
|
|
159, 620, 1044, 273, 273, 273, 273, 273, 273, 405,
|
|
405, 405, 405, 405, 405, 405, 405, 405, 405, 431,
|
|
431, 431, 431, 431, 431, 431, 431, 431, 431, 273,
|
|
|
|
273, 273, 273, 273, 273, 273, 1253, 159, 543, 273,
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
179, 273, 1157, 616, 283, 283, 283, 283, 283, 283,
|
|
284, 284, 284, 284, 285, 284, 284, 284, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 304, 1188, 286,
|
|
279, 279, 279, 279, 279, 279, 273, 273, 273, 273,
|
|
273, 273, 273, 273, 273, 273, 273, 284, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 1253, 1253, 1253,
|
|
395, 284, 284, 284, 284, 284, 284, 611, 413, 414,
|
|
1182, 284, 415, 617, 416, 417, 618, 619, 418, 614,
|
|
|
|
419, 431, 431, 431, 431, 431, 431, 273, 273, 273,
|
|
273, 273, 273, 312, 671, 313, 313, 313, 313, 313,
|
|
313, 313, 313, 313, 313, 179, 159, 396, 159, 314,
|
|
314, 314, 314, 314, 314, 595, 159, 1253, 1253, 595,
|
|
303, 303, 303, 303, 303, 179, 710, 303, 303, 600,
|
|
304, 303, 304, 388, 601, 314, 314, 314, 314, 314,
|
|
314, 303, 159, 596, 303, 303, 303, 303, 636, 628,
|
|
303, 303, 159, 637, 303, 303, 1253, 303, 303, 303,
|
|
318, 318, 318, 318, 318, 318, 318, 318, 318, 318,
|
|
179, 627, 825, 303, 318, 318, 318, 318, 318, 318,
|
|
|
|
319, 319, 319, 319, 320, 319, 319, 319, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 304, 303, 319,
|
|
314, 314, 314, 314, 314, 314, 303, 303, 303, 303,
|
|
303, 303, 303, 303, 303, 303, 303, 319, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 1253, 179, 1253,
|
|
159, 319, 319, 319, 319, 319, 319, 668, 439, 440,
|
|
669, 319, 441, 709, 442, 443, 310, 310, 444, 700,
|
|
445, 310, 310, 501, 502, 304, 503, 303, 303, 303,
|
|
303, 303, 303, 206, 207, 348, 329, 330, 303, 303,
|
|
303, 310, 304, 303, 303, 159, 469, 303, 427, 428,
|
|
|
|
429, 427, 427, 427, 427, 427, 427, 427, 159, 670,
|
|
657, 303, 303, 303, 211, 658, 311, 602, 211, 211,
|
|
211, 602, 332, 348, 211, 211, 1253, 304, 211, 305,
|
|
305, 305, 305, 305, 672, 304, 305, 305, 304, 1253,
|
|
305, 701, 211, 211, 211, 603, 1253, 206, 207, 1253,
|
|
245, 206, 704, 712, 305, 305, 305, 164, 1253, 338,
|
|
307, 307, 307, 307, 307, 1253, 1253, 307, 307, 333,
|
|
175, 307, 708, 158, 174, 158, 158, 174, 711, 702,
|
|
158, 158, 348, 705, 174, 307, 307, 307, 431, 431,
|
|
431, 431, 431, 431, 431, 431, 431, 431, 174, 174,
|
|
|
|
158, 177, 304, 345, 345, 345, 345, 345, 345, 345,
|
|
345, 345, 345, 179, 1044, 1253, 723, 345, 345, 345,
|
|
345, 345, 345, 625, 211, 565, 566, 303, 567, 580,
|
|
348, 331, 448, 585, 585, 585, 585, 585, 586, 703,
|
|
159, 582, 1253, 345, 345, 345, 345, 345, 345, 158,
|
|
1253, 159, 158, 1253, 903, 188, 1253, 717, 158, 158,
|
|
304, 714, 158, 158, 707, 158, 158, 158, 352, 352,
|
|
352, 352, 352, 352, 352, 352, 352, 352, 179, 449,
|
|
824, 158, 352, 352, 352, 352, 352, 352, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
|
|
188, 188, 188, 188, 188, 159, 158, 188, 345, 345,
|
|
345, 345, 345, 345, 158, 158, 158, 158, 158, 158,
|
|
158, 158, 158, 158, 158, 188, 188, 188, 188, 188,
|
|
188, 188, 188, 188, 188, 1253, 906, 188, 963, 188,
|
|
188, 188, 188, 188, 188, 341, 341, 341, 341, 341,
|
|
341, 341, 341, 341, 341, 341, 341, 341, 341, 341,
|
|
341, 341, 341, 341, 341, 158, 158, 158, 158, 158,
|
|
158, 211, 722, 1253, 602, 211, 211, 211, 602, 212,
|
|
234, 211, 211, 1253, 234, 211, 456, 234, 457, 457,
|
|
457, 457, 457, 457, 234, 1253, 718, 319, 1025, 211,
|
|
|
|
211, 211, 603, 713, 716, 159, 1253, 1253, 234, 234,
|
|
517, 1253, 518, 518, 518, 518, 518, 518, 518, 518,
|
|
518, 518, 1150, 159, 159, 159, 213, 234, 719, 724,
|
|
158, 233, 158, 158, 233, 1253, 728, 158, 158, 1253,
|
|
517, 233, 519, 519, 519, 519, 519, 519, 519, 519,
|
|
519, 519, 634, 159, 773, 233, 233, 158, 238, 730,
|
|
715, 1253, 238, 238, 238, 1253, 239, 1149, 238, 238,
|
|
1253, 517, 238, 520, 520, 520, 520, 520, 521, 518,
|
|
518, 518, 518, 1253, 348, 304, 238, 238, 238, 1253,
|
|
310, 815, 772, 774, 310, 582, 517, 310, 518, 518,
|
|
|
|
518, 518, 518, 518, 310, 164, 304, 338, 635, 159,
|
|
775, 348, 776, 240, 271, 580, 348, 271, 310, 310,
|
|
1253, 729, 469, 271, 271, 304, 304, 271, 812, 673,
|
|
271, 271, 569, 570, 571, 569, 569, 569, 569, 569,
|
|
569, 569, 1253, 348, 273, 304, 271, 574, 574, 575,
|
|
576, 576, 576, 576, 576, 576, 576, 466, 584, 584,
|
|
584, 584, 584, 584, 584, 584, 584, 584, 159, 159,
|
|
274, 271, 271, 175, 1253, 159, 175, 348, 727, 175,
|
|
175, 808, 175, 175, 175, 175, 175, 1145, 582, 175,
|
|
175, 1253, 814, 583, 583, 583, 583, 583, 583, 583,
|
|
|
|
583, 583, 583, 273, 175, 175, 629, 630, 631, 629,
|
|
629, 629, 629, 629, 629, 629, 517, 159, 518, 518,
|
|
518, 518, 518, 518, 518, 518, 518, 518, 1253, 276,
|
|
175, 175, 277, 1129, 404, 404, 404, 404, 404, 404,
|
|
404, 404, 404, 404, 179, 809, 1253, 1253, 404, 404,
|
|
404, 404, 404, 404, 517, 1253, 518, 518, 518, 518,
|
|
518, 518, 518, 518, 518, 518, 813, 832, 1144, 595,
|
|
580, 348, 818, 595, 404, 404, 404, 404, 404, 404,
|
|
273, 1253, 582, 754, 273, 406, 406, 406, 406, 406,
|
|
406, 406, 406, 406, 406, 179, 273, 596, 827, 406,
|
|
|
|
406, 406, 406, 406, 406, 284, 284, 284, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 284, 284, 284,
|
|
284, 284, 304, 1143, 286, 404, 404, 404, 404, 404,
|
|
404, 273, 273, 273, 273, 273, 273, 273, 273, 273,
|
|
273, 273, 284, 284, 284, 284, 284, 284, 284, 284,
|
|
284, 284, 1253, 580, 348, 1253, 284, 284, 284, 284,
|
|
284, 284, 1253, 1253, 1253, 690, 1253, 188, 1253, 1253,
|
|
905, 826, 1253, 1253, 819, 1253, 820, 1253, 348, 1253,
|
|
1085, 821, 273, 273, 273, 273, 273, 273, 310, 690,
|
|
1253, 303, 309, 303, 303, 309, 1253, 1253, 303, 303,
|
|
|
|
641, 159, 309, 1253, 638, 1253, 1253, 1016, 848, 1253,
|
|
1253, 639, 833, 849, 159, 642, 309, 309, 303, 312,
|
|
284, 430, 430, 430, 430, 430, 430, 430, 430, 430,
|
|
430, 179, 838, 1253, 1253, 430, 430, 430, 430, 430,
|
|
430, 159, 159, 602, 595, 1253, 602, 602, 595, 1253,
|
|
602, 861, 837, 839, 640, 644, 862, 304, 304, 1029,
|
|
159, 430, 430, 430, 430, 430, 430, 303, 865, 1130,
|
|
303, 603, 596, 1253, 603, 159, 303, 303, 915, 188,
|
|
303, 303, 901, 303, 303, 303, 432, 432, 432, 432,
|
|
432, 432, 432, 432, 432, 432, 179, 645, 159, 303,
|
|
|
|
432, 432, 432, 432, 432, 432, 319, 319, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 319, 319, 319,
|
|
319, 319, 319, 304, 303, 319, 430, 430, 430, 430,
|
|
430, 430, 303, 303, 303, 303, 303, 303, 303, 303,
|
|
303, 303, 303, 319, 319, 319, 319, 319, 319, 319,
|
|
319, 319, 319, 1253, 164, 348, 338, 319, 319, 319,
|
|
319, 319, 319, 1253, 1253, 1085, 582, 1253, 1253, 652,
|
|
653, 654, 652, 652, 652, 652, 652, 652, 652, 348,
|
|
164, 1236, 338, 303, 303, 303, 303, 303, 303, 211,
|
|
690, 1253, 1253, 211, 211, 211, 188, 332, 904, 211,
|
|
|
|
211, 580, 348, 211, 909, 188, 304, 188, 646, 580,
|
|
348, 643, 1253, 690, 836, 188, 1253, 211, 211, 211,
|
|
543, 798, 544, 544, 544, 544, 544, 544, 679, 679,
|
|
679, 679, 679, 679, 679, 679, 679, 679, 466, 188,
|
|
1253, 918, 910, 1029, 333, 456, 737, 457, 457, 457,
|
|
457, 457, 457, 457, 457, 457, 457, 319, 1103, 304,
|
|
684, 685, 686, 684, 684, 684, 684, 684, 684, 684,
|
|
591, 591, 591, 591, 591, 591, 591, 591, 591, 591,
|
|
159, 188, 159, 919, 159, 456, 907, 458, 458, 458,
|
|
458, 458, 458, 458, 458, 458, 458, 580, 348, 688,
|
|
|
|
688, 688, 688, 688, 688, 947, 159, 319, 911, 582,
|
|
692, 692, 692, 692, 692, 692, 692, 692, 692, 692,
|
|
188, 348, 188, 920, 159, 456, 912, 459, 459, 459,
|
|
459, 459, 460, 457, 457, 457, 457, 693, 693, 693,
|
|
693, 693, 694, 1253, 931, 691, 691, 691, 691, 691,
|
|
691, 691, 691, 691, 691, 284, 284, 319, 1253, 159,
|
|
304, 930, 1253, 945, 159, 461, 461, 461, 461, 461,
|
|
461, 461, 461, 461, 461, 179, 963, 921, 951, 461,
|
|
461, 461, 461, 461, 461, 731, 1253, 732, 732, 732,
|
|
732, 732, 732, 732, 732, 732, 732, 319, 284, 319,
|
|
|
|
741, 943, 159, 935, 950, 461, 461, 461, 461, 461,
|
|
461, 463, 464, 465, 465, 465, 465, 465, 465, 465,
|
|
465, 466, 580, 348, 875, 467, 467, 467, 467, 467,
|
|
467, 731, 946, 733, 733, 733, 733, 733, 733, 733,
|
|
733, 733, 733, 1253, 319, 319, 1035, 1253, 994, 948,
|
|
1101, 467, 467, 467, 467, 467, 467, 348, 470, 471,
|
|
472, 470, 470, 470, 470, 470, 470, 470, 473, 188,
|
|
1001, 1253, 474, 474, 474, 474, 474, 474, 731, 934,
|
|
734, 734, 734, 734, 734, 735, 732, 732, 732, 732,
|
|
284, 188, 1198, 1253, 348, 736, 1095, 949, 474, 474,
|
|
|
|
474, 474, 474, 474, 158, 798, 810, 158, 319, 159,
|
|
810, 988, 188, 158, 158, 986, 1094, 158, 158, 188,
|
|
158, 158, 158, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 476, 476, 179, 811, 304, 158, 476, 476, 476,
|
|
476, 476, 476, 188, 188, 188, 188, 188, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
159, 158, 188, 461, 461, 461, 461, 461, 461, 158,
|
|
158, 158, 158, 158, 158, 158, 158, 158, 158, 158,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
1253, 873, 319, 1151, 188, 188, 188, 188, 188, 188,
|
|
|
|
1253, 1253, 991, 875, 1253, 1253, 1253, 1093, 348, 188,
|
|
1253, 1253, 866, 1253, 1253, 1253, 348, 1253, 875, 690,
|
|
158, 158, 158, 158, 158, 158, 211, 798, 1253, 1253,
|
|
211, 211, 211, 1064, 212, 740, 211, 211, 1253, 1253,
|
|
211, 1253, 188, 1253, 1253, 1253, 742, 1253, 1253, 1253,
|
|
159, 1091, 990, 744, 211, 211, 211, 743, 580, 348,
|
|
188, 745, 580, 348, 796, 796, 796, 796, 796, 796,
|
|
798, 1253, 1253, 1253, 690, 937, 996, 989, 1069, 746,
|
|
747, 213, 211, 188, 188, 188, 211, 211, 211, 211,
|
|
377, 159, 211, 211, 1026, 748, 211, 777, 778, 779,
|
|
|
|
777, 777, 777, 777, 777, 777, 777, 319, 1006, 159,
|
|
211, 211, 211, 304, 673, 1067, 674, 674, 674, 674,
|
|
674, 674, 789, 188, 790, 790, 790, 790, 790, 790,
|
|
790, 790, 790, 790, 159, 580, 348, 213, 238, 1253,
|
|
348, 1071, 238, 238, 238, 188, 239, 892, 238, 238,
|
|
973, 892, 238, 159, 789, 875, 791, 791, 791, 791,
|
|
791, 791, 791, 791, 791, 791, 238, 238, 238, 789,
|
|
783, 792, 792, 792, 792, 792, 793, 790, 790, 790,
|
|
790, 699, 699, 699, 699, 699, 699, 699, 699, 699,
|
|
699, 816, 822, 240, 238, 816, 822, 304, 238, 238,
|
|
|
|
238, 238, 397, 1027, 238, 238, 319, 1095, 238, 800,
|
|
800, 800, 800, 800, 800, 800, 800, 800, 800, 817,
|
|
823, 995, 238, 238, 238, 801, 801, 801, 801, 801,
|
|
802, 1253, 188, 799, 799, 799, 799, 799, 799, 799,
|
|
799, 799, 799, 828, 830, 1152, 304, 828, 830, 240,
|
|
522, 522, 522, 522, 522, 522, 522, 522, 522, 522,
|
|
179, 1074, 1133, 1075, 522, 522, 522, 522, 522, 522,
|
|
188, 829, 831, 840, 841, 842, 840, 840, 840, 840,
|
|
840, 840, 840, 1028, 159, 810, 873, 873, 1024, 810,
|
|
522, 522, 522, 522, 522, 522, 273, 1221, 875, 963,
|
|
|
|
273, 523, 523, 523, 523, 523, 523, 523, 523, 523,
|
|
523, 179, 273, 811, 188, 523, 523, 523, 523, 523,
|
|
523, 284, 284, 284, 284, 284, 284, 284, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 284, 1018, 1017,
|
|
286, 522, 522, 522, 522, 522, 522, 273, 273, 273,
|
|
273, 273, 273, 273, 273, 273, 273, 273, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 284, 1253, 1136,
|
|
1015, 1075, 284, 284, 284, 284, 284, 284, 731, 1253,
|
|
732, 732, 732, 732, 732, 732, 732, 732, 732, 732,
|
|
731, 963, 732, 732, 732, 732, 732, 732, 273, 273,
|
|
|
|
273, 273, 273, 273, 543, 873, 544, 544, 544, 544,
|
|
544, 544, 544, 544, 544, 544, 731, 963, 732, 732,
|
|
732, 732, 732, 732, 732, 732, 732, 732, 1253, 816,
|
|
1253, 1253, 1253, 816, 1253, 1253, 1092, 822, 1253, 284,
|
|
1014, 822, 1253, 304, 543, 922, 545, 545, 545, 545,
|
|
545, 545, 545, 545, 545, 545, 1253, 817, 1253, 1253,
|
|
348, 1203, 159, 1204, 843, 823, 1253, 1003, 1253, 828,
|
|
830, 798, 1253, 828, 830, 846, 1004, 164, 847, 338,
|
|
1004, 1002, 851, 304, 543, 159, 546, 546, 546, 546,
|
|
546, 547, 544, 544, 544, 544, 1253, 829, 831, 853,
|
|
|
|
854, 855, 853, 853, 853, 853, 853, 853, 853, 754,
|
|
1135, 755, 755, 755, 755, 755, 755, 188, 810, 188,
|
|
850, 816, 810, 304, 303, 816, 548, 548, 548, 548,
|
|
548, 548, 548, 548, 548, 548, 304, 1005, 783, 348,
|
|
548, 548, 548, 548, 548, 548, 811, 578, 304, 817,
|
|
892, 580, 348, 159, 822, 828, 830, 810, 822, 828,
|
|
830, 810, 1102, 892, 1060, 319, 548, 548, 548, 548,
|
|
548, 548, 549, 549, 549, 549, 549, 549, 549, 549,
|
|
549, 549, 823, 829, 831, 811, 549, 549, 549, 549,
|
|
549, 549, 788, 788, 788, 788, 788, 788, 788, 788,
|
|
|
|
788, 788, 877, 877, 877, 877, 877, 877, 877, 877,
|
|
877, 877, 548, 548, 548, 548, 548, 548, 211, 1061,
|
|
1068, 944, 211, 211, 211, 1222, 332, 1204, 211, 211,
|
|
188, 188, 211, 878, 878, 878, 878, 878, 879, 895,
|
|
895, 895, 895, 895, 896, 936, 211, 211, 211, 1253,
|
|
933, 876, 876, 876, 876, 876, 876, 876, 876, 876,
|
|
876, 885, 886, 887, 885, 885, 885, 885, 885, 885,
|
|
885, 816, 822, 333, 211, 816, 822, 932, 211, 211,
|
|
211, 211, 448, 1104, 211, 211, 319, 789, 211, 790,
|
|
790, 790, 790, 790, 790, 790, 790, 790, 790, 817,
|
|
|
|
823, 929, 211, 211, 211, 789, 873, 790, 790, 790,
|
|
790, 790, 790, 790, 790, 790, 790, 789, 1044, 790,
|
|
790, 790, 790, 790, 790, 1196, 1196, 1196, 1196, 333,
|
|
456, 928, 457, 457, 457, 457, 457, 457, 457, 457,
|
|
457, 457, 807, 807, 807, 807, 807, 807, 807, 807,
|
|
807, 807, 580, 348, 890, 890, 890, 890, 890, 890,
|
|
1070, 917, 1073, 1074, 798, 1075, 1073, 1183, 1211, 159,
|
|
456, 188, 457, 457, 457, 457, 457, 457, 457, 457,
|
|
457, 457, 894, 894, 894, 894, 894, 894, 894, 894,
|
|
894, 894, 1253, 1253, 893, 893, 893, 893, 893, 893,
|
|
|
|
893, 893, 893, 893, 828, 1044, 304, 159, 828, 159,
|
|
580, 348, 581, 581, 581, 581, 581, 581, 581, 581,
|
|
581, 581, 582, 916, 1007, 188, 583, 583, 583, 583,
|
|
583, 583, 829, 866, 867, 867, 867, 867, 867, 867,
|
|
348, 164, 830, 338, 992, 914, 830, 1007, 992, 1007,
|
|
1007, 892, 583, 583, 583, 583, 583, 583, 348, 587,
|
|
588, 589, 587, 587, 587, 587, 587, 587, 587, 590,
|
|
831, 159, 993, 591, 591, 591, 591, 591, 591, 922,
|
|
923, 923, 923, 923, 923, 923, 923, 923, 923, 923,
|
|
966, 966, 966, 966, 966, 967, 913, 1228, 873, 591,
|
|
|
|
591, 591, 591, 591, 591, 158, 1076, 997, 158, 1134,
|
|
1044, 997, 1175, 789, 158, 158, 783, 188, 158, 158,
|
|
188, 158, 158, 158, 188, 188, 188, 188, 188, 188,
|
|
188, 188, 188, 188, 179, 998, 304, 158, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
188, 159, 158, 188, 158, 158, 158, 158, 158, 158,
|
|
158, 158, 158, 158, 158, 158, 158, 158, 158, 158,
|
|
158, 632, 632, 632, 632, 632, 632, 632, 632, 632,
|
|
632, 179, 254, 254, 254, 632, 632, 632, 632, 632,
|
|
|
|
632, 922, 924, 924, 924, 924, 924, 924, 924, 924,
|
|
924, 924, 984, 984, 984, 984, 984, 985, 873, 578,
|
|
466, 632, 632, 632, 632, 632, 632, 273, 304, 304,
|
|
1115, 273, 633, 633, 633, 633, 633, 633, 633, 633,
|
|
633, 633, 179, 273, 304, 304, 633, 633, 633, 633,
|
|
633, 633, 284, 284, 284, 284, 284, 284, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 284, 284, 1246,
|
|
864, 286, 632, 632, 632, 632, 632, 632, 273, 273,
|
|
273, 273, 273, 273, 273, 273, 273, 273, 273, 595,
|
|
188, 863, 860, 595, 922, 925, 925, 925, 925, 925,
|
|
|
|
926, 923, 923, 923, 923, 859, 1253, 284, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 596, 1115, 858,
|
|
857, 284, 284, 284, 284, 284, 284, 856, 952, 953,
|
|
954, 955, 952, 952, 952, 952, 952, 952, 922, 923,
|
|
923, 923, 923, 923, 923, 852, 845, 273, 273, 273,
|
|
273, 273, 273, 543, 844, 544, 544, 544, 544, 544,
|
|
544, 544, 544, 544, 544, 159, 957, 958, 959, 957,
|
|
957, 957, 957, 957, 957, 957, 884, 884, 884, 884,
|
|
884, 884, 884, 884, 884, 884, 1047, 1047, 1047, 1047,
|
|
1047, 1048, 304, 543, 1170, 544, 544, 544, 544, 544,
|
|
|
|
544, 544, 544, 544, 544, 873, 188, 961, 961, 961,
|
|
961, 961, 961, 254, 254, 254, 873, 875, 965, 965,
|
|
965, 965, 965, 965, 965, 965, 965, 965, 1115, 731,
|
|
999, 835, 304, 673, 999, 674, 674, 674, 674, 674,
|
|
674, 674, 674, 674, 674, 1253, 834, 964, 964, 964,
|
|
964, 964, 964, 964, 964, 964, 964, 973, 1000, 974,
|
|
974, 974, 974, 974, 974, 974, 974, 974, 974, 159,
|
|
1065, 159, 159, 673, 1065, 675, 675, 675, 675, 675,
|
|
675, 675, 675, 675, 675, 973, 159, 975, 975, 975,
|
|
975, 975, 975, 975, 975, 975, 975, 973, 1066, 976,
|
|
|
|
976, 976, 976, 976, 977, 974, 974, 974, 974, 159,
|
|
1253, 783, 159, 673, 578, 676, 676, 676, 676, 676,
|
|
677, 674, 674, 674, 674, 900, 900, 900, 900, 900,
|
|
900, 900, 900, 900, 900, 580, 348, 980, 980, 980,
|
|
980, 980, 980, 1128, 1128, 1073, 1074, 892, 1075, 1073,
|
|
1128, 466, 159, 580, 348, 688, 688, 688, 688, 688,
|
|
688, 688, 688, 688, 688, 582, 1007, 466, 771, 687,
|
|
687, 687, 687, 687, 687, 983, 983, 983, 983, 983,
|
|
983, 983, 983, 983, 983, 770, 992, 184, 184, 1007,
|
|
992, 1007, 1008, 184, 769, 687, 687, 687, 687, 687,
|
|
|
|
687, 580, 348, 689, 689, 689, 689, 689, 689, 689,
|
|
689, 689, 689, 690, 993, 768, 159, 691, 691, 691,
|
|
691, 691, 691, 1253, 767, 982, 982, 982, 982, 982,
|
|
982, 982, 982, 982, 982, 284, 1118, 1118, 1118, 1118,
|
|
1118, 1119, 766, 691, 691, 691, 691, 691, 691, 348,
|
|
695, 696, 697, 695, 695, 695, 695, 695, 695, 695,
|
|
698, 765, 764, 763, 699, 699, 699, 699, 699, 699,
|
|
1009, 1010, 1011, 1012, 1009, 1009, 1009, 1009, 1009, 1009,
|
|
992, 1220, 1176, 164, 992, 338, 1176, 1220, 762, 761,
|
|
699, 699, 699, 699, 699, 699, 754, 760, 755, 755,
|
|
|
|
755, 755, 755, 755, 755, 755, 755, 755, 993, 922,
|
|
923, 923, 923, 923, 923, 923, 923, 923, 923, 923,
|
|
997, 759, 753, 752, 997, 937, 938, 938, 938, 938,
|
|
938, 938, 751, 750, 749, 304, 754, 188, 756, 756,
|
|
756, 756, 756, 756, 756, 756, 756, 756, 998, 922,
|
|
923, 923, 923, 923, 923, 923, 923, 923, 923, 923,
|
|
999, 997, 999, 304, 999, 997, 999, 973, 739, 974,
|
|
974, 974, 974, 974, 974, 304, 754, 188, 757, 757,
|
|
757, 757, 757, 758, 755, 755, 755, 755, 1000, 998,
|
|
1000, 1019, 1020, 1021, 1022, 1019, 1019, 1019, 1019, 1019,
|
|
|
|
1019, 992, 997, 999, 738, 992, 997, 999, 184, 184,
|
|
284, 284, 1253, 1253, 184, 304, 673, 188, 674, 674,
|
|
674, 674, 674, 674, 674, 674, 674, 674, 304, 993,
|
|
998, 1000, 1035, 505, 1036, 1036, 1036, 1036, 1036, 1036,
|
|
1036, 1036, 1036, 1036, 1168, 1168, 1168, 1168, 1168, 1169,
|
|
319, 319, 319, 1062, 726, 159, 673, 1062, 674, 674,
|
|
674, 674, 674, 674, 674, 674, 674, 674, 1035, 725,
|
|
1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037,
|
|
1035, 1063, 1038, 1038, 1038, 1038, 1038, 1039, 1036, 1036,
|
|
1036, 1036, 1253, 682, 578, 159, 784, 785, 786, 784,
|
|
|
|
784, 784, 784, 784, 784, 784, 787, 466, 678, 466,
|
|
788, 788, 788, 788, 788, 788, 972, 972, 972, 972,
|
|
972, 972, 972, 972, 972, 972, 1046, 1046, 1046, 1046,
|
|
1046, 1046, 1046, 1046, 1046, 1046, 788, 788, 788, 788,
|
|
788, 788, 580, 348, 796, 796, 796, 796, 796, 796,
|
|
796, 796, 796, 796, 690, 185, 304, 667, 795, 795,
|
|
795, 795, 795, 795, 873, 666, 1042, 1042, 1042, 1042,
|
|
1042, 1042, 665, 664, 663, 1035, 963, 1036, 1036, 1036,
|
|
1036, 1036, 1036, 662, 795, 795, 795, 795, 795, 795,
|
|
580, 348, 797, 797, 797, 797, 797, 797, 797, 797,
|
|
|
|
797, 797, 798, 661, 660, 659, 799, 799, 799, 799,
|
|
799, 799, 1253, 656, 1045, 1045, 1045, 1045, 1045, 1045,
|
|
1045, 1045, 1045, 1045, 580, 348, 1059, 1059, 1059, 1059,
|
|
1059, 1059, 799, 799, 799, 799, 799, 799, 348, 803,
|
|
804, 805, 803, 803, 803, 803, 803, 803, 803, 806,
|
|
655, 179, 651, 807, 807, 807, 807, 807, 807, 1054,
|
|
1055, 1056, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 650,
|
|
164, 1029, 338, 1030, 1030, 1030, 1030, 1030, 1030, 807,
|
|
807, 807, 807, 807, 807, 754, 649, 755, 755, 755,
|
|
755, 755, 755, 755, 755, 755, 755, 973, 517, 974,
|
|
|
|
974, 974, 974, 974, 974, 974, 974, 974, 974, 973,
|
|
159, 974, 974, 974, 974, 974, 974, 974, 974, 974,
|
|
974, 505, 1062, 624, 304, 754, 1062, 755, 755, 755,
|
|
755, 755, 755, 755, 755, 755, 755, 1078, 505, 623,
|
|
1137, 1078, 1079, 1080, 1081, 1202, 1203, 1078, 1204, 1202,
|
|
1063, 1078, 1079, 1080, 1081, 347, 347, 505, 1065, 1065,
|
|
622, 347, 1065, 1065, 304, 866, 867, 867, 867, 867,
|
|
867, 867, 867, 867, 867, 867, 159, 1253, 873, 188,
|
|
1113, 1113, 1113, 1113, 1113, 1113, 1066, 1066, 1253, 466,
|
|
1044, 1085, 1082, 1086, 1086, 1086, 1086, 1086, 1086, 578,
|
|
|
|
466, 185, 1084, 159, 866, 868, 868, 868, 868, 868,
|
|
868, 868, 868, 868, 868, 188, 1085, 563, 1086, 1086,
|
|
1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1085, 562,
|
|
1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087,
|
|
561, 560, 159, 866, 869, 869, 869, 869, 869, 870,
|
|
867, 867, 867, 867, 1085, 559, 1088, 1088, 1088, 1088,
|
|
1088, 1089, 1090, 1090, 1090, 1090, 1085, 558, 1090, 1090,
|
|
1090, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 557, 1131,
|
|
556, 159, 873, 1131, 874, 874, 874, 874, 874, 874,
|
|
874, 874, 874, 874, 875, 555, 554, 553, 876, 876,
|
|
|
|
876, 876, 876, 876, 552, 1202, 1203, 1132, 1204, 1202,
|
|
462, 462, 551, 1062, 1062, 1065, 462, 1062, 1062, 1065,
|
|
550, 312, 542, 538, 876, 876, 876, 876, 876, 876,
|
|
880, 881, 882, 880, 880, 880, 880, 880, 880, 880,
|
|
883, 1063, 1063, 1066, 884, 884, 884, 884, 884, 884,
|
|
537, 536, 1105, 1106, 1107, 1105, 1105, 1105, 1105, 1105,
|
|
1105, 1105, 284, 319, 319, 535, 534, 533, 532, 531,
|
|
884, 884, 884, 884, 884, 884, 580, 348, 890, 890,
|
|
890, 890, 890, 890, 890, 890, 890, 890, 798, 159,
|
|
530, 529, 889, 889, 889, 889, 889, 889, 1108, 1109,
|
|
|
|
1110, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1053, 1053,
|
|
1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 889, 889,
|
|
889, 889, 889, 889, 580, 348, 891, 891, 891, 891,
|
|
891, 891, 891, 891, 891, 891, 892, 528, 527, 526,
|
|
893, 893, 893, 893, 893, 893, 1035, 525, 1036, 1036,
|
|
1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1131, 524,
|
|
286, 277, 1131, 286, 513, 286, 893, 893, 893, 893,
|
|
893, 893, 348, 897, 898, 899, 897, 897, 897, 897,
|
|
897, 897, 897, 510, 509, 508, 1132, 900, 900, 900,
|
|
900, 900, 900, 1035, 507, 1036, 1036, 1036, 1036, 1036,
|
|
|
|
1036, 1036, 1036, 1036, 1036, 572, 572, 319, 499, 498,
|
|
497, 572, 496, 900, 900, 900, 900, 900, 900, 158,
|
|
1253, 286, 158, 1077, 286, 495, 286, 494, 158, 158,
|
|
1077, 1077, 158, 158, 1077, 158, 158, 158, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 1077, 1077,
|
|
1077, 158, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 902, 188, 188,
|
|
188, 188, 188, 188, 188, 159, 158, 188, 158, 158,
|
|
158, 158, 158, 158, 158, 158, 158, 158, 158, 158,
|
|
158, 158, 158, 158, 158, 273, 491, 490, 489, 273,
|
|
|
|
284, 284, 284, 284, 284, 284, 284, 284, 284, 284,
|
|
488, 273, 487, 486, 284, 284, 284, 284, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 284, 927, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 485, 484, 286,
|
|
273, 273, 273, 273, 273, 273, 273, 273, 273, 273,
|
|
273, 273, 273, 273, 273, 273, 273, 937, 938, 938,
|
|
938, 938, 938, 938, 938, 938, 938, 938, 1117, 1117,
|
|
1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1253, 483,
|
|
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116,
|
|
482, 481, 480, 479, 478, 304, 937, 939, 939, 939,
|
|
|
|
939, 939, 939, 939, 939, 939, 939, 348, 1124, 1124,
|
|
1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 348, 1125,
|
|
1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1131,
|
|
477, 185, 177, 1131, 304, 937, 940, 940, 940, 940,
|
|
940, 941, 938, 938, 938, 938, 348, 1126, 1126, 1126,
|
|
1126, 1126, 1127, 1124, 1124, 1124, 1124, 1132, 1138, 304,
|
|
447, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139,
|
|
1139, 446, 438, 304, 303, 1131, 1173, 303, 437, 1131,
|
|
1173, 436, 435, 303, 303, 434, 188, 303, 303, 433,
|
|
303, 303, 303, 319, 319, 319, 319, 319, 319, 319,
|
|
|
|
319, 319, 319, 1132, 1174, 303, 303, 319, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 319, 319, 319,
|
|
319, 942, 319, 319, 319, 319, 319, 319, 319, 319,
|
|
304, 303, 319, 303, 303, 303, 303, 303, 303, 303,
|
|
303, 303, 303, 303, 303, 303, 303, 303, 303, 303,
|
|
866, 867, 867, 867, 867, 867, 867, 867, 867, 867,
|
|
867, 1253, 1196, 426, 1196, 1253, 1253, 1253, 1253, 1078,
|
|
1196, 308, 306, 1078, 1079, 1080, 1081, 1140, 1141, 1142,
|
|
1140, 1140, 1140, 1140, 1140, 1140, 1140, 304, 159, 866,
|
|
867, 867, 867, 867, 867, 867, 867, 867, 867, 867,
|
|
|
|
1253, 301, 425, 424, 1253, 1079, 1080, 1081, 1253, 423,
|
|
421, 420, 1253, 1253, 1253, 1081, 1082, 348, 1124, 1124,
|
|
1124, 1124, 1124, 1124, 1082, 412, 411, 159, 873, 410,
|
|
961, 961, 961, 961, 961, 961, 961, 961, 961, 961,
|
|
875, 873, 409, 962, 962, 962, 962, 962, 962, 962,
|
|
962, 962, 962, 963, 408, 1082, 407, 964, 964, 964,
|
|
964, 964, 964, 1082, 1253, 1253, 274, 266, 1253, 1253,
|
|
1253, 1253, 1146, 1147, 1148, 1146, 1146, 1146, 1146, 1146,
|
|
1146, 1146, 261, 964, 964, 964, 964, 964, 964, 968,
|
|
969, 970, 968, 968, 968, 968, 968, 968, 968, 971,
|
|
|
|
262, 256, 256, 972, 972, 972, 972, 972, 972, 304,
|
|
1095, 250, 1096, 1096, 1096, 1096, 1096, 1096, 286, 1084,
|
|
1171, 286, 1171, 286, 1171, 207, 1171, 243, 159, 972,
|
|
972, 972, 972, 972, 972, 580, 348, 980, 980, 980,
|
|
980, 980, 980, 980, 980, 980, 980, 892, 1172, 304,
|
|
1172, 979, 979, 979, 979, 979, 979, 1085, 394, 1086,
|
|
1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 284,
|
|
1173, 319, 386, 385, 1173, 384, 383, 979, 979, 979,
|
|
979, 979, 979, 580, 348, 981, 981, 981, 981, 981,
|
|
981, 981, 981, 981, 981, 382, 159, 376, 1174, 982,
|
|
|
|
982, 982, 982, 982, 982, 1171, 375, 1253, 374, 1171,
|
|
1083, 1171, 373, 372, 371, 1171, 362, 1083, 1083, 319,
|
|
361, 1083, 360, 359, 358, 982, 982, 982, 982, 982,
|
|
982, 158, 357, 1172, 158, 1083, 1083, 1083, 356, 1172,
|
|
158, 158, 355, 354, 158, 158, 353, 158, 158, 158,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
185, 158, 188, 158, 188, 188, 188, 188, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 188, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 188, 159, 158, 987,
|
|
158, 158, 158, 158, 158, 158, 158, 158, 158, 158,
|
|
|
|
158, 158, 158, 158, 158, 158, 158, 273, 185, 276,
|
|
173, 273, 284, 284, 284, 284, 284, 284, 284, 284,
|
|
284, 284, 171, 273, 164, 162, 284, 284, 284, 284,
|
|
284, 284, 284, 284, 284, 284, 284, 284, 284, 284,
|
|
284, 284, 284, 1013, 284, 284, 284, 284, 284, 159,
|
|
328, 286, 273, 273, 273, 273, 273, 273, 273, 273,
|
|
273, 273, 273, 273, 273, 273, 273, 273, 273, 937,
|
|
938, 938, 938, 938, 938, 938, 938, 938, 938, 938,
|
|
1085, 327, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086,
|
|
1086, 1086, 1157, 326, 1158, 1158, 1158, 1158, 1158, 1158,
|
|
|
|
1158, 1158, 1158, 1158, 325, 324, 323, 304, 937, 938,
|
|
938, 938, 938, 938, 938, 938, 938, 938, 938, 1157,
|
|
319, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159,
|
|
1159, 1157, 308, 1160, 1160, 1160, 1160, 1160, 1161, 1158,
|
|
1158, 1158, 1158, 304, 301, 297, 304, 303, 1173, 1199,
|
|
303, 294, 1173, 1199, 293, 292, 303, 303, 291, 290,
|
|
303, 303, 289, 303, 303, 303, 319, 319, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 1174, 1200, 284, 303,
|
|
319, 319, 319, 319, 319, 319, 319, 319, 319, 319,
|
|
319, 319, 319, 319, 319, 319, 319, 1023, 319, 319,
|
|
|
|
319, 319, 319, 304, 303, 319, 303, 303, 303, 303,
|
|
303, 303, 303, 303, 303, 303, 303, 303, 303, 303,
|
|
303, 303, 303, 1029, 262, 1030, 1030, 1030, 1030, 1030,
|
|
1030, 1030, 1030, 1030, 1030, 1123, 1123, 1123, 1123, 1123,
|
|
1123, 1123, 1123, 1123, 1123, 873, 256, 1164, 1164, 1164,
|
|
1164, 1164, 1164, 573, 573, 577, 577, 1115, 250, 573,
|
|
161, 577, 159, 1029, 243, 1031, 1031, 1031, 1031, 1031,
|
|
1031, 1031, 1031, 1031, 1031, 1167, 1167, 1167, 1167, 1167,
|
|
1167, 1167, 1167, 1167, 1167, 1253, 161, 1166, 1166, 1166,
|
|
1166, 1166, 1166, 1166, 1166, 1166, 1166, 200, 678, 678,
|
|
|
|
236, 197, 159, 1029, 678, 1032, 1032, 1032, 1032, 1032,
|
|
1033, 1034, 1034, 1034, 1034, 348, 1124, 1124, 1124, 1124,
|
|
1124, 1124, 1124, 1124, 1124, 1124, 348, 1124, 1124, 1124,
|
|
1124, 1124, 1124, 1124, 1124, 1124, 1124, 1199, 188, 228,
|
|
1173, 1199, 159, 1029, 1173, 1034, 1034, 1034, 1030, 1030,
|
|
1030, 1030, 1030, 1030, 1030, 1139, 1139, 1139, 1139, 1139,
|
|
1139, 1139, 1139, 1139, 1139, 1200, 226, 203, 1174, 1139,
|
|
1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 202,
|
|
199, 198, 159, 873, 195, 1042, 1042, 1042, 1042, 1042,
|
|
1042, 1042, 1042, 1042, 1042, 963, 873, 188, 1043, 1043,
|
|
|
|
1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1044, 185,
|
|
173, 162, 1045, 1045, 1045, 1045, 1045, 1045, 1177, 161,
|
|
1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178,
|
|
1157, 159, 1158, 1158, 1158, 1158, 1158, 1158, 1045, 1045,
|
|
1045, 1045, 1045, 1045, 1049, 1050, 1051, 1049, 1049, 1049,
|
|
1049, 1049, 1049, 1049, 1052, 1253, 1253, 1253, 1053, 1053,
|
|
1053, 1053, 1053, 1053, 1177, 1253, 1179, 1179, 1179, 1179,
|
|
1179, 1179, 1179, 1179, 1179, 1179, 1152, 1253, 1153, 1153,
|
|
1153, 1153, 1153, 1153, 1053, 1053, 1053, 1053, 1053, 1053,
|
|
580, 348, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059,
|
|
|
|
1059, 1059, 1095, 1253, 1096, 1096, 1096, 1096, 1096, 1096,
|
|
1096, 1096, 1096, 1096, 1177, 159, 1180, 1180, 1180, 1180,
|
|
1180, 1181, 1178, 1178, 1178, 1178, 1189, 1190, 1191, 1189,
|
|
1189, 1189, 1189, 1189, 1189, 1189, 1253, 680, 680, 1253,
|
|
1253, 304, 1095, 680, 1097, 1097, 1097, 1097, 1097, 1097,
|
|
1097, 1097, 1097, 1097, 1177, 1253, 1178, 1178, 1178, 1178,
|
|
1178, 1178, 1253, 159, 1192, 1193, 1194, 1192, 1192, 1192,
|
|
1192, 1192, 1192, 1192, 1216, 1216, 1216, 1216, 1216, 1216,
|
|
1253, 304, 1095, 1253, 1098, 1098, 1098, 1098, 1098, 1099,
|
|
1100, 1100, 1100, 1100, 1157, 1253, 1158, 1158, 1158, 1158,
|
|
|
|
1158, 1158, 1158, 1158, 1158, 1158, 1157, 1253, 1158, 1158,
|
|
1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1253, 1199,
|
|
1253, 304, 1095, 1199, 1100, 1100, 1100, 1096, 1096, 1096,
|
|
1096, 1096, 1096, 1096, 873, 1253, 1197, 1197, 1197, 1197,
|
|
1197, 1197, 1197, 1197, 1197, 1197, 1253, 1200, 1205, 1206,
|
|
1207, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1253, 1253,
|
|
1253, 304, 1029, 1253, 1030, 1030, 1030, 1030, 1030, 1030,
|
|
1030, 1030, 1030, 1030, 1253, 1177, 188, 1178, 1178, 1178,
|
|
1178, 1178, 1178, 1178, 1178, 1178, 1178, 1177, 1253, 1178,
|
|
1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1253,
|
|
|
|
1253, 159, 1029, 1253, 1030, 1030, 1030, 1030, 1030, 1030,
|
|
1030, 1030, 1030, 1030, 1253, 1253, 1253, 1253, 1253, 1208,
|
|
1209, 1210, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1183,
|
|
1253, 1184, 1184, 1184, 1184, 1184, 1184, 681, 681, 1253,
|
|
1253, 159, 873, 681, 1113, 1113, 1113, 1113, 1113, 1113,
|
|
1113, 1113, 1113, 1113, 1044, 873, 304, 1114, 1114, 1114,
|
|
1114, 1114, 1114, 1114, 1114, 1114, 1114, 1115, 304, 1253,
|
|
1253, 1116, 1116, 1116, 1116, 1116, 1116, 1211, 1253, 1212,
|
|
1212, 1212, 1212, 1212, 1212, 1199, 1253, 1253, 1223, 1199,
|
|
1224, 1224, 1224, 1224, 1224, 1224, 1253, 1116, 1116, 1116,
|
|
|
|
1116, 1116, 1116, 1120, 1121, 1122, 1120, 1120, 1120, 1120,
|
|
1120, 1120, 1120, 1200, 1253, 1253, 159, 1123, 1123, 1123,
|
|
1123, 1123, 1123, 1216, 1216, 1216, 1216, 1216, 1216, 1216,
|
|
1216, 1216, 1216, 1253, 319, 1247, 1247, 1247, 1247, 1247,
|
|
1247, 1253, 1253, 1123, 1123, 1123, 1123, 1123, 1123, 1095,
|
|
1253, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096,
|
|
1096, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217,
|
|
1217, 1218, 1218, 1218, 1218, 1218, 1219, 1216, 1216, 1216,
|
|
1216, 780, 780, 1253, 781, 781, 1253, 780, 304, 1095,
|
|
781, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096,
|
|
|
|
1096, 1223, 1253, 1224, 1224, 1224, 1224, 1224, 1224, 1224,
|
|
1224, 1224, 1224, 1223, 1253, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1253, 1253, 1253, 304, 1152,
|
|
1253, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153,
|
|
1153, 1223, 1253, 1226, 1226, 1226, 1226, 1226, 1227, 1224,
|
|
1224, 1224, 1224, 1233, 1234, 1235, 1233, 1233, 1233, 1233,
|
|
1233, 1233, 1233, 1253, 782, 782, 1253, 1253, 159, 1152,
|
|
782, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154,
|
|
1154, 871, 871, 872, 872, 1253, 1253, 871, 1253, 872,
|
|
159, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216,
|
|
|
|
1216, 956, 956, 1253, 1040, 1040, 1253, 956, 159, 1152,
|
|
1040, 1155, 1155, 1155, 1155, 1155, 1156, 1153, 1153, 1153,
|
|
1153, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216,
|
|
1216, 1237, 1238, 1239, 1237, 1237, 1237, 1237, 1237, 1237,
|
|
1237, 286, 1253, 1253, 286, 1253, 286, 1253, 159, 873,
|
|
1253, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164,
|
|
1164, 1115, 873, 1253, 1165, 1165, 1165, 1165, 1165, 1165,
|
|
1165, 1165, 1165, 1165, 1253, 1253, 1253, 1253, 1166, 1166,
|
|
1166, 1166, 1166, 1166, 1223, 1253, 1224, 1224, 1224, 1224,
|
|
1224, 1224, 1224, 1224, 1224, 1224, 1111, 1111, 1253, 1253,
|
|
|
|
1253, 1253, 1111, 1253, 1166, 1166, 1166, 1166, 1166, 1166,
|
|
1183, 1253, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184,
|
|
1184, 1184, 1223, 1253, 1224, 1224, 1224, 1224, 1224, 1224,
|
|
1224, 1224, 1224, 1224, 1240, 1241, 1242, 1240, 1240, 1240,
|
|
1240, 1240, 1240, 1240, 1253, 1162, 1162, 1253, 1253, 304,
|
|
1183, 1162, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185,
|
|
1185, 1185, 1253, 1228, 1253, 1229, 1229, 1229, 1229, 1229,
|
|
1229, 304, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243,
|
|
1243, 1243, 1253, 1243, 1243, 1243, 1243, 1243, 1243, 304,
|
|
1183, 1253, 1186, 1186, 1186, 1186, 1186, 1187, 1184, 1184,
|
|
|
|
1184, 1184, 304, 1253, 1253, 1253, 1253, 1253, 1253, 159,
|
|
1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233,
|
|
159, 1195, 1195, 1253, 1253, 1253, 1253, 1195, 1253, 304,
|
|
1152, 1253, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153,
|
|
1153, 1153, 1253, 1253, 1253, 1253, 1253, 159, 1244, 1244,
|
|
1244, 1244, 1244, 1245, 1243, 1243, 1243, 1243, 1247, 1247,
|
|
1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1253, 159,
|
|
1152, 1253, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153,
|
|
1153, 1153, 1253, 1253, 1253, 159, 1237, 1237, 1237, 1237,
|
|
1237, 1237, 1237, 1237, 1237, 1237, 1248, 1248, 1248, 1248,
|
|
|
|
1248, 1249, 1247, 1247, 1247, 1247, 1253, 1253, 1253, 159,
|
|
1183, 1253, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184,
|
|
1184, 1184, 1253, 1253, 1253, 1250, 1250, 1250, 1250, 1250,
|
|
1250, 1250, 1250, 1250, 1250, 1240, 1240, 1240, 1240, 1240,
|
|
1240, 1240, 1240, 1240, 1240, 1253, 1253, 1253, 1253, 304,
|
|
1183, 1253, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184,
|
|
1184, 1184, 304, 1253, 1253, 1250, 1250, 1250, 1250, 1250,
|
|
1250, 1253, 304, 1251, 1251, 1251, 1251, 1251, 1252, 1250,
|
|
1250, 1250, 1250, 1253, 1253, 1253, 1253, 1253, 1253, 304,
|
|
1211, 1253, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212,
|
|
|
|
1212, 1212, 304, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
304, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243,
|
|
1243, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 159,
|
|
1211, 1253, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213,
|
|
1213, 1213, 1253, 1253, 1253, 1253, 1253, 1253, 159, 1247,
|
|
1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1250,
|
|
1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 159,
|
|
1211, 1253, 1214, 1214, 1214, 1214, 1214, 1215, 1212, 1212,
|
|
1212, 1212, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 304, 1253, 1253, 1253,
|
|
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 159,
|
|
1228, 1253, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229,
|
|
1229, 1229, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 304,
|
|
1228, 1253, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230,
|
|
1230, 1230, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 304,
|
|
1228, 1253, 1231, 1231, 1231, 1231, 1231, 1232, 1229, 1229,
|
|
|
|
1229, 1229, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 304,
|
|
1211, 1253, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212,
|
|
1212, 1212, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 159,
|
|
1211, 1253, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212,
|
|
1212, 1212, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 159,
|
|
1228, 1253, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229,
|
|
1229, 1229, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 304,
|
|
1228, 1253, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229,
|
|
1229, 1229, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 304,
|
|
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
|
|
|
|
78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
|
|
78, 85, 85, 85, 85, 85, 85, 85, 85, 85,
|
|
85, 85, 85, 85, 85, 85, 85, 85, 85, 85,
|
|
85, 85, 40, 40, 40, 40, 40, 40, 40, 40,
|
|
40, 40, 40, 40, 40, 40, 40, 40, 40, 40,
|
|
40, 40, 40, 96, 96, 96, 96, 96, 96, 96,
|
|
96, 96, 96, 96, 96, 96, 96, 96, 96, 96,
|
|
96, 96, 96, 96, 103, 103, 103, 103, 103, 103,
|
|
103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
|
|
103, 103, 103, 103, 103, 131, 131, 131, 131, 131,
|
|
|
|
131, 131, 131, 131, 131, 131, 131, 131, 131, 131,
|
|
131, 131, 131, 131, 131, 131, 158, 1253, 1253, 158,
|
|
1253, 1253, 1253, 158, 1253, 158, 1253, 158, 158, 158,
|
|
1253, 1253, 158, 158, 158, 158, 158, 163, 163, 163,
|
|
163, 163, 163, 163, 163, 163, 163, 163, 163, 163,
|
|
163, 163, 163, 163, 163, 163, 163, 163, 168, 1253,
|
|
1253, 168, 1253, 1253, 168, 168, 1253, 168, 1253, 168,
|
|
168, 168, 168, 1253, 168, 168, 168, 168, 168, 172,
|
|
1253, 1253, 172, 1253, 1253, 1253, 172, 1253, 172, 1253,
|
|
172, 172, 172, 1253, 1253, 172, 172, 172, 172, 172,
|
|
|
|
174, 1253, 1253, 174, 174, 174, 1253, 174, 174, 174,
|
|
1253, 174, 174, 174, 1253, 1253, 174, 174, 174, 174,
|
|
174, 210, 210, 1253, 210, 210, 210, 1253, 210, 210,
|
|
210, 210, 210, 210, 210, 210, 210, 210, 210, 210,
|
|
210, 210, 233, 1253, 1253, 233, 233, 233, 1253, 233,
|
|
233, 233, 1253, 233, 233, 233, 1253, 1253, 233, 233,
|
|
233, 233, 233, 237, 237, 1253, 237, 237, 237, 1253,
|
|
237, 237, 237, 237, 237, 237, 237, 237, 237, 237,
|
|
237, 237, 237, 237, 242, 1253, 1253, 242, 242, 242,
|
|
1253, 242, 242, 242, 1253, 242, 242, 242, 1253, 242,
|
|
|
|
242, 1253, 242, 242, 242, 248, 248, 1253, 248, 248,
|
|
248, 1253, 1253, 248, 248, 248, 248, 248, 248, 248,
|
|
248, 248, 1253, 248, 248, 248, 251, 251, 251, 251,
|
|
251, 251, 251, 251, 251, 251, 251, 251, 251, 251,
|
|
251, 251, 251, 251, 251, 251, 251, 255, 1253, 1253,
|
|
255, 255, 1253, 1253, 255, 255, 255, 1253, 255, 255,
|
|
255, 255, 1253, 255, 255, 255, 255, 255, 259, 259,
|
|
259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
|
|
259, 259, 259, 259, 259, 259, 259, 259, 259, 261,
|
|
261, 1253, 261, 261, 1253, 261, 261, 261, 261, 261,
|
|
|
|
261, 261, 261, 261, 261, 261, 261, 261, 261, 261,
|
|
268, 1253, 1253, 268, 1253, 1253, 268, 268, 1253, 268,
|
|
1253, 268, 268, 268, 268, 1253, 268, 268, 268, 268,
|
|
268, 272, 1253, 1253, 272, 1253, 1253, 1253, 272, 1253,
|
|
272, 1253, 272, 272, 272, 1253, 272, 272, 272, 272,
|
|
272, 272, 275, 1253, 1253, 275, 275, 275, 1253, 275,
|
|
275, 275, 1253, 275, 275, 275, 1253, 275, 275, 275,
|
|
275, 275, 275, 211, 211, 1253, 211, 211, 211, 1253,
|
|
211, 211, 211, 211, 211, 211, 211, 211, 211, 211,
|
|
211, 211, 211, 211, 300, 1253, 1253, 1253, 300, 300,
|
|
|
|
300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
|
|
300, 300, 300, 300, 300, 303, 1253, 1253, 303, 1253,
|
|
1253, 1253, 303, 1253, 303, 1253, 303, 303, 303, 1253,
|
|
1253, 303, 303, 303, 303, 303, 305, 1253, 1253, 305,
|
|
1253, 1253, 305, 305, 1253, 305, 1253, 305, 305, 305,
|
|
305, 1253, 305, 305, 305, 305, 305, 307, 1253, 1253,
|
|
307, 1253, 1253, 1253, 307, 1253, 307, 1253, 307, 307,
|
|
307, 1253, 1253, 307, 307, 307, 307, 307, 309, 1253,
|
|
1253, 309, 309, 309, 1253, 309, 309, 309, 1253, 309,
|
|
309, 309, 1253, 1253, 309, 309, 309, 309, 309, 331,
|
|
|
|
331, 1253, 331, 331, 331, 1253, 331, 331, 331, 331,
|
|
331, 331, 331, 331, 331, 331, 331, 331, 331, 331,
|
|
158, 1253, 1253, 158, 1253, 1253, 1253, 158, 1253, 158,
|
|
1253, 158, 158, 158, 1253, 1253, 158, 158, 158, 158,
|
|
158, 337, 337, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 337, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 339, 339, 1253, 339, 339, 339, 339, 339,
|
|
339, 339, 339, 339, 339, 339, 339, 339, 339, 339,
|
|
339, 339, 339, 168, 1253, 1253, 168, 1253, 1253, 1253,
|
|
168, 1253, 168, 1253, 168, 168, 168, 1253, 1253, 168,
|
|
|
|
168, 168, 168, 168, 172, 1253, 1253, 172, 1253, 1253,
|
|
1253, 172, 1253, 172, 1253, 172, 172, 172, 1253, 1253,
|
|
172, 172, 172, 172, 172, 174, 1253, 1253, 174, 174,
|
|
174, 1253, 174, 174, 174, 1253, 174, 174, 174, 1253,
|
|
1253, 174, 174, 174, 174, 174, 175, 1253, 1253, 175,
|
|
175, 175, 1253, 175, 175, 175, 1253, 175, 175, 175,
|
|
1253, 1253, 175, 175, 175, 175, 175, 349, 349, 349,
|
|
1253, 1253, 1253, 1253, 349, 210, 210, 1253, 210, 210,
|
|
210, 1253, 210, 210, 210, 210, 210, 210, 210, 210,
|
|
210, 210, 210, 210, 210, 210, 211, 211, 1253, 211,
|
|
|
|
211, 211, 1253, 211, 211, 211, 211, 211, 211, 211,
|
|
211, 211, 211, 211, 211, 211, 211, 233, 1253, 1253,
|
|
233, 233, 233, 1253, 233, 233, 233, 1253, 233, 233,
|
|
233, 1253, 1253, 233, 233, 233, 233, 233, 234, 1253,
|
|
1253, 234, 234, 234, 1253, 234, 234, 234, 1253, 234,
|
|
234, 234, 1253, 1253, 234, 234, 234, 234, 234, 237,
|
|
237, 1253, 237, 237, 237, 1253, 237, 237, 237, 237,
|
|
237, 237, 237, 237, 237, 237, 237, 237, 237, 237,
|
|
238, 238, 1253, 238, 238, 238, 1253, 238, 238, 238,
|
|
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
|
|
|
238, 242, 1253, 1253, 242, 242, 242, 1253, 242, 242,
|
|
242, 1253, 242, 242, 242, 1253, 242, 242, 1253, 242,
|
|
242, 242, 248, 248, 1253, 248, 248, 248, 1253, 1253,
|
|
248, 248, 248, 248, 248, 248, 248, 248, 248, 1253,
|
|
248, 248, 248, 255, 1253, 1253, 255, 255, 1253, 1253,
|
|
255, 255, 255, 1253, 255, 255, 255, 255, 1253, 255,
|
|
255, 255, 255, 255, 261, 261, 1253, 261, 261, 1253,
|
|
261, 261, 261, 261, 261, 261, 261, 261, 261, 261,
|
|
261, 261, 261, 261, 261, 271, 1253, 1253, 271, 1253,
|
|
1253, 1253, 271, 1253, 271, 1253, 271, 271, 271, 1253,
|
|
|
|
1253, 271, 271, 271, 271, 271, 272, 1253, 1253, 272,
|
|
1253, 1253, 1253, 272, 1253, 272, 1253, 272, 272, 272,
|
|
1253, 272, 272, 272, 272, 272, 272, 273, 1253, 1253,
|
|
273, 273, 1253, 273, 273, 1253, 1253, 273, 273, 275,
|
|
1253, 1253, 275, 275, 275, 1253, 275, 275, 275, 1253,
|
|
275, 275, 275, 1253, 275, 275, 275, 275, 275, 275,
|
|
300, 1253, 1253, 1253, 300, 300, 300, 300, 300, 300,
|
|
300, 300, 300, 300, 300, 300, 300, 300, 300, 300,
|
|
300, 303, 1253, 1253, 303, 1253, 1253, 1253, 303, 1253,
|
|
303, 1253, 303, 303, 303, 1253, 1253, 303, 303, 303,
|
|
|
|
303, 303, 305, 1253, 1253, 305, 1253, 1253, 1253, 305,
|
|
1253, 305, 1253, 305, 305, 305, 1253, 1253, 305, 305,
|
|
305, 305, 305, 307, 1253, 1253, 307, 1253, 1253, 1253,
|
|
307, 1253, 307, 1253, 307, 307, 307, 1253, 1253, 307,
|
|
307, 307, 307, 307, 309, 1253, 1253, 309, 309, 309,
|
|
1253, 309, 309, 309, 1253, 309, 309, 309, 1253, 1253,
|
|
309, 309, 309, 309, 309, 310, 1253, 1253, 310, 310,
|
|
310, 1253, 310, 310, 310, 1253, 310, 310, 310, 1253,
|
|
1253, 310, 310, 310, 310, 310, 331, 331, 1253, 331,
|
|
331, 331, 1253, 331, 331, 331, 331, 331, 331, 331,
|
|
|
|
331, 331, 331, 331, 331, 331, 331, 337, 337, 337,
|
|
337, 337, 337, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 337, 337, 337, 337, 337, 337, 454, 454,
|
|
454, 454, 454, 454, 454, 454, 454, 454, 454, 454,
|
|
454, 454, 454, 454, 454, 454, 454, 454, 454, 158,
|
|
1253, 1253, 158, 1253, 1253, 1253, 158, 1253, 158, 1253,
|
|
158, 158, 158, 1253, 1253, 158, 158, 158, 158, 158,
|
|
468, 468, 468, 1253, 1253, 1253, 1253, 468, 210, 210,
|
|
1253, 210, 210, 210, 1253, 210, 210, 210, 210, 210,
|
|
210, 210, 210, 210, 210, 210, 210, 210, 210, 238,
|
|
|
|
238, 1253, 238, 238, 238, 238, 238, 238, 238, 238,
|
|
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
|
237, 237, 1253, 237, 237, 237, 1253, 237, 237, 237,
|
|
237, 237, 237, 237, 237, 237, 237, 237, 237, 237,
|
|
237, 211, 211, 1253, 211, 211, 211, 1253, 211, 211,
|
|
211, 211, 211, 211, 211, 211, 211, 211, 211, 211,
|
|
211, 211, 579, 579, 579, 1253, 1253, 1253, 1253, 579,
|
|
474, 474, 474, 1253, 1253, 1253, 1253, 474, 337, 337,
|
|
337, 337, 337, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 337, 337, 337, 337, 337, 337, 337, 238,
|
|
|
|
238, 1253, 238, 238, 238, 1253, 238, 238, 238, 238,
|
|
238, 238, 238, 238, 238, 238, 238, 238, 238, 238,
|
|
683, 683, 683, 1253, 1253, 1253, 1253, 683, 687, 687,
|
|
687, 687, 1253, 1253, 1253, 1253, 687, 794, 794, 794,
|
|
1253, 1253, 1253, 1253, 794, 795, 795, 795, 795, 1253,
|
|
1253, 1253, 1253, 795, 888, 888, 888, 1253, 1253, 1253,
|
|
1253, 888, 889, 889, 889, 889, 1253, 1253, 1253, 1253,
|
|
889, 337, 337, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 337, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 273, 1253, 1253, 273, 273, 1253, 273, 273,
|
|
|
|
1253, 1253, 273, 273, 303, 1253, 1253, 303, 1253, 1253,
|
|
1253, 303, 1253, 303, 1253, 303, 303, 303, 1253, 1253,
|
|
303, 303, 303, 303, 303, 960, 1253, 960, 960, 1253,
|
|
1253, 1253, 1253, 960, 978, 978, 978, 1253, 1253, 1253,
|
|
1253, 978, 979, 979, 979, 979, 1253, 1253, 1253, 1253,
|
|
979, 337, 337, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 337, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 273, 1253, 1253, 273, 273, 1253, 273, 273,
|
|
1253, 1253, 273, 273, 303, 1253, 1253, 303, 1253, 1253,
|
|
1253, 303, 1253, 303, 1253, 303, 303, 303, 1253, 1253,
|
|
|
|
303, 303, 303, 303, 303, 1041, 1253, 1041, 1041, 1253,
|
|
1253, 1253, 1253, 1041, 1057, 1057, 1057, 1253, 1253, 1253,
|
|
1253, 1057, 1058, 1058, 1058, 1253, 1253, 1253, 1253, 1253,
|
|
1058, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072,
|
|
1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072,
|
|
1072, 1072, 1077, 1077, 1253, 1077, 1077, 1077, 1077, 1077,
|
|
1253, 1077, 1253, 1077, 1077, 1077, 1253, 1253, 1077, 1077,
|
|
1077, 1077, 1077, 1083, 1083, 1253, 1083, 1083, 1083, 1083,
|
|
1083, 1253, 1083, 1253, 1083, 1083, 1083, 1253, 1253, 1083,
|
|
1083, 1083, 1083, 1083, 1112, 1253, 1112, 1112, 1253, 1253,
|
|
|
|
1253, 1253, 1112, 1163, 1253, 1163, 1163, 1253, 1253, 1253,
|
|
1253, 1163, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201,
|
|
1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201,
|
|
1201, 1201, 1201, 21, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_chk[9611] =
|
|
{ 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, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 2, 23, 43, 41,
|
|
2, 23, 43, 2, 5, 5, 382, 5, 5, 5,
|
|
41, 5, 6, 6, 382, 6, 6, 6, 5, 6,
|
|
|
|
7, 7, 55, 7, 7, 7, 6, 7, 7, 29,
|
|
2, 2, 5, 5, 45, 2, 55, 49, 45, 512,
|
|
6, 6, 49, 2, 70, 45, 2, 3, 70, 59,
|
|
29, 3, 13, 13, 3, 13, 13, 13, 13, 5,
|
|
59, 3, 512, 44, 3, 52, 44, 6, 14, 14,
|
|
44, 14, 14, 14, 14, 7, 44, 29, 3, 3,
|
|
52, 3, 37, 37, 37, 37, 37, 37, 66, 3,
|
|
163, 3, 163, 3, 3, 46, 3, 457, 46, 46,
|
|
108, 8, 8, 3, 8, 8, 8, 13, 8, 8,
|
|
17, 17, 17, 17, 17, 17, 17, 66, 68, 3,
|
|
|
|
4, 108, 68, 14, 4, 34, 34, 4, 60, 64,
|
|
34, 34, 68, 64, 4, 86, 457, 4, 60, 86,
|
|
18, 18, 18, 18, 18, 18, 18, 60, 108, 64,
|
|
34, 4, 4, 77, 4, 1250, 8, 92, 92, 130,
|
|
92, 92, 4, 77, 4, 17, 4, 4, 130, 4,
|
|
94, 94, 77, 94, 94, 34, 4, 36, 36, 36,
|
|
36, 36, 36, 36, 36, 36, 36, 61, 105, 98,
|
|
100, 61, 4, 9, 9, 18, 9, 9, 9, 58,
|
|
9, 58, 58, 58, 58, 58, 58, 58, 58, 58,
|
|
58, 63, 117, 475, 63, 98, 100, 118, 63, 186,
|
|
|
|
118, 61, 61, 117, 63, 475, 61, 102, 102, 126,
|
|
102, 102, 104, 186, 61, 144, 104, 61, 105, 160,
|
|
63, 107, 107, 160, 107, 107, 144, 107, 9, 132,
|
|
9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
|
|
9, 9, 9, 9, 9, 9, 9, 9, 10, 10,
|
|
208, 10, 10, 10, 69, 10, 126, 69, 69, 69,
|
|
69, 69, 69, 69, 69, 69, 69, 104, 113, 113,
|
|
113, 113, 113, 113, 145, 71, 71, 145, 1246, 132,
|
|
71, 71, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
112, 112, 141, 141, 141, 141, 141, 141, 134, 134,
|
|
|
|
71, 134, 134, 10, 208, 10, 10, 10, 10, 10,
|
|
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
|
10, 10, 10, 11, 11, 71, 11, 11, 11, 11,
|
|
11, 206, 206, 136, 206, 206, 11, 11, 11, 127,
|
|
156, 127, 127, 127, 127, 127, 127, 127, 127, 127,
|
|
127, 156, 11, 134, 136, 157, 183, 183, 183, 183,
|
|
183, 183, 138, 138, 185, 157, 215, 138, 138, 215,
|
|
216, 214, 226, 334, 157, 185, 216, 227, 11, 12,
|
|
12, 136, 12, 12, 12, 12, 12, 138, 214, 226,
|
|
334, 227, 12, 12, 12, 140, 140, 140, 140, 140,
|
|
|
|
140, 140, 140, 140, 140, 230, 232, 1243, 12, 230,
|
|
232, 155, 138, 155, 155, 155, 155, 155, 155, 155,
|
|
155, 155, 155, 166, 166, 166, 166, 166, 166, 166,
|
|
166, 166, 166, 1224, 12, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 28, 264, 28,
|
|
167, 167, 167, 167, 167, 167, 167, 167, 167, 167,
|
|
|
|
211, 28, 1197, 225, 28, 28, 28, 28, 28, 28,
|
|
28, 28, 28, 28, 35, 170, 35, 35, 35, 35,
|
|
35, 35, 35, 35, 35, 35, 35, 238, 370, 370,
|
|
35, 35, 35, 35, 35, 35, 170, 461, 264, 329,
|
|
224, 159, 159, 159, 159, 159, 224, 211, 159, 159,
|
|
225, 249, 159, 35, 224, 249, 35, 35, 35, 35,
|
|
35, 35, 42, 170, 461, 42, 159, 159, 159, 266,
|
|
228, 42, 42, 266, 238, 42, 42, 228, 42, 42,
|
|
42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
|
|
42, 42, 1195, 329, 42, 42, 42, 42, 42, 42,
|
|
|
|
42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
|
|
42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
|
|
42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
|
|
42, 42, 42, 42, 42, 42, 42, 42, 47, 47,
|
|
47, 47, 47, 47, 47, 47, 47, 47, 47, 223,
|
|
819, 223, 47, 47, 47, 47, 47, 47, 335, 241,
|
|
302, 335, 47, 819, 169, 241, 47, 169, 169, 169,
|
|
169, 169, 169, 169, 169, 169, 169, 393, 47, 47,
|
|
47, 47, 47, 47, 56, 56, 349, 56, 56, 56,
|
|
56, 56, 229, 393, 56, 56, 229, 349, 56, 174,
|
|
|
|
174, 1178, 233, 233, 174, 174, 229, 233, 233, 337,
|
|
302, 337, 56, 56, 56, 57, 336, 223, 379, 57,
|
|
57, 57, 336, 57, 174, 57, 57, 233, 391, 57,
|
|
171, 171, 171, 171, 171, 504, 379, 171, 171, 296,
|
|
296, 171, 504, 57, 57, 57, 391, 244, 244, 174,
|
|
244, 244, 233, 381, 399, 171, 171, 171, 181, 181,
|
|
181, 181, 181, 181, 181, 181, 181, 181, 381, 399,
|
|
57, 62, 338, 62, 338, 173, 173, 173, 173, 173,
|
|
263, 478, 173, 173, 263, 62, 173, 296, 62, 62,
|
|
62, 62, 62, 62, 62, 62, 62, 62, 478, 396,
|
|
|
|
173, 173, 173, 177, 177, 177, 177, 177, 177, 177,
|
|
177, 177, 177, 182, 182, 182, 182, 182, 182, 182,
|
|
182, 182, 182, 209, 209, 213, 209, 209, 213, 339,
|
|
422, 339, 213, 213, 217, 263, 62, 76, 217, 351,
|
|
177, 76, 76, 76, 351, 76, 396, 76, 76, 199,
|
|
199, 76, 388, 199, 388, 199, 199, 389, 450, 199,
|
|
400, 199, 199, 389, 400, 76, 76, 76, 217, 217,
|
|
268, 252, 252, 217, 252, 252, 450, 422, 209, 240,
|
|
213, 217, 240, 489, 217, 269, 240, 240, 387, 452,
|
|
387, 268, 76, 84, 84, 489, 84, 84, 84, 392,
|
|
|
|
84, 454, 392, 454, 452, 84, 269, 84, 231, 231,
|
|
231, 231, 231, 231, 231, 231, 231, 231, 268, 236,
|
|
236, 84, 84, 236, 301, 236, 236, 477, 301, 236,
|
|
455, 236, 455, 269, 240, 253, 253, 253, 253, 253,
|
|
253, 253, 253, 253, 253, 617, 477, 387, 84, 84,
|
|
93, 486, 93, 260, 260, 468, 260, 260, 265, 265,
|
|
539, 265, 265, 539, 93, 486, 468, 93, 93, 93,
|
|
93, 93, 93, 93, 93, 93, 93, 109, 617, 301,
|
|
109, 424, 424, 482, 424, 256, 109, 109, 480, 256,
|
|
109, 256, 256, 109, 109, 270, 270, 270, 270, 256,
|
|
|
|
469, 481, 270, 270, 482, 480, 270, 109, 260, 109,
|
|
485, 469, 276, 494, 256, 1166, 276, 487, 485, 276,
|
|
481, 270, 270, 465, 465, 465, 276, 282, 282, 282,
|
|
282, 282, 282, 109, 109, 109, 110, 494, 487, 110,
|
|
276, 276, 110, 110, 490, 110, 110, 110, 110, 110,
|
|
488, 493, 110, 110, 274, 274, 274, 274, 274, 493,
|
|
488, 274, 274, 1165, 490, 274, 110, 110, 110, 277,
|
|
277, 277, 277, 277, 277, 277, 277, 277, 277, 274,
|
|
274, 274, 280, 280, 280, 280, 280, 280, 280, 280,
|
|
280, 280, 110, 110, 110, 111, 497, 600, 111, 111,
|
|
|
|
111, 111, 111, 111, 111, 111, 111, 111, 111, 111,
|
|
111, 111, 497, 600, 111, 111, 111, 111, 111, 111,
|
|
111, 111, 111, 111, 111, 111, 111, 111, 111, 111,
|
|
111, 111, 111, 111, 111, 111, 111, 491, 1163, 618,
|
|
111, 111, 111, 111, 111, 111, 111, 111, 111, 111,
|
|
111, 111, 111, 111, 111, 111, 111, 114, 491, 114,
|
|
114, 114, 114, 114, 114, 114, 114, 114, 114, 114,
|
|
618, 503, 1162, 114, 114, 114, 114, 114, 114, 281,
|
|
281, 281, 281, 281, 281, 281, 281, 281, 281, 315,
|
|
315, 315, 315, 315, 315, 315, 315, 315, 315, 114,
|
|
|
|
114, 114, 114, 114, 114, 115, 498, 503, 544, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 1158, 498, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 544, 1151, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 119, 119, 119,
|
|
119, 119, 119, 119, 119, 119, 119, 119, 492, 495,
|
|
515, 119, 119, 119, 119, 119, 119, 492, 292, 292,
|
|
1145, 119, 292, 501, 292, 292, 501, 502, 292, 495,
|
|
|
|
292, 317, 317, 317, 317, 317, 317, 119, 119, 119,
|
|
119, 119, 119, 139, 567, 139, 139, 139, 139, 139,
|
|
139, 139, 139, 139, 139, 139, 502, 515, 501, 139,
|
|
139, 139, 139, 139, 139, 479, 514, 483, 606, 479,
|
|
304, 304, 304, 304, 304, 513, 606, 304, 304, 483,
|
|
567, 304, 139, 514, 483, 139, 139, 139, 139, 139,
|
|
139, 142, 516, 479, 142, 304, 304, 304, 527, 516,
|
|
142, 142, 513, 527, 142, 142, 714, 142, 142, 142,
|
|
142, 142, 142, 142, 142, 142, 142, 142, 142, 142,
|
|
142, 513, 714, 142, 142, 142, 142, 142, 142, 142,
|
|
|
|
142, 142, 142, 142, 142, 142, 142, 142, 142, 142,
|
|
142, 142, 142, 142, 142, 142, 142, 142, 142, 142,
|
|
142, 142, 142, 142, 142, 142, 142, 142, 142, 142,
|
|
142, 142, 142, 142, 142, 142, 142, 146, 146, 146,
|
|
146, 146, 146, 146, 146, 146, 146, 146, 548, 605,
|
|
592, 146, 146, 146, 146, 146, 146, 565, 326, 326,
|
|
565, 146, 326, 605, 326, 326, 309, 309, 326, 592,
|
|
326, 309, 309, 380, 380, 548, 380, 146, 146, 146,
|
|
146, 146, 146, 153, 153, 579, 153, 153, 153, 153,
|
|
153, 309, 565, 153, 153, 1129, 579, 153, 312, 312,
|
|
|
|
312, 312, 312, 312, 312, 312, 312, 312, 380, 566,
|
|
553, 153, 153, 153, 154, 553, 309, 484, 154, 154,
|
|
154, 484, 154, 1128, 154, 154, 593, 568, 154, 306,
|
|
306, 306, 306, 306, 568, 312, 306, 306, 566, 608,
|
|
306, 593, 154, 154, 154, 484, 598, 330, 330, 607,
|
|
330, 330, 598, 608, 306, 306, 306, 511, 594, 511,
|
|
308, 308, 308, 308, 308, 599, 604, 308, 308, 154,
|
|
176, 308, 604, 176, 176, 176, 176, 176, 607, 594,
|
|
176, 176, 1124, 599, 176, 308, 308, 308, 316, 316,
|
|
316, 316, 316, 316, 316, 316, 316, 316, 176, 176,
|
|
|
|
176, 178, 330, 178, 178, 178, 178, 178, 178, 178,
|
|
178, 178, 178, 178, 1112, 597, 620, 178, 178, 178,
|
|
178, 178, 178, 511, 333, 451, 451, 333, 451, 581,
|
|
581, 333, 333, 472, 472, 472, 472, 472, 472, 597,
|
|
178, 581, 601, 178, 178, 178, 178, 178, 178, 187,
|
|
613, 620, 187, 610, 812, 812, 713, 613, 187, 187,
|
|
451, 610, 187, 187, 601, 187, 187, 187, 187, 187,
|
|
187, 187, 187, 187, 187, 187, 187, 187, 187, 333,
|
|
713, 187, 187, 187, 187, 187, 187, 187, 187, 187,
|
|
187, 187, 187, 187, 187, 187, 187, 187, 187, 187,
|
|
|
|
187, 187, 187, 187, 187, 187, 187, 187, 187, 187,
|
|
187, 187, 187, 187, 187, 187, 187, 187, 187, 187,
|
|
187, 187, 187, 187, 187, 188, 188, 188, 188, 188,
|
|
188, 188, 188, 188, 188, 188, 815, 815, 1111, 188,
|
|
188, 188, 188, 188, 188, 340, 340, 340, 340, 340,
|
|
340, 340, 340, 340, 340, 341, 341, 341, 341, 341,
|
|
341, 341, 341, 341, 341, 188, 188, 188, 188, 188,
|
|
188, 210, 619, 615, 528, 210, 210, 210, 528, 210,
|
|
394, 210, 210, 609, 394, 210, 460, 394, 460, 460,
|
|
460, 460, 460, 460, 394, 612, 615, 944, 944, 210,
|
|
|
|
210, 210, 528, 609, 612, 619, 616, 525, 394, 394,
|
|
401, 525, 401, 401, 401, 401, 401, 401, 401, 401,
|
|
401, 401, 1103, 621, 626, 460, 210, 235, 616, 621,
|
|
235, 235, 235, 235, 235, 525, 626, 235, 235, 611,
|
|
402, 235, 402, 402, 402, 402, 402, 402, 402, 402,
|
|
402, 402, 525, 628, 669, 235, 235, 235, 237, 628,
|
|
611, 526, 237, 237, 237, 526, 237, 1102, 237, 237,
|
|
707, 403, 237, 403, 403, 403, 403, 403, 403, 403,
|
|
403, 403, 403, 583, 583, 669, 237, 237, 237, 526,
|
|
426, 707, 668, 670, 426, 583, 521, 426, 521, 521,
|
|
|
|
521, 521, 521, 521, 426, 625, 672, 625, 526, 627,
|
|
671, 683, 672, 237, 272, 981, 981, 272, 426, 426,
|
|
704, 627, 683, 272, 272, 668, 670, 272, 704, 674,
|
|
272, 272, 456, 456, 456, 456, 456, 456, 456, 456,
|
|
456, 456, 982, 982, 272, 671, 272, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 464, 464, 471, 471,
|
|
471, 471, 471, 471, 471, 471, 471, 471, 674, 456,
|
|
272, 272, 272, 275, 706, 700, 275, 687, 625, 275,
|
|
275, 700, 275, 275, 275, 275, 275, 1094, 687, 275,
|
|
275, 474, 706, 474, 474, 474, 474, 474, 474, 474,
|
|
|
|
474, 474, 474, 275, 275, 275, 517, 517, 517, 517,
|
|
517, 517, 517, 517, 517, 517, 519, 1060, 519, 519,
|
|
519, 519, 519, 519, 519, 519, 519, 519, 701, 275,
|
|
275, 275, 278, 1060, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 701, 719, 705, 278, 278,
|
|
278, 278, 278, 278, 520, 709, 520, 520, 520, 520,
|
|
520, 520, 520, 520, 520, 520, 705, 719, 1093, 550,
|
|
688, 688, 709, 550, 278, 278, 278, 278, 278, 278,
|
|
283, 716, 688, 755, 283, 283, 283, 283, 283, 283,
|
|
283, 283, 283, 283, 283, 283, 283, 550, 716, 283,
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
283, 283, 755, 1092, 283, 283, 283, 283, 283, 283,
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
283, 283, 284, 284, 284, 284, 284, 284, 284, 284,
|
|
284, 284, 284, 689, 689, 710, 284, 284, 284, 284,
|
|
284, 284, 532, 715, 711, 689, 532, 814, 529, 530,
|
|
814, 715, 529, 530, 710, 533, 711, 691, 691, 533,
|
|
1090, 711, 284, 284, 284, 284, 284, 284, 311, 691,
|
|
532, 311, 311, 311, 311, 311, 529, 530, 311, 311,
|
|
|
|
532, 724, 311, 533, 529, 531, 535, 931, 743, 531,
|
|
535, 530, 724, 743, 729, 533, 311, 311, 311, 313,
|
|
931, 313, 313, 313, 313, 313, 313, 313, 313, 313,
|
|
313, 313, 729, 531, 535, 313, 313, 313, 313, 313,
|
|
313, 728, 730, 554, 595, 536, 602, 554, 595, 536,
|
|
602, 766, 728, 730, 531, 535, 766, 776, 313, 1030,
|
|
833, 313, 313, 313, 313, 313, 313, 318, 776, 1061,
|
|
318, 554, 595, 536, 602, 808, 318, 318, 833, 1061,
|
|
318, 318, 808, 318, 318, 318, 318, 318, 318, 318,
|
|
318, 318, 318, 318, 318, 318, 318, 536, 1030, 318,
|
|
|
|
318, 318, 318, 318, 318, 318, 318, 318, 318, 318,
|
|
318, 318, 318, 318, 318, 318, 318, 318, 318, 318,
|
|
318, 318, 318, 318, 318, 318, 318, 318, 318, 318,
|
|
318, 318, 318, 318, 318, 318, 318, 318, 318, 318,
|
|
318, 318, 318, 319, 319, 319, 319, 319, 319, 319,
|
|
319, 319, 319, 319, 727, 794, 727, 319, 319, 319,
|
|
319, 319, 319, 534, 537, 1086, 794, 534, 537, 543,
|
|
543, 543, 543, 543, 543, 543, 543, 543, 543, 795,
|
|
836, 1221, 836, 319, 319, 319, 319, 319, 319, 331,
|
|
795, 534, 537, 331, 331, 331, 1221, 331, 813, 331,
|
|
|
|
331, 796, 796, 331, 820, 813, 543, 820, 537, 797,
|
|
797, 534, 635, 796, 727, 1064, 635, 331, 331, 331,
|
|
547, 797, 547, 547, 547, 547, 547, 547, 574, 574,
|
|
574, 574, 574, 574, 574, 574, 574, 574, 574, 821,
|
|
635, 836, 821, 1034, 331, 342, 635, 342, 342, 342,
|
|
342, 342, 342, 342, 342, 342, 342, 1027, 1027, 547,
|
|
580, 580, 580, 580, 580, 580, 580, 580, 580, 580,
|
|
582, 582, 582, 582, 582, 582, 582, 582, 582, 582,
|
|
837, 818, 1034, 837, 342, 343, 818, 343, 343, 343,
|
|
343, 343, 343, 343, 343, 343, 343, 586, 586, 586,
|
|
|
|
586, 586, 586, 586, 586, 861, 838, 861, 824, 586,
|
|
588, 588, 588, 588, 588, 588, 588, 588, 588, 588,
|
|
824, 1058, 825, 838, 343, 344, 825, 344, 344, 344,
|
|
344, 344, 344, 344, 344, 344, 344, 589, 589, 589,
|
|
589, 589, 589, 591, 847, 591, 591, 591, 591, 591,
|
|
591, 591, 591, 591, 591, 846, 847, 859, 639, 839,
|
|
865, 846, 639, 859, 344, 345, 345, 345, 345, 345,
|
|
345, 345, 345, 345, 345, 345, 1041, 839, 865, 345,
|
|
345, 345, 345, 345, 345, 629, 639, 629, 629, 629,
|
|
629, 629, 629, 629, 629, 629, 629, 857, 851, 864,
|
|
|
|
639, 857, 345, 851, 864, 345, 345, 345, 345, 345,
|
|
345, 348, 348, 348, 348, 348, 348, 348, 348, 348,
|
|
348, 348, 1059, 1059, 1040, 348, 348, 348, 348, 348,
|
|
348, 630, 860, 630, 630, 630, 630, 630, 630, 630,
|
|
630, 630, 630, 634, 860, 862, 1036, 634, 908, 862,
|
|
1025, 348, 348, 348, 348, 348, 348, 350, 350, 350,
|
|
350, 350, 350, 350, 350, 350, 350, 350, 350, 908,
|
|
914, 634, 350, 350, 350, 350, 350, 350, 631, 850,
|
|
631, 631, 631, 631, 631, 631, 631, 631, 631, 631,
|
|
850, 914, 1170, 799, 799, 634, 1096, 863, 350, 350,
|
|
|
|
350, 350, 350, 350, 352, 799, 703, 352, 863, 901,
|
|
703, 903, 1170, 352, 352, 901, 1018, 352, 352, 903,
|
|
352, 352, 352, 352, 352, 352, 352, 352, 352, 352,
|
|
352, 352, 352, 352, 703, 1096, 352, 352, 352, 352,
|
|
352, 352, 352, 352, 352, 352, 352, 352, 352, 352,
|
|
352, 352, 352, 352, 352, 352, 352, 352, 352, 352,
|
|
352, 352, 352, 352, 352, 352, 352, 352, 352, 352,
|
|
352, 352, 352, 352, 352, 352, 352, 352, 352, 352,
|
|
353, 353, 353, 353, 353, 353, 353, 353, 353, 353,
|
|
353, 874, 1104, 1104, 353, 353, 353, 353, 353, 353,
|
|
|
|
641, 638, 906, 874, 641, 638, 876, 1017, 888, 906,
|
|
640, 642, 867, 643, 640, 642, 889, 643, 876, 888,
|
|
353, 353, 353, 353, 353, 353, 377, 889, 641, 638,
|
|
377, 377, 377, 989, 377, 638, 377, 377, 640, 642,
|
|
377, 643, 989, 644, 646, 645, 640, 644, 646, 645,
|
|
867, 1015, 905, 642, 377, 377, 377, 641, 890, 890,
|
|
905, 643, 694, 694, 694, 694, 694, 694, 694, 694,
|
|
890, 644, 646, 645, 694, 938, 910, 904, 995, 644,
|
|
645, 377, 378, 904, 910, 995, 378, 378, 378, 378,
|
|
378, 919, 378, 378, 946, 646, 378, 673, 673, 673,
|
|
|
|
673, 673, 673, 673, 673, 673, 673, 946, 919, 1006,
|
|
378, 378, 378, 938, 677, 991, 677, 677, 677, 677,
|
|
677, 677, 684, 991, 684, 684, 684, 684, 684, 684,
|
|
684, 684, 684, 684, 673, 891, 891, 378, 397, 893,
|
|
893, 1002, 397, 397, 397, 1001, 397, 891, 397, 397,
|
|
974, 893, 397, 677, 685, 960, 685, 685, 685, 685,
|
|
685, 685, 685, 685, 685, 685, 397, 397, 397, 686,
|
|
956, 686, 686, 686, 686, 686, 686, 686, 686, 686,
|
|
686, 690, 690, 690, 690, 690, 690, 690, 690, 690,
|
|
690, 708, 712, 397, 398, 708, 712, 951, 398, 398,
|
|
|
|
398, 398, 398, 947, 398, 398, 947, 1100, 398, 696,
|
|
696, 696, 696, 696, 696, 696, 696, 696, 696, 708,
|
|
712, 909, 398, 398, 398, 697, 697, 697, 697, 697,
|
|
697, 699, 909, 699, 699, 699, 699, 699, 699, 699,
|
|
699, 699, 699, 717, 718, 1153, 1100, 717, 718, 398,
|
|
404, 404, 404, 404, 404, 404, 404, 404, 404, 404,
|
|
404, 1072, 1068, 1072, 404, 404, 404, 404, 404, 404,
|
|
1068, 717, 718, 731, 731, 731, 731, 731, 731, 731,
|
|
731, 731, 731, 948, 1153, 736, 961, 962, 943, 736,
|
|
404, 404, 404, 404, 404, 404, 406, 1198, 961, 962,
|
|
|
|
406, 406, 406, 406, 406, 406, 406, 406, 406, 406,
|
|
406, 406, 406, 736, 1198, 406, 406, 406, 406, 406,
|
|
406, 406, 406, 406, 406, 406, 406, 406, 406, 406,
|
|
406, 406, 406, 406, 406, 406, 406, 406, 933, 932,
|
|
406, 406, 406, 406, 406, 406, 406, 406, 406, 406,
|
|
406, 406, 406, 406, 406, 406, 406, 406, 407, 407,
|
|
407, 407, 407, 407, 407, 407, 407, 407, 407, 1075,
|
|
929, 1075, 407, 407, 407, 407, 407, 407, 733, 964,
|
|
733, 733, 733, 733, 733, 733, 733, 733, 733, 733,
|
|
735, 964, 735, 735, 735, 735, 735, 735, 407, 407,
|
|
|
|
407, 407, 407, 407, 427, 1042, 427, 427, 427, 427,
|
|
427, 427, 427, 427, 427, 427, 734, 1042, 734, 734,
|
|
734, 734, 734, 734, 734, 734, 734, 734, 737, 740,
|
|
741, 742, 737, 740, 741, 742, 1016, 744, 746, 1016,
|
|
928, 744, 746, 427, 428, 923, 428, 428, 428, 428,
|
|
428, 428, 428, 428, 428, 428, 737, 740, 741, 742,
|
|
978, 1201, 921, 1201, 737, 744, 746, 917, 745, 747,
|
|
748, 978, 745, 747, 748, 741, 918, 918, 742, 918,
|
|
918, 916, 746, 428, 429, 915, 429, 429, 429, 429,
|
|
429, 429, 429, 429, 429, 429, 745, 747, 748, 754,
|
|
|
|
754, 754, 754, 754, 754, 754, 754, 754, 754, 758,
|
|
1070, 758, 758, 758, 758, 758, 758, 1070, 759, 913,
|
|
745, 763, 759, 429, 430, 763, 430, 430, 430, 430,
|
|
430, 430, 430, 430, 430, 430, 754, 918, 872, 979,
|
|
430, 430, 430, 430, 430, 430, 759, 871, 758, 763,
|
|
979, 980, 980, 986, 767, 770, 771, 810, 767, 770,
|
|
771, 810, 1026, 980, 986, 1026, 430, 430, 430, 430,
|
|
430, 430, 432, 432, 432, 432, 432, 432, 432, 432,
|
|
432, 432, 767, 770, 771, 810, 432, 432, 432, 432,
|
|
432, 432, 783, 783, 783, 783, 783, 783, 783, 783,
|
|
|
|
783, 783, 785, 785, 785, 785, 785, 785, 785, 785,
|
|
785, 785, 432, 432, 432, 432, 432, 432, 448, 987,
|
|
994, 858, 448, 448, 448, 1204, 448, 1204, 448, 448,
|
|
987, 994, 448, 786, 786, 786, 786, 786, 786, 805,
|
|
805, 805, 805, 805, 805, 852, 448, 448, 448, 788,
|
|
849, 788, 788, 788, 788, 788, 788, 788, 788, 788,
|
|
788, 789, 789, 789, 789, 789, 789, 789, 789, 789,
|
|
789, 816, 822, 448, 449, 816, 822, 848, 449, 449,
|
|
449, 449, 449, 1028, 449, 449, 1028, 791, 449, 791,
|
|
791, 791, 791, 791, 791, 791, 791, 791, 791, 816,
|
|
|
|
822, 845, 449, 449, 449, 792, 1043, 792, 792, 792,
|
|
792, 792, 792, 792, 792, 792, 792, 793, 1043, 793,
|
|
793, 793, 793, 793, 793, 1169, 1169, 1169, 1169, 449,
|
|
458, 844, 458, 458, 458, 458, 458, 458, 458, 458,
|
|
458, 458, 798, 798, 798, 798, 798, 798, 798, 798,
|
|
798, 798, 802, 802, 802, 802, 802, 802, 802, 802,
|
|
996, 835, 1004, 1004, 802, 1004, 1004, 1184, 1212, 458,
|
|
459, 996, 459, 459, 459, 459, 459, 459, 459, 459,
|
|
459, 459, 804, 804, 804, 804, 804, 804, 804, 804,
|
|
804, 804, 807, 1045, 807, 807, 807, 807, 807, 807,
|
|
|
|
807, 807, 807, 807, 828, 1045, 1184, 1212, 828, 459,
|
|
470, 470, 470, 470, 470, 470, 470, 470, 470, 470,
|
|
470, 470, 470, 834, 1003, 832, 470, 470, 470, 470,
|
|
470, 470, 828, 870, 870, 870, 870, 870, 870, 870,
|
|
1057, 1005, 830, 1005, 992, 827, 830, 1003, 992, 1003,
|
|
1003, 1057, 470, 470, 470, 470, 470, 470, 473, 473,
|
|
473, 473, 473, 473, 473, 473, 473, 473, 473, 473,
|
|
830, 870, 992, 473, 473, 473, 473, 473, 473, 840,
|
|
840, 840, 840, 840, 840, 840, 840, 840, 840, 840,
|
|
882, 882, 882, 882, 882, 882, 826, 1229, 1113, 473,
|
|
|
|
473, 473, 473, 473, 473, 476, 1005, 997, 476, 1069,
|
|
1113, 997, 1135, 790, 476, 476, 782, 1069, 476, 476,
|
|
1135, 476, 476, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 997, 1229, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
|
|
476, 522, 522, 522, 522, 522, 522, 522, 522, 522,
|
|
522, 522, 1272, 1272, 1272, 522, 522, 522, 522, 522,
|
|
|
|
522, 841, 841, 841, 841, 841, 841, 841, 841, 841,
|
|
841, 841, 899, 899, 899, 899, 899, 899, 1114, 781,
|
|
780, 522, 522, 522, 522, 522, 522, 523, 775, 774,
|
|
1114, 523, 523, 523, 523, 523, 523, 523, 523, 523,
|
|
523, 523, 523, 523, 773, 772, 523, 523, 523, 523,
|
|
523, 523, 523, 523, 523, 523, 523, 523, 523, 523,
|
|
523, 523, 523, 523, 523, 523, 523, 523, 523, 1236,
|
|
769, 523, 523, 523, 523, 523, 523, 523, 523, 523,
|
|
523, 523, 523, 523, 523, 523, 523, 523, 523, 524,
|
|
1236, 768, 765, 524, 842, 842, 842, 842, 842, 842,
|
|
|
|
842, 842, 842, 842, 842, 764, 1116, 524, 524, 524,
|
|
524, 524, 524, 524, 524, 524, 524, 524, 1116, 762,
|
|
761, 524, 524, 524, 524, 524, 524, 760, 866, 866,
|
|
866, 866, 866, 866, 866, 866, 866, 866, 926, 926,
|
|
926, 926, 926, 926, 926, 753, 739, 524, 524, 524,
|
|
524, 524, 524, 545, 738, 545, 545, 545, 545, 545,
|
|
545, 545, 545, 545, 545, 866, 873, 873, 873, 873,
|
|
873, 873, 873, 873, 873, 873, 875, 875, 875, 875,
|
|
875, 875, 875, 875, 875, 875, 970, 970, 970, 970,
|
|
970, 970, 545, 546, 1130, 546, 546, 546, 546, 546,
|
|
|
|
546, 546, 546, 546, 546, 879, 1130, 879, 879, 879,
|
|
879, 879, 879, 1304, 1304, 1304, 1164, 879, 881, 881,
|
|
881, 881, 881, 881, 881, 881, 881, 881, 1164, 732,
|
|
999, 726, 546, 569, 999, 569, 569, 569, 569, 569,
|
|
569, 569, 569, 569, 569, 884, 725, 884, 884, 884,
|
|
884, 884, 884, 884, 884, 884, 884, 885, 999, 885,
|
|
885, 885, 885, 885, 885, 885, 885, 885, 885, 723,
|
|
1014, 722, 569, 570, 1014, 570, 570, 570, 570, 570,
|
|
570, 570, 570, 570, 570, 886, 721, 886, 886, 886,
|
|
886, 886, 886, 886, 886, 886, 886, 887, 1014, 887,
|
|
|
|
887, 887, 887, 887, 887, 887, 887, 887, 887, 720,
|
|
702, 681, 570, 571, 680, 571, 571, 571, 571, 571,
|
|
571, 571, 571, 571, 571, 892, 892, 892, 892, 892,
|
|
892, 892, 892, 892, 892, 896, 896, 896, 896, 896,
|
|
896, 896, 896, 1371, 1371, 1073, 1073, 896, 1073, 1073,
|
|
1371, 679, 571, 584, 584, 584, 584, 584, 584, 584,
|
|
584, 584, 584, 584, 584, 584, 920, 678, 667, 584,
|
|
584, 584, 584, 584, 584, 898, 898, 898, 898, 898,
|
|
898, 898, 898, 898, 898, 666, 930, 1265, 1265, 920,
|
|
930, 920, 920, 1265, 665, 584, 584, 584, 584, 584,
|
|
|
|
584, 587, 587, 587, 587, 587, 587, 587, 587, 587,
|
|
587, 587, 587, 587, 930, 664, 920, 587, 587, 587,
|
|
587, 587, 587, 900, 663, 900, 900, 900, 900, 900,
|
|
900, 900, 900, 900, 900, 930, 1051, 1051, 1051, 1051,
|
|
1051, 1051, 662, 587, 587, 587, 587, 587, 587, 590,
|
|
590, 590, 590, 590, 590, 590, 590, 590, 590, 590,
|
|
590, 661, 660, 659, 590, 590, 590, 590, 590, 590,
|
|
922, 922, 922, 922, 922, 922, 922, 922, 922, 922,
|
|
907, 1377, 1137, 1137, 907, 1137, 1137, 1377, 658, 657,
|
|
590, 590, 590, 590, 590, 590, 652, 656, 652, 652,
|
|
|
|
652, 652, 652, 652, 652, 652, 652, 652, 907, 924,
|
|
924, 924, 924, 924, 924, 924, 924, 924, 924, 924,
|
|
911, 655, 651, 650, 911, 941, 941, 941, 941, 941,
|
|
941, 941, 649, 648, 647, 652, 653, 907, 653, 653,
|
|
653, 653, 653, 653, 653, 653, 653, 653, 911, 925,
|
|
925, 925, 925, 925, 925, 925, 925, 925, 925, 925,
|
|
912, 934, 935, 941, 912, 934, 935, 977, 637, 977,
|
|
977, 977, 977, 977, 977, 653, 654, 911, 654, 654,
|
|
654, 654, 654, 654, 654, 654, 654, 654, 912, 934,
|
|
935, 937, 937, 937, 937, 937, 937, 937, 937, 937,
|
|
|
|
937, 945, 949, 950, 636, 945, 949, 950, 1293, 1293,
|
|
934, 935, 633, 632, 1293, 654, 675, 912, 675, 675,
|
|
675, 675, 675, 675, 675, 675, 675, 675, 937, 945,
|
|
949, 950, 957, 624, 957, 957, 957, 957, 957, 957,
|
|
957, 957, 957, 957, 1122, 1122, 1122, 1122, 1122, 1122,
|
|
945, 949, 950, 1062, 623, 675, 676, 1062, 676, 676,
|
|
676, 676, 676, 676, 676, 676, 676, 676, 958, 622,
|
|
958, 958, 958, 958, 958, 958, 958, 958, 958, 958,
|
|
959, 1062, 959, 959, 959, 959, 959, 959, 959, 959,
|
|
959, 959, 614, 578, 577, 676, 682, 682, 682, 682,
|
|
|
|
682, 682, 682, 682, 682, 682, 682, 576, 575, 573,
|
|
682, 682, 682, 682, 682, 682, 963, 963, 963, 963,
|
|
963, 963, 963, 963, 963, 963, 969, 969, 969, 969,
|
|
969, 969, 969, 969, 969, 969, 682, 682, 682, 682,
|
|
682, 682, 692, 692, 692, 692, 692, 692, 692, 692,
|
|
692, 692, 692, 692, 692, 572, 564, 563, 692, 692,
|
|
692, 692, 692, 692, 967, 562, 967, 967, 967, 967,
|
|
967, 967, 561, 560, 559, 1039, 967, 1039, 1039, 1039,
|
|
1039, 1039, 1039, 558, 692, 692, 692, 692, 692, 692,
|
|
695, 695, 695, 695, 695, 695, 695, 695, 695, 695,
|
|
|
|
695, 695, 695, 557, 556, 555, 695, 695, 695, 695,
|
|
695, 695, 972, 552, 972, 972, 972, 972, 972, 972,
|
|
972, 972, 972, 972, 985, 985, 985, 985, 985, 985,
|
|
985, 985, 695, 695, 695, 695, 695, 695, 698, 698,
|
|
698, 698, 698, 698, 698, 698, 698, 698, 698, 698,
|
|
551, 549, 542, 698, 698, 698, 698, 698, 698, 973,
|
|
973, 973, 973, 973, 973, 973, 973, 973, 973, 541,
|
|
1076, 1033, 1076, 1033, 1033, 1033, 1033, 1033, 1033, 698,
|
|
698, 698, 698, 698, 698, 756, 540, 756, 756, 756,
|
|
756, 756, 756, 756, 756, 756, 756, 975, 518, 975,
|
|
|
|
975, 975, 975, 975, 975, 975, 975, 975, 975, 976,
|
|
1033, 976, 976, 976, 976, 976, 976, 976, 976, 976,
|
|
976, 510, 988, 509, 756, 757, 988, 757, 757, 757,
|
|
757, 757, 757, 757, 757, 757, 757, 1007, 508, 507,
|
|
1076, 1007, 1007, 1007, 1007, 1176, 1176, 1008, 1176, 1176,
|
|
988, 1008, 1008, 1008, 1008, 1294, 1294, 506, 990, 1065,
|
|
505, 1294, 990, 1065, 757, 777, 777, 777, 777, 777,
|
|
777, 777, 777, 777, 777, 777, 500, 499, 1048, 988,
|
|
1048, 1048, 1048, 1048, 1048, 1048, 990, 1065, 496, 467,
|
|
1048, 1089, 1007, 1089, 1089, 1089, 1089, 1089, 1089, 466,
|
|
|
|
463, 462, 1008, 777, 778, 778, 778, 778, 778, 778,
|
|
778, 778, 778, 778, 778, 990, 1009, 447, 1009, 1009,
|
|
1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1010, 446,
|
|
1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010,
|
|
445, 444, 778, 779, 779, 779, 779, 779, 779, 779,
|
|
779, 779, 779, 779, 1011, 443, 1011, 1011, 1011, 1011,
|
|
1011, 1011, 1011, 1011, 1011, 1011, 1012, 442, 1012, 1012,
|
|
1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 441, 1091,
|
|
440, 779, 784, 1091, 784, 784, 784, 784, 784, 784,
|
|
784, 784, 784, 784, 784, 439, 438, 437, 784, 784,
|
|
|
|
784, 784, 784, 784, 436, 1202, 1202, 1091, 1202, 1202,
|
|
1322, 1322, 435, 1013, 1023, 1024, 1322, 1013, 1023, 1024,
|
|
434, 431, 425, 423, 784, 784, 784, 784, 784, 784,
|
|
787, 787, 787, 787, 787, 787, 787, 787, 787, 787,
|
|
787, 1013, 1023, 1024, 787, 787, 787, 787, 787, 787,
|
|
421, 420, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029,
|
|
1029, 1029, 1013, 1023, 1024, 419, 418, 417, 416, 415,
|
|
787, 787, 787, 787, 787, 787, 800, 800, 800, 800,
|
|
800, 800, 800, 800, 800, 800, 800, 800, 800, 1029,
|
|
414, 413, 800, 800, 800, 800, 800, 800, 1035, 1035,
|
|
|
|
1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1044, 1044,
|
|
1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 800, 800,
|
|
800, 800, 800, 800, 803, 803, 803, 803, 803, 803,
|
|
803, 803, 803, 803, 803, 803, 803, 412, 411, 410,
|
|
803, 803, 803, 803, 803, 803, 1037, 409, 1037, 1037,
|
|
1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1101, 408,
|
|
1311, 405, 1101, 1311, 390, 1311, 803, 803, 803, 803,
|
|
803, 803, 806, 806, 806, 806, 806, 806, 806, 806,
|
|
806, 806, 806, 386, 385, 384, 1101, 806, 806, 806,
|
|
806, 806, 806, 1038, 383, 1038, 1038, 1038, 1038, 1038,
|
|
|
|
1038, 1038, 1038, 1038, 1038, 1328, 1328, 1101, 376, 375,
|
|
374, 1328, 373, 806, 806, 806, 806, 806, 806, 809,
|
|
1082, 1335, 809, 1082, 1335, 372, 1335, 371, 809, 809,
|
|
1082, 1082, 809, 809, 1082, 809, 809, 809, 809, 809,
|
|
809, 809, 809, 809, 809, 809, 809, 809, 1082, 1082,
|
|
1082, 809, 809, 809, 809, 809, 809, 809, 809, 809,
|
|
809, 809, 809, 809, 809, 809, 809, 809, 809, 809,
|
|
809, 809, 809, 809, 809, 809, 809, 809, 809, 809,
|
|
809, 809, 809, 809, 809, 809, 809, 809, 809, 809,
|
|
809, 809, 809, 809, 809, 843, 369, 368, 367, 843,
|
|
|
|
843, 843, 843, 843, 843, 843, 843, 843, 843, 843,
|
|
366, 843, 365, 364, 843, 843, 843, 843, 843, 843,
|
|
843, 843, 843, 843, 843, 843, 843, 843, 843, 843,
|
|
843, 843, 843, 843, 843, 843, 843, 363, 362, 843,
|
|
843, 843, 843, 843, 843, 843, 843, 843, 843, 843,
|
|
843, 843, 843, 843, 843, 843, 843, 853, 853, 853,
|
|
853, 853, 853, 853, 853, 853, 853, 853, 1050, 1050,
|
|
1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1053, 361,
|
|
1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053,
|
|
360, 359, 358, 357, 355, 853, 854, 854, 854, 854,
|
|
|
|
854, 854, 854, 854, 854, 854, 854, 1054, 1054, 1054,
|
|
1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1055, 1055,
|
|
1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1067,
|
|
354, 347, 346, 1067, 854, 855, 855, 855, 855, 855,
|
|
855, 855, 855, 855, 855, 855, 1056, 1056, 1056, 1056,
|
|
1056, 1056, 1056, 1056, 1056, 1056, 1056, 1067, 1081, 332,
|
|
328, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081,
|
|
1081, 327, 325, 855, 856, 1131, 1144, 856, 324, 1131,
|
|
1144, 323, 322, 856, 856, 321, 1067, 856, 856, 320,
|
|
856, 856, 856, 856, 856, 856, 856, 856, 856, 856,
|
|
|
|
856, 856, 856, 1131, 1144, 314, 856, 856, 856, 856,
|
|
856, 856, 856, 856, 856, 856, 856, 856, 856, 856,
|
|
856, 856, 856, 856, 856, 856, 856, 856, 856, 856,
|
|
856, 856, 856, 856, 856, 856, 856, 856, 856, 856,
|
|
856, 856, 856, 856, 856, 856, 856, 856, 856, 856,
|
|
868, 868, 868, 868, 868, 868, 868, 868, 868, 868,
|
|
868, 1077, 1375, 310, 1375, 1077, 1077, 1077, 1077, 1078,
|
|
1375, 307, 305, 1078, 1078, 1078, 1078, 1085, 1085, 1085,
|
|
1085, 1085, 1085, 1085, 1085, 1085, 1085, 303, 868, 869,
|
|
869, 869, 869, 869, 869, 869, 869, 869, 869, 869,
|
|
|
|
1079, 300, 299, 298, 1079, 1079, 1079, 1079, 1080, 297,
|
|
294, 293, 1080, 1080, 1080, 1080, 1077, 1127, 1127, 1127,
|
|
1127, 1127, 1127, 1127, 1078, 291, 290, 869, 877, 289,
|
|
877, 877, 877, 877, 877, 877, 877, 877, 877, 877,
|
|
877, 880, 288, 880, 880, 880, 880, 880, 880, 880,
|
|
880, 880, 880, 880, 287, 1079, 285, 880, 880, 880,
|
|
880, 880, 880, 1080, 1083, 279, 271, 267, 1083, 1083,
|
|
1083, 1083, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095,
|
|
1095, 1095, 262, 880, 880, 880, 880, 880, 880, 883,
|
|
883, 883, 883, 883, 883, 883, 883, 883, 883, 883,
|
|
|
|
261, 259, 255, 883, 883, 883, 883, 883, 883, 1095,
|
|
1099, 250, 1099, 1099, 1099, 1099, 1099, 1099, 1351, 1083,
|
|
1143, 1351, 1149, 1351, 1143, 245, 1149, 243, 239, 883,
|
|
883, 883, 883, 883, 883, 894, 894, 894, 894, 894,
|
|
894, 894, 894, 894, 894, 894, 894, 894, 1143, 1099,
|
|
1149, 894, 894, 894, 894, 894, 894, 1087, 234, 1087,
|
|
1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1143,
|
|
1150, 1149, 222, 221, 1150, 220, 219, 894, 894, 894,
|
|
894, 894, 894, 897, 897, 897, 897, 897, 897, 897,
|
|
897, 897, 897, 897, 897, 218, 212, 205, 1150, 897,
|
|
|
|
897, 897, 897, 897, 897, 1133, 204, 1084, 203, 1133,
|
|
1084, 1171, 202, 201, 200, 1171, 198, 1084, 1084, 1150,
|
|
197, 1084, 196, 195, 194, 897, 897, 897, 897, 897,
|
|
897, 902, 193, 1133, 902, 1084, 1084, 1084, 192, 1171,
|
|
902, 902, 191, 190, 902, 902, 189, 902, 902, 902,
|
|
902, 902, 902, 902, 902, 902, 902, 902, 902, 902,
|
|
184, 180, 1133, 902, 902, 902, 902, 902, 902, 902,
|
|
902, 902, 902, 902, 902, 902, 902, 902, 902, 902,
|
|
902, 902, 902, 902, 902, 902, 902, 902, 902, 902,
|
|
902, 902, 902, 902, 902, 902, 902, 902, 902, 902,
|
|
|
|
902, 902, 902, 902, 902, 902, 902, 927, 179, 175,
|
|
172, 927, 927, 927, 927, 927, 927, 927, 927, 927,
|
|
927, 927, 168, 927, 165, 162, 927, 927, 927, 927,
|
|
927, 927, 927, 927, 927, 927, 927, 927, 927, 927,
|
|
927, 927, 927, 927, 927, 927, 927, 927, 927, 158,
|
|
152, 927, 927, 927, 927, 927, 927, 927, 927, 927,
|
|
927, 927, 927, 927, 927, 927, 927, 927, 927, 939,
|
|
939, 939, 939, 939, 939, 939, 939, 939, 939, 939,
|
|
1088, 151, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088,
|
|
1088, 1088, 1108, 150, 1108, 1108, 1108, 1108, 1108, 1108,
|
|
|
|
1108, 1108, 1108, 1108, 149, 148, 147, 939, 940, 940,
|
|
940, 940, 940, 940, 940, 940, 940, 940, 940, 1109,
|
|
143, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109,
|
|
1109, 1110, 137, 1110, 1110, 1110, 1110, 1110, 1110, 1110,
|
|
1110, 1110, 1110, 135, 131, 129, 940, 942, 1173, 1182,
|
|
942, 125, 1173, 1182, 124, 123, 942, 942, 122, 121,
|
|
942, 942, 120, 942, 942, 942, 942, 942, 942, 942,
|
|
942, 942, 942, 942, 942, 942, 1173, 1182, 116, 942,
|
|
942, 942, 942, 942, 942, 942, 942, 942, 942, 942,
|
|
942, 942, 942, 942, 942, 942, 942, 942, 942, 942,
|
|
|
|
942, 942, 942, 942, 942, 942, 942, 942, 942, 942,
|
|
942, 942, 942, 942, 942, 942, 942, 942, 942, 942,
|
|
942, 942, 942, 952, 103, 952, 952, 952, 952, 952,
|
|
952, 952, 952, 952, 952, 1115, 1115, 1115, 1115, 1115,
|
|
1115, 1115, 1115, 1115, 1115, 1119, 96, 1119, 1119, 1119,
|
|
1119, 1119, 1119, 1329, 1329, 1330, 1330, 1119, 89, 1329,
|
|
88, 1330, 952, 953, 81, 953, 953, 953, 953, 953,
|
|
953, 953, 953, 953, 953, 1121, 1121, 1121, 1121, 1121,
|
|
1121, 1121, 1121, 1121, 1121, 1123, 80, 1123, 1123, 1123,
|
|
1123, 1123, 1123, 1123, 1123, 1123, 1123, 75, 1336, 1336,
|
|
|
|
74, 73, 953, 954, 1336, 954, 954, 954, 954, 954,
|
|
954, 954, 954, 954, 954, 1125, 1125, 1125, 1125, 1125,
|
|
1125, 1125, 1125, 1125, 1125, 1125, 1126, 1126, 1126, 1126,
|
|
1126, 1126, 1126, 1126, 1126, 1126, 1126, 1199, 72, 67,
|
|
1134, 1199, 954, 955, 1134, 955, 955, 955, 955, 955,
|
|
955, 955, 955, 955, 955, 1138, 1138, 1138, 1138, 1138,
|
|
1138, 1138, 1138, 1138, 1138, 1199, 65, 54, 1134, 1139,
|
|
1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 53,
|
|
51, 50, 955, 965, 48, 965, 965, 965, 965, 965,
|
|
965, 965, 965, 965, 965, 965, 968, 1134, 968, 968,
|
|
|
|
968, 968, 968, 968, 968, 968, 968, 968, 968, 38,
|
|
32, 26, 968, 968, 968, 968, 968, 968, 1140, 25,
|
|
1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140,
|
|
1161, 22, 1161, 1161, 1161, 1161, 1161, 1161, 968, 968,
|
|
968, 968, 968, 968, 971, 971, 971, 971, 971, 971,
|
|
971, 971, 971, 971, 971, 21, 0, 0, 971, 971,
|
|
971, 971, 971, 971, 1141, 0, 1141, 1141, 1141, 1141,
|
|
1141, 1141, 1141, 1141, 1141, 1141, 1156, 0, 1156, 1156,
|
|
1156, 1156, 1156, 1156, 971, 971, 971, 971, 971, 971,
|
|
983, 983, 983, 983, 983, 983, 983, 983, 983, 983,
|
|
|
|
983, 983, 1019, 0, 1019, 1019, 1019, 1019, 1019, 1019,
|
|
1019, 1019, 1019, 1019, 1142, 1156, 1142, 1142, 1142, 1142,
|
|
1142, 1142, 1142, 1142, 1142, 1142, 1152, 1152, 1152, 1152,
|
|
1152, 1152, 1152, 1152, 1152, 1152, 0, 1337, 1337, 0,
|
|
0, 1019, 1020, 1337, 1020, 1020, 1020, 1020, 1020, 1020,
|
|
1020, 1020, 1020, 1020, 1181, 0, 1181, 1181, 1181, 1181,
|
|
1181, 1181, 0, 1152, 1157, 1157, 1157, 1157, 1157, 1157,
|
|
1157, 1157, 1157, 1157, 1219, 1219, 1219, 1219, 1219, 1219,
|
|
0, 1020, 1021, 0, 1021, 1021, 1021, 1021, 1021, 1021,
|
|
1021, 1021, 1021, 1021, 1159, 0, 1159, 1159, 1159, 1159,
|
|
|
|
1159, 1159, 1159, 1159, 1159, 1159, 1160, 0, 1160, 1160,
|
|
1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 0, 1175,
|
|
0, 1021, 1022, 1175, 1022, 1022, 1022, 1022, 1022, 1022,
|
|
1022, 1022, 1022, 1022, 1167, 0, 1167, 1167, 1167, 1167,
|
|
1167, 1167, 1167, 1167, 1167, 1167, 0, 1175, 1177, 1177,
|
|
1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 0, 0,
|
|
0, 1022, 1031, 0, 1031, 1031, 1031, 1031, 1031, 1031,
|
|
1031, 1031, 1031, 1031, 0, 1179, 1175, 1179, 1179, 1179,
|
|
1179, 1179, 1179, 1179, 1179, 1179, 1179, 1180, 0, 1180,
|
|
1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 0,
|
|
|
|
0, 1031, 1032, 0, 1032, 1032, 1032, 1032, 1032, 1032,
|
|
1032, 1032, 1032, 1032, 0, 0, 0, 0, 0, 1183,
|
|
1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1187,
|
|
0, 1187, 1187, 1187, 1187, 1187, 1187, 1338, 1338, 0,
|
|
0, 1032, 1046, 1338, 1046, 1046, 1046, 1046, 1046, 1046,
|
|
1046, 1046, 1046, 1046, 1046, 1049, 1183, 1049, 1049, 1049,
|
|
1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1187, 0,
|
|
0, 1049, 1049, 1049, 1049, 1049, 1049, 1215, 0, 1215,
|
|
1215, 1215, 1215, 1215, 1215, 1188, 0, 0, 1227, 1188,
|
|
1227, 1227, 1227, 1227, 1227, 1227, 0, 1049, 1049, 1049,
|
|
|
|
1049, 1049, 1049, 1052, 1052, 1052, 1052, 1052, 1052, 1052,
|
|
1052, 1052, 1052, 1188, 0, 0, 1215, 1052, 1052, 1052,
|
|
1052, 1052, 1052, 1192, 1192, 1192, 1192, 1192, 1192, 1192,
|
|
1192, 1192, 1192, 0, 1188, 1249, 1249, 1249, 1249, 1249,
|
|
1249, 0, 0, 1052, 1052, 1052, 1052, 1052, 1052, 1097,
|
|
0, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097,
|
|
1097, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193,
|
|
1193, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194,
|
|
1194, 1341, 1341, 0, 1342, 1342, 0, 1341, 1097, 1098,
|
|
1342, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098,
|
|
|
|
1098, 1205, 0, 1205, 1205, 1205, 1205, 1205, 1205, 1205,
|
|
1205, 1205, 1205, 1206, 0, 1206, 1206, 1206, 1206, 1206,
|
|
1206, 1206, 1206, 1206, 1206, 0, 0, 0, 1098, 1105,
|
|
0, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105,
|
|
1105, 1207, 0, 1207, 1207, 1207, 1207, 1207, 1207, 1207,
|
|
1207, 1207, 1207, 1211, 1211, 1211, 1211, 1211, 1211, 1211,
|
|
1211, 1211, 1211, 0, 1343, 1343, 0, 0, 1105, 1106,
|
|
1343, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106,
|
|
1106, 1346, 1346, 1347, 1347, 0, 0, 1346, 0, 1347,
|
|
1211, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217,
|
|
|
|
1217, 1354, 1354, 0, 1362, 1362, 0, 1354, 1106, 1107,
|
|
1362, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107,
|
|
1107, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218,
|
|
1218, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223,
|
|
1223, 1359, 0, 0, 1359, 0, 1359, 0, 1107, 1117,
|
|
0, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117,
|
|
1117, 1117, 1120, 0, 1120, 1120, 1120, 1120, 1120, 1120,
|
|
1120, 1120, 1120, 1120, 0, 0, 0, 0, 1120, 1120,
|
|
1120, 1120, 1120, 1120, 1225, 0, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1369, 1369, 0, 0,
|
|
|
|
0, 0, 1369, 0, 1120, 1120, 1120, 1120, 1120, 1120,
|
|
1146, 0, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146,
|
|
1146, 1146, 1226, 0, 1226, 1226, 1226, 1226, 1226, 1226,
|
|
1226, 1226, 1226, 1226, 1228, 1228, 1228, 1228, 1228, 1228,
|
|
1228, 1228, 1228, 1228, 0, 1372, 1372, 0, 0, 1146,
|
|
1147, 1372, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147,
|
|
1147, 1147, 0, 1232, 0, 1232, 1232, 1232, 1232, 1232,
|
|
1232, 1228, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233,
|
|
1233, 1233, 0, 1245, 1245, 1245, 1245, 1245, 1245, 1147,
|
|
1148, 0, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148,
|
|
|
|
1148, 1148, 1232, 0, 0, 0, 0, 0, 0, 1233,
|
|
1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234, 1234,
|
|
1245, 1374, 1374, 0, 0, 0, 0, 1374, 0, 1148,
|
|
1154, 0, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154,
|
|
1154, 1154, 0, 0, 0, 0, 0, 1234, 1235, 1235,
|
|
1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1237, 1237,
|
|
1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 0, 1154,
|
|
1155, 0, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155,
|
|
1155, 1155, 0, 0, 0, 1235, 1238, 1238, 1238, 1238,
|
|
1238, 1238, 1238, 1238, 1238, 1238, 1239, 1239, 1239, 1239,
|
|
|
|
1239, 1239, 1239, 1239, 1239, 1239, 0, 0, 0, 1155,
|
|
1185, 0, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185,
|
|
1185, 1185, 0, 0, 0, 1240, 1240, 1240, 1240, 1240,
|
|
1240, 1240, 1240, 1240, 1240, 1241, 1241, 1241, 1241, 1241,
|
|
1241, 1241, 1241, 1241, 1241, 0, 0, 0, 0, 1185,
|
|
1186, 0, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186,
|
|
1186, 1186, 1240, 0, 0, 1252, 1252, 1252, 1252, 1252,
|
|
1252, 0, 1241, 1242, 1242, 1242, 1242, 1242, 1242, 1242,
|
|
1242, 1242, 1242, 0, 0, 0, 0, 0, 0, 1186,
|
|
1189, 0, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189,
|
|
|
|
1189, 1189, 1252, 0, 0, 0, 0, 0, 0, 0,
|
|
1242, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244,
|
|
1244, 0, 0, 0, 0, 0, 0, 0, 0, 1189,
|
|
1190, 0, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190,
|
|
1190, 1190, 0, 0, 0, 0, 0, 0, 1244, 1248,
|
|
1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1251,
|
|
1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1190,
|
|
1191, 0, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191,
|
|
1191, 1191, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 1251, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1191,
|
|
1208, 0, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
|
|
1208, 1208, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1208,
|
|
1209, 0, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209,
|
|
1209, 1209, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1209,
|
|
1210, 0, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
|
|
|
|
1210, 1210, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1210,
|
|
1213, 0, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213,
|
|
1213, 1213, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1213,
|
|
1214, 0, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214,
|
|
1214, 1214, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1214,
|
|
1230, 0, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230,
|
|
1230, 1230, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1230,
|
|
1231, 0, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231,
|
|
1231, 1231, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1231,
|
|
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
|
|
|
|
1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254,
|
|
1254, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255,
|
|
1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255,
|
|
1255, 1255, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256,
|
|
1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256,
|
|
1256, 1256, 1256, 1257, 1257, 1257, 1257, 1257, 1257, 1257,
|
|
1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257,
|
|
1257, 1257, 1257, 1257, 1258, 1258, 1258, 1258, 1258, 1258,
|
|
1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258,
|
|
1258, 1258, 1258, 1258, 1258, 1259, 1259, 1259, 1259, 1259,
|
|
|
|
1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259,
|
|
1259, 1259, 1259, 1259, 1259, 1259, 1260, 0, 0, 1260,
|
|
0, 0, 0, 1260, 0, 1260, 0, 1260, 1260, 1260,
|
|
0, 0, 1260, 1260, 1260, 1260, 1260, 1261, 1261, 1261,
|
|
1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261,
|
|
1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1262, 0,
|
|
0, 1262, 0, 0, 1262, 1262, 0, 1262, 0, 1262,
|
|
1262, 1262, 1262, 0, 1262, 1262, 1262, 1262, 1262, 1263,
|
|
0, 0, 1263, 0, 0, 0, 1263, 0, 1263, 0,
|
|
1263, 1263, 1263, 0, 0, 1263, 1263, 1263, 1263, 1263,
|
|
|
|
1264, 0, 0, 1264, 1264, 1264, 0, 1264, 1264, 1264,
|
|
0, 1264, 1264, 1264, 0, 0, 1264, 1264, 1264, 1264,
|
|
1264, 1266, 1266, 0, 1266, 1266, 1266, 0, 1266, 1266,
|
|
1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266,
|
|
1266, 1266, 1267, 0, 0, 1267, 1267, 1267, 0, 1267,
|
|
1267, 1267, 0, 1267, 1267, 1267, 0, 0, 1267, 1267,
|
|
1267, 1267, 1267, 1268, 1268, 0, 1268, 1268, 1268, 0,
|
|
1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268,
|
|
1268, 1268, 1268, 1268, 1269, 0, 0, 1269, 1269, 1269,
|
|
0, 1269, 1269, 1269, 0, 1269, 1269, 1269, 0, 1269,
|
|
|
|
1269, 0, 1269, 1269, 1269, 1270, 1270, 0, 1270, 1270,
|
|
1270, 0, 0, 1270, 1270, 1270, 1270, 1270, 1270, 1270,
|
|
1270, 1270, 0, 1270, 1270, 1270, 1271, 1271, 1271, 1271,
|
|
1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271,
|
|
1271, 1271, 1271, 1271, 1271, 1271, 1271, 1273, 0, 0,
|
|
1273, 1273, 0, 0, 1273, 1273, 1273, 0, 1273, 1273,
|
|
1273, 1273, 0, 1273, 1273, 1273, 1273, 1273, 1274, 1274,
|
|
1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274,
|
|
1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1275,
|
|
1275, 0, 1275, 1275, 0, 1275, 1275, 1275, 1275, 1275,
|
|
|
|
1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275,
|
|
1276, 0, 0, 1276, 0, 0, 1276, 1276, 0, 1276,
|
|
0, 1276, 1276, 1276, 1276, 0, 1276, 1276, 1276, 1276,
|
|
1276, 1277, 0, 0, 1277, 0, 0, 0, 1277, 0,
|
|
1277, 0, 1277, 1277, 1277, 0, 1277, 1277, 1277, 1277,
|
|
1277, 1277, 1278, 0, 0, 1278, 1278, 1278, 0, 1278,
|
|
1278, 1278, 0, 1278, 1278, 1278, 0, 1278, 1278, 1278,
|
|
1278, 1278, 1278, 1279, 1279, 0, 1279, 1279, 1279, 0,
|
|
1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279,
|
|
1279, 1279, 1279, 1279, 1280, 0, 0, 0, 1280, 1280,
|
|
|
|
1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280,
|
|
1280, 1280, 1280, 1280, 1280, 1281, 0, 0, 1281, 0,
|
|
0, 0, 1281, 0, 1281, 0, 1281, 1281, 1281, 0,
|
|
0, 1281, 1281, 1281, 1281, 1281, 1282, 0, 0, 1282,
|
|
0, 0, 1282, 1282, 0, 1282, 0, 1282, 1282, 1282,
|
|
1282, 0, 1282, 1282, 1282, 1282, 1282, 1283, 0, 0,
|
|
1283, 0, 0, 0, 1283, 0, 1283, 0, 1283, 1283,
|
|
1283, 0, 0, 1283, 1283, 1283, 1283, 1283, 1284, 0,
|
|
0, 1284, 1284, 1284, 0, 1284, 1284, 1284, 0, 1284,
|
|
1284, 1284, 0, 0, 1284, 1284, 1284, 1284, 1284, 1285,
|
|
|
|
1285, 0, 1285, 1285, 1285, 0, 1285, 1285, 1285, 1285,
|
|
1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285,
|
|
1286, 0, 0, 1286, 0, 0, 0, 1286, 0, 1286,
|
|
0, 1286, 1286, 1286, 0, 0, 1286, 1286, 1286, 1286,
|
|
1286, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287,
|
|
1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287,
|
|
1287, 1287, 1288, 1288, 0, 1288, 1288, 1288, 1288, 1288,
|
|
1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288,
|
|
1288, 1288, 1288, 1289, 0, 0, 1289, 0, 0, 0,
|
|
1289, 0, 1289, 0, 1289, 1289, 1289, 0, 0, 1289,
|
|
|
|
1289, 1289, 1289, 1289, 1290, 0, 0, 1290, 0, 0,
|
|
0, 1290, 0, 1290, 0, 1290, 1290, 1290, 0, 0,
|
|
1290, 1290, 1290, 1290, 1290, 1291, 0, 0, 1291, 1291,
|
|
1291, 0, 1291, 1291, 1291, 0, 1291, 1291, 1291, 0,
|
|
0, 1291, 1291, 1291, 1291, 1291, 1292, 0, 0, 1292,
|
|
1292, 1292, 0, 1292, 1292, 1292, 0, 1292, 1292, 1292,
|
|
0, 0, 1292, 1292, 1292, 1292, 1292, 1295, 1295, 1295,
|
|
0, 0, 0, 0, 1295, 1296, 1296, 0, 1296, 1296,
|
|
1296, 0, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296,
|
|
1296, 1296, 1296, 1296, 1296, 1296, 1297, 1297, 0, 1297,
|
|
|
|
1297, 1297, 0, 1297, 1297, 1297, 1297, 1297, 1297, 1297,
|
|
1297, 1297, 1297, 1297, 1297, 1297, 1297, 1298, 0, 0,
|
|
1298, 1298, 1298, 0, 1298, 1298, 1298, 0, 1298, 1298,
|
|
1298, 0, 0, 1298, 1298, 1298, 1298, 1298, 1299, 0,
|
|
0, 1299, 1299, 1299, 0, 1299, 1299, 1299, 0, 1299,
|
|
1299, 1299, 0, 0, 1299, 1299, 1299, 1299, 1299, 1300,
|
|
1300, 0, 1300, 1300, 1300, 0, 1300, 1300, 1300, 1300,
|
|
1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300,
|
|
1301, 1301, 0, 1301, 1301, 1301, 0, 1301, 1301, 1301,
|
|
1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301,
|
|
|
|
1301, 1302, 0, 0, 1302, 1302, 1302, 0, 1302, 1302,
|
|
1302, 0, 1302, 1302, 1302, 0, 1302, 1302, 0, 1302,
|
|
1302, 1302, 1303, 1303, 0, 1303, 1303, 1303, 0, 0,
|
|
1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 0,
|
|
1303, 1303, 1303, 1305, 0, 0, 1305, 1305, 0, 0,
|
|
1305, 1305, 1305, 0, 1305, 1305, 1305, 1305, 0, 1305,
|
|
1305, 1305, 1305, 1305, 1306, 1306, 0, 1306, 1306, 0,
|
|
1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306,
|
|
1306, 1306, 1306, 1306, 1306, 1307, 0, 0, 1307, 0,
|
|
0, 0, 1307, 0, 1307, 0, 1307, 1307, 1307, 0,
|
|
|
|
0, 1307, 1307, 1307, 1307, 1307, 1308, 0, 0, 1308,
|
|
0, 0, 0, 1308, 0, 1308, 0, 1308, 1308, 1308,
|
|
0, 1308, 1308, 1308, 1308, 1308, 1308, 1309, 0, 0,
|
|
1309, 1309, 0, 1309, 1309, 0, 0, 1309, 1309, 1310,
|
|
0, 0, 1310, 1310, 1310, 0, 1310, 1310, 1310, 0,
|
|
1310, 1310, 1310, 0, 1310, 1310, 1310, 1310, 1310, 1310,
|
|
1312, 0, 0, 0, 1312, 1312, 1312, 1312, 1312, 1312,
|
|
1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312,
|
|
1312, 1313, 0, 0, 1313, 0, 0, 0, 1313, 0,
|
|
1313, 0, 1313, 1313, 1313, 0, 0, 1313, 1313, 1313,
|
|
|
|
1313, 1313, 1314, 0, 0, 1314, 0, 0, 0, 1314,
|
|
0, 1314, 0, 1314, 1314, 1314, 0, 0, 1314, 1314,
|
|
1314, 1314, 1314, 1315, 0, 0, 1315, 0, 0, 0,
|
|
1315, 0, 1315, 0, 1315, 1315, 1315, 0, 0, 1315,
|
|
1315, 1315, 1315, 1315, 1316, 0, 0, 1316, 1316, 1316,
|
|
0, 1316, 1316, 1316, 0, 1316, 1316, 1316, 0, 0,
|
|
1316, 1316, 1316, 1316, 1316, 1317, 0, 0, 1317, 1317,
|
|
1317, 0, 1317, 1317, 1317, 0, 1317, 1317, 1317, 0,
|
|
0, 1317, 1317, 1317, 1317, 1317, 1318, 1318, 0, 1318,
|
|
1318, 1318, 0, 1318, 1318, 1318, 1318, 1318, 1318, 1318,
|
|
|
|
1318, 1318, 1318, 1318, 1318, 1318, 1318, 1319, 1319, 1319,
|
|
1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319,
|
|
1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1320, 1320,
|
|
1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320,
|
|
1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1321,
|
|
0, 0, 1321, 0, 0, 0, 1321, 0, 1321, 0,
|
|
1321, 1321, 1321, 0, 0, 1321, 1321, 1321, 1321, 1321,
|
|
1323, 1323, 1323, 0, 0, 0, 0, 1323, 1324, 1324,
|
|
0, 1324, 1324, 1324, 0, 1324, 1324, 1324, 1324, 1324,
|
|
1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1325,
|
|
|
|
1325, 0, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325,
|
|
1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325,
|
|
1326, 1326, 0, 1326, 1326, 1326, 0, 1326, 1326, 1326,
|
|
1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326,
|
|
1326, 1327, 1327, 0, 1327, 1327, 1327, 0, 1327, 1327,
|
|
1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327,
|
|
1327, 1327, 1331, 1331, 1331, 0, 0, 0, 0, 1331,
|
|
1332, 1332, 1332, 0, 0, 0, 0, 1332, 1333, 1333,
|
|
1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333,
|
|
1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1334,
|
|
|
|
1334, 0, 1334, 1334, 1334, 0, 1334, 1334, 1334, 1334,
|
|
1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334,
|
|
1339, 1339, 1339, 0, 0, 0, 0, 1339, 1340, 1340,
|
|
1340, 1340, 0, 0, 0, 0, 1340, 1344, 1344, 1344,
|
|
0, 0, 0, 0, 1344, 1345, 1345, 1345, 1345, 0,
|
|
0, 0, 0, 1345, 1348, 1348, 1348, 0, 0, 0,
|
|
0, 1348, 1349, 1349, 1349, 1349, 0, 0, 0, 0,
|
|
1349, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350,
|
|
1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350,
|
|
1350, 1350, 1352, 0, 0, 1352, 1352, 0, 1352, 1352,
|
|
|
|
0, 0, 1352, 1352, 1353, 0, 0, 1353, 0, 0,
|
|
0, 1353, 0, 1353, 0, 1353, 1353, 1353, 0, 0,
|
|
1353, 1353, 1353, 1353, 1353, 1355, 0, 1355, 1355, 0,
|
|
0, 0, 0, 1355, 1356, 1356, 1356, 0, 0, 0,
|
|
0, 1356, 1357, 1357, 1357, 1357, 0, 0, 0, 0,
|
|
1357, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358,
|
|
1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358,
|
|
1358, 1358, 1360, 0, 0, 1360, 1360, 0, 1360, 1360,
|
|
0, 0, 1360, 1360, 1361, 0, 0, 1361, 0, 0,
|
|
0, 1361, 0, 1361, 0, 1361, 1361, 1361, 0, 0,
|
|
|
|
1361, 1361, 1361, 1361, 1361, 1363, 0, 1363, 1363, 0,
|
|
0, 0, 0, 1363, 1364, 1364, 1364, 0, 0, 0,
|
|
0, 1364, 1365, 1365, 1365, 0, 0, 0, 0, 0,
|
|
1365, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366,
|
|
1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366,
|
|
1366, 1366, 1367, 1367, 0, 1367, 1367, 1367, 1367, 1367,
|
|
0, 1367, 0, 1367, 1367, 1367, 0, 0, 1367, 1367,
|
|
1367, 1367, 1367, 1368, 1368, 0, 1368, 1368, 1368, 1368,
|
|
1368, 0, 1368, 0, 1368, 1368, 1368, 0, 0, 1368,
|
|
1368, 1368, 1368, 1368, 1370, 0, 1370, 1370, 0, 0,
|
|
|
|
0, 0, 1370, 1373, 0, 1373, 1373, 0, 0, 0,
|
|
0, 1373, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376,
|
|
1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376,
|
|
1376, 1376, 1376, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253,
|
|
|
|
1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253
|
|
} ;
|
|
|
|
static yy_state_type yy_last_accepting_state;
|
|
static char *yy_last_accepting_cpos;
|
|
|
|
extern int sudoers_flex_debug;
|
|
int sudoers_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
|
|
#define yymore() yymore_used_but_not_detected
|
|
#define YY_MORE_ADJ 0
|
|
#define YY_RESTORE_YY_MORE_OFFSET
|
|
char *sudoerstext;
|
|
#line 1 "toke.l"
|
|
#line 2 "toke.l"
|
|
/*
|
|
* SPDX-License-Identifier: ISC
|
|
*
|
|
* Copyright (c) 1996, 1998-2005, 2007-2022
|
|
* Todd C. Miller <Todd.Miller@sudo.ws>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* Sponsored in part by the Defense Advanced Research Projects
|
|
* Agency (DARPA) and Air Force Research Laboratory, Air Force
|
|
* Materiel Command, USAF, under agreement number F39502-99-1-0512.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#if defined(HAVE_STDINT_H)
|
|
# include <stdint.h>
|
|
#elif defined(HAVE_INTTYPES_H)
|
|
# include <inttypes.h>
|
|
#endif
|
|
#include <unistd.h>
|
|
#include <dirent.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include "sudoers.h"
|
|
#include "toke.h"
|
|
#include <gram.h>
|
|
#include "sudo_digest.h"
|
|
#include "sudo_lbuf.h"
|
|
|
|
#if defined(HAVE_STRUCT_DIRENT_D_NAMLEN) && HAVE_STRUCT_DIRENT_D_NAMLEN
|
|
# define NAMLEN(dirent) (dirent)->d_namlen
|
|
#else
|
|
# define NAMLEN(dirent) strlen((dirent)->d_name)
|
|
#endif
|
|
|
|
// PVS Studio suppression
|
|
// -V::519, 547, 1004, 1037, 1048
|
|
|
|
int sudolineno; /* current sudoers line number. */
|
|
char *sudoers; /* sudoers file being parsed. */
|
|
const char *sudoers_errstr; /* description of last error from lexer. */
|
|
struct sudolinebuf sudolinebuf; /* sudoers line being parsed. */
|
|
|
|
/* Default sudoers path, mode and owner (may be set via sudo.conf) */
|
|
const char *sudoers_file = _PATH_SUDOERS;
|
|
mode_t sudoers_mode = SUDOERS_MODE;
|
|
uid_t sudoers_uid = SUDOERS_UID;
|
|
gid_t sudoers_gid = SUDOERS_GID;
|
|
|
|
static bool continued, sawspace;
|
|
static int prev_state;
|
|
static int digest_type = -1;
|
|
|
|
static bool pop_include(void);
|
|
static yy_size_t sudoers_input(char *buf, yy_size_t max_size);
|
|
|
|
#ifndef TRACELEXER
|
|
static struct sudo_lbuf trace_lbuf;
|
|
#endif
|
|
|
|
int (*trace_print)(const char *msg) = sudoers_trace_print;
|
|
|
|
#define ECHO ignore_result(fwrite(sudoerstext, sudoersleng, 1, sudoersout))
|
|
|
|
#define YY_INPUT(buf, result, max_size) (result) = sudoers_input(buf, max_size)
|
|
|
|
#define YY_USER_ACTION do { \
|
|
sudolinebuf.toke_start = sudolinebuf.toke_end; \
|
|
sudolinebuf.toke_end += sudoersleng; \
|
|
} while (0);
|
|
|
|
#define sudoersless(n) do { \
|
|
sudolinebuf.toke_end = sudolinebuf.toke_start + (n); \
|
|
yyless(n); \
|
|
} while (0);
|
|
|
|
#define YY_NO_INPUT 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#line 3136 "toke.c"
|
|
|
|
#define INITIAL 0
|
|
#define GOTDEFS 1
|
|
#define GOTCMND 2
|
|
#define GOTREGEX 3
|
|
#define STARTDEFS 4
|
|
#define INDEFS 5
|
|
#define INSTR 6
|
|
#define WANTDIGEST 7
|
|
#define GOTINC 8
|
|
#define EXPECTPATH 9
|
|
|
|
#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 sudoerslex_destroy (void );
|
|
|
|
int sudoersget_debug (void );
|
|
|
|
void sudoersset_debug (int debug_flag );
|
|
|
|
YY_EXTRA_TYPE sudoersget_extra (void );
|
|
|
|
void sudoersset_extra (YY_EXTRA_TYPE user_defined );
|
|
|
|
FILE *sudoersget_in (void );
|
|
|
|
void sudoersset_in (FILE * in_str );
|
|
|
|
FILE *sudoersget_out (void );
|
|
|
|
void sudoersset_out (FILE * out_str );
|
|
|
|
yy_size_t sudoersget_leng (void );
|
|
|
|
char *sudoersget_text (void );
|
|
|
|
int sudoersget_lineno (void );
|
|
|
|
void sudoersset_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 sudoerswrap (void );
|
|
#else
|
|
extern int sudoerswrap (void );
|
|
#endif
|
|
#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
|
|
#define YY_READ_BUF_SIZE 8192
|
|
#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( sudoerstext, sudoersleng, 1, sudoersout )) {} } 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( sudoersin )) != EOF && c != '\n'; ++n ) \
|
|
buf[n] = (char) c; \
|
|
if ( c == '\n' ) \
|
|
buf[n++] = (char) c; \
|
|
if ( c == EOF && ferror( sudoersin ) ) \
|
|
YY_FATAL_ERROR( "input in flex scanner failed" ); \
|
|
result = n; \
|
|
} \
|
|
else \
|
|
{ \
|
|
errno=0; \
|
|
while ( (result = fread(buf, 1, max_size, sudoersin))==0 && ferror(sudoersin)) \
|
|
{ \
|
|
if( errno != EINTR) \
|
|
{ \
|
|
YY_FATAL_ERROR( "input in flex scanner failed" ); \
|
|
break; \
|
|
} \
|
|
errno=0; \
|
|
clearerr(sudoersin); \
|
|
} \
|
|
}\
|
|
\
|
|
|
|
#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 sudoerslex (void);
|
|
|
|
#define YY_DECL int sudoerslex (void)
|
|
#endif /* !YY_DECL */
|
|
|
|
/* Code executed at the beginning of each rule, after sudoerstext and sudoersleng
|
|
* 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 break;
|
|
#endif
|
|
|
|
#define YY_RULE_SETUP \
|
|
if ( sudoersleng > 0 ) \
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \
|
|
(sudoerstext[sudoersleng - 1] == '\n'); \
|
|
YY_USER_ACTION
|
|
|
|
/** The main scanner function which does all the work.
|
|
*/
|
|
YY_DECL
|
|
{
|
|
yy_state_type yy_current_state;
|
|
char *yy_cp, *yy_bp;
|
|
int yy_act;
|
|
|
|
if ( !(yy_init) )
|
|
{
|
|
(yy_init) = 1;
|
|
|
|
#ifdef YY_USER_INIT
|
|
YY_USER_INIT;
|
|
#endif
|
|
|
|
if ( ! (yy_start) )
|
|
(yy_start) = 1; /* first start state */
|
|
|
|
if ( ! sudoersin ) {
|
|
sudoersin = stdin;
|
|
}
|
|
|
|
if ( ! sudoersout ) {
|
|
sudoersout = stdout;
|
|
}
|
|
|
|
if ( ! YY_CURRENT_BUFFER ) {
|
|
sudoersensure_buffer_stack ();
|
|
YY_CURRENT_BUFFER_LVALUE =
|
|
sudoers_create_buffer(sudoersin,YY_BUF_SIZE );
|
|
}
|
|
|
|
sudoers_load_buffer_state( );
|
|
}
|
|
|
|
{
|
|
#line 124 "toke.l"
|
|
|
|
#line 3359 "toke.c"
|
|
|
|
while ( 1 ) /* loops until end-of-file is reached */
|
|
{
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
/* Support of sudoerstext. */
|
|
*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_current_state += YY_AT_BOL();
|
|
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 >= 1254 )
|
|
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] != 9534 );
|
|
|
|
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 125 "toke.l"
|
|
{
|
|
LEXTRACE(", ");
|
|
return ',';
|
|
} /* return ',' */
|
|
YY_BREAK
|
|
case 2:
|
|
YY_RULE_SETUP
|
|
#line 130 "toke.l"
|
|
BEGIN STARTDEFS;
|
|
YY_BREAK
|
|
case 3:
|
|
YY_RULE_SETUP
|
|
#line 132 "toke.l"
|
|
{
|
|
BEGIN INDEFS;
|
|
LEXTRACE("DEFVAR ");
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
return DEFVAR;
|
|
}
|
|
YY_BREAK
|
|
|
|
case 4:
|
|
YY_RULE_SETUP
|
|
#line 141 "toke.l"
|
|
{
|
|
BEGIN STARTDEFS;
|
|
LEXTRACE(", ");
|
|
return ',';
|
|
} /* return ',' */
|
|
YY_BREAK
|
|
case 5:
|
|
YY_RULE_SETUP
|
|
#line 147 "toke.l"
|
|
{
|
|
LEXTRACE("= ");
|
|
return '=';
|
|
} /* return '=' */
|
|
YY_BREAK
|
|
case 6:
|
|
YY_RULE_SETUP
|
|
#line 152 "toke.l"
|
|
{
|
|
LEXTRACE("+= ");
|
|
return '+';
|
|
} /* return '+' */
|
|
YY_BREAK
|
|
case 7:
|
|
YY_RULE_SETUP
|
|
#line 157 "toke.l"
|
|
{
|
|
LEXTRACE("-= ");
|
|
return '-';
|
|
} /* return '-' */
|
|
YY_BREAK
|
|
case 8:
|
|
YY_RULE_SETUP
|
|
#line 162 "toke.l"
|
|
{
|
|
LEXTRACE("BEGINSTR ");
|
|
sudoerslval.string = NULL;
|
|
prev_state = YY_START;
|
|
BEGIN INSTR;
|
|
}
|
|
YY_BREAK
|
|
case 9:
|
|
YY_RULE_SETUP
|
|
#line 169 "toke.l"
|
|
{
|
|
LEXTRACE("WORD(2) ");
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
|
|
|
|
case 10:
|
|
/* rule 10 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 178 "toke.l"
|
|
{
|
|
/* Line continuation char followed by newline. */
|
|
sudolineno++;
|
|
continued = true;
|
|
}
|
|
YY_BREAK
|
|
case 11:
|
|
YY_RULE_SETUP
|
|
#line 184 "toke.l"
|
|
{
|
|
LEXTRACE("ENDSTR ");
|
|
BEGIN prev_state;
|
|
|
|
if (sudoerslval.string == NULL) {
|
|
sudoers_errstr = N_("empty string");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
if (prev_state == INITIAL || prev_state == GOTDEFS) {
|
|
switch (sudoerslval.string[0]) {
|
|
case '%':
|
|
if (sudoerslval.string[1] == '\0' ||
|
|
(sudoerslval.string[1] == ':' &&
|
|
sudoerslval.string[2] == '\0')) {
|
|
parser_leak_remove(LEAK_PTR, sudoerslval.string);
|
|
free(sudoerslval.string);
|
|
sudoers_errstr = N_("empty group");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
LEXTRACE("USERGROUP ");
|
|
return USERGROUP;
|
|
case '+':
|
|
if (sudoerslval.string[1] == '\0') {
|
|
parser_leak_remove(LEAK_PTR, sudoerslval.string);
|
|
free(sudoerslval.string);
|
|
sudoers_errstr = N_("empty netgroup");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
LEXTRACE("NETGROUP ");
|
|
return NETGROUP;
|
|
}
|
|
}
|
|
LEXTRACE("WORD(4) ");
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
case 12:
|
|
YY_RULE_SETUP
|
|
#line 223 "toke.l"
|
|
{
|
|
LEXTRACE("BACKSLASH ");
|
|
if (!append(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
}
|
|
YY_BREAK
|
|
case 13:
|
|
YY_RULE_SETUP
|
|
#line 229 "toke.l"
|
|
{
|
|
LEXTRACE("STRBODY ");
|
|
if (!append(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
}
|
|
YY_BREAK
|
|
|
|
|
|
case 14:
|
|
YY_RULE_SETUP
|
|
#line 237 "toke.l"
|
|
{
|
|
/* quoted fnmatch glob char, pass verbatim */
|
|
LEXTRACE("QUOTEDCHAR ");
|
|
if (!fill_args(sudoerstext, 2, sawspace))
|
|
yyterminate();
|
|
sawspace = false;
|
|
}
|
|
YY_BREAK
|
|
case 15:
|
|
YY_RULE_SETUP
|
|
#line 245 "toke.l"
|
|
{
|
|
/* quoted sudoers special char, strip backslash */
|
|
LEXTRACE("QUOTEDCHAR ");
|
|
if (!fill_args(sudoerstext + 1, 1, sawspace))
|
|
yyterminate();
|
|
sawspace = false;
|
|
}
|
|
YY_BREAK
|
|
case 16:
|
|
/* rule 16 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 253 "toke.l"
|
|
{
|
|
BEGIN INITIAL;
|
|
sudoersless(0);
|
|
yy_set_bol(0);
|
|
return COMMAND;
|
|
} /* end of command line args */
|
|
YY_BREAK
|
|
case 17:
|
|
YY_RULE_SETUP
|
|
#line 260 "toke.l"
|
|
{
|
|
if (sudoerslval.command.args == NULL && sudoerstext[0] == '^') {
|
|
LEXTRACE("ARG REGEX ");
|
|
BEGIN GOTREGEX;
|
|
sudoersless(0);
|
|
yy_set_bol(0);
|
|
} else {
|
|
LEXTRACE("ARG ");
|
|
if (!fill_args(sudoerstext, sudoersleng, sawspace))
|
|
yyterminate();
|
|
sawspace = false;
|
|
}
|
|
} /* a command line arg */
|
|
YY_BREAK
|
|
|
|
|
|
case 18:
|
|
YY_RULE_SETUP
|
|
#line 276 "toke.l"
|
|
{
|
|
/* quoted character, pass verbatim */
|
|
LEXTRACE("QUOTEDCHAR ");
|
|
if (!fill_args(sudoerstext, 2, false))
|
|
yyterminate();
|
|
}
|
|
YY_BREAK
|
|
case 19:
|
|
/* rule 19 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 283 "toke.l"
|
|
{
|
|
/* Let the parser attempt to recover. */
|
|
sudoersless(0);
|
|
yy_set_bol(0);
|
|
BEGIN INITIAL;
|
|
|
|
sudoers_errstr = N_("unterminated regular expression");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
} /* illegal inside regex */
|
|
YY_BREAK
|
|
case 20:
|
|
YY_RULE_SETUP
|
|
#line 294 "toke.l"
|
|
{
|
|
if (!fill_args("$", 1, false))
|
|
yyterminate();
|
|
BEGIN INITIAL;
|
|
continued = false;
|
|
if (sudoers_strict) {
|
|
if (!sudo_regex_compile(NULL, sudoerstext, &sudoers_errstr)) {
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
}
|
|
return COMMAND;
|
|
}
|
|
YY_BREAK
|
|
case 21:
|
|
YY_RULE_SETUP
|
|
#line 308 "toke.l"
|
|
{
|
|
if (continued) {
|
|
/* remove whitespace after line continuation */
|
|
while (isblank((unsigned char)*sudoerstext)) {
|
|
sudoerstext++;
|
|
sudoersleng--;
|
|
}
|
|
continued = false;
|
|
}
|
|
if (sudoersleng != 0) {
|
|
if (!fill_args(sudoerstext, sudoersleng, false))
|
|
yyterminate();
|
|
}
|
|
}
|
|
YY_BREAK
|
|
|
|
case 22:
|
|
YY_RULE_SETUP
|
|
#line 324 "toke.l"
|
|
{
|
|
/* Only return DIGEST if the length is correct. */
|
|
yy_size_t digest_len =
|
|
sudo_digest_getlen(digest_type);
|
|
if ((yy_size_t)sudoersleng == digest_len * 2) {
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
BEGIN INITIAL;
|
|
LEXTRACE("DIGEST ");
|
|
return DIGEST;
|
|
}
|
|
BEGIN INITIAL;
|
|
sudoersless(sudoersleng);
|
|
} /* hex digest */
|
|
YY_BREAK
|
|
case 23:
|
|
YY_RULE_SETUP
|
|
#line 339 "toke.l"
|
|
{
|
|
/* Only return DIGEST if the length is correct. */
|
|
yy_size_t len, digest_len =
|
|
sudo_digest_getlen(digest_type);
|
|
if (sudoerstext[sudoersleng - 1] == '=') {
|
|
/* use padding */
|
|
len = 4 * ((digest_len + 2) / 3);
|
|
} else {
|
|
/* no padding */
|
|
len = (4 * digest_len + 2) / 3;
|
|
}
|
|
if ((yy_size_t)sudoersleng == len) {
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
BEGIN INITIAL;
|
|
LEXTRACE("DIGEST ");
|
|
return DIGEST;
|
|
}
|
|
BEGIN INITIAL;
|
|
sudoersless(sudoersleng);
|
|
} /* base64 digest */
|
|
YY_BREAK
|
|
case 24:
|
|
YY_RULE_SETUP
|
|
#line 361 "toke.l"
|
|
{
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
BEGIN GOTINC;
|
|
LEXTRACE("INCLUDE ");
|
|
return INCLUDE;
|
|
}
|
|
YY_BREAK
|
|
case 25:
|
|
YY_RULE_SETUP
|
|
#line 373 "toke.l"
|
|
{
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
BEGIN GOTINC;
|
|
LEXTRACE("INCLUDEDIR ");
|
|
return INCLUDEDIR;
|
|
}
|
|
YY_BREAK
|
|
case 26:
|
|
/* rule 26 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 385 "toke.l"
|
|
{
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
/* only consume #include */
|
|
sudoersless(sizeof("#include") - 1);
|
|
yy_set_bol(0);
|
|
|
|
BEGIN GOTINC;
|
|
LEXTRACE("INCLUDE ");
|
|
return INCLUDE;
|
|
}
|
|
YY_BREAK
|
|
case 27:
|
|
/* rule 27 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 401 "toke.l"
|
|
{
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
/* only consume #includedir */
|
|
sudoersless(sizeof("#includedir") - 1);
|
|
yy_set_bol(0);
|
|
|
|
BEGIN GOTINC;
|
|
LEXTRACE("INCLUDEDIR ");
|
|
return INCLUDEDIR;
|
|
}
|
|
YY_BREAK
|
|
case 28:
|
|
YY_RULE_SETUP
|
|
#line 417 "toke.l"
|
|
{
|
|
char deftype;
|
|
int n;
|
|
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
for (n = 0; isblank((unsigned char)sudoerstext[n]); n++)
|
|
continue;
|
|
n += sizeof("Defaults") - 1;
|
|
if ((deftype = sudoerstext[n++]) != '\0') {
|
|
while (isblank((unsigned char)sudoerstext[n]))
|
|
n++;
|
|
}
|
|
BEGIN GOTDEFS;
|
|
switch (deftype) {
|
|
case ':':
|
|
sudoersless(n);
|
|
LEXTRACE("DEFAULTS_USER ");
|
|
return DEFAULTS_USER;
|
|
case '>':
|
|
sudoersless(n);
|
|
LEXTRACE("DEFAULTS_RUNAS ");
|
|
return DEFAULTS_RUNAS;
|
|
case '@':
|
|
sudoersless(n);
|
|
LEXTRACE("DEFAULTS_HOST ");
|
|
return DEFAULTS_HOST;
|
|
case '!':
|
|
sudoersless(n);
|
|
LEXTRACE("DEFAULTS_CMND ");
|
|
return DEFAULTS_CMND;
|
|
default:
|
|
LEXTRACE("DEFAULTS ");
|
|
return DEFAULTS;
|
|
}
|
|
}
|
|
YY_BREAK
|
|
case 29:
|
|
YY_RULE_SETUP
|
|
#line 458 "toke.l"
|
|
{
|
|
int n;
|
|
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
for (n = 0; isblank((unsigned char)sudoerstext[n]); n++)
|
|
continue;
|
|
switch (sudoerstext[n]) {
|
|
case 'H':
|
|
LEXTRACE("HOSTALIAS ");
|
|
return HOSTALIAS;
|
|
case 'C':
|
|
LEXTRACE("CMNDALIAS ");
|
|
return CMNDALIAS;
|
|
case 'U':
|
|
LEXTRACE("USERALIAS ");
|
|
return USERALIAS;
|
|
case 'R':
|
|
LEXTRACE("RUNASALIAS ");
|
|
return RUNASALIAS;
|
|
}
|
|
}
|
|
YY_BREAK
|
|
case 30:
|
|
YY_RULE_SETUP
|
|
#line 485 "toke.l"
|
|
{
|
|
/* cmnd does not require passwd for this user */
|
|
LEXTRACE("NOPASSWD ");
|
|
return NOPASSWD;
|
|
}
|
|
YY_BREAK
|
|
case 31:
|
|
YY_RULE_SETUP
|
|
#line 491 "toke.l"
|
|
{
|
|
/* cmnd requires passwd for this user */
|
|
LEXTRACE("PASSWD ");
|
|
return PASSWD;
|
|
}
|
|
YY_BREAK
|
|
case 32:
|
|
YY_RULE_SETUP
|
|
#line 497 "toke.l"
|
|
{
|
|
LEXTRACE("NOEXEC ");
|
|
return NOEXEC;
|
|
}
|
|
YY_BREAK
|
|
case 33:
|
|
YY_RULE_SETUP
|
|
#line 502 "toke.l"
|
|
{
|
|
LEXTRACE("EXEC ");
|
|
return EXEC;
|
|
}
|
|
YY_BREAK
|
|
case 34:
|
|
YY_RULE_SETUP
|
|
#line 507 "toke.l"
|
|
{
|
|
LEXTRACE("INTERCEPT ");
|
|
return INTERCEPT;
|
|
}
|
|
YY_BREAK
|
|
case 35:
|
|
YY_RULE_SETUP
|
|
#line 512 "toke.l"
|
|
{
|
|
LEXTRACE("NOINTERCEPT ");
|
|
return NOINTERCEPT;
|
|
}
|
|
YY_BREAK
|
|
case 36:
|
|
YY_RULE_SETUP
|
|
#line 517 "toke.l"
|
|
{
|
|
LEXTRACE("SETENV ");
|
|
return SETENV;
|
|
}
|
|
YY_BREAK
|
|
case 37:
|
|
YY_RULE_SETUP
|
|
#line 522 "toke.l"
|
|
{
|
|
LEXTRACE("NOSETENV ");
|
|
return NOSETENV;
|
|
}
|
|
YY_BREAK
|
|
case 38:
|
|
YY_RULE_SETUP
|
|
#line 527 "toke.l"
|
|
{
|
|
LEXTRACE("LOG_OUTPUT ");
|
|
return LOG_OUTPUT;
|
|
}
|
|
YY_BREAK
|
|
case 39:
|
|
YY_RULE_SETUP
|
|
#line 532 "toke.l"
|
|
{
|
|
LEXTRACE("NOLOG_OUTPUT ");
|
|
return NOLOG_OUTPUT;
|
|
}
|
|
YY_BREAK
|
|
case 40:
|
|
YY_RULE_SETUP
|
|
#line 537 "toke.l"
|
|
{
|
|
LEXTRACE("LOG_INPUT ");
|
|
return LOG_INPUT;
|
|
}
|
|
YY_BREAK
|
|
case 41:
|
|
YY_RULE_SETUP
|
|
#line 542 "toke.l"
|
|
{
|
|
LEXTRACE("NOLOG_INPUT ");
|
|
return NOLOG_INPUT;
|
|
}
|
|
YY_BREAK
|
|
case 42:
|
|
YY_RULE_SETUP
|
|
#line 547 "toke.l"
|
|
{
|
|
LEXTRACE("MAIL ");
|
|
return MAIL;
|
|
}
|
|
YY_BREAK
|
|
case 43:
|
|
YY_RULE_SETUP
|
|
#line 552 "toke.l"
|
|
{
|
|
LEXTRACE("NOMAIL ");
|
|
return NOMAIL;
|
|
}
|
|
YY_BREAK
|
|
case 44:
|
|
YY_RULE_SETUP
|
|
#line 557 "toke.l"
|
|
{
|
|
LEXTRACE("FOLLOW ");
|
|
return FOLLOWLNK;
|
|
}
|
|
YY_BREAK
|
|
case 45:
|
|
YY_RULE_SETUP
|
|
#line 562 "toke.l"
|
|
{
|
|
LEXTRACE("NOFOLLOW ");
|
|
return NOFOLLOWLNK;
|
|
}
|
|
YY_BREAK
|
|
case 46:
|
|
YY_RULE_SETUP
|
|
#line 567 "toke.l"
|
|
{
|
|
if (sudoerstext[0] == '+')
|
|
sudoers_errstr = N_("empty netgroup");
|
|
else
|
|
sudoers_errstr = N_("empty group");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
YY_BREAK
|
|
case 47:
|
|
YY_RULE_SETUP
|
|
#line 576 "toke.l"
|
|
{
|
|
/* netgroup */
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NETGROUP ");
|
|
return NETGROUP;
|
|
}
|
|
YY_BREAK
|
|
case 48:
|
|
YY_RULE_SETUP
|
|
#line 584 "toke.l"
|
|
{
|
|
/* group */
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("USERGROUP ");
|
|
return USERGROUP;
|
|
}
|
|
YY_BREAK
|
|
case 49:
|
|
YY_RULE_SETUP
|
|
#line 592 "toke.l"
|
|
{
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NTWKADDR ");
|
|
return NTWKADDR;
|
|
}
|
|
YY_BREAK
|
|
case 50:
|
|
YY_RULE_SETUP
|
|
#line 599 "toke.l"
|
|
{
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NTWKADDR ");
|
|
return NTWKADDR;
|
|
}
|
|
YY_BREAK
|
|
case 51:
|
|
YY_RULE_SETUP
|
|
#line 606 "toke.l"
|
|
{
|
|
if (!ipv6_valid(sudoerstext)) {
|
|
sudoers_errstr = N_("invalid IPv6 address");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NTWKADDR ");
|
|
return NTWKADDR;
|
|
}
|
|
YY_BREAK
|
|
case 52:
|
|
YY_RULE_SETUP
|
|
#line 618 "toke.l"
|
|
{
|
|
if (!ipv6_valid(sudoerstext)) {
|
|
sudoers_errstr = N_("invalid IPv6 address");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NTWKADDR ");
|
|
return NTWKADDR;
|
|
}
|
|
YY_BREAK
|
|
case 53:
|
|
YY_RULE_SETUP
|
|
#line 630 "toke.l"
|
|
{
|
|
LEXTRACE("ALL ");
|
|
return ALL;
|
|
|
|
}
|
|
YY_BREAK
|
|
case 54:
|
|
YY_RULE_SETUP
|
|
#line 636 "toke.l"
|
|
{
|
|
LEXTRACE("CMND_TIMEOUT ");
|
|
return CMND_TIMEOUT;
|
|
}
|
|
YY_BREAK
|
|
case 55:
|
|
YY_RULE_SETUP
|
|
#line 641 "toke.l"
|
|
{
|
|
LEXTRACE("NOTBEFORE ");
|
|
return NOTBEFORE;
|
|
}
|
|
YY_BREAK
|
|
case 56:
|
|
YY_RULE_SETUP
|
|
#line 646 "toke.l"
|
|
{
|
|
LEXTRACE("NOTAFTER ");
|
|
return NOTAFTER;
|
|
}
|
|
YY_BREAK
|
|
case 57:
|
|
YY_RULE_SETUP
|
|
#line 651 "toke.l"
|
|
{
|
|
LEXTRACE("CWD ");
|
|
prev_state = YY_START;
|
|
BEGIN EXPECTPATH;
|
|
return CWD;
|
|
}
|
|
YY_BREAK
|
|
case 58:
|
|
YY_RULE_SETUP
|
|
#line 658 "toke.l"
|
|
{
|
|
LEXTRACE("CHROOT ");
|
|
prev_state = YY_START;
|
|
BEGIN EXPECTPATH;
|
|
return CHROOT;
|
|
}
|
|
YY_BREAK
|
|
case 59:
|
|
YY_RULE_SETUP
|
|
#line 665 "toke.l"
|
|
{
|
|
#ifdef HAVE_SELINUX
|
|
LEXTRACE("ROLE ");
|
|
return ROLE;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 60:
|
|
YY_RULE_SETUP
|
|
#line 674 "toke.l"
|
|
{
|
|
#ifdef HAVE_SELINUX
|
|
LEXTRACE("TYPE ");
|
|
return TYPE;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 61:
|
|
YY_RULE_SETUP
|
|
#line 682 "toke.l"
|
|
{
|
|
#ifdef HAVE_APPARMOR
|
|
LEXTRACE("APPARMOR_PROFILE ");
|
|
return APPARMOR_PROFILE;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 62:
|
|
YY_RULE_SETUP
|
|
#line 690 "toke.l"
|
|
{
|
|
#ifdef HAVE_PRIV_SET
|
|
LEXTRACE("PRIVS ");
|
|
return PRIVS;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 63:
|
|
YY_RULE_SETUP
|
|
#line 699 "toke.l"
|
|
{
|
|
#ifdef HAVE_PRIV_SET
|
|
LEXTRACE("LIMITPRIVS ");
|
|
return LIMITPRIVS;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 64:
|
|
YY_RULE_SETUP
|
|
#line 708 "toke.l"
|
|
{
|
|
got_alias:
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("ALIAS ");
|
|
return ALIAS;
|
|
}
|
|
YY_BREAK
|
|
case 65:
|
|
YY_RULE_SETUP
|
|
#line 716 "toke.l"
|
|
{
|
|
/* XXX - no way to specify digest for command */
|
|
/* no command args allowed for Defaults!/path */
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("COMMAND ");
|
|
return COMMAND;
|
|
}
|
|
YY_BREAK
|
|
case 66:
|
|
YY_RULE_SETUP
|
|
#line 725 "toke.l"
|
|
{
|
|
digest_type = SUDO_DIGEST_SHA224;
|
|
BEGIN WANTDIGEST;
|
|
LEXTRACE("SHA224_TOK ");
|
|
return SHA224_TOK;
|
|
}
|
|
YY_BREAK
|
|
case 67:
|
|
YY_RULE_SETUP
|
|
#line 732 "toke.l"
|
|
{
|
|
digest_type = SUDO_DIGEST_SHA256;
|
|
BEGIN WANTDIGEST;
|
|
LEXTRACE("SHA256_TOK ");
|
|
return SHA256_TOK;
|
|
}
|
|
YY_BREAK
|
|
case 68:
|
|
YY_RULE_SETUP
|
|
#line 739 "toke.l"
|
|
{
|
|
digest_type = SUDO_DIGEST_SHA384;
|
|
BEGIN WANTDIGEST;
|
|
LEXTRACE("SHA384_TOK ");
|
|
return SHA384_TOK;
|
|
}
|
|
YY_BREAK
|
|
case 69:
|
|
YY_RULE_SETUP
|
|
#line 746 "toke.l"
|
|
{
|
|
digest_type = SUDO_DIGEST_SHA512;
|
|
BEGIN WANTDIGEST;
|
|
LEXTRACE("SHA512_TOK ");
|
|
return SHA512_TOK;
|
|
}
|
|
YY_BREAK
|
|
case 70:
|
|
YY_RULE_SETUP
|
|
#line 753 "toke.l"
|
|
{
|
|
/* No command line args. */
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
return COMMAND;
|
|
} /* sudo -l -U otheruser */
|
|
YY_BREAK
|
|
case 71:
|
|
YY_RULE_SETUP
|
|
#line 761 "toke.l"
|
|
{
|
|
BEGIN GOTCMND;
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
} /* sudo -e */
|
|
YY_BREAK
|
|
case 72:
|
|
YY_RULE_SETUP
|
|
#line 768 "toke.l"
|
|
{
|
|
BEGIN prev_state;
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("WORD(5) ");
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
case 73:
|
|
YY_RULE_SETUP
|
|
#line 776 "toke.l"
|
|
{
|
|
/* directories can't have args... */
|
|
if (sudoerstext[sudoersleng - 1] == '/') {
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
return COMMAND;
|
|
}
|
|
BEGIN GOTCMND;
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
} /* a pathname */
|
|
YY_BREAK
|
|
case 74:
|
|
YY_RULE_SETUP
|
|
#line 790 "toke.l"
|
|
{
|
|
if (sudoers_strict) {
|
|
if (!sudo_regex_compile(NULL, sudoerstext, &sudoers_errstr)) {
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
}
|
|
BEGIN GOTCMND;
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
} /* a regex */
|
|
YY_BREAK
|
|
case 75:
|
|
YY_RULE_SETUP
|
|
#line 803 "toke.l"
|
|
{
|
|
LEXTRACE("BEGINSTR ");
|
|
sudoerslval.string = NULL;
|
|
prev_state = YY_START;
|
|
BEGIN INSTR;
|
|
}
|
|
YY_BREAK
|
|
case 76:
|
|
YY_RULE_SETUP
|
|
#line 810 "toke.l"
|
|
{
|
|
/* a word */
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("WORD(6) ");
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
|
|
case 77:
|
|
YY_RULE_SETUP
|
|
#line 819 "toke.l"
|
|
{
|
|
/* include file/directory */
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
BEGIN INITIAL;
|
|
LEXTRACE("WORD(7) ");
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
case 78:
|
|
YY_RULE_SETUP
|
|
#line 828 "toke.l"
|
|
{
|
|
LEXTRACE("BEGINSTR ");
|
|
sudoerslval.string = NULL;
|
|
prev_state = INITIAL;
|
|
BEGIN INSTR;
|
|
}
|
|
YY_BREAK
|
|
|
|
case 79:
|
|
YY_RULE_SETUP
|
|
#line 836 "toke.l"
|
|
{
|
|
LEXTRACE("( ");
|
|
return '(';
|
|
}
|
|
YY_BREAK
|
|
case 80:
|
|
YY_RULE_SETUP
|
|
#line 841 "toke.l"
|
|
{
|
|
LEXTRACE(") ");
|
|
return ')';
|
|
}
|
|
YY_BREAK
|
|
case 81:
|
|
YY_RULE_SETUP
|
|
#line 846 "toke.l"
|
|
{
|
|
LEXTRACE(", ");
|
|
return ',';
|
|
} /* return ',' */
|
|
YY_BREAK
|
|
case 82:
|
|
YY_RULE_SETUP
|
|
#line 851 "toke.l"
|
|
{
|
|
LEXTRACE("= ");
|
|
return '=';
|
|
} /* return '=' */
|
|
YY_BREAK
|
|
case 83:
|
|
YY_RULE_SETUP
|
|
#line 856 "toke.l"
|
|
{
|
|
LEXTRACE(": ");
|
|
return ':';
|
|
} /* return ':' */
|
|
YY_BREAK
|
|
case 84:
|
|
YY_RULE_SETUP
|
|
#line 861 "toke.l"
|
|
{
|
|
if (sudoersleng & 1) {
|
|
LEXTRACE("!");
|
|
return '!'; /* return '!' */
|
|
}
|
|
}
|
|
YY_BREAK
|
|
case 85:
|
|
/* rule 85 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 868 "toke.l"
|
|
{
|
|
if (YY_START == INSTR) {
|
|
/* throw away old string */
|
|
parser_leak_remove(LEAK_PTR, sudoerslval.string);
|
|
free(sudoerslval.string);
|
|
/* re-scan after changing state */
|
|
BEGIN INITIAL;
|
|
sudoersless(0);
|
|
sudoers_errstr = N_("unexpected line break in string");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
BEGIN INITIAL;
|
|
sudolineno++;
|
|
continued = false;
|
|
LEXTRACE("\n");
|
|
return '\n';
|
|
} /* return newline */
|
|
YY_BREAK
|
|
case 86:
|
|
YY_RULE_SETUP
|
|
#line 887 "toke.l"
|
|
{ /* throw away space/tabs */
|
|
sawspace = true; /* but remember for fill_args */
|
|
}
|
|
YY_BREAK
|
|
case 87:
|
|
/* rule 87 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 891 "toke.l"
|
|
{
|
|
sawspace = true; /* remember for fill_args */
|
|
sudolineno++;
|
|
continued = true;
|
|
} /* throw away EOL after \ */
|
|
YY_BREAK
|
|
case 88:
|
|
/* rule 88 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 897 "toke.l"
|
|
{
|
|
if (sudoerstext[sudoersleng - 1] == '\n') {
|
|
/* comment ending in a newline */
|
|
BEGIN INITIAL;
|
|
sudolineno++;
|
|
continued = false;
|
|
} else if (!feof(sudoersin)) {
|
|
sudoers_errstr = strerror(errno);
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
LEXTRACE("#\n");
|
|
return '\n';
|
|
} /* comment, not uid/gid */
|
|
YY_BREAK
|
|
case 89:
|
|
YY_RULE_SETUP
|
|
#line 912 "toke.l"
|
|
{
|
|
LEXTRACE("NOMATCH ");
|
|
return NOMATCH;
|
|
} /* parse error, no matching token */
|
|
YY_BREAK
|
|
case YY_STATE_EOF(INITIAL):
|
|
case YY_STATE_EOF(GOTDEFS):
|
|
case YY_STATE_EOF(GOTCMND):
|
|
case YY_STATE_EOF(GOTREGEX):
|
|
case YY_STATE_EOF(STARTDEFS):
|
|
case YY_STATE_EOF(INDEFS):
|
|
case YY_STATE_EOF(INSTR):
|
|
case YY_STATE_EOF(WANTDIGEST):
|
|
case YY_STATE_EOF(GOTINC):
|
|
case YY_STATE_EOF(EXPECTPATH):
|
|
#line 917 "toke.l"
|
|
{
|
|
if (!pop_include())
|
|
yyterminate();
|
|
}
|
|
YY_BREAK
|
|
case 90:
|
|
YY_RULE_SETUP
|
|
#line 922 "toke.l"
|
|
ECHO;
|
|
YY_BREAK
|
|
#line 4507 "toke.c"
|
|
|
|
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 sudoersin at a new source and called
|
|
* sudoerslex(). 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 = sudoersin;
|
|
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 ( sudoerswrap( ) )
|
|
{
|
|
/* Note: because we've taken care in
|
|
* yy_get_next_buffer() to have set up
|
|
* sudoerstext, 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 sudoerslex */
|
|
|
|
/* 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);
|
|
int 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 = (int) ((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
|
|
{
|
|
yy_size_t 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. */
|
|
sudoersrealloc((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;
|
|
sudoersrestart(sudoersin );
|
|
}
|
|
|
|
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 *) sudoersrealloc((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()" );
|
|
/* "- 2" to take care of EOB's */
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
|
|
}
|
|
|
|
(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);
|
|
yy_current_state += YY_AT_BOL();
|
|
|
|
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 >= 1254 )
|
|
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 >= 1254 )
|
|
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 == 1253);
|
|
|
|
return yy_is_jam ? 0 : yy_current_state;
|
|
}
|
|
|
|
#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. */
|
|
sudoersrestart(sudoersin );
|
|
|
|
FALLTHROUGH;
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
{
|
|
if ( sudoerswrap( ) )
|
|
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 sudoerstext */
|
|
(yy_hold_char) = *++(yy_c_buf_p);
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n');
|
|
|
|
return c;
|
|
}
|
|
#endif /* ifndef YY_NO_INPUT */
|
|
|
|
/** Immediately switch to a different input stream.
|
|
* @param input_file A readable stream.
|
|
*
|
|
* @note This function does not reset the start condition to @c INITIAL .
|
|
*/
|
|
void sudoersrestart (FILE * input_file )
|
|
{
|
|
|
|
if ( ! YY_CURRENT_BUFFER ){
|
|
sudoersensure_buffer_stack ();
|
|
YY_CURRENT_BUFFER_LVALUE =
|
|
sudoers_create_buffer(sudoersin,YY_BUF_SIZE );
|
|
}
|
|
|
|
sudoers_init_buffer(YY_CURRENT_BUFFER,input_file );
|
|
sudoers_load_buffer_state( );
|
|
}
|
|
|
|
/** Switch to a different input buffer.
|
|
* @param new_buffer The new input buffer.
|
|
*
|
|
*/
|
|
void sudoers_switch_to_buffer (YY_BUFFER_STATE new_buffer )
|
|
{
|
|
|
|
/* TODO. We should be able to replace this entire function body
|
|
* with
|
|
* sudoerspop_buffer_state();
|
|
* sudoerspush_buffer_state(new_buffer);
|
|
*/
|
|
sudoersensure_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;
|
|
sudoers_load_buffer_state( );
|
|
|
|
/* We don't actually know whether we did this switch during
|
|
* EOF (sudoerswrap()) processing, but the only time this flag
|
|
* is looked at is after sudoerswrap() is called, so it's safe
|
|
* to go ahead and always set it.
|
|
*/
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
}
|
|
|
|
static void sudoers_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;
|
|
sudoersin = 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 sudoers_create_buffer (FILE * file, int size )
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
|
|
b = (YY_BUFFER_STATE) sudoersalloc(sizeof( struct yy_buffer_state ) );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoers_create_buffer()" );
|
|
|
|
b->yy_buf_size = size;
|
|
|
|
/* yy_ch_buf has to be 2 characters longer than the size given because
|
|
* we need to put in 2 end-of-buffer characters.
|
|
*/
|
|
b->yy_ch_buf = (char *) sudoersalloc(b->yy_buf_size + 2 );
|
|
if ( ! b->yy_ch_buf )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoers_create_buffer()" );
|
|
|
|
b->yy_is_our_buffer = 1;
|
|
|
|
sudoers_init_buffer(b,file );
|
|
|
|
return b;
|
|
}
|
|
|
|
/** Destroy the buffer.
|
|
* @param b a buffer created with sudoers_create_buffer()
|
|
*
|
|
*/
|
|
void sudoers_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 )
|
|
sudoersfree((void *) b->yy_ch_buf );
|
|
|
|
sudoersfree((void *) b );
|
|
}
|
|
|
|
/* Initializes or reinitializes a buffer.
|
|
* This function is sometimes called more than once on the same buffer,
|
|
* such as during a sudoersrestart() or at EOF.
|
|
*/
|
|
static void sudoers_init_buffer (YY_BUFFER_STATE b, FILE * file )
|
|
|
|
{
|
|
int oerrno = errno;
|
|
|
|
sudoers_flush_buffer(b );
|
|
|
|
b->yy_input_file = file;
|
|
b->yy_fill_buffer = 1;
|
|
|
|
/* If b is the current buffer, then sudoers_init_buffer was _probably_
|
|
* called from sudoersrestart() 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 sudoers_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 )
|
|
sudoers_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 sudoerspush_buffer_state (YY_BUFFER_STATE new_buffer )
|
|
{
|
|
if (new_buffer == NULL)
|
|
return;
|
|
|
|
sudoersensure_buffer_stack();
|
|
|
|
/* This block is copied from sudoers_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 sudoers_switch_to_buffer. */
|
|
sudoers_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 sudoerspop_buffer_state (void)
|
|
{
|
|
if (!YY_CURRENT_BUFFER)
|
|
return;
|
|
|
|
sudoers_delete_buffer(YY_CURRENT_BUFFER );
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
if ((yy_buffer_stack_top) > 0)
|
|
--(yy_buffer_stack_top);
|
|
|
|
if (YY_CURRENT_BUFFER) {
|
|
sudoers_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 sudoersensure_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;
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)sudoersalloc
|
|
(num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
);
|
|
if ( ! (yy_buffer_stack) )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoersensure_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. */
|
|
int grow_size = 8 /* arbitrary grow size */;
|
|
|
|
num_to_alloc = (yy_buffer_stack_max) + grow_size;
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)sudoersrealloc
|
|
((yy_buffer_stack),
|
|
num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
);
|
|
if ( ! (yy_buffer_stack) )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoersensure_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 sudoers_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) sudoersalloc(sizeof( struct yy_buffer_state ) );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoers_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;
|
|
|
|
sudoers_switch_to_buffer(b );
|
|
|
|
return b;
|
|
}
|
|
|
|
/** Setup the input buffer state to scan a string. The next call to sudoerslex() 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
|
|
* sudoers_scan_bytes() instead.
|
|
*/
|
|
YY_BUFFER_STATE sudoers_scan_string (yyconst char * yystr )
|
|
{
|
|
|
|
return sudoers_scan_bytes(yystr,strlen(yystr) );
|
|
}
|
|
|
|
/** Setup the input buffer state to scan the given bytes. The next call to sudoerslex() 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 sudoers_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 *) sudoersalloc(n );
|
|
if ( ! buf )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoers_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 = sudoers_scan_buffer(buf,n );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "bad buffer in sudoers_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 sudoerstext. */ \
|
|
int yyless_macro_arg = (n); \
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
sudoerstext[sudoersleng] = (yy_hold_char); \
|
|
(yy_c_buf_p) = sudoerstext + yyless_macro_arg; \
|
|
(yy_hold_char) = *(yy_c_buf_p); \
|
|
*(yy_c_buf_p) = '\0'; \
|
|
sudoersleng = yyless_macro_arg; \
|
|
} \
|
|
while ( 0 )
|
|
|
|
/* Accessor methods (get/set functions) to struct members. */
|
|
|
|
/** Get the current line number.
|
|
*
|
|
*/
|
|
int sudoersget_lineno (void)
|
|
{
|
|
|
|
return sudoerslineno;
|
|
}
|
|
|
|
/** Get the input stream.
|
|
*
|
|
*/
|
|
FILE *sudoersget_in (void)
|
|
{
|
|
return sudoersin;
|
|
}
|
|
|
|
/** Get the output stream.
|
|
*
|
|
*/
|
|
FILE *sudoersget_out (void)
|
|
{
|
|
return sudoersout;
|
|
}
|
|
|
|
/** Get the length of the current token.
|
|
*
|
|
*/
|
|
yy_size_t sudoersget_leng (void)
|
|
{
|
|
return sudoersleng;
|
|
}
|
|
|
|
/** Get the current token.
|
|
*
|
|
*/
|
|
|
|
char *sudoersget_text (void)
|
|
{
|
|
return sudoerstext;
|
|
}
|
|
|
|
/** Set the current line number.
|
|
* @param line_number
|
|
*
|
|
*/
|
|
void sudoersset_lineno (int line_number )
|
|
{
|
|
|
|
sudoerslineno = line_number;
|
|
}
|
|
|
|
/** Set the input stream. This does not discard the current
|
|
* input buffer.
|
|
* @param in_str A readable stream.
|
|
*
|
|
* @see sudoers_switch_to_buffer
|
|
*/
|
|
void sudoersset_in (FILE * in_str )
|
|
{
|
|
sudoersin = in_str ;
|
|
}
|
|
|
|
void sudoersset_out (FILE * out_str )
|
|
{
|
|
sudoersout = out_str ;
|
|
}
|
|
|
|
int sudoersget_debug (void)
|
|
{
|
|
return sudoers_flex_debug;
|
|
}
|
|
|
|
void sudoersset_debug (int bdebug )
|
|
{
|
|
sudoers_flex_debug = bdebug ;
|
|
}
|
|
|
|
static int yy_init_globals (void)
|
|
{
|
|
/* Initialization is the same as for the non-reentrant scanner.
|
|
* This function is called from sudoerslex_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
|
|
sudoersin = stdin;
|
|
sudoersout = stdout;
|
|
#else
|
|
sudoersin = (FILE *) 0;
|
|
sudoersout = (FILE *) 0;
|
|
#endif
|
|
|
|
/* For future reference: Set errno on error, since we are called by
|
|
* sudoerslex_init()
|
|
*/
|
|
return 0;
|
|
}
|
|
|
|
/* sudoerslex_destroy is for both reentrant and non-reentrant scanners. */
|
|
int sudoerslex_destroy (void)
|
|
{
|
|
|
|
/* Pop the buffer stack, destroying each element. */
|
|
while(YY_CURRENT_BUFFER){
|
|
sudoers_delete_buffer(YY_CURRENT_BUFFER );
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
sudoerspop_buffer_state();
|
|
}
|
|
|
|
/* Destroy the stack itself. */
|
|
sudoersfree((yy_buffer_stack) );
|
|
(yy_buffer_stack) = NULL;
|
|
|
|
/* Reset the globals. This is important in a non-reentrant scanner so the next time
|
|
* sudoerslex() 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 *sudoersalloc (yy_size_t size )
|
|
{
|
|
return (void *) malloc( size );
|
|
}
|
|
|
|
void *sudoersrealloc (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 sudoersfree (void * ptr )
|
|
{
|
|
free( (char *) ptr ); /* see sudoersrealloc() for (char *) cast */
|
|
}
|
|
|
|
#define YYTABLES_NAME "yytables"
|
|
|
|
#line 922 "toke.l"
|
|
|
|
|
|
struct path_list {
|
|
SLIST_ENTRY(path_list) entries;
|
|
char *path;
|
|
};
|
|
|
|
SLIST_HEAD(path_list_head, path_list);
|
|
|
|
struct include_stack {
|
|
struct sudolinebuf line;
|
|
YY_BUFFER_STATE bs;
|
|
char *path;
|
|
struct path_list_head more; /* more files in case of includedir */
|
|
int lineno;
|
|
bool keepopen;
|
|
};
|
|
|
|
/*
|
|
* Compare two struct path_list structs in reverse order.
|
|
*/
|
|
static int
|
|
pl_compare(const void *v1, const void *v2)
|
|
{
|
|
const struct path_list * const *p1 = v1;
|
|
const struct path_list * const *p2 = v2;
|
|
|
|
return strcmp((*p2)->path, (*p1)->path);
|
|
}
|
|
|
|
/*
|
|
* Open dirpath and fill in pathsp with an array of regular files
|
|
* that do not end in '~' or contain a '.'.
|
|
* Returns the number of files or -1 on error.
|
|
* If zero files are found, NULL is stored in pathsp.
|
|
*/
|
|
static int
|
|
read_dir_files(const char *dirpath, struct path_list ***pathsp)
|
|
{
|
|
DIR *dir;
|
|
int i, count = 0;
|
|
int max_paths = 32;
|
|
struct dirent *dent;
|
|
struct path_list **paths = NULL;
|
|
const size_t dirlen = strlen(dirpath);
|
|
debug_decl(read_dir_files, SUDOERS_DEBUG_PARSER);
|
|
|
|
dir = opendir(dirpath);
|
|
if (dir == NULL) {
|
|
if (errno == ENOENT)
|
|
goto done;
|
|
sudo_warn("%s", dirpath);
|
|
goto bad;
|
|
}
|
|
paths = reallocarray(NULL, max_paths, sizeof(*paths));
|
|
if (paths == NULL)
|
|
goto oom;
|
|
while ((dent = readdir(dir)) != NULL) {
|
|
const size_t namelen = NAMLEN(dent);
|
|
struct path_list *pl;
|
|
struct stat sb;
|
|
size_t len;
|
|
char *path;
|
|
|
|
/* Ignore files that end in '~' or have a '.' in them. */
|
|
if (namelen == 0 || dent->d_name[namelen - 1] == '~'
|
|
|| strchr(dent->d_name, '.') != NULL) {
|
|
continue;
|
|
}
|
|
len = dirlen + 1 + namelen;
|
|
if ((path = sudo_rcstr_alloc(len)) == NULL)
|
|
goto oom;
|
|
if ((size_t)snprintf(path, len + 1, "%s/%s", dirpath, dent->d_name) != len) {
|
|
sudo_warnx(U_("internal error, %s overflow"), __func__);
|
|
sudo_rcstr_delref(path);
|
|
goto bad;
|
|
}
|
|
if (stat(path, &sb) != 0 || !S_ISREG(sb.st_mode)) {
|
|
sudo_rcstr_delref(path);
|
|
continue;
|
|
}
|
|
pl = malloc(sizeof(*pl));
|
|
if (pl == NULL) {
|
|
sudo_rcstr_delref(path);
|
|
goto oom;
|
|
}
|
|
pl->path = path;
|
|
if (count >= max_paths) {
|
|
struct path_list **tmp;
|
|
max_paths <<= 1;
|
|
tmp = reallocarray(paths, max_paths, sizeof(*paths));
|
|
if (tmp == NULL) {
|
|
sudo_rcstr_delref(path);
|
|
free(pl);
|
|
goto oom;
|
|
}
|
|
paths = tmp;
|
|
}
|
|
paths[count++] = pl;
|
|
}
|
|
closedir(dir);
|
|
if (count == 0) {
|
|
free(paths);
|
|
paths = NULL;
|
|
}
|
|
done:
|
|
*pathsp = paths;
|
|
debug_return_int(count);
|
|
oom:
|
|
sudo_warnx(U_("%s: %s"), __func__, U_("unable to allocate memory"));
|
|
bad:
|
|
sudoerserror(NULL);
|
|
if (dir != NULL)
|
|
closedir(dir);
|
|
for (i = 0; i < count; i++) {
|
|
sudo_rcstr_delref(paths[i]->path);
|
|
free(paths[i]);
|
|
}
|
|
free(paths);
|
|
debug_return_int(-1);
|
|
}
|
|
|
|
/*
|
|
* Push a list of all files in dirpath onto stack.
|
|
* Returns the number of files or -1 on error.
|
|
*/
|
|
static int
|
|
switch_dir(struct include_stack *stack, char *dirpath)
|
|
{
|
|
struct path_list **paths = NULL;
|
|
int count, i;
|
|
debug_decl(switch_dir, SUDOERS_DEBUG_PARSER);
|
|
|
|
count = read_dir_files(dirpath, &paths);
|
|
if (count > 0) {
|
|
/* Sort the list as an array in reverse order. */
|
|
qsort(paths, count, sizeof(*paths), pl_compare);
|
|
|
|
/* Build up the list in sorted order. */
|
|
for (i = 0; i < count; i++) {
|
|
SLIST_INSERT_HEAD(&stack->more, paths[i], entries);
|
|
}
|
|
free(paths);
|
|
}
|
|
|
|
debug_return_int(count);
|
|
}
|
|
|
|
#define MAX_SUDOERS_DEPTH 128
|
|
#define SUDOERS_STACK_INCREMENT 16
|
|
|
|
static size_t istacksize, idepth;
|
|
static struct include_stack *istack;
|
|
static bool keepopen;
|
|
|
|
void
|
|
init_lexer(void)
|
|
{
|
|
struct path_list *pl;
|
|
debug_decl(init_lexer, SUDOERS_DEBUG_PARSER);
|
|
|
|
#ifndef TRACELEXER
|
|
free(trace_lbuf.buf);
|
|
sudo_lbuf_init(&trace_lbuf, NULL, 0, NULL, 0);
|
|
#endif
|
|
|
|
while (idepth) {
|
|
idepth--;
|
|
while ((pl = SLIST_FIRST(&istack[idepth].more)) != NULL) {
|
|
SLIST_REMOVE_HEAD(&istack[idepth].more, entries);
|
|
sudo_rcstr_delref(pl->path);
|
|
free(pl);
|
|
}
|
|
sudo_rcstr_delref(istack[idepth].path);
|
|
if (idepth && !istack[idepth].keepopen)
|
|
fclose(istack[idepth].bs->yy_input_file);
|
|
sudoers_delete_buffer(istack[idepth].bs);
|
|
free(istack[idepth].line.buf);
|
|
}
|
|
free(istack);
|
|
istack = NULL;
|
|
istacksize = idepth = 0;
|
|
free(sudolinebuf.buf);
|
|
memset(&sudolinebuf, 0, sizeof(sudolinebuf));
|
|
sudolineno = 1;
|
|
keepopen = false;
|
|
sawspace = false;
|
|
continued = false;
|
|
digest_type = -1;
|
|
prev_state = INITIAL;
|
|
BEGIN INITIAL;
|
|
|
|
debug_return;
|
|
}
|
|
|
|
/*
|
|
* Expand any embedded %h (host) escapes in the given path and makes
|
|
* a relative path fully-qualified based on the current sudoers file.
|
|
* Returns a reference-counted string.
|
|
*/
|
|
static char *
|
|
expand_include(const char *opath)
|
|
{
|
|
const char *cp, *ep;
|
|
char *path, *pp;
|
|
size_t len, olen, dirlen = 0;
|
|
bool subst = false;
|
|
debug_decl(expand_include, SUDOERS_DEBUG_PARSER);
|
|
|
|
/* Strip double quotes if present. */
|
|
olen = strlen(opath);
|
|
if (olen > 1 && opath[0] == '"' && opath[olen - 1] == '"') {
|
|
opath++;
|
|
olen -= 2;
|
|
}
|
|
if (olen == 0)
|
|
debug_return_ptr(NULL);
|
|
|
|
/* Relative paths are located in the same dir as the sudoers file. */
|
|
if (*opath != '/') {
|
|
char *dirend = strrchr(sudoers, '/');
|
|
if (dirend != NULL)
|
|
dirlen = (size_t)(dirend - sudoers) + 1;
|
|
}
|
|
|
|
cp = opath;
|
|
ep = opath + olen;
|
|
len = olen;
|
|
while (cp < ep) {
|
|
if (cp[0] == '%' && cp[1] == 'h') {
|
|
subst = true;
|
|
len += strlen(user_shost);
|
|
cp += 2;
|
|
continue;
|
|
}
|
|
cp++;
|
|
}
|
|
|
|
/* Make a copy of the fully-qualified path and return it. */
|
|
path = pp = sudo_rcstr_alloc(dirlen + len);
|
|
if (path == NULL) {
|
|
sudo_warnx(U_("%s: %s"), __func__, U_("unable to allocate memory"));
|
|
sudoerserror(NULL);
|
|
debug_return_str(NULL);
|
|
}
|
|
if (dirlen) {
|
|
memcpy(path, sudoers, dirlen);
|
|
pp += dirlen;
|
|
}
|
|
if (subst) {
|
|
/* substitute for %h */
|
|
cp = opath;
|
|
while (cp < ep) {
|
|
if (cp[0] == '%' && cp[1] == 'h') {
|
|
size_t n = strlcpy(pp, user_shost, len + 1);
|
|
if (n >= len + 1)
|
|
goto oflow;
|
|
cp += 2;
|
|
pp += n;
|
|
len -= n;
|
|
continue;
|
|
}
|
|
if (len < 1)
|
|
goto oflow;
|
|
*pp++ = *cp++;
|
|
len--;
|
|
}
|
|
*pp = '\0';
|
|
} else {
|
|
memcpy(pp, opath, len);
|
|
pp[len] = '\0';
|
|
}
|
|
|
|
debug_return_str(path);
|
|
oflow:
|
|
sudo_warnx(U_("internal error, %s overflow"), __func__);
|
|
sudoerserror(NULL);
|
|
sudo_rcstr_delref(path);
|
|
debug_return_str(NULL);
|
|
}
|
|
|
|
/*
|
|
* Open an include file (or file from a directory), push the old
|
|
* sudoers file buffer and switch to the new one.
|
|
* A missing or insecure include dir is simply ignored.
|
|
* Returns false on error, else true.
|
|
*/
|
|
bool
|
|
push_include(const char *opath, bool isdir)
|
|
{
|
|
struct path_list *pl;
|
|
char *path;
|
|
FILE *fp;
|
|
debug_decl(push_include, SUDOERS_DEBUG_PARSER);
|
|
|
|
if ((path = expand_include(opath)) == NULL)
|
|
debug_return_bool(false);
|
|
|
|
/* push current state onto stack */
|
|
if (idepth >= istacksize) {
|
|
struct include_stack *new_istack;
|
|
|
|
if (idepth > MAX_SUDOERS_DEPTH) {
|
|
if (sudoers_warnings)
|
|
sudo_warnx(U_("%s: %s"), path, U_("too many levels of includes"));
|
|
sudoerserror(NULL);
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(false);
|
|
}
|
|
istacksize += SUDOERS_STACK_INCREMENT;
|
|
new_istack = reallocarray(istack, istacksize, sizeof(*istack));
|
|
if (new_istack == NULL) {
|
|
sudo_warnx(U_("%s: %s"), __func__, U_("unable to allocate memory"));
|
|
sudoerserror(NULL);
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(false);
|
|
}
|
|
istack = new_istack;
|
|
}
|
|
SLIST_INIT(&istack[idepth].more);
|
|
if (isdir) {
|
|
struct stat sb;
|
|
int count, status;
|
|
|
|
status = sudo_secure_dir(path, sudoers_uid, sudoers_gid, &sb);
|
|
if (status != SUDO_PATH_SECURE) {
|
|
if (sudoers_warnings) {
|
|
switch (status) {
|
|
case SUDO_PATH_BAD_TYPE:
|
|
errno = ENOTDIR;
|
|
sudo_warn("%s", path);
|
|
break;
|
|
case SUDO_PATH_WRONG_OWNER:
|
|
sudo_warnx(U_("%s is owned by uid %u, should be %u"),
|
|
path, (unsigned int) sb.st_uid,
|
|
(unsigned int) sudoers_uid);
|
|
break;
|
|
case SUDO_PATH_WORLD_WRITABLE:
|
|
sudo_warnx(U_("%s is world writable"), path);
|
|
break;
|
|
case SUDO_PATH_GROUP_WRITABLE:
|
|
sudo_warnx(U_("%s is owned by gid %u, should be %u"),
|
|
path, (unsigned int) sb.st_gid,
|
|
(unsigned int) sudoers_gid);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
/* A missing or insecure include dir is not a fatal error. */
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(true);
|
|
}
|
|
count = switch_dir(&istack[idepth], path);
|
|
if (count <= 0) {
|
|
/* switch_dir() called sudoerserror() for us */
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(count ? false : true);
|
|
}
|
|
|
|
/* Parse the first dir entry we can open, leave the rest for later. */
|
|
do {
|
|
sudo_rcstr_delref(path);
|
|
if ((pl = SLIST_FIRST(&istack[idepth].more)) == NULL) {
|
|
/* Unable to open any files in include dir, not an error. */
|
|
debug_return_bool(true);
|
|
}
|
|
SLIST_REMOVE_HEAD(&istack[idepth].more, entries);
|
|
path = pl->path;
|
|
free(pl);
|
|
} while ((fp = open_sudoers(path, false, &keepopen)) == NULL);
|
|
} else {
|
|
if ((fp = open_sudoers(path, true, &keepopen)) == NULL) {
|
|
/* The error was already printed by open_sudoers() */
|
|
sudoerserror(NULL);
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(false);
|
|
}
|
|
}
|
|
/* Push the old (current) file and open the new one. */
|
|
istack[idepth].path = sudoers; /* push old path (and its ref) */
|
|
istack[idepth].line = sudolinebuf;
|
|
istack[idepth].bs = YY_CURRENT_BUFFER;
|
|
istack[idepth].lineno = sudolineno;
|
|
istack[idepth].keepopen = keepopen;
|
|
idepth++;
|
|
sudolineno = 1;
|
|
sudoers = path;
|
|
sudoers_switch_to_buffer(sudoers_create_buffer(fp, YY_BUF_SIZE));
|
|
memset(&sudolinebuf, 0, sizeof(sudolinebuf));
|
|
|
|
debug_return_bool(true);
|
|
}
|
|
|
|
/*
|
|
* Restore the previous sudoers file and buffer, or, in the case
|
|
* of an includedir, switch to the next file in the dir.
|
|
* Returns false if there is nothing to pop, else true.
|
|
*/
|
|
static bool
|
|
pop_include(void)
|
|
{
|
|
struct path_list *pl;
|
|
FILE *fp;
|
|
debug_decl(pop_include, SUDOERS_DEBUG_PARSER);
|
|
|
|
if (idepth == 0 || YY_CURRENT_BUFFER == NULL)
|
|
debug_return_bool(false);
|
|
|
|
if (!keepopen)
|
|
fclose(YY_CURRENT_BUFFER->yy_input_file);
|
|
sudoers_delete_buffer(YY_CURRENT_BUFFER);
|
|
/* If we are in an include dir, move to the next file. */
|
|
while ((pl = SLIST_FIRST(&istack[idepth - 1].more)) != NULL) {
|
|
SLIST_REMOVE_HEAD(&istack[idepth - 1].more, entries);
|
|
fp = open_sudoers(pl->path, false, &keepopen);
|
|
if (fp != NULL) {
|
|
sudolinebuf.len = sudolinebuf.off = 0;
|
|
sudolinebuf.toke_start = sudolinebuf.toke_end = 0;
|
|
sudo_rcstr_delref(sudoers);
|
|
sudoers = pl->path;
|
|
sudolineno = 1;
|
|
sudoers_switch_to_buffer(sudoers_create_buffer(fp, YY_BUF_SIZE));
|
|
free(pl);
|
|
break;
|
|
}
|
|
/* Unable to open path in include dir, go to next one. */
|
|
sudo_rcstr_delref(pl->path);
|
|
free(pl);
|
|
}
|
|
/* If no path list, just pop the last dir on the stack. */
|
|
if (pl == NULL) {
|
|
idepth--;
|
|
sudoers_switch_to_buffer(istack[idepth].bs);
|
|
free(sudolinebuf.buf);
|
|
sudolinebuf = istack[idepth].line;
|
|
sudo_rcstr_delref(sudoers);
|
|
sudoers = istack[idepth].path;
|
|
sudolineno = istack[idepth].lineno;
|
|
keepopen = istack[idepth].keepopen;
|
|
}
|
|
debug_return_bool(true);
|
|
}
|
|
|
|
#ifdef TRACELEXER
|
|
int
|
|
sudoers_trace_print(const char *msg)
|
|
{
|
|
return fputs(msg, stderr);
|
|
}
|
|
#else
|
|
int
|
|
sudoers_trace_print(const char *msg)
|
|
{
|
|
sudo_lbuf_append(&trace_lbuf, "%s", msg);
|
|
if (strchr(msg, '\n') != NULL)
|
|
{
|
|
/* We already parsed the newline so sudolineno is off by one. */
|
|
sudo_debug_printf2(NULL, NULL, 0, SUDOERS_DEBUG_PARSER|SUDO_DEBUG_DEBUG,
|
|
"sudoerslex: %s:%d: %s", sudoers, sudolineno - 1, trace_lbuf.buf);
|
|
trace_lbuf.len = 0;
|
|
}
|
|
return 0;
|
|
}
|
|
#endif /* TRACELEXER */
|
|
|
|
/*
|
|
* Custom input function that uses getdelim(3) and stores the buffer
|
|
* where the error functions can access it for better reporting.
|
|
* On success, buf is guaranteed to end in a newline and not contain
|
|
* embedded NULs. Calls YY_FATAL_ERROR on error.
|
|
*/
|
|
static yy_size_t
|
|
sudoers_input(char *buf, yy_size_t max_size)
|
|
{
|
|
char *cp;
|
|
size_t avail = sudolinebuf.len - sudolinebuf.off;
|
|
debug_decl(sudoers_input, SUDOERS_DEBUG_PARSER);
|
|
|
|
/* Refill line buffer if needed. */
|
|
if (avail == 0) {
|
|
/*
|
|
* Some getdelim(3) implementations write NUL to buf on EOF.
|
|
* We peek ahead one char to detect EOF and skip the getdelim() call.
|
|
* This will preserve the original value of the last line read.
|
|
*/
|
|
int ch = getc(sudoersin);
|
|
if (ch == EOF)
|
|
goto sudoers_eof;
|
|
ungetc(ch, sudoersin);
|
|
avail = getdelim(&sudolinebuf.buf, &sudolinebuf.size, '\n', sudoersin);
|
|
if (avail == (size_t)-1) {
|
|
sudoers_eof:
|
|
/* EOF or error. */
|
|
if (feof(sudoersin))
|
|
return 0;
|
|
YY_FATAL_ERROR("input in flex scanner failed");
|
|
}
|
|
|
|
/* getdelim() can return embedded NULs, truncate if we find one. */
|
|
cp = memchr(sudolinebuf.buf, '\0', avail);
|
|
if (cp != NULL) {
|
|
*cp++ = '\n';
|
|
*cp = '\0';
|
|
avail = (size_t)(cp - sudolinebuf.buf);
|
|
}
|
|
|
|
/* Add trailing newline if it is missing. */
|
|
if (sudolinebuf.buf[avail - 1] != '\n') {
|
|
if (avail + 2 >= sudolinebuf.size) {
|
|
cp = realloc(sudolinebuf.buf, avail + 2);
|
|
if (cp == NULL) {
|
|
YY_FATAL_ERROR("unable to allocate memory");
|
|
return 0;
|
|
}
|
|
sudolinebuf.buf = cp;
|
|
sudolinebuf.size = avail + 2;
|
|
}
|
|
sudolinebuf.buf[avail++] = '\n';
|
|
sudolinebuf.buf[avail] = '\0';
|
|
}
|
|
|
|
sudo_debug_printf(SUDO_DEBUG_DEBUG, "%s:%d: %.*s", sudoers, sudolineno,
|
|
(int)(avail -1), sudolinebuf.buf);
|
|
|
|
sudolinebuf.len = avail;
|
|
sudolinebuf.off = 0;
|
|
sudolinebuf.toke_start = sudolinebuf.toke_end = 0;
|
|
}
|
|
|
|
if (avail > max_size)
|
|
avail = max_size;
|
|
memcpy(buf, sudolinebuf.buf + sudolinebuf.off, avail);
|
|
sudolinebuf.off += avail;
|
|
|
|
debug_return_size_t(avail);
|
|
}
|
|
|