Difference for common/loader.c from version 1.67 to 1.68


version 1.67 version 1.68
Line 1
 
Line 1
   
 #line 3 "loader.c"  
   
 #define  YY_INT_ALIGNED short int  
   
 /* A lexical scanner generated by flex */  /* A lexical scanner generated by flex */
   
   /* Scanner skeleton version:
    * $Header: /cvsroot/crossfire/crossfire/common/loader.c,v 1.68 2005/08/23 05:42:57 mwedel Exp $
    */
   
 #define FLEX_SCANNER  #define FLEX_SCANNER
 #define YY_FLEX_MAJOR_VERSION 2  #define YY_FLEX_MAJOR_VERSION 2
 #define YY_FLEX_MINOR_VERSION 5  #define YY_FLEX_MINOR_VERSION 5
 #define YY_FLEX_SUBMINOR_VERSION 31  
 #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 <stdio.h>
 #include <string.h>  
 #include <errno.h>  
 #include <stdlib.h>  
   
 /* end standard C headers. */  
   
 /* flex integer type definitions */  /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
   #ifdef c_plusplus
 #ifndef FLEXINT_H  #ifndef __cplusplus
 #define FLEXINT_H  #define __cplusplus
   
 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */  
   
 #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L  
 #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;  
 #endif /* ! C99 */  
   
 /* 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  #endif
 #ifndef UINT32_MAX  
 #define UINT32_MAX             (4294967295U)  
 #endif  #endif
   
 #endif /* ! FLEXINT_H */  
   
 #ifdef __cplusplus  #ifdef __cplusplus
   
   #include <stdlib.h>
   #include <unistd.h>
   
   /* Use prototypes in function declarations. */
   #define YY_USE_PROTOS
   
 /* The "const" storage-class-modifier is valid. */  /* The "const" storage-class-modifier is valid. */
 #define YY_USE_CONST  #define YY_USE_CONST
   
Line 87
 
Line 34
   
 #if __STDC__  #if __STDC__
   
   #define YY_USE_PROTOS
 #define YY_USE_CONST  #define YY_USE_CONST
   
 #endif /* __STDC__ */  #endif /* __STDC__ */
 #endif /* ! __cplusplus */  #endif /* ! __cplusplus */
   
   #ifdef __TURBOC__
    #pragma warn -rch
    #pragma warn -use
   #include <io.h>
   #include <stdlib.h>
   #define YY_USE_CONST
   #define YY_USE_PROTOS
   #endif
   
 #ifdef YY_USE_CONST  #ifdef YY_USE_CONST
 #define yyconst const  #define yyconst const
 #else  #else
 #define yyconst  #define yyconst
 #endif  #endif
   
   
   #ifdef YY_USE_PROTOS
   #define YY_PROTO(proto) proto
   #else
   #define YY_PROTO(proto) ()
   #endif
   
 /* Returned upon end-of-file. */  /* Returned upon end-of-file. */
 #define YY_NULL 0  #define YY_NULL 0
   
Line 112
 
Line 76
  * but we do it the disgusting crufty way forced on us by the ()-less   * but we do it the disgusting crufty way forced on us by the ()-less
  * definition of BEGIN.   * definition of BEGIN.
  */   */
 #define BEGIN (yy_start) = 1 + 2 *  #define BEGIN yy_start = 1 + 2 *
   
 /* Translate the current start state into a value that can be later handed  /* 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   * to BEGIN to return to the state.  The YYSTATE alias is for lex
  * compatibility.   * compatibility.
  */   */
 #define YY_START (((yy_start) - 1) / 2)  #define YY_START ((yy_start - 1) / 2)
 #define YYSTATE YY_START  #define YYSTATE YY_START
   
 /* Action number for EOF rule of a given start state. */  /* Action number for EOF rule of a given start state. */
Line 130
 
Line 94
 #define YY_END_OF_BUFFER_CHAR 0  #define YY_END_OF_BUFFER_CHAR 0
   
 /* Size of default input buffer. */  /* Size of default input buffer. */
 #ifndef YY_BUF_SIZE  
 #define YY_BUF_SIZE 16384  #define YY_BUF_SIZE 16384
 #endif  
   
 #ifndef YY_TYPEDEF_YY_BUFFER_STATE  
 #define YY_TYPEDEF_YY_BUFFER_STATE  
 typedef struct yy_buffer_state *YY_BUFFER_STATE;  typedef struct yy_buffer_state *YY_BUFFER_STATE;
 #endif  
   
 extern int yyleng;  extern int yyleng;
   
 extern FILE *yyin, *yyout;  extern FILE *yyin, *yyout;
   
 #define EOB_ACT_CONTINUE_SCAN 0  #define EOB_ACT_CONTINUE_SCAN 0
 #define EOB_ACT_END_OF_FILE 1  #define EOB_ACT_END_OF_FILE 1
 #define EOB_ACT_LAST_MATCH 2  #define EOB_ACT_LAST_MATCH 2
   
     #define YY_LESS_LINENO(n)  /* The funky do-while in the following #define is used to turn the definition
    * int a single C statement (which needs a semi-colon terminator).  This
    * avoids problems with code like:
    *
    * if ( condition_holds )
    * yyless( 5 );
    * else
    * do_something_else();
    *
    * Prior to using the do-while the compiler would get upset at the
    * "else" because it interpreted the "if" statement as being all
    * done when it reached the ';' after the yyless() call.
    */
   
   /* Return all but the first 'n' matched characters back to the input stream. */
          
 /* Return all but the first "n" matched characters back to the input stream. */  
 #define yyless(n) \  #define yyless(n) \
  do \   do \
  { \   { \
  /* Undo effects of setting up yytext. */ \   /* Undo effects of setting up yytext. */ \
         int yyless_macro_arg = (n); \   *yy_cp = yy_hold_char; \
         YY_LESS_LINENO(yyless_macro_arg);\  
  *yy_cp = (yy_hold_char); \  
  YY_RESTORE_YY_MORE_OFFSET \   YY_RESTORE_YY_MORE_OFFSET \
  (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \   yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
  YY_DO_BEFORE_ACTION; /* set up yytext again */ \   YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  } \   } \
  while ( 0 )   while ( 0 )
   
 #define unput(c) yyunput( c, (yytext_ptr)  )  #define unput(c) yyunput( c, yytext_ptr )
   
 /* The following is because we cannot portably get our hands on size_t  /* The following is because we cannot portably get our hands on size_t
  * (without autoconf's help, which isn't available because we want   * (without autoconf's help, which isn't available because we want
  * flex-generated scanners to compile on their own).   * flex-generated scanners to compile on their own).
  */   */
   
 #ifndef YY_TYPEDEF_YY_SIZE_T  
 #define YY_TYPEDEF_YY_SIZE_T  
 typedef unsigned int yy_size_t;  typedef unsigned int yy_size_t;
 #endif  
   
 #ifndef YY_STRUCT_YY_BUFFER_STATE  
 #define YY_STRUCT_YY_BUFFER_STATE  
 struct yy_buffer_state  struct yy_buffer_state
  {   {
  FILE *yy_input_file;   FILE *yy_input_file;
Line 213
 
Line 177
  */   */
  int yy_at_bol;   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   /* Whether to try to fill the input buffer when we reach the
  * end of it.   * end of it.
  */   */
  int yy_fill_buffer;   int yy_fill_buffer;
   
  int yy_buffer_status;   int yy_buffer_status;
   
 #define YY_BUFFER_NEW 0  #define YY_BUFFER_NEW 0
 #define YY_BUFFER_NORMAL 1  #define YY_BUFFER_NORMAL 1
  /* When an EOF's been seen but there's still some text to process   /* When an EOF's been seen but there's still some text to process
Line 236
 
Line 196
  * just pointing yyin at a new input file.   * just pointing yyin at a new input file.
  */   */
 #define YY_BUFFER_EOF_PENDING 2  #define YY_BUFFER_EOF_PENDING 2
   
  };   };
 #endif /* !YY_STRUCT_YY_BUFFER_STATE */  
   
 /* Stack of input buffers. */  static YY_BUFFER_STATE yy_current_buffer = 0;
 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  /* We provide macros for accessing buffer states in case in the
  * future we want to put the buffer states in a more general   * future we want to put the buffer states in a more general
  * "scanner state".   * "scanner state".
  *  
  * Returns the top of the stack, or NULL.  
  */   */
 #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \  #define YY_CURRENT_BUFFER yy_current_buffer
                           ? (yy_buffer_stack)[(yy_buffer_stack_top)] \  
                           : NULL)  
   
 /* Same as previous macro, but useful when we know that the buffer stack is not  
  * NULL or when we need an lvalue. For internal use only.  
  */  
 #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]  
   
 /* yy_hold_char holds the character lost when yytext is formed. */  /* yy_hold_char holds the character lost when yytext is formed. */
 static char yy_hold_char;  static char yy_hold_char;
   
 static int yy_n_chars; /* number of characters read into yy_ch_buf */  static int yy_n_chars; /* number of characters read into yy_ch_buf */
   
   
 int yyleng;  int yyleng;
   
 /* Points to current character in buffer. */  /* Points to current character in buffer. */
Line 275
 
Line 225
  */   */
 static int yy_did_buffer_switch_on_eof;  static int yy_did_buffer_switch_on_eof;
   
 void yyrestart (FILE *input_file  );  void yyrestart YY_PROTO(( FILE *input_file ));
 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );  
 YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );  void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
 void yy_delete_buffer (YY_BUFFER_STATE b  );  void yy_load_buffer_state YY_PROTO(( void ));
 void yy_flush_buffer (YY_BUFFER_STATE b  );  YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
 void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );  void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
 void yypop_buffer_state (void );  void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
   void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
 static void yyensure_buffer_stack (void );  #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
 static void yy_load_buffer_state (void );  
 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );  YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
   YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
 #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )  YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
   
 YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );  static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
 YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );  static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
 YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );  static void yy_flex_free YY_PROTO(( void * ));
   
 void *yyalloc (yy_size_t  );  
 void *yyrealloc (void *,yy_size_t  );  
 void yyfree (void *  );  
   
 #define yy_new_buffer yy_create_buffer  #define yy_new_buffer yy_create_buffer
   
 #define yy_set_interactive(is_interactive) \  #define yy_set_interactive(is_interactive) \
  { \   { \
  if ( ! YY_CURRENT_BUFFER ){ \   if ( ! yy_current_buffer ) \
         yyensure_buffer_stack (); \   yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  YY_CURRENT_BUFFER_LVALUE =    \   yy_current_buffer->yy_is_interactive = is_interactive; \
             yy_create_buffer(yyin,YY_BUF_SIZE ); \  
  } \  
  YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \  
  }   }
   
 #define yy_set_bol(at_bol) \  #define yy_set_bol(at_bol) \
  { \   { \
  if ( ! YY_CURRENT_BUFFER ){\   if ( ! yy_current_buffer ) \
         yyensure_buffer_stack (); \   yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  YY_CURRENT_BUFFER_LVALUE =    \   yy_current_buffer->yy_at_bol = at_bol; \
             yy_create_buffer(yyin,YY_BUF_SIZE ); \  
  } \  
  YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \  
  }   }
   
 #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)  #define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
   
 /* Begin user sect3 */  
   
 #define yywrap(n) 1  #define yywrap() 1
 #define YY_SKIP_YYWRAP  #define YY_SKIP_YYWRAP
   
 typedef unsigned char YY_CHAR;  typedef unsigned char YY_CHAR;
   
 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;  FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
   
 typedef int yy_state_type;  typedef int yy_state_type;
   
 extern int yylineno;  
   
 int yylineno = 1;  
   
 extern char *yytext;  extern char *yytext;
 #define yytext_ptr yytext  #define yytext_ptr yytext
   
 static yy_state_type yy_get_previous_state (void );  static yy_state_type yy_get_previous_state YY_PROTO(( void ));
 static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );  static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
 static int yy_get_next_buffer (void );  static int yy_get_next_buffer YY_PROTO(( void ));
 static void yy_fatal_error (yyconst char msg[]  );  static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
   
 /* Done after the current pattern has been matched and before the  /* Done after the current pattern has been matched and before the
  * corresponding action - sets up yytext.   * corresponding action - sets up yytext.
  */   */
 #define YY_DO_BEFORE_ACTION \  #define YY_DO_BEFORE_ACTION \
  (yytext_ptr) = yy_bp; \   yytext_ptr = yy_bp; \
  yyleng = (size_t) (yy_cp - yy_bp); \   yyleng = (int) (yy_cp - yy_bp); \
  (yy_hold_char) = *yy_cp; \   yy_hold_char = *yy_cp; \
  *yy_cp = '\0'; \   *yy_cp = '\0'; \
  (yy_c_buf_p) = yy_cp;   yy_c_buf_p = yy_cp;
   
 #define YY_NUM_RULES 271  #define YY_NUM_RULES 272
 #define YY_END_OF_BUFFER 272  #define YY_END_OF_BUFFER 273
 /* This struct is not used in this scanner,  static yyconst short int yy_accept[2449] =
    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[2437] =  
     {   0,      {   0,
       270,  270,    3,    3,    6,    6,    0,    0,  272,  270,        271,  271,    3,    3,    6,    6,    0,    0,  273,  271,
       268,  270,  270,  270,  270,  270,  270,  270,  270,  270,        269,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,    3,    3,    3,    6,        271,  271,  271,  271,  271,  271,    3,    3,    3,    6,
         6,    6,  271,  271,  270,  270,  269,  270,  268,  270,          6,    6,  272,  272,  271,  271,  270,  271,  269,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,    3,    3,    3,        271,  271,  271,  271,  271,  271,  271,    3,    3,    3,
         3,    6,    6,    6,    6,    0,  268,  270,  270,  270,          3,    6,    6,    6,    6,    0,  269,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,   48,   48,  270,   49,   49,    3,    6,   47,        271,  271,   48,   48,  271,   49,   49,    3,    6,   47,
        47,  270,  270,  270,  270,  270,  270,  270,  270,  270,         47,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  270,   19,  270,  270,  270,  270,        271,  271,  271,  271,  271,   19,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
        36,   36,  270,  270,  270,  270,  270,  270,  270,  270,         36,   36,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,    1,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,    1,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,   38,   38,        271,  271,  271,  271,  271,  271,  271,  271,  271,   38,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,         38,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,   46,   46,  270,  270,  270,  270,  270,  270,        271,  271,  271,   46,   46,  271,  271,  271,  271,  271,
         3,    6,  270,  270,  270,  270,  270,  270,  270,  270,        271,    3,    6,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,   33,   33,  270,  270,        271,  271,  271,  271,  271,  271,  271,   33,   33,  271,
        31,   31,  270,  270,  270,  270,  270,  270,   45,   45,        271,   31,   31,  271,  271,  271,  271,  271,  271,   45,
       270,  270,   30,   30,  270,  270,  270,  270,  270,  270,         45,  271,  271,   30,   30,  271,  271,  271,  271,  271,
        42,   42,  270,  270,  270,  270,  270,  270,  270,  270,        271,   42,   42,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,   34,   34,  270,  270,        271,  271,  271,  271,  271,  271,  271,   34,   34,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  270,  270,  270,  270,    4,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,   18,  270,          4,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,         18,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,   35,   35,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,   35,   35,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,   29,   29,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,   29,   29,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,   32,   32,  110,  110,        271,  271,  271,  271,  271,  271,  271,  271,   32,   32,
       270,    3,    6,  270,  270,  270,  270,  270,   15,   15,        110,  110,  271,    3,    6,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  270,  270,  224,  270,  270,  270,         15,   15,  271,  271,  271,  271,  271,  271,  225,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,   28,   28,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,   28,   28,
       270,   44,   44,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,   44,   44,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  114,  114,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  115,  115,  271,
       270,  270,  270,  270,    8,    8,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,    8,    8,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
        50,   50,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,   50,   50,  271,  271,  271,  271,  271,
       270,  270,  270,  270,   12,   12,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,   12,   12,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,   53,   53,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,   53,   53,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,    3,    6,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
        67,   67,  270,  270,  270,  270,  270,  270,  270,  270,          3,    6,  271,   67,   67,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,   40,   40,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,   40,   40,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,   51,   51,  270,   65,   65,  270,  270,  270,   37,        271,  271,  271,  271,  271,   51,   51,  271,   65,   65,
        37,   39,   39,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,   37,   37,   39,   39,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  226,  226,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  227,  227,  271,
       270,  270,   10,   10,  270,  140,  140,  270,  270,   24,        271,  271,  271,  271,  271,  271,   10,   10,  271,  141,
   
        24,  270,  270,  270,  270,   66,   66,  270,  270,  270,        141,  271,  271,   24,   24,  271,  271,  271,  271,   66,
        27,   27,  270,  270,  270,  270,  270,  270,  270,   57,         66,  271,  271,  271,   27,   27,  271,  271,  271,  271,
        57,  270,  270,  270,  270,  270,  270,  270,  136,  136,        271,  271,  271,   57,   57,  271,  271,  271,  271,  271,
         3,    2,    6,  270,  270,  270,  270,  146,  146,  270,        271,  271,  137,  137,    3,    2,    6,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  147,  147,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  185,  185,  270,  270,  186,  186,        271,  271,  271,  271,  271,  271,  271,  271,  186,  186,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  187,  187,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  195,  195,  270,   77,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
        77,   79,   79,  270,  270,  270,  270,  270,  270,  270,        196,  196,  271,   77,   77,   79,   79,  271,  271,  271,
   
       173,  173,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  174,  174,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,    7,    7,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,    7,    7,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  105,  105,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  105,  105,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  104,  104,  196,  196,   69,   69,        271,  271,  271,  271,  271,  271,  271,  271,  271,  104,
   
       270,  270,  270,  270,  270,  270,   58,   58,  270,    6,        104,  197,  197,   69,   69,  271,  271,  271,  271,  271,
         5,  270,  270,  270,   68,   68,  270,  270,  270,  270,        271,   58,   58,  271,    6,    5,  271,  271,  271,   68,
       212,  212,  270,  270,  270,  216,  216,  270,  270,  270,         68,  271,  271,  271,  271,  213,  213,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        217,  217,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,   78,   78,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,   99,   99,  270,  270,  270,  270,        271,  271,   78,   78,  271,  271,  271,  271,  271,   99,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,         99,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,   21,   21,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,   80,   80,  270,    9,    9,   70,        271,  271,  271,   21,   21,  271,  271,  271,  271,  271,
        70,   71,   71,   81,   81,  270,  270,  123,  123,  270,         80,   80,  271,    9,    9,   70,   70,   71,   71,   81,
       270,   73,   73,   72,   72,  270,  270,  270,  211,  211,         81,  271,  271,  124,  124,  271,  271,   73,   73,   72,
       270,  270,  270,  270,  270,  270,  270,  270,  118,  118,         72,  271,  271,  271,  212,  212,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  119,  119,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,   13,   13,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,   13,
       270,  183,  183,   54,   54,  270,  270,  270,  270,  270,         13,  271,  271,  271,  271,  271,  271,  184,  184,   54,
       270,  270,   75,   75,  111,  111,  270,  270,  270,  270,         54,  271,  271,  271,  271,  271,  271,  271,   75,   75,
   
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        111,  111,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,   91,   91,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,   91,
       270,  270,  270,  270,  270,  270,  270,   59,   59,  270,         91,  271,  271,  271,  271,  271,  271,  271,  271,  271,
        97,   97,  270,  182,  182,  270,  270,  270,  270,  270,        271,  271,  271,   59,   59,  271,   97,   97,  271,  183,
       270,  225,  225,  270,  102,  102,  270,  270,  270,  270,        183,  271,  271,  271,  271,  271,  271,  226,  226,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        102,  102,  271,  271,  271,  271,  271,  271,  271,  271,
        84,   84,  270,  270,  270,  270,  270,  270,  270,   14,        271,  271,  271,  271,  271,  271,   84,   84,  271,  271,
       270,  270,  206,  206,  270,  270,  137,  137,  200,  200,        271,  271,  271,  271,  271,   14,  271,  271,  207,  207,
       270,  270,  270,  201,  201,  270,  270,  270,  270,   23,        271,  271,  138,  138,  201,  201,  271,  271,  271,  271,
        23,  270,  270,  138,  138,  270,   55,   55,  270,   41,        202,  202,  271,  271,  271,  271,   23,   23,  271,  271,
   
        41,  270,  270,  270,  270,  109,  109,  270,  210,  210,        139,  139,  271,   55,   55,  271,   41,   41,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,   43,   43,        271,  271,  109,  109,  271,  211,  211,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,   43,   43,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  115,  115,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  219,  219,   89,   89,  270,  270,        116,  116,  271,  271,  271,  271,  271,  271,  271,  271,
       270,   76,   76,  270,  270,  270,  270,   17,   17,  270,        271,  220,  220,   89,   89,  271,  271,  271,   76,   76,
       270,  270,  270,  270,  126,  126,  270,  270,  270,  270,        271,  271,  271,  271,   17,   17,  271,  271,  271,  271,
       214,  214,  270,  270,  270,  270,  270,  270,  270,  270,        271,  127,  127,  271,  271,  271,  271,  215,  215,  271,
   
       270,  270,  270,  270,  270,  270,  270,  184,  184,  122,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       122,  270,  270,  270,   52,   52,  270,  270,  221,  221,        271,  271,  271,  271,  185,  185,  123,  123,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  246,  246,  270,        271,   52,   52,  271,  271,  222,  222,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,   85,        271,  271,  271,  271,  247,  247,  271,  271,  271,  271,
        85,  270,  270,  270,  270,  270,  270,  270,  270,   64,        271,  271,  271,  271,  271,  271,   85,   85,  271,  271,
        64,  270,  270,  270,   87,   87,  270,  270,  199,  199,        271,  271,  271,  271,  271,  271,   64,   64,  271,  271,
       270,  270,  270,  270,   20,   20,  270,  270,  270,   82,        271,  271,   87,   87,  271,  271,  200,  200,  271,  271,
        82,   83,   83,  270,  270,  270,  270,  270,  270,  116,        271,  271,   20,   20,  271,  271,  271,   82,   82,   83,
       116,  270,  270,  270,  174,  174,  270,  270,  270,  270,         83,  271,  271,  271,  271,  271,  271,  117,  117,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  175,  175,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
        26,   26,  270,  270,   98,   98,  270,  270,  113,  113,        271,  271,  271,  271,  271,  271,  271,  271,   26,   26,
       270,  270,  270,  270,  270,  270,  121,  121,  270,   60,        271,  271,   98,   98,  271,  271,  114,  114,  271,  271,
        60,   88,   88,  270,  101,  101,  270,  270,  215,  215,        271,  271,  271,  271,  122,  122,  271,   60,   60,   88,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,         88,  271,  101,  101,  271,  271,  216,  216,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  240,  240,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  249,  249,  270,  270,  270,        271,  271,  271,  271,  271,  271,  241,  241,  271,  271,
       270,  252,  252,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  250,  250,  271,  271,  271,  271,  253,
   
       270,  270,  270,  270,  270,  270,  270,   95,   95,  198,        253,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       198,  270,  270,  270,  270,   94,   94,  119,  119,  270,        271,  271,  271,  271,  271,   95,   95,  199,  199,  271,
       270,   22,   22,  270,  270,  181,  181,  270,  270,  270,        271,  271,  271,  271,   94,   94,  120,  120,  271,  271,
       270,   16,   16,  270,  270,  270,  270,  270,  270,  270,         22,   22,  271,  271,  182,  182,  271,  271,  271,  271,
       270,  270,  270,   96,   96,  270,  270,  270,  270,  270,         16,   16,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,   96,   96,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,   25,   25,  270,  100,  100,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  175,  175,  218,  218,  124,  124,  270,  270,  270,        271,  271,  271,   25,   25,  271,  100,  100,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  131,  131,  270,        176,  176,  219,  219,  125,  125,  271,  271,  271,  271,
   
       270,  270,  193,  193,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  132,  132,  271,  271,
       223,  223,  270,   11,   11,  270,  270,  270,  231,  231,        271,  194,  194,  271,  271,  271,  271,  271,  271,  224,
       270,  270,  270,  270,  261,  261,  270,  270,  237,  237,        224,  271,   11,   11,  271,  271,  271,  232,  232,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  262,  262,  271,  271,  238,  238,  271,
       255,  255,  270,  270,  270,  270,  264,  264,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  256,
       270,  270,  205,  205,  270,  270,  270,  270,  270,  270,        256,  271,  271,  271,  271,  265,  265,  271,  271,  271,
       270,   74,   74,  270,  208,  208,   93,   93,  270,  270,        271,  206,  206,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  139,  139,  143,  143,  270,  270,         74,   74,  271,  209,  209,  271,   93,   93,  271,  271,
        63,   63,  270,  142,  142,  270,  209,  209,  270,  270,        271,  271,  271,  271,  140,  140,  144,  144,  271,  271,
       270,  153,  153,  270,  270,  270,  151,  151,  270,  270,         63,   63,  271,  143,  143,  271,  210,  210,  271,  271,
   
       270,  270,  270,  270,  270,  161,  161,  149,  149,  270,        271,  154,  154,  271,  271,  271,  152,  152,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  158,  158,        271,  271,  271,  271,  271,  162,  162,  150,  150,  271,
       270,  270,  270,  270,  222,  222,  141,  141,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  159,  159,
       270,  270,  270,  191,  191,  270,  270,  270,  270,  270,        271,  271,  271,  271,  223,  223,  142,  142,  271,  271,
       270,  194,  194,  270,  134,  134,  270,  270,  270,  179,        271,  271,  271,  192,  192,  271,  271,  271,  271,  271,
       179,  270,  220,  220,  270,  228,  228,  270,  270,  270,        271,  195,  195,  271,  135,  135,  271,  271,  271,  180,
       270,  234,  234,  270,  270,  270,  270,  270,  270,  270,        180,  271,  221,  221,  271,  229,  229,  271,  271,  271,
       270,  243,  243,  270,  270,  270,  270,  270,  270,  270,        271,  235,  235,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  244,  244,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  230,  230,  189,  189,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,   56,   56,  270,  270,  270,   61,   61,  270,  270,        271,  271,  271,  271,  271,  231,  231,  113,  113,  190,
       270,  270,  270,  169,  169,  270,  165,  165,  270,  270,        190,  271,  271,   56,   56,  271,  271,  271,   61,   61,
       164,  164,  270,  270,  154,  154,  270,  270,  270,  270,        271,  271,  271,  271,  271,  170,  170,  271,  166,  166,
       270,  270,  148,  148,  270,  270,  270,  270,  270,  187,        271,  271,  165,  165,  271,  271,  155,  155,  271,  271,
       187,  270,  106,  106,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  149,  149,  271,  271,  271,  271,
       213,  213,  117,  117,  270,  270,  130,  130,  270,  270,        271,  188,  188,  271,  106,  106,  271,  271,  271,  271,
       190,  190,  270,  270,  270,  103,  103,  270,  270,  270,        271,  271,  214,  214,  118,  118,  271,  271,  131,  131,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  191,  191,  271,  271,  271,  103,  103,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  258,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       258,  270,  270,  120,  120,  135,  135,  270,  176,  176,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  188,  188,  270,  112,  112,  270,        271,  259,  259,  271,  271,  121,  121,  136,  136,  271,
        92,   92,   62,   62,  270,  270,  270,  108,  108,  270,        177,  177,  271,  271,  271,  271,  189,  189,  271,  112,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        112,  271,   92,   92,   62,   62,  271,  271,  271,  108,
       270,  270,  157,  157,  270,  270,   90,   90,  270,  270,        108,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  128,  128,  217,  217,  270,  132,  132,  129,        271,  271,  271,  271,  158,  158,  271,  271,   90,   90,
       129,  127,  127,  133,  133,  270,  270,  270,  270,  270,        271,  271,  271,  271,  129,  129,  218,  218,  271,  133,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        133,  130,  130,  128,  128,  134,  134,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  177,  177,  270,  270,  178,  178,  270,  197,  197,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       204,  204,  270,  227,  227,  270,  270,  270,  270,  163,        271,  271,  271,  178,  178,  271,  271,  179,  179,  271,
   
       163,  172,  172,  270,  270,  270,  270,  270,  270,  270,        198,  198,  205,  205,  271,  228,  228,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  180,  180,  207,  207,        271,  164,  164,  173,  173,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  181,  181,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        208,  208,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  270,  270,  270,  270,  270,  202,  202,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       125,  125,  107,  107,  270,  270,  270,  270,  156,  156,        271,  271,  271,  271,  271,  271,  271,  271,  271,  203,
       167,  167,  168,  168,  170,  170,  270,  159,  159,  147,        203,  271,  126,  126,  107,  107,  271,  271,  271,  271,
       147,  270,  270,  270,  144,  144,  270,  270,  270,  270,        157,  157,  168,  168,  169,  169,  171,  171,  271,  160,
       270,  270,  270,  270,  270,  270,  270,  270,  270,  270,        160,  148,  148,  271,  271,  271,  145,  145,  271,  271,
       270,  270,  247,  247,  270,  270,  270,  270,  270,  270,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
   
       270,  270,  270,  270,  192,  192,  203,  203,  270,  152,        271,  271,  271,  271,  248,  248,  271,  271,  271,  271,
       152,  270,  270,  270,  270,  270,  270,  270,  270,  229,        271,  271,  271,  271,  271,  271,  193,  193,  204,  204,
       229,  270,  270,  270,  270,  270,  270,  270,  270,  270,        271,  153,  153,  271,  271,  271,  271,  271,  271,  271,
       241,  241,  270,  270,  248,  248,  270,  250,  250,  270,        271,  230,  230,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  253,  253,  270,  270,  270,  270,  270,  270,        271,  271,  242,  242,  271,  271,  249,  249,  271,  251,
       270,  270,  270,  270,  270,  270,  270,  270,  232,  232,        251,  271,  271,  271,  254,  254,  271,  271,  271,  271,
       270,  270,  270,  262,  262,  270,  238,  238,  242,  242,        271,  271,  271,  271,  271,  271,  271,  271,  271,  271,
       270,  270,  251,  251,  270,  256,  256,  254,  254,  270,        233,  233,  271,  271,  271,  263,  263,  271,  239,  239,
       265,  265,  270,  270,  270,  270,  150,  150,  270,  160,        243,  243,  271,  271,  252,  252,  271,  257,  257,  255,
       160,  155,  155,   86,   86,  145,  145,  270,  233,  233,        255,  271,  266,  266,  271,  271,  271,  271,  151,  151,
   
       270,  235,  235,  263,  263,  239,  239,  270,  244,  244,        271,  161,  161,  156,  156,   86,   86,  146,  146,  271,
       257,  257,  266,  266,  270,  270,  162,  162,  166,  166,        234,  234,  271,  236,  236,  264,  264,  240,  240,  271,
       270,  270,  236,  236,  245,  245,  270,  259,  259,  171,        245,  245,  258,  258,  267,  267,  271,  271,  163,  163,
       171,  267,  267,  260,  260,    0        167,  167,  271,  271,  237,  237,  246,  246,  271,  260,
         260,  172,  172,  268,  268,  261,  261,    0
     } ;      } ;
   
 static yyconst flex_int32_t yy_ec[256] =  static yyconst int yy_ec[256] =
     {   0,      {   0,
         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,          1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,          1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
Line 667
 
Line 592
         1,    1,    1,    1,    1          1,    1,    1,    1,    1
     } ;      } ;
   
 static yyconst flex_int32_t yy_meta[34] =  static yyconst int yy_meta[34] =
     {   0,      {   0,
         1,    1,    2,    1,    1,    1,    1,    1,    1,    1,          1,    1,    2,    1,    1,    1,    1,    1,    1,    1,
         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,          1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
Line 675
 
Line 600
         1,    1,    1          1,    1,    1
     } ;      } ;
   
 static yyconst flex_int16_t yy_base[2712] =  static yyconst short int yy_base[2726] =
     {   0,      {   0,
         0,    6,   37,   38,   39,   43,   45,   50, 2740,    0,          0,    6,   37,   38,   39,   43,   45,   50, 2754,    0,
      2741, 2736,    0,   47,   40,   68,   53,   86,   63,   35,       2755, 2750,    0,   47,   40,   68,   53,   86,   63,   35,
        70,  107, 2717,  127,   69,   86,   83,  148,   72,  164,         70,  107, 2731,  127,   69,   86,   83,  148,   72,  164,
       181,   37,   71,  113,   99, 2735,    0,   62, 2715,    0,        181,   37,   71,  113,   99, 2749,    0,   62, 2729,    0,
       101, 2714, 2741,  111,    0, 2731, 2741,  117,    0,   87,        101, 2728, 2755,  111,    0, 2745, 2755,  117,    0,   87,
      2717, 2716, 2708,  110, 2703, 2702,  119, 2706, 2716,  111,       2731, 2730, 2722,  110, 2717, 2716,  119, 2720, 2730,  111,
      2718, 2709, 2703,  115, 2703, 2691, 2696, 2695, 2703, 2706,       2732, 2723, 2717,  115, 2717, 2705, 2710, 2709, 2717, 2720,
      2706, 2704, 2692, 2704, 2681, 2690, 2695, 2689, 2687, 2700,       2720, 2718, 2706, 2718, 2695, 2704, 2709, 2703, 2701, 2714,
      2681, 2679, 2703, 2692, 2683,  118, 2695, 2689, 2678, 2673,       2695, 2693, 2717, 2706, 2697,  118, 2709, 2703, 2692, 2687,
      2669, 2684, 2671, 2685,  132,  132, 2680, 2673,  114, 2685,       2683, 2698, 2685, 2699,  132,  132, 2694, 2687,  114, 2699,
   
      2669, 2673,   90, 2674, 2676,  125, 2662, 2676, 2655, 2662,       2683, 2687,   90, 2688, 2690,  125, 2676, 2690, 2669, 2676,
       144,  145, 2662, 2674, 2669, 2664,  167, 2657,  166,  169,        144,  145, 2676, 2688, 2683, 2678,  167, 2671,  166,  169,
      2669, 2669, 2649, 2653, 2662, 2650,  188, 2660, 2652, 2651,       2683, 2683, 2663, 2667, 2676, 2664,  188, 2674, 2666, 2665,
       143, 2667,  164,  169, 2666, 2659, 2664,    0,  196,    0,        143, 2681,  164,  169, 2680, 2673, 2678,    0,  196,    0,
      2654,    0,  203,    0, 2653,  205, 2741, 2661, 2646, 2632,       2668,    0,  203,    0, 2667,  205, 2755, 2675, 2660, 2646,
      2640, 2640, 2643, 2635, 2648, 2633, 2633, 2627, 2642, 2619,       2654, 2654, 2657, 2649, 2662, 2647, 2647, 2641, 2656, 2633,
      2643, 2624, 2621,  146, 2635,  207,  189, 2619,  210, 2643,       2657, 2638, 2635,  146, 2649,  207,  189, 2633,  210, 2657,
      2632, 2635, 2615, 2612,  216, 2619,  219, 2627,  209, 2627,       2646, 2649, 2629, 2626,  216, 2633,  219, 2641,  209, 2641,
      2625,  215, 2606, 2625, 2627, 2624, 2630, 2610, 2602, 2627,       2639,  215, 2620, 2639, 2641, 2638, 2644, 2624, 2616, 2641,
       217,  232, 2608, 2597, 2599, 2613, 2612, 2611, 2604, 2605,        217,  232, 2622, 2611, 2613, 2627, 2626, 2625, 2618, 2619,
   
      2608, 2607,  222, 2592, 2605, 2604,  241, 2603, 2603, 2586,       2622, 2621,  222, 2606, 2619, 2618,  241, 2617, 2617, 2600,
       255, 2599, 2599, 2603, 2577, 2596, 2582, 2580, 2590, 2584,        255, 2613, 2613, 2617, 2591, 2610, 2596, 2594, 2604, 2598,
      2585, 2600, 2574, 2588,  212, 2580, 2582, 2590, 2571, 2588,       2599, 2614, 2588, 2602,  212, 2594, 2596, 2604, 2585, 2602,
      2575, 2561, 2580, 2561, 2568, 2587, 2576, 2571,  225, 2578,       2589, 2575, 2594, 2575, 2582, 2601, 2590, 2585,  225, 2592,
      2583, 2557, 2558, 2563, 2562, 2572, 2567, 2564, 2565, 2552,       2597, 2571, 2572, 2577, 2576, 2586, 2581, 2578, 2579, 2566,
      2567, 2567, 2545, 2551, 2553, 2563, 2567, 2545, 2553, 2547,       2581, 2581, 2559, 2565, 2567, 2577, 2581, 2559, 2567, 2561,
      2563, 2562,    0, 2561, 2530,    0, 2559, 2540, 2540,    0,       2577, 2576,    0, 2575, 2544,    0, 2573, 2554, 2554,    0,
      2556, 2528, 2544,  246, 2539, 2552, 2525, 2542, 2544, 2543,       2570, 2542, 2558,  246, 2553, 2566, 2539, 2556, 2558, 2557,
      2537, 2530, 2540,  274, 2514, 2529, 2542, 2529, 2521, 2539,       2551, 2544, 2554,  274, 2528, 2543, 2556, 2543, 2535, 2553,
      2512, 2527, 2530, 2525, 2524, 2513, 2532, 2513, 2520, 2529,       2526, 2541, 2544, 2539, 2538, 2527, 2546, 2527, 2534, 2543,
   
      2520, 2502,  178, 2520,  253, 2741, 2500, 2524, 2497, 2522,       2534, 2516,  178, 2534,  253, 2755, 2514, 2538, 2511, 2536,
      2501, 2501, 2519, 2499, 2493, 2493, 2510, 2504, 2490, 2506,       2515, 2515, 2533, 2513, 2507, 2507, 2524, 2518, 2504, 2520,
         0, 2511, 2485, 2490, 2508, 2490, 2487, 2481, 2485,  230,          0, 2525, 2499, 2504, 2522, 2504, 2501, 2495, 2499,  230,
      2497, 2485, 2487,  223, 2476,  249, 2494, 2479, 2492, 2479,       2511, 2499, 2501, 2500,  242, 2489,  257, 2507, 2492, 2505,
      2471,  262, 2494, 2485, 2487, 2468, 2467, 2468, 2467, 2462,       2492, 2484,  269, 2507, 2498, 2500, 2481, 2480, 2481, 2480,
       267, 2481,  270, 2741,  228, 2480, 2461, 2458,  266, 2468,       2475,  271, 2494,  274, 2755,  228, 2493, 2474, 2471,  261,
      2475,  271,  249, 2480, 2471, 2465, 2472, 2453, 2458, 2469,       2481, 2488,  272,  269, 2493, 2484, 2478, 2485, 2466, 2471,
      2468, 2467, 2466, 2470, 2459, 2468, 2447, 2456, 2455, 2440,       2482, 2481, 2480, 2479, 2483, 2472, 2481, 2460, 2469, 2468,
      2457, 2452,  272, 2444, 2446, 2438, 2453, 2432,    0, 2456,       2453, 2470, 2465,  275, 2457, 2459, 2451, 2466, 2445,    0,
      2446, 2429, 2444, 2427, 2441, 2433, 2449, 2418, 2442, 2436,       2469, 2459, 2442, 2457, 2440, 2454, 2446, 2462, 2431, 2455,
   
      2420, 2420, 2443, 2430, 2435, 2414, 2425, 2430, 2427, 2426,       2449, 2433, 2433, 2456, 2443, 2448, 2427, 2438, 2443, 2440,
      2430, 2406,    0, 2433, 2412, 2418, 2425, 2429, 2428, 2403,       2439, 2443, 2419,    0, 2446, 2425, 2431, 2438, 2442, 2441,
      2402, 2405, 2418, 2423, 2398, 2396, 2410, 2419, 2395, 2401,       2416, 2415, 2418, 2431, 2436, 2411, 2409, 2423, 2432, 2408,
      2410, 2409, 2391, 2389,    0, 2391,  275, 2405, 2392, 2390,       2414, 2423, 2422, 2404, 2402,    0, 2404,  281, 2418, 2405,
      2402, 2387, 2396, 2381, 2390, 2384,    0, 2402, 2387, 2375,       2403, 2415, 2400, 2409, 2394, 2403, 2397,    0, 2415, 2400,
         0, 2399, 2374, 2389, 2382, 2376, 2385, 2375,    0, 2392,       2388,    0, 2412, 2387, 2402, 2395, 2389, 2398, 2388,    0,
      2371, 2381,    0, 2389, 2363, 2373, 2379, 2362, 2359, 2378,       2405, 2384, 2394,    0, 2402, 2376, 2386, 2392, 2375, 2372,
         0, 2382, 2364, 2380,  273, 2367, 2378, 2368, 2355, 2369,       2391,    0, 2395, 2377, 2393,  280, 2380, 2391, 2381, 2368,
      2351, 2373, 2362, 2363, 2356, 2359,    0, 2368, 2347, 2341,       2382, 2364, 2386, 2375, 2376, 2369, 2372,    0, 2381, 2360,
      2351, 2350, 2349, 2348, 2335, 2340, 2342, 2335, 2334, 2346,       2354, 2364, 2363, 2362, 2361, 2348, 2353, 2355, 2359, 2347,
   
      2330, 2334, 2332, 2347,  281, 2351, 2344,  302, 2741, 2349,       2346, 2358, 2342, 2346, 2344, 2359,  291, 2363, 2356,  292,
      2348, 2333, 2332, 2339, 2344, 2343, 2332,  306, 2741, 2317,       2755, 2361, 2360, 2345, 2344, 2351, 2356, 2355, 2344,  305,
      2340, 2318,  290, 2332, 2312, 2318, 2315, 2305, 2321, 2308,       2755, 2329, 2352, 2330,  296, 2344, 2324, 2330, 2327, 2317,
      2323, 2316,  289, 2329, 2303, 2313, 2320, 2320, 2318, 2298,       2333, 2320, 2335, 2328,  286, 2341, 2315, 2325, 2332, 2332,
       302, 2312, 2295,    0, 2320, 2311, 2318, 2299,  309, 2308,       2330, 2310,  302, 2324, 2307,    0, 2332, 2323, 2330, 2311,
      2290, 2286, 2304, 2293, 2292, 2310, 2290, 2308, 2289, 2293,        312, 2320, 2302, 2298, 2316, 2305, 2304, 2322, 2302, 2320,
       310, 2280, 2299, 2293, 2302, 2276,    0, 2300, 2278, 2289,       2301, 2305,  313, 2292, 2311, 2305, 2314, 2288,    0, 2312,
      2297, 2266, 2269, 2294, 2270, 2283, 2281, 2281, 2269, 2288,       2290, 2301, 2309, 2278, 2281, 2306, 2282, 2295, 2293, 2293,
      2264, 2266, 2271, 2265, 2258, 2276,    0, 2281,    0, 2280,       2281, 2300, 2276, 2278, 2283, 2277, 2270, 2288,    0, 2293,
      2279, 2266, 2254, 2251, 2275, 2253, 2259, 2263,    0, 2271,          0, 2292, 2291, 2278, 2266, 2263, 2287, 2265, 2271, 2275,
   
      2270,  308, 2248, 2247, 2251, 2239,    0, 2244, 2240, 2238,          0, 2283, 2282,  309, 2260, 2259, 2263, 2251,    0, 2256,
      2244, 2240, 2240,  293, 2242, 2248, 2247, 2237, 2243, 2235,       2252, 2250, 2256, 2252, 2252,  296, 2254, 2260, 2259, 2249,
      2248, 2242, 2226, 2231, 2224, 2248, 2242, 2237, 2245, 2230,       2255, 2247, 2260, 2254, 2238, 2243, 2236, 2260, 2254, 2249,
      2223, 2225, 2236, 2226,  328,   71,    0,  136,  153,  188,       2257, 2242, 2235, 2237,   66,  122,  329,  164,    0,  188,
       230,    0,  259,  258,  282,  293,  313,  320,  315,  306,        219,  236,  259,    0,  262,  248,  311,  296,  316,  323,
       312,  324,  318,  307,  321,  311,  311,  314,  315,  315,        318,  310,  316,  328,  321,  310,  324,  314,  314,  319,
       321,  319,  321,  332,  332,  334,  324,  337,  340,  324,        322,  320,  324,  329,  323,  325,  336,  336,  338,  328,
       338,  329,  351,  327,    0,  356,  357,  339,  353,  352,        341,  345,  329,  345,  335,  357,  331,    0,  360,  361,
       361,  362,  340,  339,    0,  365,  349,  348,  358,  352,        343,  357,  356,  365,  366,  344,  343,    0,  369,  353,
       364,  365,  351,  368,  360,  351,  360,  360,  372,  369,        352,  362,  356,  368,  369,  355,  372,  364,  355,  364,
   
         0,  380,  381,  357,  358,  378,  355,  373,  362,  378,        364,  376,  373,    0,  384,  385,  361,  362,  382,  359,
       379,  361,  370,  367,    0,  393,  389,  395,  378,  372,        377,  366,  382,  383,  365,  374,  371,    0,  397,  393,
       393,  393,  400,  371,  375,  404,  393,  406,  387,  391,        399,  382,  376,  397,  397,  404,  375,  379,  408,  397,
       409,  393,  397,  388,  391,  414,  402,  406,  397,  418,        410,  391,  395,  413,  397,  401,  392,  395,  418,  406,
       398,  397,    0,  421,  412,  423,  424,  425,  407,  427,        410,  401,  422,  402,  401,    0,  425,  416,  427,  428,
       422,  418,  399,  406,  432,  412,  434,  435,  428,  429,        429,  411,  431,  426,  422,  403,  410,  436,  416,  438,
         0,  440,  431,  422,  443,  444,  427,  416,  426,  427,        439,  432,  433,    0,  444,  435,  426,  447,  448,  431,
       449,  436,  434,  427,  453,  449,  449,  448,  434,  434,        420,  430,  431,  453,  440,  438,  431,  457,  453,  453,
       442,  455,  456,  450,  458,  452,  440,  457,  457,  458,        452,  438,  438,  446,  459,  460,  454,  462,  456,  444,
       464,  470,  452,  458,  473,  454,  456,  466,  466,  458,        461,  461,  462,  468,  474,  456,  462,  477,  458,  460,
   
       458,  463,  471,  468,  478,  472,  487,  488,  489,  490,        470,  470,  462,  462,  467,  475,  472,  482,  476,  491,
       461,  486,  473,  487,    0,  497,  489,  499,  486,  501,        492,  493,  494,  465,  490,  477,  491,    0,  501,  493,
       486,  481,  488,  500,  498,  499,  500,  487,  481,  484,        503,  490,  505,  490,  485,  492,  504,  502,  503,  504,
       507,  509,  492,  506,  489,  492,  513,  495,  515,  516,        491,  485,  491,  489,  512,  514,  497,  511,  494,  497,
       523,    0,  524,  515,    0,  526,  500,  511,  519,    0,        518,  500,  520,  521,  528,    0,  529,  520,    0,  531,
       530,    0,  531,  532,  527,  534,  535,  536,  537,  530,        505,  516,  524,    0,  535,    0,  536,  537,  532,  539,
       527,  540,  520,  534,  543,  544,  528,  529,  528,  548,        540,  541,  542,  535,  532,  545,  525,  539,  548,  549,
       549,  525,  528,  547,  530,  529,  536,  535,  536,  558,        533,  534,  533,  553,  554,  530,  533,  552,  535,  534,
       549,  542,  536,    0,  562,  543,  559,  568,  535,  566,        541,  540,  541,  563,  554,  547,  541,    0,  567,  548,
       539,  554,    0,  569,  570,    0,  571,  545,  573,    0,        564,  573,  540,  571,  544,  559,    0,  574,  575,    0,
   
       584,  577,  569,  565,  565,    0,  594,  595,  597,  570,        576,  550,  578,    0,  589,  582,  574,  570,  570,    0,
         0,  599,  590,  591,  578,  603,  604,  605,  581,    0,        599,  600,  602,  575,    0,  604,  595,  596,  583,  608,
       607,  601,  598,  610,  611,  582,  613,  593,    0,  615,        609,  610,  586,    0,  612,  606,  603,  615,  616,  587,
       616, 2741,  618,  615,  611,  603,  623,    0,  624,  605,        618,  598,    0,  620,  621, 2755,  623,  620,  616,  608,
       605,  610,  611,  629,  620,  601,  627,  633,  628,  618,        628,    0,  629,  610,  610,  615,  616,  634,  625,  606,
       620,  607,  633,  639,  626,  635,  643,  619,  645,  616,        632,  638,  633,  623,  625,  612,  638,  644,  631,  640,
       647,  640,  627,  623,    0,  652,  647,  643,    0,  655,        648,  624,  650,  621,  652,  645,  632,  628,    0,  657,
       637,  657,  660,  641,  645,  644,  641,  647,  662,  649,        652,  648,    0,  660,  642,  662,  665,  646,  650,  649,
       662,  641,  652,  650,  656,  661,    0,  676,  677,    0,        646,  652,  667,  654,  667,  646,  657,  655,  661,  666,
       678,    0,  679,  680,  658,  659,  669,  654,  685,  676,          0,  681,  682,    0,  683,    0,  684,  685,  663,  664,
   
         0,  687,  678,  659,  680,  666,  692,  687,  671,  695,        674,  659,  690,  681,    0,  692,  683,  664,  685,  671,
       696,  678,  691,  673,  700,  692,  692,  680,  692,  705,        697,  692,  676,  700,  701,  696,  684,  697,  679,  706,
       698,  690,  708,  709,  696,  711,  712,  713,  689,  715,        698,  698,  686,  698,  711,  704,  696,  714,  715,  702,
       716,  717,  718,  703,  710,  721,  705,  723,  724,  725,        717,  718,  719,  695,  721,  722,  723,  724,  709,  716,
       721,  727,  716,    0,  729,  731,  726,  725,  723,  709,        727,  711,  729,  730,  731,  727,  733,  722,    0,  735,
       710,  723,  728,  739,  740,  732,  722,  733,  735,  727,        737,  732,  731,  729,  715,  716,  729,  734,  745,  746,
       727,  739,  731,  743,  743,  733,  744,  739,  735,  741,        738,  728,  739,  741,  733,  733,  745,  737,  749,  749,
       747,  756,  758,  748,  741,  758,  769,    0,  770,  759,        739,  750,  745,  741,  747,  753,  762,  764,  754,  747,
       749,  774,  765,  749,  766,  767,  766,  767,  782,  783,        764,  775,    0,  776,  765,  755,  780,  771,  755,  772,
       765,  785,  786,  763,    0,  788,    0,  789,    0,  790,        773,  772,  773,  788,  789,  771,  791,  792,  769,    0,
   
       781,  775,  793,  794,  795,  775,    0,  797,  781,  799,        794,    0,  795,    0,  796,  787,  781,  799,  800,  801,
      2741,  781,  793,  803,    0,  804,  778,  796,  777,  794,        781,    0,  803,  787,  805, 2755,  787,  799,  809,    0,
         0,  809,  782,  811,  788,    0,  813,  791,  805,  809,        810,  784,  802,  783,  800,    0,  815,  788,  817,  794,
       817,  793,  819,  801,  798,  802,  803,  818,  817,  821,          0,  819,  797,  811,  815,  823,  799,  825,  807,  804,
       826,  814,  829,  813,  835,  836,  837,  829,  822,  827,        808,  809,  824,  823,  827,  832,  820,  835,  819,  841,
       842,  843,  826,  845,  829,  847,  831,  843,  826,  826,        842,  843,  835,  828,  833,  848,  849,  832,  851,  835,
       831,  837,  854,  834,  836,  847,  846,    0,  860,  861,        853,  837,  849,  832,  832,  837,  843,  860,  840,  842,
       844,  863,  838,  860,    0,  866,  858,  859,  868,  870,        853,  852,    0,  866,  867,  850,  869,  844,  866,    0,
       861,  872,  866,  854,  875,  876,  877,  861,  858,  880,        872,  864,  865,  874,  876,  867,  878,  872,  860,  881,
       881,  859,  859,  870,  885,  876,  887,    0,  888,  889,        882,  876,  884,  868,  865,  887,  888,  866,  866,  877,
   
       866,  891,  886,  893,    0,  894,  885,    0,  896,    0,        892,  883,  894,    0,  895,  896,  873,  898,  893,  900,
       897,    0,  898,    0,  899,  900,  901,    0,  902,  897,          0,  901,  892,    0,  903,    0,  904,    0,  905,    0,
       904,    0,  905,    0,  906,  893,  908,  884,    0,  910,        906,  907,  908,    0,  909,  904,  911,    0,  912,    0,
       903,  899,  896,  914,  896,  906,  900,  918,    0,  919,        913,  900,  915,  891,    0,  917,  910,  906,  903,  921,
       920,  894,  904,  909,  910,  904,  914,  913,  914,  910,        903,  913,  907,  925,    0,  926,  927,  901,  911,  916,
       924,  914,  926,  910,  929,  926,  931,  915,  919,  932,        917,  911,  921,  920,  921,  917,  931,  921,  933,  917,
       925,  918,  933,  933,  923,  918,  935,  930,  928,  946,        936,  933,  938,  922,  926,  939,  932,  925,  940,  940,
       953,  944,  941,    0,  956,  957,  948,  934,  960,  944,        930,  925,  942,  937,  935,  953,  960,  951,  948,    0,
       941,    0,  963,    0,  964,  965,  966,  967,  954,  950,        963,  964,  955,  941,  967,  951,  948,    0,  970,    0,
       960,  971,    0,  972,    0,  973,  964,  945,  957,  977,        971,  972,  973,  974,  961,  957,  967,  978,    0,  979,
   
       978,  969,  980,  981,  972,  983,  984,  964,  968,  987,          0,  980,  971,  952,  964,  984,  985,  976,  987,  988,
       982,  989,  977,    0,  991,  987,  975,  966,  972,  977,        979,  990,  991,  971,  975,  994,  989,  996,  984,    0,
       978,  989,  976,  986,  987,  983,  997,    0, 1004,  987,        998,  994,  982,  973,  979,  984,  985,  996,  983,  993,
         0, 1006,  997,    0, 1008, 1009, 1010, 1005, 1002, 1003,        994,  990, 1004,    0, 1011,  994,    0, 1013, 1004,    0,
      1014,    0, 1015,  996,    0, 1017, 1009, 1019,  990, 1013,       1015, 1016, 1017, 1012, 1009, 1010, 1021,    0, 1022, 1003,
      1012, 1010, 1024,  999, 1026, 1007, 1030, 1003, 1032, 1021,          0, 1024, 1016, 1026,  997, 1020, 1019, 1017, 1031, 1006,
         0, 1034, 1016, 1038, 1015, 1049, 1040, 1041, 1041, 2741,       1033, 1014, 1037, 1010, 1039, 1028,    0, 1041, 1023, 1045,
      1043, 1035,    0, 1045, 1029, 1028,    0, 1048,    0, 1049,       1022, 1056, 1047, 1048, 1048, 2755, 1050, 1042,    0, 1052,
      1050, 1041, 1052,    0, 1053, 1054, 1057, 1048, 1051,    0,       1036, 1035,    0, 1055,    0, 1056, 1040, 1058, 1049, 1060,
      1060, 1061, 1063,    0, 1064, 1051,    0, 1066, 1049,    0,          0, 1061, 1064, 1065, 1056, 1059,    0, 1068, 1070, 1071,
   
      1068, 1069, 1070, 1071, 1044,    0, 1075, 1067,    0, 1078,          0, 1072, 1059,    0, 1074, 1057,    0, 1076, 1077, 1078,
      1066, 1064, 1081, 1062, 1083, 1074, 1076, 1069,    0, 1087,       1081, 1052,    0, 1083, 1076,    0, 1086, 1074, 1072, 1089,
      1088, 1079, 1066, 1080, 1068, 1083, 1094, 1086, 1077, 1089,       1070, 1091, 1082, 1084, 1077,    0, 1095, 1096, 1087, 1074,
      1078, 1090, 1089, 1082, 1077, 1086, 1094, 1091, 1098, 1084,       1088, 1076, 1091, 1102, 1094, 1085, 1097, 1086, 1098, 1097,
      1098, 1085, 1089, 1081, 1102, 1103, 1100, 1109, 1092, 1093,       1090, 1085, 1094, 1102, 1099, 1106, 1092, 1106, 1093, 1097,
      1090, 1100, 1099,    0, 1121, 1099, 1116, 1124, 1108, 1126,       1089, 1110, 1111, 1108, 1117, 1100, 1101, 1098, 1108, 1107,
      1127, 1111, 1129, 1130,    0, 1131,    0, 1132, 1106, 1109,          0, 1129, 1107, 1124, 1132, 1116, 1134, 1135, 1119, 1137,
      1135,    0, 1136, 1137, 1138, 1134, 1140,    0, 1141, 1124,       1138,    0, 1139,    0, 1140, 1114, 1117, 1143,    0, 1144,
      1143, 1144, 1136, 1146,    0, 1147, 1138, 1129, 1150, 1143,       1145, 1146, 1142, 1148,    0, 1149, 1132, 1151, 1152, 1144,
         0, 1152, 1130, 1145, 1135, 1156, 1138, 1146, 1147, 1160,       1154,    0, 1155, 1146, 1137, 1158, 1151,    0, 1160, 1138,
   
      1141, 1152, 1146, 1155, 1144, 1156, 1167,    0, 1168,    0,       1153, 1143, 1164, 1146, 1154, 1155, 1168, 1149, 1160, 1154,
      1169, 1149, 1171, 1149,    0, 1173, 1165, 1165,    0, 1176,       1163, 1152, 1164, 1175,    0, 1176,    0, 1177, 1157, 1179,
      1177, 1162, 1179, 1180, 1181, 1166, 1162,    0, 1188, 1168,       1157,    0, 1181, 1173, 1173,    0, 1184, 1185, 1170, 1187,
      1173, 1191, 1172, 1194, 1195, 1176, 1198, 1190, 1175,    0,       1188, 1189, 1174, 1170,    0, 1196, 1176, 1181, 1199, 1180,
      1202, 1204, 1185, 1186, 1187, 1200, 1203, 1210, 1211,    0,       1202, 1203, 1184, 1206, 1198, 1183,    0, 1210, 1212, 1193,
      1212, 1214, 1205, 1217,    0, 1218, 1219, 1220,    0, 1221,       1194, 1195, 1208, 1211, 1218, 1219,    0, 1220, 1222, 1213,
      1222, 1214, 1218, 1225,    0, 1226, 1220, 1218, 1229,    0,       1225, 1216,    0, 1227, 1228, 1229,    0, 1230, 1231, 1223,
      1230,    0, 1231, 1222, 1223, 1234, 1235, 1236, 1217,    0,       1227, 1234,    0, 1235, 1229, 1227, 1238,    0, 1239,    0,
      1238, 1230, 1240, 1231,    0, 1242, 1243, 1244, 1231, 1222,       1240, 1231, 1232, 1243, 1244, 1245, 1226,    0, 1247, 1239,
      1230, 1248, 1249, 1241, 1241, 1228, 1253, 1228, 1230, 1243,       1249, 1240,    0, 1251, 1252, 1253, 1240, 1231, 1239, 1257,
   
      1247, 1252, 1240, 1235, 1262, 1263, 1239, 1245, 1238, 1244,       1258, 1250, 1250, 1237, 1262, 1237, 1239, 1252, 1256, 1261,
      1263, 1261, 1253, 1257, 1252, 1273, 1269, 1255, 1266, 1260,       1249, 1244, 1271, 1272, 1248, 1254, 1247, 1253, 1272, 1270,
         0, 1278, 1279, 1280,    0, 1281, 1282, 1283,    0, 1284,       1262, 1266, 1261, 1282, 1278, 1264, 1275, 1269,    0, 1287,
      1275, 1281, 1287, 1288, 1289, 1269,    0, 1291, 1283,    0,       1288, 1289,    0, 1290, 1291, 1292,    0, 1293, 1284, 1290,
      1294,    0, 1295, 1296,    0, 1297, 1281, 1273,    0, 1300,       1296, 1297, 1298, 1278,    0, 1300, 1292,    0, 1303,    0,
      1285, 1276, 1297, 1278, 1305, 1306, 1297, 1308, 1309, 1293,       1304, 1305,    0, 1306, 1290, 1282,    0, 1309, 1294, 1285,
      1294, 1295, 1313, 1294, 1315, 1316, 1297, 1318, 1319, 1306,       1306, 1287, 1314, 1315, 1306, 1317, 1318, 1302, 1303, 1304,
      1298, 1322, 1303, 1325, 1326, 1307, 1329, 1311,    0, 1333,       1322, 1303, 1324, 1325, 1306, 1327, 1328, 1315, 1307, 1331,
      1313, 1318, 1336, 1312, 1312,    0, 1339, 1319, 1325, 1343,       1312, 1334, 1335, 1316, 1338, 1320,    0, 1342, 1322, 1327,
      1324,    0, 1346, 1326, 1331, 1349, 1330, 1329, 1330, 1354,       1345, 1321, 1321,    0, 1348, 1328, 1334, 1352, 1333,    0,
   
      1327, 1333, 1348, 1335, 1345, 1341, 1355,    0, 1362,    0,       1355, 1335, 1340, 1358, 1339, 1338, 1339, 1363, 1336, 1342,
      1363, 1364, 1365, 1366, 1367,    0, 1368,    0, 1369, 1370,       1357, 1344, 1354, 1350, 1364,    0, 1371,    0, 1372, 1373,
      1354,    0, 1372, 1356, 1374,    0, 1375, 1353, 1358, 1378,       1374, 1375, 1376, 1377,    0, 1378,    0, 1379, 1380, 1364,
      1379,    0, 1380, 1358, 1382, 1383, 1375, 1385, 1376, 1387,          0, 1382, 1366, 1384,    0, 1385, 1363, 1368, 1388, 1389,
      1378, 1375, 1373,    0, 1391, 1392, 1393, 1377, 1395, 1396,          0, 1390, 1368, 1392, 1393, 1385, 1395, 1386, 1397, 1388,
      1373, 1388, 1399, 1375, 1377, 1402, 1380, 1404, 1405, 1393,       1385, 1383,    0, 1401, 1402, 1403, 1387, 1405, 1406, 1383,
      1379, 1388, 1390, 1386, 1411, 1382, 1405, 1395, 1415, 1390,       1398, 1409, 1385, 1387, 1412, 1390, 1414, 1415, 1403, 1389,
      1398, 1418, 1409, 1420,    0, 1421, 1422,    0, 1423, 1424,       1398, 1400, 1396, 1421, 1392, 1415, 1405, 1425, 1400, 1408,
      1405,    0, 1426,    0, 1427,    0, 1428, 1403, 1420, 1412,       1428, 1419, 1430,    0, 1431, 1432,    0, 1433, 1434, 1415,
      1432, 1416, 1411, 1435, 1436, 1414, 1415,    0, 1439, 1440,          0, 1436,    0, 1437,    0, 1438, 1413, 1430, 1422, 1442,
   
      1441, 1442,    0, 1443, 1427, 1436, 1446, 1447, 1429, 1449,       1426, 1421, 1445, 1446, 1424, 1425,    0, 1449, 1450, 1451,
         0, 1450, 1432,    0, 1452, 1453, 1443, 1455,    0, 1456,       1452,    0, 1453, 1437, 1446, 1456, 1457, 1439, 1459,    0,
      1436, 1441, 1459, 1440,    0, 1462, 1442, 1447,    0, 1465,       1460, 1442,    0, 1462, 1463, 1453, 1465,    0, 1466, 1446,
      1445, 1450, 1443, 1443, 1470, 1451, 1459, 1462, 1450, 1450,       1451, 1469, 1450,    0, 1472, 1452, 1457,    0, 1475, 1455,
         0, 1477, 1457, 1462, 1455, 1455,    0, 1482, 1462, 1467,       1460, 1453, 1453, 1480, 1461, 1469, 1472, 1460, 1460,    0,
      1485, 1486,    0, 1487, 1488, 1470, 1491, 1472, 1476, 1485,       1487, 1467, 1472, 1465, 1465,    0, 1492, 1472, 1477, 1495,
      1474,    0, 1496, 1497,    0, 1498,    0, 1499, 1500, 1501,       1496,    0, 1497, 1498, 1480, 1501, 1482, 1486, 1495, 1484,
      1492, 1503, 1504, 1480,    0, 1506,    0, 1507, 1508, 1509,          0, 1506, 1507,    0, 1508, 1509,    0, 1510, 1511, 1512,
         0, 1510, 1511,    0, 1512, 1494,    0, 1514, 1492, 1499,       1503, 1514, 1515, 1491,    0, 1517,    0, 1518, 1519, 1520,
      1517,    0, 1518, 1519, 1503, 1521,    0, 1522, 1509, 1501,          0, 1521, 1522,    0, 1523, 1505,    0, 1525, 1503, 1510,
   
      1525, 1516, 1517, 1528, 1515,    0, 1530,    0, 1531, 1518,       1528,    0, 1529, 1530, 1514, 1532,    0, 1533, 1520, 1512,
      1523, 1511, 1529, 1511, 1537, 1507, 1533, 1540,    0, 1541,       1536, 1527, 1528, 1539, 1526,    0, 1541,    0, 1542, 1529,
      1523, 1525, 1544, 1545,    0, 1546,    0, 1547, 1548, 1530,       1534, 1522, 1540, 1522, 1548, 1518, 1544, 1551,    0, 1552,
      1526, 1534, 1527,    0, 1553, 1554, 1555, 1556, 1557, 1542,       1534, 1536, 1555, 1556,    0, 1557,    0, 1558, 1559, 1541,
      1559,    0, 1560, 1561,    0, 1562, 1563, 1564, 1565,    0,       1537, 1545, 1538,    0, 1564, 1565, 1566, 1567, 1568, 1553,
      1566, 1567,    0, 1568, 1564,    0, 1570, 1557, 1572, 1548,       1570,    0, 1571, 1572,    0, 1573, 1574, 1575, 1576,    0,
      1548,    0, 1575, 1555, 1560, 1553, 1553, 1555, 1555, 1568,       1577, 1578,    0, 1579, 1575,    0, 1581, 1568, 1583, 1559,
      1571,    0, 1584, 1564, 1569, 1567, 1574, 1575, 1578, 1566,       1559,    0, 1586, 1566, 1571, 1564, 1564, 1566, 1566, 1579,
      1566, 1579, 1582, 1570, 1570, 1597, 1578, 1600, 1601, 1602,       1582,    0, 1595, 1575, 1580, 1578, 1585, 1586, 1589, 1577,
      1603, 1587, 1588, 1606, 1587,    0, 1608,    0, 1609, 1610,       1577, 1590, 1593, 1581, 1581, 1608, 1589, 1611, 1612, 1613,
   
      1611,    0, 1612, 1613, 1614, 1615,    0, 1616, 1617, 1593,       1614, 1598, 1599, 1617, 1598,    0, 1619,    0, 1620,    0,
      1619, 1610, 1621,    0, 1622, 1617,    0, 1624, 1605, 1602,       1621, 1622, 1623,    0, 1624, 1625, 1626, 1627,    0, 1628,
         0, 1627, 1628, 1629,    0, 1630, 1623, 1607, 1610, 1625,       1629, 1605, 1631, 1622, 1633,    0, 1634, 1629,    0, 1636,
      1618, 1626,    0, 1637, 1628, 1622, 1640, 1632, 1636,    0,       1617, 1614,    0, 1639, 1640, 1641,    0, 1642, 1635, 1619,
      1643, 1644,    0, 1645, 1641, 1634, 1638, 1649, 1650, 1651,       1622, 1637, 1630, 1638,    0, 1649, 1640, 1634, 1652, 1644,
         0, 1652,    0, 1653, 1654, 1655,    0, 1656, 1657, 1658,       1648,    0, 1655, 1656,    0, 1657, 1653, 1646, 1650, 1661,
         0, 1659, 1660, 1637, 1652,    0, 1663, 1650, 1653, 1641,       1662, 1663,    0, 1664,    0, 1665, 1666, 1667,    0, 1668,
      1641, 1654, 1657, 1656, 1659, 1652, 1659, 1649, 1649, 1657,       1669, 1670,    0, 1671, 1672, 1649, 1664,    0, 1675, 1662,
      1658, 1658, 1665, 1666, 1669, 1662, 1669, 1670, 1673,    0,       1665, 1653, 1653, 1666, 1669, 1668, 1671, 1664, 1671, 1661,
      1686, 1666, 1671,    0, 1689,    0, 1690, 1691,    0, 1692,       1661, 1669, 1670, 1670, 1677, 1678, 1681, 1674, 1681, 1682,
   
      1676, 1694, 1695, 1677,    0, 1697, 1698,    0, 1699, 1700,       1685,    0, 1698, 1678, 1683,    0, 1701,    0, 1702, 1703,
         0, 1701,    0, 1702, 1703, 1704, 1705,    0, 1706, 1682,          0, 1704, 1688, 1706, 1707, 1689,    0, 1709, 1710,    0,
      1689, 1688, 1710, 1711, 1698, 1713, 1714, 1715, 1716, 1711,       1711, 1712,    0, 1713,    0, 1714, 1715, 1716, 1717,    0,
      1718, 1719,    0, 1720, 1711, 1710,    0, 1723, 1712, 1725,       1718, 1694, 1701, 1700, 1722, 1723, 1710, 1725, 1726, 1727,
      1720, 1727,    0, 1728,    0, 1729, 1730,    0, 1731,    0,       1728, 1723, 1730, 1731,    0, 1732, 1723, 1722,    0, 1735,
      1732,    0, 1733,    0, 1734, 1727, 1713, 1717, 1724, 1725,       1724, 1737, 1732, 1739,    0, 1740,    0, 1741, 1742,    0,
      1728, 1721, 1728, 1723, 1730, 1726, 1727, 1733, 1736, 1725,       1743,    0, 1744,    0, 1745,    0, 1746, 1739, 1725, 1729,
      1750, 1732, 1733, 1733, 1740, 1736, 1737, 1737, 1744, 1734,       1736, 1737, 1740, 1733, 1740, 1735, 1742, 1738, 1739, 1745,
      1734,    0, 1761, 1762, 1763,    0, 1764, 1765,    0, 1766,       1748, 1737, 1762, 1744, 1745, 1745, 1752, 1748, 1749, 1749,
         0, 1767, 1768,    0, 1769, 1770, 1757, 1772, 1763,    0,       1756, 1746, 1746,    0, 1773, 1774, 1775,    0, 1776, 1777,
   
      1774,    0, 1775, 1751, 1777, 1778, 1779, 1780, 1764, 1782,          0, 1778,    0, 1779, 1780,    0, 1781, 1782, 1769, 1784,
      1783, 1778, 1771, 1776, 1787, 1764,    0, 1789,    0, 1790,       1775,    0, 1786,    0, 1787, 1763, 1789, 1790, 1791, 1792,
      1768, 1792, 1774, 1775, 1775, 1782, 1778, 1779, 1780, 1781,       1776, 1794, 1795, 1790, 1783, 1788, 1799, 1776,    0, 1801,
      1777, 1802, 1783, 1790, 1805, 1806, 1783, 1808, 1790, 1791,          0, 1802, 1780, 1804, 1786, 1787, 1787, 1794, 1790, 1791,
      1787, 1812, 1794, 1795, 1801, 1804, 1817,    0, 1818, 1819,       1792, 1793, 1789, 1814, 1795, 1802, 1817, 1818, 1795, 1820,
         0, 1820,    0, 1821, 1802, 1823, 1807, 1795,    0, 1826,       1802, 1803, 1799, 1824, 1806, 1807, 1813, 1816, 1829,    0,
         0, 1827,    0, 1828,    0, 1829, 1816,    0, 1831,    0,       1830, 1831,    0, 1832,    0, 1833, 1814, 1835, 1819, 1807,
      1832, 1824, 1826, 1816,    0, 1836, 1827, 1824, 1839, 1816,          0, 1838,    0, 1839,    0, 1840,    0, 1841, 1828,    0,
      1841, 1823, 1824, 1820, 1845, 1822, 1847, 1848, 1849, 1831,       1843,    0, 1844, 1836, 1838, 1828,    0, 1848, 1839, 1836,
      1832, 1852,    0, 1853, 1854, 1855, 1832, 1857, 1858, 1859,       1851, 1828, 1853, 1835, 1836, 1832, 1857, 1834, 1859, 1860,
   
      1836, 1861, 1842, 1849,    0, 1864,    0, 1865, 1847,    0,       1861, 1843, 1844, 1864,    0, 1865, 1866, 1867, 1844, 1869,
      1867, 1851, 1869, 1851, 1871, 1872, 1873, 1874, 1854,    0,       1870, 1871, 1848, 1873, 1854, 1861,    0, 1876,    0, 1877,
      1876, 1877, 1878, 1855, 1880, 1881, 1882, 1883, 1884, 1885,       1859,    0, 1879, 1863, 1881, 1863, 1883, 1884, 1885, 1886,
         0, 1886, 1863, 1888,    0, 1889, 1890,    0, 1891, 1892,       1866,    0, 1888, 1889, 1890, 1867, 1892, 1893, 1894, 1895,
      1893, 1894,    0, 1895, 1896, 1897, 1879, 1880, 1900, 1901,       1896, 1897,    0, 1898, 1875, 1900,    0, 1901, 1902,    0,
      1902, 1891, 1904, 1905, 1906, 1907, 1883, 1909,    0, 1910,       1903, 1904, 1905, 1906,    0, 1907, 1908, 1909, 1891, 1892,
      1911, 1912, 1913,    0, 1914, 1915,    0, 1916,    0, 1917,       1912, 1913, 1914, 1903, 1916, 1917, 1918, 1919, 1895, 1921,
      1918, 1919,    0, 1920, 1921,    0, 1922,    0, 1923, 1924,          0, 1922, 1923, 1924, 1925,    0, 1926, 1927,    0, 1928,
         0, 1925, 1902, 1927, 1928, 1929,    0, 1930, 1931,    0,          0, 1929, 1930, 1931,    0, 1932, 1933,    0, 1934,    0,
      1932,    0, 1933,    0, 1934,    0, 1935, 1936,    0, 1937,       1935, 1936,    0, 1937, 1914, 1939, 1940, 1941,    0, 1942,
   
      1938,    0, 1939,    0, 1940,    0, 1941, 1942,    0, 1943,       1943,    0, 1944,    0, 1945,    0, 1946,    0, 1947, 1948,
         0, 1944,    0, 1945, 1946, 1947,    0, 1948,    0, 1949,          0, 1949, 1950,    0, 1951,    0, 1952,    0, 1953, 1954,
      1950, 1951,    0, 1952,    0, 1953, 1954,    0, 1955,    0,          0, 1955,    0, 1956,    0, 1957, 1958, 1959,    0, 1960,
      1956,    0, 1957,    0, 1958, 2741, 1960, 1962, 1964, 1966,          0, 1961, 1962, 1963,    0, 1964,    0, 1965, 1966,    0,
      1968, 1969, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978,       1967,    0, 1968,    0, 1969,    0, 1970, 2755, 1972, 1974,
      1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988,       1976, 1978, 1980, 1981, 1983, 1984, 1985, 1986, 1987, 1988,
      1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,       1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
      1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,       1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
      2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018,       2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018,
Line 954
 
Line 879
   
      2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038,       2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038,
      2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048,       2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048,
      2049, 2050, 2051, 2052, 2053, 2055, 2056, 2057, 2058, 2059,       2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058,
      2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069,       2059, 2060, 2061, 2062, 2063, 2064, 2065, 2067, 2068, 2069,
      2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079,       2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079,
      2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089,       2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089,
      2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099,       2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099,
Line 975
 
Line 900
      2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229,       2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229,
   
      2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239,       2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239,
      2240       2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249,
        2250, 2251, 2252, 2253, 2254
     } ;      } ;
   
 static yyconst flex_int16_t yy_def[2712] =  static yyconst short int yy_def[2726] =
     {   0,      {   0,
      2437, 2436, 2438, 2438, 2439, 2439, 2440, 2440, 2436, 2441,       2449, 2448, 2450, 2450, 2451, 2451, 2452, 2452, 2448, 2453,
      2436, 2442, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2448, 2454, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2443, 2443, 2443, 2444,       2453, 2453, 2453, 2453, 2453, 2453, 2455, 2455, 2455, 2456,
      2444, 2444, 2436, 2436, 2441, 2442, 2436, 2441, 2441, 2441,       2456, 2456, 2448, 2448, 2453, 2454, 2448, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2445, 2441, 2446, 2443, 2443, 2443,       2453, 2453, 2453, 2453, 2457, 2453, 2458, 2455, 2455, 2455,
      2443, 2444, 2444, 2444, 2444, 2436, 2436, 2447, 2441, 2441,       2455, 2456, 2456, 2456, 2456, 2448, 2448, 2459, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2448, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2460, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2449, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2461, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2450, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2462, 2453, 2453, 2453,
      2441, 2441, 2445, 2445, 2441, 2446, 2446, 2443, 2444, 2447,       2453, 2453, 2457, 2457, 2453, 2458, 2458, 2455, 2456, 2459,
      2447, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2459, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2451, 2441, 2441, 2452,       2453, 2453, 2453, 2453, 2453, 2453, 2463, 2453, 2453, 2464,
      2441, 2441, 2441, 2441, 2441, 2441, 2453, 2441, 2441, 2454,       2453, 2453, 2453, 2453, 2453, 2453, 2465, 2453, 2453, 2466,
   
      2441, 2441, 2441, 2441, 2441, 2436, 2441, 2455, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2448, 2453, 2467, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2448, 2448, 2441, 2441, 2456, 2441, 2441, 2441, 2441, 2441,       2460, 2460, 2453, 2453, 2468, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2436, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2448, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2457, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2469, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2449, 2449,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2461,
      2441, 2441, 2441, 2441, 2441, 2441, 2458, 2441, 2441, 2441,       2461, 2453, 2453, 2453, 2453, 2453, 2453, 2470, 2453, 2453,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2450, 2450, 2441, 2441, 2441, 2459, 2460, 2441,       2453, 2453, 2453, 2462, 2462, 2453, 2453, 2453, 2471, 2472,
      2443, 2444, 2441, 2441, 2441, 2441, 2441, 2461, 2441, 2441,       2453, 2455, 2456, 2453, 2453, 2453, 2453, 2453, 2473, 2453,
      2441, 2441, 2441, 2441, 2462, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2474, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2451, 2451, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2463, 2463, 2453,
      2452, 2452, 2441, 2441, 2441, 2441, 2441, 2441, 2453, 2453,       2453, 2464, 2464, 2453, 2453, 2453, 2453, 2453, 2453, 2465,
      2441, 2441, 2454, 2454, 2441, 2441, 2441, 2441, 2441, 2441,       2465, 2453, 2453, 2466, 2466, 2453, 2453, 2453, 2453, 2453,
      2455, 2455, 2441, 2463, 2441, 2441, 2464, 2441, 2441, 2441,       2453, 2467, 2467, 2453, 2475, 2453, 2453, 2476, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2456, 2456, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2468, 2468, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2436, 2465,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2436, 2441,       2448, 2477, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2466, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2448, 2453, 2478, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2467, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2479, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2457, 2457, 2441, 2468, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2469, 2469, 2453, 2480, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2458, 2458, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2470, 2470,
      2441, 2441, 2441, 2469, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2481, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2459, 2459, 2460, 2460,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2471, 2471,
      2441, 2443, 2444, 2441, 2470, 2441, 2441, 2441, 2461, 2461,       2472, 2472, 2453, 2455, 2456, 2453, 2482, 2453, 2453, 2453,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2462, 2441, 2441, 2441,       2473, 2473, 2453, 2453, 2453, 2453, 2453, 2453, 2474, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2463, 2463, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2475, 2475,
      2441, 2464, 2464, 2441, 2441, 2441, 2441, 2471, 2441, 2441,       2453, 2453, 2453, 2476, 2476, 2453, 2453, 2453, 2453, 2483,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2472, 2441, 2465, 2465, 2473, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2484, 2453, 2477, 2477, 2485,
      2474, 2475, 2441, 2441, 2466, 2466, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2486, 2487, 2453, 2453, 2478, 2478, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
   
      2467, 2467, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2479, 2479, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2468, 2468, 2441, 2476, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2480, 2480, 2453,
      2441, 2441, 2441, 2441, 2441, 2477, 2441, 2478, 2441, 2441,       2488, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2489, 2453,
      2479, 2441, 2441, 2441, 2441, 2480, 2441, 2441, 2441, 2481,       2490, 2453, 2453, 2491, 2453, 2453, 2453, 2453, 2492, 2453,
      2441, 2441, 2469, 2469, 2441, 2441, 2441, 2441, 2441, 2482,       2453, 2453, 2493, 2453, 2453, 2481, 2481, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2483, 2443, 2444, 2441,       2453, 2453, 2494, 2453, 2453, 2453, 2453, 2453, 2453, 2495,
      2470, 2470, 2441, 2441, 2441, 2484, 2441, 2441, 2441, 2441,       2455, 2456, 2453, 2482, 2482, 2453, 2453, 2453, 2496, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2485, 2441, 2441, 2486, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2497, 2453, 2453, 2498, 2453, 2453,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2487, 2441, 2488, 2489,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2499,
      2441, 2441, 2441, 2441, 2471, 2471, 2441, 2441, 2441, 2490,       2453, 2500, 2501, 2453, 2453, 2453, 2453, 2483, 2483, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2502, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2472, 2472, 2441, 2473, 2473, 2441, 2441, 2441, 2474,       2453, 2453, 2453, 2453, 2453, 2484, 2484, 2453, 2485, 2485,
      2474, 2475, 2475, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2486, 2486, 2487, 2487, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2491,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2503, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2476, 2476, 2441, 2441, 2441, 2441, 2492,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2488, 2488, 2453,
      2441, 2441, 2477, 2477, 2441, 2478, 2478, 2441, 2441, 2479,       2453, 2453, 2453, 2504, 2453, 2453, 2489, 2489, 2453, 2490,
   
      2479, 2441, 2441, 2441, 2441, 2480, 2480, 2441, 2441, 2441,       2490, 2453, 2453, 2491, 2491, 2453, 2453, 2453, 2453, 2492,
      2481, 2481, 2441, 2441, 2441, 2493, 2494, 2495, 2441, 2482,       2492, 2453, 2453, 2453, 2493, 2493, 2453, 2453, 2453, 2505,
      2482, 2441, 2441, 2441, 2441, 2441, 2496, 2441, 2483, 2483,       2506, 2507, 2453, 2494, 2494, 2453, 2453, 2453, 2453, 2453,
      2443, 2436, 2444, 2441, 2441, 2441, 2497, 2484, 2484, 2441,       2508, 2453, 2495, 2495, 2455, 2448, 2456, 2453, 2453, 2453,
      2441, 2441, 2441, 2498, 2441, 2441, 2441, 2499, 2441, 2441,       2509, 2496, 2496, 2453, 2453, 2453, 2453, 2510, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2511, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2485, 2485, 2441, 2441, 2486, 2486,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2497, 2497,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2498, 2498, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2487, 2487, 2500, 2488,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2488, 2489, 2489, 2441, 2441, 2441, 2441, 2441, 2501, 2441,       2499, 2499, 2512, 2500, 2500, 2501, 2501, 2453, 2453, 2453,
   
      2490, 2490, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2513, 2453, 2502, 2502, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2502, 2441, 2441, 2441, 2441, 2503, 2441, 2504,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2514, 2453, 2453,
      2505, 2506, 2507, 2441, 2441, 2508, 2441, 2441, 2509, 2510,       2453, 2453, 2515, 2453, 2516, 2517, 2518, 2519, 2453, 2453,
      2441, 2441, 2441, 2491, 2491, 2511, 2441, 2441, 2441, 2441,       2520, 2453, 2453, 2521, 2522, 2453, 2453, 2453, 2503, 2503,
      2441, 2441, 2441, 2441, 2512, 2441, 2441, 2441, 2441, 2441,       2523, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2524,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2492, 2492, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2513, 2441, 2441, 2441, 2441, 2441, 2441, 2514, 2515,       2453, 2453, 2504, 2504, 2453, 2453, 2525, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2493, 2493, 2494, 2494, 2495, 2495,       2453, 2453, 2453, 2526, 2527, 2453, 2453, 2453, 2453, 2505,
   
      2441, 2441, 2441, 2516, 2517, 2441, 2496, 2496, 2441, 2444,       2505, 2506, 2506, 2507, 2507, 2453, 2453, 2453, 2528, 2529,
      2436, 2441, 2441, 2441, 2497, 2497, 2441, 2441, 2441, 2441,       2453, 2508, 2508, 2453, 2456, 2448, 2453, 2453, 2453, 2509,
      2498, 2498, 2441, 2441, 2441, 2499, 2499, 2441, 2441, 2441,       2509, 2453, 2453, 2453, 2453, 2510, 2510, 2453, 2453, 2453,
      2441, 2441, 2518, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2511, 2511, 2453, 2453, 2453, 2453, 2453, 2530, 2453, 2453,
      2519, 2441, 2520, 2441, 2521, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2531, 2453, 2532, 2453, 2533,
      2441, 2522, 2441, 2523, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2534, 2453, 2535, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2500, 2500, 2524,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2501, 2501, 2441, 2441, 2525, 2441,       2453, 2453, 2512, 2512, 2536, 2453, 2453, 2453, 2453, 2513,
      2441, 2526, 2441, 2441, 2527, 2528, 2441, 2441, 2441, 2529,       2513, 2453, 2453, 2537, 2453, 2453, 2538, 2453, 2453, 2539,
      2441, 2441, 2441, 2441, 2530, 2441, 2441, 2502, 2502, 2531,       2540, 2453, 2453, 2453, 2453, 2541, 2453, 2453, 2453, 2453,
   
      2441, 2532, 2441, 2533, 2503, 2503, 2441, 2504, 2504, 2505,       2542, 2453, 2453, 2514, 2514, 2543, 2453, 2544, 2453, 2545,
      2505, 2506, 2506, 2507, 2507, 2441, 2441, 2508, 2508, 2441,       2515, 2515, 2453, 2516, 2516, 2517, 2517, 2518, 2518, 2519,
      2534, 2509, 2509, 2510, 2510, 2441, 2535, 2441, 2511, 2511,       2519, 2453, 2453, 2520, 2520, 2453, 2546, 2521, 2521, 2522,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2536, 2512, 2512,       2522, 2453, 2547, 2453, 2523, 2523, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2548, 2524, 2524, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2537, 2441, 2441, 2513, 2513, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2549, 2453, 2453, 2525,
      2441, 2514, 2514, 2515, 2515, 2441, 2538, 2539, 2441, 2441,       2525, 2453, 2453, 2453, 2453, 2453, 2453, 2526, 2526, 2527,
      2441, 2540, 2516, 2516, 2517, 2517, 2441, 2441, 2441, 2441,       2527, 2453, 2550, 2551, 2453, 2453, 2453, 2552, 2528, 2528,
   
      2541, 2441, 2441, 2441, 2441, 2441, 2542, 2441, 2441, 2441,       2529, 2529, 2453, 2453, 2453, 2453, 2553, 2453, 2453, 2453,
      2441, 2543, 2441, 2518, 2518, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2554, 2453, 2453, 2453, 2453, 2555, 2453, 2530,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2519, 2519, 2441,       2530, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2520, 2520, 2441, 2521, 2521, 2544, 2545, 2441, 2441, 2441,       2453, 2453, 2453, 2531, 2531, 2453, 2532, 2532, 2453, 2533,
      2546, 2522, 2522, 2441, 2523, 2523, 2441, 2547, 2441, 2441,       2533, 2556, 2557, 2453, 2453, 2453, 2558, 2534, 2534, 2453,
      2441, 2441, 2441, 2441, 2548, 2441, 2441, 2441, 2441, 2441,       2535, 2535, 2453, 2559, 2453, 2453, 2453, 2453, 2453, 2453,
      2524, 2524, 2441, 2549, 2441, 2441, 2441, 2441, 2525, 2436,       2560, 2453, 2453, 2453, 2453, 2453, 2536, 2536, 2453, 2561,
      2550, 2441, 2551, 2551, 2441, 2441, 2552, 2552, 2553, 2553,       2453, 2453, 2453, 2453, 2537, 2448, 2562, 2453, 2563, 2563,
      2554, 2441, 2441, 2555, 2555, 2556, 2441, 2441, 2441, 2557,       2453, 2453, 2564, 2564, 2565, 2565, 2453, 2566, 2453, 2453,
      2557, 2441, 2558, 2559, 2559, 2441, 2560, 2560, 2441, 2561,       2567, 2567, 2568, 2453, 2453, 2453, 2569, 2569, 2453, 2570,
   
      2561, 2441, 2562, 2563, 2441, 2534, 2534, 2441, 2535, 2535,       2571, 2571, 2453, 2572, 2572, 2453, 2573, 2573, 2453, 2574,
      2441, 2441, 2441, 2441, 2564, 2441, 2441, 2441, 2536, 2536,       2575, 2453, 2546, 2546, 2453, 2547, 2547, 2453, 2453, 2453,
      2565, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2576, 2453, 2453, 2453, 2548, 2548, 2577, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2537, 2537, 2441, 2441, 2566, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2567, 2441, 2441, 2568, 2538, 2538, 2539, 2539, 2441, 2441,       2549, 2549, 2453, 2453, 2578, 2453, 2453, 2579, 2453, 2453,
      2441, 2540, 2540, 2441, 2441, 2441, 2569, 2541, 2541, 2441,       2580, 2550, 2550, 2551, 2551, 2453, 2453, 2453, 2552, 2552,
      2570, 2571, 2441, 2572, 2542, 2542, 2441, 2441, 2573, 2441,       2453, 2453, 2453, 2581, 2553, 2553, 2453, 2582, 2583, 2453,
      2543, 2543, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2584, 2554, 2554, 2453, 2453, 2585, 2453, 2555, 2555, 2453,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2544, 2544, 2545,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2545, 2441, 2441, 2441, 2546, 2546, 2441, 2441, 2547, 2547,       2453, 2453, 2453, 2453, 2556, 2556, 2557, 2557, 2453, 2453,
      2441, 2441, 2441, 2441, 2574, 2441, 2441, 2548, 2548, 2441,       2453, 2558, 2558, 2453, 2453, 2559, 2559, 2453, 2453, 2453,
      2441, 2575, 2441, 2441, 2576, 2441, 2441, 2441, 2441, 2549,       2453, 2586, 2453, 2453, 2560, 2560, 2453, 2453, 2587, 2453,
      2549, 2441, 2441, 2441, 2441, 2441, 2441, 2577, 2578, 2550,       2453, 2588, 2453, 2453, 2453, 2453, 2561, 2561, 2453, 2453,
      2550, 2441, 2441, 2441, 2554, 2554, 2441, 2579, 2556, 2556,       2453, 2453, 2453, 2453, 2589, 2590, 2562, 2562, 2453, 2453,
      2580, 2441, 2441, 2581, 2558, 2558, 2441, 2441, 2582, 2562,       2453, 2453, 2566, 2566, 2453, 2591, 2568, 2568, 2592, 2453,
      2562, 2563, 2563, 2441, 2441, 2441, 2441, 2583, 2441, 2564,       2453, 2593, 2570, 2570, 2453, 2453, 2594, 2574, 2574, 2575,
      2564, 2441, 2441, 2441, 2565, 2565, 2441, 2441, 2441, 2441,       2575, 2453, 2453, 2453, 2453, 2595, 2453, 2576, 2576, 2453,
      2441, 2584, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2577, 2577, 2453, 2453, 2453, 2453, 2453, 2596,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2566, 2566, 2441, 2585, 2567, 2567, 2441, 2586, 2568, 2568,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2578, 2578,
      2441, 2441, 2587, 2588, 2589, 2441, 2569, 2569, 2441, 2570,       2453, 2597, 2579, 2579, 2453, 2598, 2580, 2580, 2453, 2453,
      2570, 2571, 2571, 2441, 2572, 2572, 2441, 2441, 2573, 2573,       2599, 2600, 2601, 2453, 2581, 2581, 2453, 2582, 2582, 2583,
      2441, 2441, 2441, 2441, 2590, 2441, 2441, 2441, 2591, 2441,       2583, 2453, 2584, 2584, 2453, 2453, 2585, 2585, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2592, 2441, 2593, 2441, 2441,       2453, 2453, 2602, 2453, 2453, 2453, 2603, 2453, 2453, 2453,
      2441, 2594, 2441, 2441, 2595, 2441, 2596, 2441, 2574, 2574,       2453, 2453, 2453, 2604, 2453, 2605, 2453, 2453, 2453, 2606,
      2441, 2441, 2441, 2441, 2441, 2575, 2575, 2441, 2441, 2597,       2453, 2453, 2607, 2453, 2608, 2453, 2586, 2586, 2453, 2453,
      2441, 2576, 2576, 2441, 2441, 2598, 2441, 2441, 2441, 2599,       2453, 2453, 2453, 2587, 2587, 2453, 2453, 2609, 2453, 2588,
   
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2577, 2577, 2578,       2588, 2453, 2453, 2610, 2453, 2453, 2453, 2611, 2453, 2453,
      2578, 2600, 2441, 2601, 2602, 2579, 2579, 2580, 2580, 2441,       2453, 2453, 2453, 2453, 2453, 2589, 2589, 2590, 2590, 2612,
      2441, 2581, 2581, 2441, 2441, 2582, 2582, 2441, 2441, 2603,       2453, 2613, 2453, 2614, 2591, 2591, 2592, 2592, 2453, 2453,
      2604, 2583, 2583, 2441, 2441, 2605, 2441, 2606, 2441, 2607,       2593, 2593, 2453, 2453, 2594, 2594, 2453, 2453, 2615, 2616,
      2441, 2441, 2441, 2584, 2584, 2608, 2441, 2441, 2441, 2609,       2595, 2595, 2453, 2453, 2617, 2453, 2618, 2453, 2619, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2610, 2611, 2441,       2453, 2453, 2596, 2596, 2620, 2453, 2453, 2453, 2621, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2612, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2622, 2623, 2453, 2453,
      2441, 2441, 2441, 2613, 2585, 2585, 2614, 2586, 2586, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2624, 2453, 2453,
      2441, 2587, 2587, 2588, 2588, 2589, 2589, 2441, 2441, 2441,       2453, 2453, 2625, 2597, 2597, 2626, 2598, 2598, 2453, 2453,
      2615, 2441, 2441, 2441, 2441, 2441, 2441, 2590, 2590, 2616,       2599, 2599, 2600, 2600, 2601, 2601, 2453, 2453, 2453, 2627,
   
      2441, 2617, 2591, 2591, 2441, 2441, 2441, 2618, 2441, 2619,       2453, 2453, 2453, 2453, 2453, 2453, 2602, 2602, 2628, 2453,
      2592, 2592, 2441, 2593, 2593, 2620, 2441, 2441, 2594, 2594,       2629, 2603, 2603, 2453, 2453, 2453, 2630, 2453, 2631, 2604,
      2441, 2441, 2621, 2441, 2595, 2595, 2441, 2441, 2596, 2596,       2604, 2453, 2605, 2605, 2632, 2453, 2453, 2606, 2606, 2453,
      2441, 2441, 2441, 2441, 2622, 2441, 2441, 2441, 2441, 2441,       2453, 2633, 2453, 2607, 2607, 2453, 2453, 2608, 2608, 2453,
      2597, 2597, 2441, 2441, 2441, 2441, 2598, 2598, 2441, 2441,       2453, 2453, 2453, 2634, 2453, 2453, 2453, 2453, 2453, 2609,
      2441, 2441, 2599, 2599, 2441, 2441, 2441, 2441, 2441, 2441,       2609, 2453, 2453, 2453, 2453, 2610, 2610, 2453, 2453, 2453,
      2441, 2600, 2600, 2623, 2601, 2601, 2602, 2602, 2624, 2441,       2453, 2611, 2611, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2625, 2441, 2441, 2603, 2603, 2604, 2604, 2441, 2626,       2612, 2612, 2635, 2613, 2613, 2636, 2614, 2614, 2637, 2453,
      2605, 2605, 2441, 2606, 2606, 2441, 2607, 2607, 2441, 2441,       2453, 2638, 2453, 2453, 2615, 2615, 2616, 2616, 2453, 2639,
      2441, 2608, 2608, 2627, 2441, 2628, 2609, 2609, 2441, 2441,       2617, 2617, 2453, 2618, 2618, 2453, 2619, 2619, 2453, 2453,
   
      2629, 2441, 2441, 2630, 2441, 2610, 2610, 2611, 2611, 2441,       2453, 2620, 2620, 2640, 2453, 2641, 2621, 2621, 2453, 2453,
      2441, 2441, 2441, 2441, 2631, 2441, 2441, 2441, 2612, 2612,       2642, 2453, 2453, 2643, 2453, 2622, 2622, 2623, 2623, 2453,
      2441, 2441, 2632, 2441, 2613, 2613, 2614, 2614, 2633, 2441,       2453, 2453, 2453, 2453, 2644, 2453, 2453, 2453, 2624, 2624,
      2441, 2441, 2441, 2615, 2615, 2441, 2441, 2634, 2635, 2441,       2453, 2453, 2645, 2453, 2646, 2646, 2626, 2626, 2647, 2453,
      2441, 2616, 2616, 2636, 2617, 2617, 2441, 2441, 2637, 2618,       2453, 2453, 2453, 2627, 2627, 2453, 2453, 2648, 2649, 2453,
      2618, 2441, 2619, 2619, 2441, 2620, 2620, 2441, 2638, 2441,       2453, 2628, 2628, 2650, 2629, 2629, 2453, 2453, 2651, 2630,
      2441, 2621, 2621, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2630, 2453, 2631, 2631, 2453, 2632, 2632, 2453, 2652, 2453,
      2441, 2622, 2622, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2633, 2633, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2639, 2441, 2640, 2641, 2441,       2453, 2634, 2634, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2642, 2441, 2441, 2441, 2441, 2623, 2623, 2624, 2624, 2643,       2453, 2453, 2453, 2453, 2453, 2653, 2453, 2654, 2655, 2453,
   
      2441, 2625, 2625, 2644, 2441, 2645, 2626, 2626, 2646, 2441,       2656, 2453, 2453, 2453, 2453, 2635, 2635, 2636, 2636, 2637,
      2441, 2441, 2647, 2627, 2627, 2441, 2628, 2628, 2441, 2441,       2637, 2657, 2453, 2638, 2638, 2658, 2453, 2659, 2639, 2639,
      2629, 2629, 2441, 2441, 2630, 2630, 2441, 2441, 2441, 2441,       2660, 2453, 2453, 2453, 2661, 2640, 2640, 2453, 2641, 2641,
      2441, 2441, 2631, 2631, 2441, 2441, 2648, 2441, 2441, 2632,       2453, 2453, 2642, 2642, 2453, 2453, 2643, 2643, 2453, 2453,
      2632, 2649, 2633, 2633, 2441, 2441, 2441, 2441, 2650, 2651,       2453, 2453, 2453, 2453, 2644, 2644, 2453, 2453, 2662, 2453,
      2634, 2634, 2635, 2635, 2441, 2652, 2636, 2636, 2653, 2654,       2453, 2645, 2645, 2663, 2647, 2647, 2453, 2453, 2453, 2453,
      2637, 2637, 2655, 2441, 2441, 2638, 2638, 2441, 2441, 2441,       2664, 2665, 2648, 2648, 2649, 2649, 2453, 2666, 2650, 2650,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2667, 2668, 2651, 2651, 2669, 2453, 2453, 2652, 2652, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2639,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2639, 2441, 2441, 2640, 2640, 2641, 2641, 2656, 2642, 2642,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
   
      2441, 2441, 2657, 2441, 2643, 2643, 2658, 2644, 2644, 2659,       2453, 2653, 2653, 2453, 2453, 2654, 2654, 2655, 2655, 2670,
      2645, 2645, 2646, 2646, 2441, 2660, 2441, 2647, 2647, 2441,       2656, 2656, 2453, 2453, 2671, 2453, 2657, 2657, 2672, 2658,
      2441, 2441, 2661, 2662, 2441, 2441, 2441, 2441, 2441, 2441,       2658, 2673, 2659, 2659, 2660, 2660, 2453, 2674, 2453, 2661,
      2441, 2441, 2648, 2648, 2441, 2441, 2649, 2649, 2441, 2441,       2661, 2453, 2453, 2453, 2675, 2676, 2453, 2453, 2453, 2453,
      2441, 2663, 2650, 2650, 2651, 2651, 2664, 2652, 2652, 2653,       2453, 2453, 2453, 2453, 2662, 2662, 2453, 2453, 2663, 2663,
      2653, 2654, 2654, 2655, 2655, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2677, 2664, 2664, 2665, 2665, 2678, 2666,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2666, 2667, 2667, 2668, 2668, 2669, 2669, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2656, 2656, 2441, 2665, 2657, 2657, 2441, 2658, 2658,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2659, 2659, 2666, 2660, 2660, 2667, 2441, 2441, 2441, 2661,       2453, 2453, 2453, 2670, 2670, 2453, 2679, 2671, 2671, 2453,
   
      2661, 2662, 2662, 2441, 2668, 2669, 2670, 2671, 2441, 2672,       2672, 2672, 2673, 2673, 2680, 2674, 2674, 2681, 2453, 2453,
      2673, 2441, 2441, 2441, 2674, 2441, 2663, 2663, 2664, 2664,       2453, 2675, 2675, 2676, 2676, 2453, 2682, 2683, 2684, 2685,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441,       2453, 2686, 2687, 2453, 2453, 2453, 2688, 2453, 2677, 2677,
      2441, 2441, 2441, 2441, 2441, 2675, 2441, 2441, 2441, 2441,       2678, 2678, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2441, 2441, 2441, 2441, 2441, 2441, 2676, 2665, 2665, 2677,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2689, 2453, 2453,
      2666, 2666, 2667, 2667, 2441, 2678, 2441, 2441, 2668, 2668,       2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2690, 2679,
      2669, 2669, 2670, 2670, 2671, 2671, 2441, 2672, 2672, 2673,       2679, 2691, 2680, 2680, 2681, 2681, 2453, 2692, 2453, 2453,
      2673, 2441, 2441, 2441, 2674, 2674, 2441, 2441, 2679, 2441,       2682, 2682, 2683, 2683, 2684, 2684, 2685, 2685, 2453, 2686,
      2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2680, 2441,       2686, 2687, 2687, 2453, 2453, 2453, 2688, 2688, 2453, 2453,
      2441, 2681, 2675, 2675, 2441, 2682, 2441, 2441, 2441, 2683,       2693, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
   
      2441, 2441, 2441, 2441, 2676, 2676, 2677, 2677, 2441, 2678,       2694, 2453, 2453, 2695, 2689, 2689, 2453, 2696, 2453, 2453,
      2678, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2679,       2453, 2697, 2453, 2453, 2453, 2453, 2690, 2690, 2691, 2691,
      2679, 2441, 2684, 2441, 2441, 2441, 2685, 2441, 2686, 2687,       2453, 2692, 2692, 2453, 2453, 2453, 2453, 2453, 2453, 2453,
      2680, 2680, 2441, 2441, 2681, 2681, 2688, 2682, 2682, 2441,       2453, 2693, 2693, 2453, 2698, 2453, 2453, 2453, 2699, 2453,
      2689, 2690, 2683, 2683, 2441, 2691, 2441, 2441, 2441, 2441,       2700, 2701, 2694, 2694, 2453, 2453, 2695, 2695, 2702, 2696,
      2692, 2441, 2693, 2694, 2695, 2696, 2441, 2697, 2684, 2684,       2696, 2453, 2703, 2704, 2697, 2697, 2453, 2705, 2453, 2453,
      2441, 2698, 2699, 2685, 2685, 2700, 2686, 2686, 2687, 2687,       2453, 2453, 2706, 2453, 2707, 2708, 2709, 2710, 2453, 2711,
      2441, 2701, 2688, 2688, 2702, 2689, 2689, 2690, 2690, 2703,       2698, 2698, 2453, 2712, 2713, 2699, 2699, 2714, 2700, 2700,
      2691, 2691, 2441, 2441, 2704, 2705, 2692, 2692, 2441, 2693,       2701, 2701, 2453, 2715, 2702, 2702, 2716, 2703, 2703, 2704,
      2693, 2694, 2694, 2695, 2695, 2696, 2696, 2441, 2697, 2697,       2704, 2717, 2705, 2705, 2453, 2453, 2718, 2719, 2706, 2706,
   
      2706, 2698, 2698, 2699, 2699, 2700, 2700, 2707, 2701, 2701,       2453, 2707, 2707, 2708, 2708, 2709, 2709, 2710, 2710, 2453,
      2702, 2702, 2703, 2703, 2441, 2708, 2704, 2704, 2705, 2705,       2711, 2711, 2720, 2712, 2712, 2713, 2713, 2714, 2714, 2721,
      2709, 2710, 2706, 2706, 2707, 2707, 2711, 2708, 2708, 2709,       2715, 2715, 2716, 2716, 2717, 2717, 2453, 2722, 2718, 2718,
      2709, 2710, 2710, 2711, 2711,    0, 2436, 2436, 2436, 2436,       2719, 2719, 2723, 2724, 2720, 2720, 2721, 2721, 2725, 2722,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2722, 2723, 2723, 2724, 2724, 2725, 2725,    0, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
   
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
   
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
   
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
        2448, 2448, 2448, 2448, 2448
     } ;      } ;
   
 static yyconst flex_int16_t yy_nxt[2775] =  static yyconst short int yy_nxt[2789] =
     {   0,      {   0,
      2436,   48,   11,   12,   49,   13,   10,   10,   11,   12,       2448,   48,   11,   12,   49,   13,   10,   10,   11,   12,
        10,   13,   10,   14,   15,   16,   17,   18,   19,   20,         10,   13,   10,   14,   15,   16,   17,   18,   19,   20,
        21,   22,   10,   23,   24,   25,   26,   27,   28,   10,         21,   22,   10,   23,   24,   25,   26,   27,   28,   10,
        29,   30,   31,   32,   33,   34,   35,   36,   10,   11,         29,   30,   31,   32,   33,   34,   35,   36,   10,   11,
        11,   11,   38,   38,   41,   11,   78,   11,   41,   39,         11,   11,   38,   38,   41,   11,   78,   11,   41,   39,
        44,   57,   11,   79,   42,   44,   50,  127,   58,   80,         44,   57,   11,   79,   42,   44,   50,  127,   58,   80,
        65,   59,  128,  139,   66,   51,  140,   52,   67,   53,         65,   59,  128,  139,   66,   51,  140,   52,   67,   53,
        74,   54,  807,   55,   56,   60,   95,   81,  129,  111,         74,   54,  802,   55,   56,   60,   95,   81,  129,  111,
        68,   75,   61,  112,   76,   82,   62,   77,  148,   63,         68,   75,   61,  112,   76,   82,   62,   77,  148,   63,
        96,  102,   83,   98,   97,   64,   69,   99,  130,  113,         96,  102,   83,   98,   97,   64,   69,   99,  130,  113,
   
       135,  214,  143,  103,   70,  144,   71,  100,  215,  104,        135,  214,  143,  103,   70,  144,   71,  100,  215,  104,
       101,  105,  146,  149,   72,  147,   73,   84,   48,  153,        101,  105,  146,  149,   72,  147,   73,   84,   48,  153,
       131,   49,  132,  136,  133,  209,   85,   86,  134,  154,        131,   49,  132,  136,  133,  209,   85,   86,  134,  154,
       157,  161,   87,   88,   90,  162,  163,  638,   91,  167,        157,  161,   87,   88,   90,  162,  163,  803,   91,  167,
       168,  210,   92,  158,  190,  200,  191,  287,   93,  201,        168,  210,   92,  158,  190,  200,  191,  287,   93,  201,
       218,  219,  204,  224,   94,  106,  205,  226,  202,  107,        218,  219,  204,  224,   94,  106,  205,  226,  202,  107,
       206,  255,  203,  108,  225,  808,  288,  236,  256,  109,        206,  255,  203,  108,  225,  810,  288,  236,  256,  109,
       227,  258,  110,  114,  232,  115,  239,  237,  233,  259,        227,  258,  110,  114,  232,  115,  239,  237,  233,  259,
       240,  116,  117,  118,  238,  467,  119,  260,  234,  809,        240,  116,  117,  118,  238,  468,  119,  260,  234,  640,
       120,  121,  122,  241,  261,  248,  123,  139,  249,  468,        120,  121,  122,  241,  261,  248,  123,  139,  249,  469,
   
       140,  262,  124,  250,  143,  125,  146,  144,  290,  147,        140,  262,  124,  250,  143,  125,  146,  144,  290,  147,
       251,  297,  126,  294,  295,  311,  298,  305,  306,  291,        251,  297,  126,  294,  295,  311,  298,  305,  306,  291,
       308,  315,  377,  326,  312,  378,  316,  292,  327,  521,        308,  315,  378,  326,  312,  379,  316,  292,  327,  523,
       299,  810,  328,  293,  522,  347,  348,  498,  309,  329,        299,  811,  328,  293,  524,  348,  349,  812,  309,  329,
       330,  331,  353,  354,  332,  393,  333,  349,  493,  394,        330,  331,  354,  355,  332,  394,  333,  350,  494,  395,
       499,  395,  425,  426,  305,  306,  501,  494,  334,  335,        334,  396,  426,  427,  305,  306,  500,  495,  335,  336,
       643,  336,  358,  508,  509,  359,  532,  360,  518,  519,        813,  337,  359,  645,  503,  360,  814,  361,  528,  501,
       502,  353,  354,  526,  361,  533,  811,  362,  530,  554,        510,  511,  520,  521,  362,  354,  355,  363,  504,  532,
       363,  436,  609,  437,  438,  639,  531,  555,  812,  439,        364,  437,  556,  438,  439,  529,  534,  533,  611,  440,
       527,  440,  669,  640,  670,  671,  441,  688,  442,  443,        557,  441,  641,  510,  511,  535,  442,  702,  443,  444,
   
       699,  444,  610,  508,  509,  689,  672,  518,  519,  709,        642,  445,  672,  691,  673,  674,  520,  521,  612,  712,
       718,  731,  710,  700,  767,  719,  732,  779,  780,  813,        703,  692,  713,  721,  734,  770,  675,  815,  722,  735,
       814,  816,  817,  818,  819,  820,  711,  821,  822,  823,        782,  783,  816,  817,  819,  820,  714,  821,  822,  823,
       824,  825,  826,  827,  768,  801,  828,  802,  803,  829,        824,  825,  826,  827,  828,  771,  804,  829,  805,  806,
       830,  831,  832,  833,  834,  835,  836,  838,  839,  840,        830,  831,  832,  833,  834,  835,  836,  837,  838,  839,
       804,  841,  843,  805,  806,  844,  837,  676,  846,  847,        840,  807,  842,  843,  808,  809,  844,  845,  847,  848,
       848,  849,  851,  853,  854,  855,  686,  856,  857,  858,        841,  679,  850,  851,  852,  853,  855,  857,  858,  859,
       859,  860,  861,  862,  863,  864,  865,  866,  867,  868,        689,  860,  861,  862,  863,  864,  865,  866,  867,  868,
       869,  702,  870,  871,  872,  873,  874,  875,  876,  877,        869,  870,  871,  872,  873,  705,  874,  875,  876,  877,
       878,  879,  880,  881,  716,  882,  885,  886,  887,  888,        878,  879,  880,  881,  882,  883,  884,  885,  719,  886,
   
       889,  890,  891,  892,  883,  894,  895,  897,  898,  899,        889,  890,  891,  892,  893,  894,  895,  896,  887,  898,
       901,  902,  903,  904,  905,  907,  908,  909,  910,  912,        899,  901,  902,  903,  905,  906,  907,  908,  909,  911,
       913,  914,  744,  915,  916,  917,  918,  919,  921,  922,        912,  913,  914,  916,  917,  918,  747,  919,  920,  921,
       923,  925,  926,  927,  928,  930,  931,  932,  924,  933,        922,  923,  925,  926,  927,  929,  930,  931,  932,  934,
       934,  762,  935,  936,  937,  939,  940,  941,  942,  943,        935,  936,  928,  937,  938,  765,  939,  940,  941,  943,
       944,  945,  946,  947,  948,  949,  950,  951,  952,  953,        944,  945,  946,  947,  948,  949,  950,  951,  952,  953,
       954,  955,  956,  957,  958,  959,  960,  961,  962,  963,        954,  955,  956,  957,  958,  959,  960,  961,  962,  963,
       964,  966,  967,  968,  970,  971,  972,  973,  974,  975,        964,  965,  966,  967,  968,  970,  971,  972,  974,  975,
       976,  978,  979,  981,  977,  982,  984,  985,  988,  989,        976,  977,  978,  979,  980,  982,  983,  985,  981,  986,
       991,  993,  994,  995,  996,  980,  986,  997,  816,  998,        988,  989,  992,  993,  995,  997,  998,  999, 1000,  984,
   
       999, 1000, 1002, 1003,  983, 1004, 1005, 1006, 1007, 1008,        990, 1001,  819, 1002, 1003, 1004, 1006, 1007,  987, 1008,
      1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018,       1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018,
      1019, 1020, 1021, 1022, 1023,  843, 1024,  846, 1025, 1026,       1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028,
      1027,  851,  853, 1028, 1029, 1030, 1031, 1032, 1033, 1034,        847, 1029,  850, 1030, 1031, 1032,  855,  857, 1033, 1034,
      1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1045,       1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044,
      1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055,       1045, 1046, 1047, 1048, 1050, 1051, 1052, 1053, 1054, 1055,
      1056, 1057, 1058,  885, 1059, 1060, 1077, 1079, 1080, 1081,       1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063,  889, 1064,
       894, 1082,  897, 1083, 1061, 1062, 1063, 1064, 1065, 1066,       1065, 1082, 1084, 1085, 1086,  898, 1087,  901, 1088, 1066,
      1067, 1068, 1069, 1070, 1084,  901, 1071, 1072, 1085, 1086,       1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1089,
      1073, 1087, 1088, 1074, 1075,  907, 1089, 1076, 1090, 1091,        905, 1076, 1077, 1090, 1091, 1078, 1092, 1093, 1079, 1080,
   
       912, 1092, 1093, 1094, 1096, 1098, 1100, 1101,  921, 1102,        911, 1094, 1081, 1095, 1096,  916, 1097, 1098, 1099, 1101,
      1103, 1104, 1105, 1106, 1108, 1109,  930,  931,  932, 1110,       1103, 1105, 1106,  925, 1107, 1108, 1109, 1110, 1111, 1113,
      1111, 1112, 1113, 1114, 1116,  939, 1117, 1118, 1119, 1120,       1114,  934,  935,  936, 1115, 1116, 1117, 1118, 1119, 1121,
      1122, 1123, 1124, 1125, 1127, 1128, 1129, 1130, 1131, 1132,        943, 1122, 1123, 1124, 1125, 1127, 1128, 1129, 1130, 1132,
      1133, 1134, 1135, 1136, 1141, 1142, 1143, 1144, 1145, 1137,       1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1146,
      1146, 1147, 1148,  966, 1149, 1150,  970, 1151, 1152, 1138,       1147, 1148, 1149, 1150, 1142, 1151, 1152, 1153,  970, 1154,
      1139, 1154, 1155, 1153, 1140, 1156, 1157, 1158, 1159, 1160,       1155,  974, 1156, 1157, 1143, 1144, 1159, 1160, 1158, 1145,
      1161, 1162, 1163, 1164, 1165, 1166, 1167,  988, 1169,  991,       1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170,
       993, 1170, 1171, 1172, 1173, 1174, 1176, 1177, 1002, 1178,       1171, 1172,  992, 1174,  995,  997, 1175, 1176, 1177, 1178,
      1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188,       1179, 1181, 1182, 1006, 1183, 1184, 1185, 1186, 1187, 1188,
   
      1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1199,       1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198,
      1200, 1201, 1202, 1204, 1206, 1207, 1209, 1211, 1213, 1215,       1199, 1200, 1201, 1202, 1203, 1205, 1206, 1207, 1208, 1210,
      1216, 1217, 1219, 1220, 1221, 1223, 1225, 1226, 1227, 1228,       1212, 1213, 1215, 1217, 1219, 1221, 1222, 1223, 1225, 1226,
      1045, 1203, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237,       1227, 1229, 1231, 1232, 1233, 1234, 1050, 1209, 1236, 1237,
      1238, 1240, 1241, 1242, 1243, 1244, 1245, 1247, 1248, 1249,       1238, 1239, 1240, 1241, 1242, 1243, 1244, 1246, 1247, 1248,
      1250, 1256, 1246, 1259, 1253, 1257, 1261, 1251, 1254, 1258,       1249, 1250, 1251, 1253, 1254, 1255, 1256, 1262, 1252, 1265,
      1260, 1262, 1263, 1264, 1252, 1265, 1268, 1255, 1269, 1270,       1259, 1263, 1267, 1257, 1260, 1264, 1266, 1268, 1269, 1270,
      1271, 1079, 1266, 1272, 1273, 1275, 1276, 1277, 1278, 1267,       1258, 1271, 1274, 1261, 1275, 1276, 1277, 1084, 1272, 1278,
      1279, 1280, 1281, 1283, 1285, 1286, 1287, 1288, 1289, 1096,       1279, 1281, 1282, 1283, 1284, 1273, 1285, 1286, 1287, 1289,
      1098, 1100, 1290, 1291, 1292, 1294, 1296, 1297, 1108, 1298,       1291, 1292, 1293, 1294, 1295, 1101, 1103, 1105, 1296, 1297,
   
      1110, 1111, 1299, 1300, 1301, 1116, 1302, 1303, 1304, 1305,       1298, 1300, 1302, 1303, 1113, 1304, 1115, 1116, 1305, 1306,
      1122, 1306, 1307, 1308, 1127, 1309, 1310, 1311, 1312, 1313,       1307, 1121, 1308, 1309, 1310, 1311, 1127, 1312, 1313, 1314,
      1315, 1316, 1317, 1318, 1319, 1320, 1323, 1329, 1326, 1330,       1132, 1315, 1316, 1317, 1318, 1319, 1321, 1322, 1323, 1324,
      1332, 1324, 1327, 1321, 1325, 1333, 1335, 1336, 1337, 1322,       1325, 1326, 1329, 1335, 1332, 1336, 1338, 1330, 1333, 1327,
      1338, 1339, 1340, 1341, 1343, 1344, 1346, 1347, 1348, 1349,       1331, 1339, 1341, 1342, 1343, 1328, 1344, 1345, 1346, 1347,
      1350, 1351, 1352, 1353, 1354, 1355, 1357, 1358, 1359, 1360,       1349, 1350, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359,
      1356, 1169, 1362, 1363, 1364, 1365, 1366, 1176, 1367, 1368,       1360, 1361, 1363, 1364, 1365, 1366, 1362, 1174, 1368, 1369,
      1370, 1371, 1372, 1374, 1375, 1376, 1378, 1380, 1381, 1382,       1370, 1371, 1372, 1181, 1373, 1374, 1376, 1377, 1378, 1380,
      1383, 1385, 1386, 1387, 1388, 1389, 1391, 1392, 1393, 1199,       1381, 1382, 1384, 1386, 1387, 1388, 1389, 1390, 1392, 1393,
      1395, 1396, 1398, 1399, 1401, 1206, 1402, 1209, 1211, 1213,       1394, 1395, 1396, 1398, 1399, 1400, 1205, 1402, 1403, 1405,
   
      1215, 1403, 1404, 1219, 1405, 1407, 1223, 1225, 1408, 1410,       1406, 1408, 1212, 1409, 1215, 1217, 1219, 1221, 1410, 1411,
      1411, 1230, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1420,       1225, 1412, 1414, 1229, 1231, 1415, 1417, 1418, 1236, 1419,
      1240, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429,       1420, 1421, 1422, 1423, 1424, 1425, 1427, 1246, 1428, 1429,
      1430, 1431, 1432, 1435, 1433, 1437, 1438, 1439, 1440, 1441,       1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439,
      1442, 1434, 1443, 1444, 1445, 1446, 1447, 1448, 1436, 1449,       1442, 1440, 1444, 1445, 1446, 1447, 1448, 1449, 1441, 1450,
      1450, 1451, 1452, 1453, 1455, 1456, 1457, 1275, 1458, 1459,       1451, 1452, 1453, 1454, 1455, 1443, 1456, 1457, 1458, 1459,
      1460, 1461, 1462, 1463, 1283, 1285, 1464, 1466, 1468, 1469,       1460, 1462, 1463, 1464, 1281, 1465, 1466, 1467, 1468, 1469,
      1470, 1471, 1473, 1294, 1296, 1474, 1475, 1476, 1477, 1479,       1470, 1289, 1291, 1471, 1473, 1475, 1476, 1477, 1478, 1480,
      1480, 1481, 1482, 1483, 1484, 1486, 1487, 1488, 1489, 1490,       1300, 1302, 1481, 1482, 1483, 1484, 1486, 1487, 1488, 1489,
      1492, 1493, 1315, 1494, 1495, 1496, 1497, 1498, 1499, 1500,       1490, 1491, 1493, 1494, 1495, 1496, 1497, 1499, 1500, 1321,
   
      1501, 1502, 1503, 1504, 1505, 1329, 1506, 1332, 1507, 1335,       1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510,
      1509, 1511, 1512, 1513, 1514, 1516, 1343, 1517, 1346, 1518,       1511, 1512, 1335, 1513, 1338, 1514, 1341, 1516, 1518, 1519,
      1520, 1521, 1522, 1523, 1524, 1525, 1527, 1529, 1530, 1531,       1520, 1521, 1523, 1349, 1524, 1352, 1525, 1527, 1528, 1529,
      1526, 1532, 1534, 1535, 1538, 1362, 1533, 1539, 1536, 1541,       1530, 1531, 1532, 1534, 1536, 1537, 1538, 1533, 1539, 1541,
      1542, 1548, 1549, 1370, 1551, 1552, 1374, 1553, 1554, 1378,       1542, 1545, 1368, 1540, 1546, 1543, 1548, 1549, 1555, 1556,
      1380, 1556, 1557, 1558, 1385, 1560, 1537, 1543, 1561, 1562,       1376, 1558, 1559, 1380, 1560, 1561, 1384, 1386, 1562, 1564,
      1563, 1391, 1564, 1544, 1566, 1395, 1567, 1398, 1568, 1401,       1565, 1566, 1392, 1544, 1550, 1568, 1569, 1570, 1571, 1398,
      1569, 1571, 1573, 1545, 1546, 1574, 1407, 1575, 1547, 1410,       1551, 1572, 1574, 1402, 1575, 1405, 1576, 1408, 1577, 1579,
      1576, 1577, 1578, 1579, 1581, 1582, 1583, 1584, 1420, 1586,       1552, 1553, 1581, 1582, 1414, 1554, 1583, 1417, 1584, 1585,
      1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596,       1586, 1587, 1589, 1590, 1591, 1592, 1427, 1594, 1595, 1596,
   
      1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606,       1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606,
      1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616,       1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616,
      1617, 1618, 1455, 1619, 1620, 1622, 1623, 1624, 1626, 1627,       1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626,
      1628, 1630, 1466, 1468, 1631, 1632, 1633, 1473, 1634, 1635,       1462, 1627, 1628, 1630, 1631, 1632, 1634, 1635, 1636, 1638,
      1636, 1638, 1479, 1639, 1641, 1643, 1644, 1646, 1486, 1647,       1473, 1475, 1639, 1640, 1641, 1480, 1642, 1643, 1644, 1646,
      1648, 1650, 1651, 1492, 1652, 1653, 1654, 1655, 1656, 1657,       1486, 1647, 1649, 1651, 1652, 1654, 1493, 1655, 1656, 1658,
      1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1509,       1659, 1499, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667,
      1511, 1667, 1668, 1669, 1516, 1670, 1671, 1520, 1672, 1674,       1668, 1669, 1670, 1671, 1672, 1673, 1674, 1516, 1518, 1675,
      1675, 1677, 1680, 1673, 1683, 1676, 1678, 1681, 1682, 1529,       1676, 1677, 1523, 1678, 1679, 1527, 1680, 1682, 1683, 1685,
      1684, 1685, 1687, 1688, 1689, 1690, 1693, 1694, 1695, 1696,       1688, 1681, 1691, 1684, 1686, 1689, 1690, 1536, 1692, 1693,
   
      1691, 1698, 1699, 1541, 1697, 1700, 1701, 1702, 1703, 1704,       1695, 1696, 1697, 1698, 1701, 1702, 1703, 1704, 1699, 1706,
      1706, 1709, 1711, 1551, 1707, 1712, 1713, 1705, 1714, 1556,       1707, 1548, 1705, 1708, 1709, 1710, 1711, 1712, 1714, 1717,
      1715, 1717, 1560, 1719, 1720, 1721, 1723, 1566, 1724, 1725,       1719, 1558, 1715, 1720, 1721, 1713, 1722, 1723, 1564, 1724,
      1727, 1571, 1573, 1728, 1729, 1730, 1731, 1733, 1734, 1581,       1726, 1568, 1728, 1729, 1730, 1732, 1574, 1733, 1734, 1736,
      1735, 1736, 1737, 1586, 1738, 1740, 1741, 1742, 1743, 1745,       1579, 1581, 1737, 1738, 1739, 1740, 1742, 1743, 1589, 1744,
      1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755,       1745, 1746, 1594, 1747, 1749, 1750, 1751, 1752, 1754, 1755,
      1756, 1757, 1739, 1758, 1759, 1760, 1761, 1762, 1763, 1764,       1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765,
      1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1622,       1766, 1748, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774,
      1774, 1776, 1626, 1777, 1779, 1630, 1780, 1781, 1783, 1785,       1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1630, 1783,
      1787, 1788, 1638, 1789, 1790, 1641, 1643, 1791, 1646, 1792,       1785, 1634, 1786, 1788, 1638, 1789, 1790, 1792, 1794, 1796,
   
      1793, 1650, 1794, 1795, 1796, 1797, 1799, 1800, 1801, 1802,       1797, 1646, 1798, 1799, 1649, 1651, 1800, 1654, 1801, 1802,
      1804, 1805, 1806, 1807, 1808, 1809, 1810, 1812, 1813, 1815,       1658, 1803, 1804, 1805, 1806, 1808, 1809, 1810, 1811, 1813,
      1816, 1817, 1818, 1820, 1821, 1822, 1823, 1826, 1827, 1828,       1814, 1815, 1816, 1817, 1818, 1819, 1821, 1822, 1824, 1825,
      1830, 1824, 1831, 1832, 1680, 1833, 1834, 1835, 1837, 1838,       1826, 1827, 1829, 1830, 1831, 1832, 1835, 1836, 1837, 1839,
      1687, 1839, 1836, 1840, 1842, 1843, 1844, 1693, 1845, 1846,       1833, 1840, 1841, 1688, 1842, 1843, 1844, 1846, 1847, 1695,
      1848, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1857, 1858,       1848, 1845, 1849, 1851, 1852, 1853, 1701, 1854, 1855, 1857,
      1859, 1860, 1861, 1709, 1711, 1863, 1864, 1866, 1868, 1717,       1858, 1859, 1860, 1861, 1863, 1864, 1865, 1866, 1867, 1868,
      1719, 1869, 1870, 1723, 1871, 1872, 1727, 1873, 1874, 1876,       1869, 1870, 1717, 1719, 1872, 1873, 1875, 1876, 1878, 1726,
      1878, 1733, 1879, 1880, 1882, 1883, 1885, 1886, 1888, 1889,       1728, 1879, 1880, 1732, 1881, 1882, 1736, 1883, 1884, 1886,
      1890, 1891, 1745, 1893, 1894, 1895, 1896, 1898, 1899, 1900,       1888, 1742, 1889, 1890, 1892, 1893, 1895, 1896, 1898, 1899,
   
      1901, 1902, 1903, 1904, 1905, 1907, 1909, 1910, 1911, 1912,       1900, 1901, 1754, 1903, 1904, 1905, 1906, 1908, 1909, 1910,
      1913, 1914, 1915, 1916, 1917, 1918, 1920, 1921, 1922, 1923,       1911, 1912, 1913, 1914, 1915, 1917, 1919, 1920, 1921, 1922,
      1924, 1926, 1776, 1928, 1779, 1929, 1930, 1783, 1785, 1787,       1923, 1924, 1925, 1926, 1927, 1928, 1930, 1931, 1932, 1933,
      1931, 1932, 1933, 1935, 1936, 1937, 1938, 1939, 1940, 1941,       1934, 1936, 1785, 1938, 1788, 1939, 1940, 1792, 1794, 1796,
      1799, 1943, 1944, 1946, 1804, 1947, 1948, 1949, 1951, 1952,       1941, 1942, 1943, 1945, 1946, 1947, 1948, 1949, 1950, 1951,
      1954, 1812, 1955, 1815, 1957, 1958, 1959, 1820, 1960, 1961,       1808, 1953, 1954, 1956, 1813, 1957, 1958, 1959, 1961, 1962,
      1963, 1964, 1965, 1826, 1966, 1967, 1830, 1968, 1969, 1970,       1964, 1821, 1965, 1824, 1967, 1968, 1969, 1829, 1970, 1971,
      1971, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1842, 1980,       1973, 1974, 1975, 1835, 1976, 1977, 1839, 1978, 1979, 1980,
      1981, 1982, 1983, 1848, 1984, 1985, 1986, 1988, 1854, 1989,       1981, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1851, 1990,
      1990, 1987, 1991, 1992, 1993, 1994, 1995, 1863, 1997, 1866,       1991, 1992, 1993, 1857, 1994, 1995, 1996, 1998, 1863, 1999,
   
      1868, 1999, 2000, 2001, 2003, 2004, 2005, 1876, 1878, 2006,       2000, 1997, 2001, 2002, 2003, 2004, 2005, 1872, 2007, 1875,
      2008, 1882, 2009, 1885, 2010, 1888, 2011, 2012, 2013, 1893,       2009, 1878, 2011, 2012, 2013, 2015, 2016, 2017, 1886, 1888,
      2015, 2016, 2018, 1898, 2019, 2020, 2022, 2023, 2024, 2026,       2018, 2020, 1892, 2021, 1895, 2022, 1898, 2023, 2024, 2025,
      2027, 1907, 1909, 2028, 2029, 2030, 2031, 2032, 2034, 2035,       1903, 2027, 2028, 2030, 1908, 2031, 2032, 2034, 2035, 2036,
      2036, 2037, 1920, 2038, 2039, 2041, 2042, 1926, 1928, 2044,       2038, 2039, 1917, 1919, 2040, 2041, 2042, 2043, 2044, 2046,
      2045, 2046, 2047, 2048, 1935, 2049, 2050, 2052, 2054, 2055,       2047, 2048, 2049, 1930, 2050, 2051, 2053, 2054, 1936, 1938,
      2056, 1943, 2058, 1946, 2059, 2060, 2062, 1951, 2063, 1954,       2056, 2057, 2058, 2059, 2060, 1945, 2061, 2062, 2064, 2066,
      2064, 1957, 2065, 2067, 2068, 2069, 1963, 2070, 2071, 2072,       2067, 2068, 1953, 2070, 1956, 2071, 2072, 2074, 1961, 2075,
      2073, 2074, 2075, 2076, 2077, 1973, 2078, 2079, 2080, 2081,       1964, 2076, 1967, 2077, 2079, 2080, 2081, 1973, 2082, 2083,
      2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2091, 2092,       2084, 2085, 2086, 2087, 2088, 2089, 1983, 2090, 2091, 2092,
   
      2093, 2095, 2097, 2098, 2100, 2101, 2102, 2103, 2104, 1997,       2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2103,
      1999, 2106, 2107, 2003, 2109, 2110, 2112, 2008, 2114, 2115,       2104, 2105, 2107, 2109, 2110, 2112, 2113, 2114, 2115, 2116,
      2116, 2117, 2119, 2015, 2120, 2018, 2121, 2122, 2022, 2123,       2007, 2009, 2011, 2118, 2119, 2015, 2121, 2122, 2124, 2020,
      2124, 2026, 2125, 2126, 2127, 2128, 2129, 2130, 2034, 2131,       2126, 2127, 2128, 2129, 2131, 2027, 2132, 2030, 2133, 2134,
      2132, 2134, 2135, 2136, 2041, 2138, 2044, 2139, 2140, 2141,       2034, 2135, 2136, 2038, 2137, 2138, 2139, 2140, 2141, 2142,
      2142, 2144, 2146, 2052, 2054, 2147, 2149, 2058, 2151, 2153,       2046, 2143, 2144, 2146, 2147, 2148, 2053, 2150, 2056, 2151,
      2062, 2155, 2156, 2157, 2067, 2158, 2159, 2160, 2161, 2162,       2152, 2153, 2154, 2156, 2158, 2064, 2066, 2159, 2161, 2070,
      2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172,       2163, 2165, 2074, 2167, 2168, 2169, 2079, 2170, 2171, 2172,
      2173, 2174, 2175, 2176, 2177, 2178, 2179, 2091, 2180, 2181,       2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182,
      2095, 2097, 2183, 2100, 2184, 2185, 2187, 2188, 2106, 2190,       2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2103,
   
      2109, 2192, 2112, 2114, 2193, 2195, 2196, 2119, 2197, 2198,       2192, 2193, 2107, 2109, 2195, 2112, 2196, 2197, 2199, 2200,
      2199, 2201, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210,       2118, 2202, 2121, 2204, 2124, 2126, 2205, 2207, 2208, 2131,
      2211, 2134, 2212, 2213, 2138, 2214, 2215, 2216, 2218, 2144,       2209, 2210, 2211, 2213, 2215, 2216, 2217, 2218, 2219, 2220,
      2146, 2220, 2149, 2151, 2153, 2155, 2221, 2222, 2223, 2224,       2221, 2222, 2223, 2146, 2224, 2225, 2150, 2226, 2227, 2228,
      2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234,       2230, 2156, 2158, 2232, 2161, 2163, 2165, 2167, 2233, 2234,
      2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244,       2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244,
      2245, 2246, 2183, 2247, 2249, 2187, 2250, 2190, 2192, 2252,       2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254,
      2195, 2254, 2255, 2256, 2257, 2201, 2203, 2258, 2260, 2262,       2255, 2256, 2257, 2258, 2195, 2259, 2261, 2199, 2262, 2202,
      2264, 2266, 2267, 2269, 2271, 2272, 2273, 2274, 2276, 2277,       2204, 2264, 2207, 2266, 2267, 2268, 2269, 2213, 2215, 2270,
      2218, 2220, 2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285,       2272, 2274, 2276, 2278, 2279, 2281, 2283, 2284, 2285, 2286,
   
      2286, 2287, 2288, 2289, 2290, 2291, 2292, 2294, 2295, 2296,       2288, 2289, 2230, 2232, 2290, 2291, 2292, 2293, 2294, 2295,
      2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2306, 2249,       2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2306,
      2308, 2252, 2254, 2309, 2311, 2312, 2313, 2260, 2262, 2264,       2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316,
      2266, 2314, 2269, 2271, 2315, 2316, 2317, 2276, 2318, 2319,       2318, 2261, 2320, 2264, 2266, 2321, 2323, 2324, 2325, 2272,
      2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330,       2274, 2276, 2278, 2326, 2281, 2283, 2327, 2328, 2329, 2288,
      2332, 2333, 2334, 2336, 2294, 2337, 2339, 2340, 2341, 2342,       2330, 2331, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340,
      2344, 2345, 2346, 2347, 2348, 2306, 2308, 2349, 2311, 2350,       2341, 2342, 2344, 2345, 2346, 2348, 2306, 2349, 2351, 2352,
      2351, 2352, 2353, 2354, 2355, 2356, 2357, 2321, 2358, 2360,       2353, 2354, 2356, 2357, 2358, 2359, 2360, 2318, 2320, 2361,
      2361, 2362, 2363, 2365, 2366, 2368, 2370, 2332, 2371, 2372,       2323, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2333,
      2336, 2374, 2339, 2375, 2377, 2379, 2344, 2380, 2382, 2383,       2370, 2372, 2373, 2374, 2375, 2377, 2378, 2380, 2382, 2344,
   
      2384, 2385, 2386, 2388, 2389, 2391, 2393, 2395, 2397, 2398,       2383, 2384, 2348, 2386, 2351, 2387, 2389, 2391, 2356, 2392,
      2400, 2360, 2401, 2403, 2405, 2365, 2407, 2368, 2370, 2408,       2394, 2395, 2396, 2397, 2398, 2400, 2401, 2403, 2405, 2407,
      2410, 2374, 2412, 2377, 2379, 2414, 2382, 2415, 2416, 2418,       2409, 2410, 2412, 2372, 2413, 2415, 2417, 2377, 2419, 2380,
      2420, 2388, 2421, 2391, 2393, 2395, 2397, 2422, 2400, 2424,       2382, 2420, 2422, 2386, 2424, 2389, 2391, 2426, 2394, 2427,
      2403, 2405, 2407, 2426, 2410, 2412, 2414, 2427, 2429, 2418,       2428, 2430, 2432, 2400, 2433, 2403, 2405, 2407, 2409, 2434,
      2420, 2431, 2433, 2424, 2426, 2435, 2429, 2431, 2433, 2435,       2412, 2436, 2415, 2417, 2419, 2438, 2422, 2424, 2426, 2439,
        10,   10,   37,   37,   40,   40,   43,   43,   45,   46,       2441, 2430, 2432, 2443, 2445, 2436, 2438, 2447, 2441, 2443,
        46,  138,  142,  263,  266,  270,  321,  389,  413,  447,       2445, 2447,   10,   10,   37,   37,   40,   40,   43,   43,
       451,  459,  463,  471,  487,  544,  567,  587,  589,  599,         45,   46,   46,  138,  142,  263,  266,  270,  321,  390,
       607,  637,  642,  675,  685,  701,  715,  743,  761,  815,        414,  448,  452,  460,  464,  472,  488,  546,  569,  589,
   
       842,  845,  850,  852,  884,  893,  896,  900,  906,  911,        591,  601,  609,  639,  644,  678,  688,  704,  718,  746,
       920,  929,  938,  965,  969,  987,  990,  992, 1001, 1044,        764,  818,  846,  849,  854,  856,  888,  897,  900,  904,
      1078, 1095, 1097, 1099, 1107, 1115, 1121, 1126, 1168, 1175,        910,  915,  924,  933,  942,  969,  973,  991,  994,  996,
      1198, 1205, 1208, 1210, 1212, 1214, 1218, 1222, 1224, 1229,       1005, 1049, 1083, 1100, 1102, 1104, 1112, 1120, 1126, 1131,
      1239, 1274, 1282, 1284, 1293, 1295, 1314, 1328, 1331, 1334,       1173, 1180, 1204, 1211, 1214, 1216, 1218, 1220, 1224, 1228,
      1342, 1345, 1361, 1369, 1369, 1373, 1377, 1379, 1384, 1390,       1230, 1235, 1245, 1280, 1288, 1290, 1299, 1301, 1320, 1334,
      1394, 1397, 1400, 1406, 1409, 1419, 1454, 1465, 1467, 1472,       1337, 1340, 1348, 1351, 1367, 1375, 1375, 1379, 1383, 1385,
      1478, 1485, 1491, 1508, 1510, 1515, 1519, 1528, 1540, 1550,       1391, 1397, 1401, 1404, 1407, 1413, 1416, 1426, 1461, 1472,
      1373, 1377, 1379, 1555, 1384, 1559, 1390, 1565, 1394, 1397,       1474, 1479, 1485, 1492, 1498, 1515, 1517, 1522, 1526, 1535,
      1400, 1570, 1572, 1580, 1585, 1621, 1625, 1629, 1637, 1640,       1547, 1557, 1379, 1383, 1385, 1563, 1391, 1567, 1397, 1573,
   
      1642, 1645, 1649, 1679, 1686, 1692, 1708, 1710, 1716, 1718,       1401, 1404, 1407, 1578, 1580, 1588, 1593, 1629, 1633, 1637,
      1722, 1726, 1732, 1744, 1775, 1778, 1782, 1784, 1786, 1798,       1645, 1648, 1650, 1653, 1657, 1687, 1694, 1700, 1716, 1718,
      1803, 1811, 1814, 1819, 1825, 1829, 1841, 1847, 1853, 1862,       1725, 1727, 1731, 1735, 1741, 1753, 1784, 1787, 1791, 1793,
      1865, 1867, 1875, 1877, 1881, 1884, 1887, 1892, 1897, 1906,       1795, 1807, 1812, 1820, 1823, 1828, 1834, 1838, 1850, 1856,
      1908, 1919, 1925, 1927, 1934, 1942, 1945, 1950, 1953, 1956,       1862, 1871, 1874, 1877, 1885, 1887, 1891, 1894, 1897, 1902,
      1962, 1972, 1996, 1998, 2002, 2007, 2014, 2017, 2021, 2025,       1907, 1916, 1918, 1929, 1935, 1937, 1944, 1952, 1955, 1960,
      2033, 2040, 2043, 2051, 2053, 2057, 2061, 2066, 2090, 2094,       1963, 1966, 1972, 1982, 2006, 2008, 2010, 2014, 2019, 2026,
      2096, 2099, 2105, 2108, 2111, 2113, 2118, 2133, 2137, 2143,       2029, 2033, 2037, 2045, 2052, 1935, 2055, 2063, 2065, 2069,
      2145, 2148, 2150, 2152, 2154, 2182, 2186, 2189, 2191, 2194,       2073, 2078, 2102, 2106, 2108, 2111, 2117, 2120, 2123, 2125,
      2200, 2202, 2217, 2219, 2248, 2251, 2253, 2259, 2261, 2263,       2130, 2145, 2149, 2155, 2157, 2160, 2162, 2164, 2166, 2194,
   
      2265, 2268, 2270, 2275, 2293, 2305, 2307, 2310, 2320, 2331,       2198, 2201, 2203, 2206, 2212, 2214, 2229, 2231, 2260, 2263,
      2335, 2338, 2343, 2359, 2364, 2367, 2369, 2373, 2376, 2378,       2265, 2271, 2273, 2275, 2277, 2280, 2282, 2287, 2305, 2317,
      2381, 2387, 2390, 2392, 2394, 2396, 2399, 2402, 2404, 2406,       2319, 2322, 2332, 2343, 2347, 2350, 2355, 2371, 2376, 2379,
      2409, 2411, 2413, 2417, 2419, 2423, 2425, 2428, 2430, 2432,       2381, 2385, 2388, 2390, 2393, 2399, 2402, 2404, 2406, 2408,
      2434,  800,  799,  798,  797,  796,  795,  794,  793,  792,       2411, 2414, 2416, 2418, 2421, 2423, 2425, 2429, 2431, 2435,
       791,  790,  789,  788,  787,  786,  785,  784,  783,  782,       2437, 2440, 2442, 2444, 2446,  801,  800,  799,  798,  797,
       781,  778,  777,  776,  775,  774,  773,  772,  771,  770,        796,  795,  794,  793,  792,  791,  790,  789,  788,  787,
       769,  766,  600,  765,  764,  763,  762,  760,  759,  758,        786,  785,  784,  781,  780,  779,  778,  777,  776,  775,
       757,  590,  588,  756,  755,  754,  753,  752,  751,  750,        774,  773,  772,  769,  602,  768,  767,  766,  765,  763,
       749,  748,  747,  746,  745,  744,  742,  741,  740,  739,        762,  761,  760,  592,  590,  759,  758,  757,  756,  755,
   
       738,  568,  737,  736,  735,  734,  733,  730,  729,  728,        754,  753,  752,  751,  750,  749,  748,  747,  745,  744,
       727,  726,  725,  724,  723,  722,  721,  720,  717,  716,        743,  742,  741,  570,  740,  739,  738,  737,  736,  733,
       714,  545,  713,  712,  708,  707,  706,  705,  704,  703,        732,  731,  730,  729,  728,  727,  726,  725,  724,  723,
       702,  698,  697,  696,  695,  694,  693,  692,  691,  690,        720,  719,  717,  547,  716,  715,  711,  710,  709,  708,
       687,  686,  684,  683,  682,  681,  680,  679,  678,  677,        707,  706,  705,  701,  700,  699,  698,  697,  696,  695,
       676,  674,  673,  668,  667,  666,  665,  664,  663,  662,        694,  693,  690,  689,  687,  686,  685,  684,  683,  682,
       661,  660,  659,  658,  657,  656,  655,  654,  653,  488,        681,  680,  679,  677,  676,  671,  670,  669,  668,  667,
       652,  651,  650,  649,  648,  647,  646,  645,  644,  643,        666,  665,  664,  663,  662,  661,  660,  659,  658,  657,
       641,  638,  636,  472,  635,  634,  633,  632,  631,  630,        656,  655,  489,  654,  653,  652,  651,  650,  649,  648,
       464,  629,  628,  460,  627,  626,  625,  624,  623,  622,        647,  646,  645,  643,  640,  638,  473,  637,  636,  635,
   
       452,  621,  620,  448,  619,  618,  617,  616,  615,  614,        634,  633,  632,  465,  631,  630,  461,  629,  628,  627,
       613,  612,  611,  608,  606,  605,  604,  603,  602,  601,        626,  625,  624,  453,  623,  622,  449,  621,  620,  619,
       600,  598,  597,  596,  595,  594,  593,  592,  591,  590,        618,  617,  616,  615,  614,  613,  610,  608,  607,  606,
       588,  586,  585,  584,  414,  583,  582,  581,  580,  579,        605,  604,  603,  602,  600,  599,  598,  597,  596,  595,
       578,  577,  576,  575,  574,  573,  572,  571,  570,  569,        594,  593,  592,  590,  588,  587,  586,  415,  585,  584,
       568,  566,  565,  564,  563,  562,  561,  390,  560,  559,        583,  582,  581,  580,  579,  578,  577,  576,  575,  574,
       558,  557,  556,  553,  552,  551,  550,  549,  548,  547,        573,  572,  571,  570,  568,  567,  566,  565,  564,  563,
       546,  545,  543,  542,  541,  540,  539,  538,  537,  536,        391,  562,  561,  560,  559,  558,  555,  554,  553,  552,
       535,  534,  529,  528,  525,  524,  523,  520,  517,  516,        551,  550,  549,  548,  547,  545,  544,  543,  542,  541,
       515,  514,  513,  512,  511,  510,  507,  506,  505,  504,        540,  539,  538,  537,  536,  531,  530,  527,  526,  525,
   
       503,  500,  497,  496,  495,  492,  491,  490,  489,  488,        522,  519,  518,  517,  516,  515,  514,  513,  512,  509,
       486,  485,  322,  484,  483,  482,  481,  480,  479,  478,        508,  507,  506,  505,  502,  499,  498,  497,  496,  493,
       477,  476,  475,  474,  473,  472,  470,  469,  466,  465,        492,  491,  490,  489,  487,  486,  322,  485,  484,  483,
       464,  462,  461,  460,  458,  457,  456,  455,  454,  453,        482,  481,  480,  479,  478,  477,  476,  475,  474,  473,
       452,  450,  449,  448,  446,  445,  435,  434,  433,  432,        471,  470,  467,  466,  465,  463,  462,  461,  459,  458,
       431,  430,  429,  428,  427,  424,  423,  271,  422,  421,        457,  456,  455,  454,  453,  451,  450,  449,  447,  446,
       267,  420,  264,  419,  418,  417,  416,  415,  414,  412,        436,  435,  434,  433,  432,  431,  430,  429,  428,  425,
       411,  410,  409,  408,  407,  406,  405,  404,  403,  402,        424,  271,  423,  422,  267,  421,  264,  420,  419,  418,
       401,  400,  399,  398,  397,  396,  392,  391,  390,  388,        417,  416,  415,  413,  412,  411,  410,  409,  408,  407,
       387,  386,  385,  384,  383,  382,  381,  380,  379,  376,        406,  405,  404,  403,  402,  401,  400,  399,  398,  397,
   
       375,  374,  373,  372,  371,  370,  369,  368,  367,  366,        393,  392,  391,  389,  388,  387,  386,  385,  384,  383,
       365,  364,  357,  356,  355,  352,  351,  350,  346,  345,        382,  381,  380,  377,  376,  375,  374,  373,  372,  371,
       344,  343,  342,  341,  340,  339,  338,  337,  325,  324,        370,  369,  368,  367,  366,  365,  358,  357,  356,  353,
       323,  322,  320,  319,  318,  317,  314,  313,  310,  307,        352,  351,  347,  346,  345,  344,  343,  342,  341,  340,
       304,  303,  302,  301,  300,  296,  289,  286,  285,  284,        339,  338,  325,  324,  323,  322,  320,  319,  318,  317,
       283,  282,  281,  280,  279,  278,  277,  276,  275,  274,        314,  313,  310,  307,  304,  303,  302,  301,  300,  296,
       273,  272,  271,  269,  268,  267,  265,  264,  257,  254,        289,  286,  285,  284,  283,  282,  281,  280,  279,  278,
       253,  252,  247,  246,  245,  244,  243,  242,  235,  231,        277,  276,  275,  274,  273,  272,  271,  269,  268,  267,
       230,  229,  228,  223,  222,  221,  220,  217,  216,  213,        265,  264,  257,  254,  253,  252,  247,  246,  245,  244,
       212,  211,  208,  207,  199,  198,  197,  196,  195,  194,        243,  242,  235,  231,  230,  229,  228,  223,  222,  221,
   
       193,  192,  189,  188,  187,  186,  185,  184,  183,  182,        220,  217,  216,  213,  212,  211,  208,  207,  199,  198,
       181,  180,  179,  178,  177,  176,  175,  174,  173,  172,        197,  196,  195,  194,  193,  192,  189,  188,  187,  186,
       171,  170,  169,  166,  165,  164,  160,  159,  156,  155,        185,  184,  183,  182,  181,  180,  179,  178,  177,  176,
       152,  151,  150,   47,  145,  141,  137,   89,   47, 2436,        175,  174,  173,  172,  171,  170,  169,  166,  165,  164,
         9, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,        160,  159,  156,  155,  152,  151,  150,   47,  145,  141,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,        137,   89,   47, 2448,    9, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
        2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448
     } ;      } ;
   
 static yyconst flex_int16_t yy_chk[2775] =  static yyconst short int yy_chk[2789] =
     {   0,      {   0,
         0,   13,    1,    1,   13,    1,    2,    2,    2,    2,          0,   13,    1,    1,   13,    1,    2,    2,    2,    2,
         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,          2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
Line 1599
 
Line 1527
         4,    5,    3,    4,    5,    6,   20,    7,    6,    4,          4,    5,    3,    4,    5,    6,   20,    7,    6,    4,
         7,   15,    8,   20,    6,    8,   14,   32,   15,   20,          7,   15,    8,   20,    6,    8,   14,   32,   15,   20,
        17,   15,   32,   38,   17,   14,   38,   14,   17,   14,         17,   15,   32,   38,   17,   14,   38,   14,   17,   14,
        19,   14,  636,   14,   14,   16,   25,   21,   33,   29,         19,   14,  635,   14,   14,   16,   25,   21,   33,   29,
        17,   19,   16,   29,   19,   21,   16,   19,   50,   16,         17,   19,   16,   29,   19,   21,   16,   19,   50,   16,
        25,   27,   21,   26,   25,   16,   18,   26,   33,   29,         25,   27,   21,   26,   25,   16,   18,   26,   33,   29,
   
        35,  103,   41,   27,   18,   41,   18,   26,  103,   27,         35,  103,   41,   27,   18,   41,   18,   26,  103,   27,
        26,   27,   44,   50,   18,   44,   18,   22,   48,   54,         26,   27,   44,   50,   18,   44,   18,   22,   48,   54,
        34,   48,   34,   35,   34,   99,   22,   22,   34,   54,         34,   48,   34,   35,   34,   99,   22,   22,   34,   54,
        57,   60,   22,   22,   24,   60,   60,  638,   24,   64,         57,   60,   22,   22,   24,   60,   60,  636,   24,   64,
        64,   99,   24,   57,   86,   95,   86,  164,   24,   95,         64,   99,   24,   57,   86,   95,   86,  164,   24,   95,
       106,  106,   96,  111,   24,   28,   96,  112,   95,   28,        106,  106,   96,  111,   24,   28,   96,  112,   95,   28,
        96,  131,   95,   28,  111,  639,  164,  119,  131,   28,         96,  131,   95,   28,  111,  638,  164,  119,  131,   28,
       112,  133,   28,   30,  117,   30,  120,  119,  117,  133,        112,  133,   28,   30,  117,   30,  120,  119,  117,  133,
       120,   30,   30,   30,  119,  303,   30,  134,  117,  640,        120,   30,   30,   30,  119,  303,   30,  134,  117,  640,
        30,   30,   31,  120,  134,  127,   31,  139,  127,  303,         30,   30,   31,  120,  134,  127,   31,  139,  127,  303,
   
       139,  134,   31,  127,  143,   31,  146,  143,  166,  146,        139,  134,   31,  127,  143,   31,  146,  143,  166,  146,
       127,  169,   31,  167,  167,  179,  169,  175,  175,  166,        127,  169,   31,  167,  167,  179,  169,  175,  175,  166,
       177,  182,  225,  191,  179,  225,  182,  166,  191,  355,        177,  182,  225,  191,  179,  225,  182,  166,  191,  356,
       169,  641,  191,  166,  355,  203,  203,  334,  177,  192,        169,  641,  191,  166,  356,  203,  203,  642,  177,  192,
       192,  192,  207,  207,  192,  239,  192,  203,  330,  239,        192,  192,  207,  207,  192,  239,  192,  203,  330,  239,
       334,  239,  274,  274,  305,  305,  336,  330,  192,  192,        192,  239,  274,  274,  305,  305,  335,  330,  192,  192,
       643,  192,  211,  342,  342,  211,  363,  211,  351,  351,        643,  192,  211,  645,  337,  211,  646,  211,  360,  335,
       336,  353,  353,  359,  211,  363,  644,  211,  362,  383,        343,  343,  352,  352,  211,  354,  354,  211,  337,  363,
       211,  284,  437,  284,  284,  475,  362,  383,  645,  284,        211,  284,  384,  284,  284,  360,  364,  363,  438,  284,
       359,  284,  505,  475,  505,  505,  284,  523,  284,  284,        384,  284,  476,  510,  510,  364,  284,  535,  284,  284,
   
       533,  284,  437,  508,  508,  523,  505,  518,  518,  541,        476,  284,  507,  525,  507,  507,  520,  520,  438,  543,
       549,  561,  541,  533,  602,  549,  561,  614,  614,  646,        535,  525,  543,  551,  563,  604,  507,  647,  551,  563,
       647,  648,  649,  650,  651,  652,  541,  653,  654,  655,        616,  616,  648,  649,  650,  651,  543,  652,  653,  654,
       656,  657,  658,  659,  602,  635,  660,  635,  635,  661,        655,  656,  657,  658,  659,  604,  637,  660,  637,  637,
       662,  663,  664,  665,  666,  667,  668,  669,  670,  671,        661,  662,  663,  664,  665,  666,  667,  668,  669,  670,
       635,  672,  673,  635,  635,  674,  668,  676,  677,  678,        671,  637,  672,  673,  637,  637,  674,  675,  676,  677,
       679,  680,  681,  682,  683,  684,  686,  687,  688,  689,        671,  679,  680,  681,  682,  683,  684,  685,  686,  687,
       690,  691,  692,  693,  694,  695,  696,  697,  698,  699,        689,  690,  691,  692,  693,  694,  695,  696,  697,  698,
       700,  702,  703,  704,  705,  706,  707,  708,  709,  710,        699,  700,  701,  702,  703,  705,  706,  707,  708,  709,
       711,  712,  713,  714,  716,  717,  718,  719,  720,  721,        710,  711,  712,  713,  714,  715,  716,  717,  719,  720,
   
       722,  723,  724,  725,  717,  726,  727,  728,  729,  730,        721,  722,  723,  724,  725,  726,  727,  728,  720,  729,
       731,  732,  733,  734,  735,  736,  737,  738,  739,  740,        730,  731,  732,  733,  734,  735,  736,  737,  738,  739,
       741,  742,  744,  745,  746,  747,  748,  749,  750,  751,        740,  741,  742,  743,  744,  745,  747,  748,  749,  750,
       752,  753,  754,  755,  756,  757,  758,  758,  752,  759,        751,  752,  753,  754,  755,  756,  757,  758,  759,  760,
       760,  762,  763,  764,  765,  766,  767,  768,  769,  770,        761,  761,  755,  762,  763,  765,  766,  767,  768,  769,
       771,  772,  773,  774,  775,  776,  777,  778,  779,  780,        770,  771,  772,  773,  774,  775,  776,  777,  778,  779,
       781,  782,  783,  784,  785,  786,  787,  788,  789,  790,        780,  781,  782,  783,  784,  785,  786,  787,  788,  789,
       791,  792,  793,  794,  795,  796,  797,  798,  799,  800,        790,  791,  792,  793,  794,  795,  796,  797,  798,  799,
       801,  802,  803,  804,  801,  805,  806,  806,  807,  808,        800,  801,  802,  803,  804,  805,  806,  807,  804,  808,
       809,  810,  811,  812,  813,  803,  806,  814,  816,  817,        809,  809,  810,  811,  812,  813,  814,  815,  816,  806,
   
       818,  819,  820,  821,  805,  822,  823,  824,  825,  826,        809,  817,  819,  820,  821,  822,  823,  824,  808,  825,
       827,  828,  829,  830,  831,  832,  833,  834,  835,  836,        826,  827,  828,  829,  830,  831,  832,  833,  834,  835,
       837,  838,  839,  840,  841,  843,  844,  846,  847,  848,        836,  837,  838,  839,  840,  841,  842,  843,  844,  845,
       849,  851,  853,  854,  855,  856,  857,  858,  859,  860,        847,  848,  850,  851,  852,  853,  855,  857,  858,  859,
       861,  862,  863,  864,  865,  866,  867,  868,  869,  870,        860,  861,  862,  863,  864,  865,  866,  867,  868,  869,
       871,  872,  873,  874,  875,  876,  877,  878,  879,  880,        870,  871,  872,  873,  874,  875,  876,  877,  878,  879,
       881,  882,  883,  885,  886,  887,  889,  890,  891,  892,        880,  881,  882,  883,  884,  885,  886,  887,  889,  890,
       894,  895,  897,  898,  887,  888,  888,  888,  888,  888,        891,  893,  894,  895,  896,  898,  899,  901,  902,  891,
       888,  888,  888,  888,  899,  901,  888,  888,  902,  903,        892,  892,  892,  892,  892,  892,  892,  892,  892,  903,
       888,  904,  905,  888,  888,  907,  908,  888,  909,  910,        905,  892,  892,  906,  907,  892,  908,  909,  892,  892,
   
       912,  913,  914,  915,  916,  917,  918,  919,  921,  922,        911,  912,  892,  913,  914,  916,  917,  918,  919,  920,
       923,  924,  925,  926,  927,  928,  930,  931,  931,  933,        921,  922,  923,  925,  926,  927,  928,  929,  930,  931,
       933,  934,  935,  936,  937,  939,  940,  941,  942,  943,        932,  934,  935,  935,  937,  937,  938,  939,  940,  941,
       944,  945,  946,  947,  948,  949,  950,  951,  952,  953,        943,  944,  945,  946,  947,  948,  949,  950,  951,  952,
       954,  955,  956,  956,  957,  958,  959,  960,  961,  956,        953,  954,  955,  956,  957,  958,  959,  960,  960,  961,
       962,  963,  964,  966,  967,  968,  970,  971,  972,  956,        962,  963,  964,  965,  960,  966,  967,  968,  970,  971,
       956,  973,  974,  972,  956,  975,  976,  977,  978,  979,        972,  974,  975,  976,  960,  960,  977,  978,  976,  960,
       980,  981,  982,  983,  984,  985,  986,  988,  989,  991,        979,  980,  981,  982,  983,  984,  985,  986,  987,  988,
       993,  994,  995,  996,  997,  998,  999, 1000, 1002, 1003,        989,  990,  992,  993,  995,  997,  998,  999, 1000, 1001,
      1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013,       1002, 1003, 1004, 1006, 1007, 1008, 1009, 1010, 1011, 1012,
   
      1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023,       1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022,
      1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033,       1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032,
      1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043,       1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042,
      1045, 1026, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053,       1043, 1044, 1045, 1046, 1047, 1048, 1050, 1031, 1051, 1052,
      1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063,       1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062,
      1064, 1066, 1060, 1068, 1065, 1067, 1069, 1064, 1065, 1067,       1063, 1064, 1065, 1066, 1067, 1068, 1069, 1071, 1065, 1073,
      1068, 1070, 1071, 1072, 1064, 1073, 1074, 1065, 1075, 1076,       1070, 1072, 1074, 1069, 1070, 1072, 1073, 1075, 1076, 1077,
      1077, 1079, 1073, 1080, 1081, 1082, 1083, 1084, 1085, 1073,       1069, 1078, 1079, 1070, 1080, 1081, 1082, 1084, 1078, 1085,
      1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1096,       1086, 1087, 1088, 1089, 1090, 1078, 1091, 1092, 1093, 1094,
      1098, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1108, 1109,       1095, 1096, 1097, 1098, 1099, 1101, 1103, 1105, 1106, 1107,
   
      1110, 1110, 1112, 1113, 1114, 1116, 1117, 1118, 1119, 1120,       1108, 1109, 1110, 1111, 1113, 1114, 1115, 1115, 1117, 1118,
      1122, 1123, 1124, 1125, 1127, 1128, 1129, 1130, 1131, 1132,       1119, 1121, 1122, 1123, 1124, 1125, 1127, 1128, 1129, 1130,
      1133, 1134, 1135, 1136, 1137, 1138, 1139, 1141, 1140, 1142,       1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141,
      1143, 1139, 1140, 1138, 1139, 1144, 1145, 1146, 1147, 1138,       1142, 1143, 1144, 1146, 1145, 1147, 1148, 1144, 1145, 1143,
      1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157,       1144, 1149, 1150, 1151, 1152, 1143, 1153, 1154, 1155, 1156,
      1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167,       1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166,
      1163, 1169, 1170, 1171, 1172, 1173, 1174, 1176, 1177, 1178,       1167, 1168, 1169, 1170, 1171, 1172, 1168, 1174, 1175, 1176,
      1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188,       1177, 1178, 1179, 1181, 1182, 1183, 1184, 1185, 1186, 1187,
      1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1199,       1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197,
      1200, 1201, 1202, 1203, 1204, 1206, 1207, 1209, 1211, 1213,       1198, 1199, 1200, 1201, 1202, 1203, 1205, 1206, 1207, 1208,
   
      1215, 1216, 1217, 1219, 1220, 1221, 1223, 1225, 1226, 1227,       1209, 1210, 1212, 1213, 1215, 1217, 1219, 1221, 1222, 1223,
      1228, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238,       1225, 1226, 1227, 1229, 1231, 1232, 1233, 1234, 1236, 1237,
      1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249,       1238, 1239, 1240, 1241, 1242, 1243, 1244, 1246, 1247, 1248,
      1250, 1251, 1252, 1253, 1252, 1254, 1255, 1256, 1257, 1258,       1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258,
      1259, 1252, 1260, 1261, 1262, 1263, 1264, 1265, 1253, 1266,       1259, 1258, 1260, 1261, 1262, 1263, 1264, 1265, 1258, 1266,
      1267, 1268, 1269, 1270, 1271, 1272, 1273, 1275, 1276, 1277,       1267, 1268, 1269, 1270, 1271, 1259, 1272, 1273, 1274, 1275,
      1278, 1279, 1280, 1281, 1283, 1285, 1286, 1287, 1288, 1289,       1276, 1277, 1278, 1279, 1281, 1282, 1283, 1284, 1285, 1286,
      1290, 1291, 1292, 1294, 1296, 1297, 1298, 1299, 1300, 1301,       1287, 1289, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298,
      1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311,       1300, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310,
      1312, 1313, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322,       1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1321,
   
      1323, 1324, 1325, 1326, 1327, 1329, 1330, 1332, 1333, 1335,       1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331,
      1336, 1337, 1338, 1339, 1340, 1341, 1343, 1344, 1346, 1347,       1332, 1333, 1335, 1336, 1338, 1339, 1341, 1342, 1343, 1344,
      1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1356,       1345, 1346, 1347, 1349, 1350, 1352, 1353, 1354, 1355, 1356,
      1353, 1357, 1358, 1359, 1360, 1362, 1357, 1363, 1359, 1364,       1357, 1358, 1359, 1360, 1361, 1362, 1362, 1359, 1363, 1364,
      1365, 1367, 1368, 1369, 1371, 1372, 1374, 1375, 1376, 1378,       1365, 1366, 1368, 1363, 1369, 1365, 1370, 1371, 1373, 1374,
      1380, 1381, 1382, 1383, 1385, 1386, 1359, 1366, 1387, 1388,       1375, 1377, 1378, 1380, 1381, 1382, 1384, 1386, 1387, 1388,
      1389, 1391, 1392, 1366, 1393, 1395, 1396, 1398, 1399, 1401,       1389, 1390, 1392, 1365, 1372, 1393, 1394, 1395, 1396, 1398,
      1402, 1403, 1404, 1366, 1366, 1405, 1407, 1408, 1366, 1410,       1372, 1399, 1400, 1402, 1403, 1405, 1406, 1408, 1409, 1410,
      1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1420, 1421,       1372, 1372, 1411, 1412, 1414, 1372, 1415, 1417, 1418, 1419,
      1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431,       1420, 1421, 1422, 1423, 1424, 1425, 1427, 1428, 1429, 1430,
   
      1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441,       1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440,
      1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451,       1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450,
      1452, 1453, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462,       1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460,
      1463, 1464, 1466, 1468, 1469, 1470, 1471, 1473, 1474, 1475,       1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471,
      1476, 1477, 1479, 1480, 1481, 1482, 1483, 1484, 1486, 1487,       1473, 1475, 1476, 1477, 1478, 1480, 1481, 1482, 1483, 1484,
      1488, 1489, 1490, 1492, 1493, 1494, 1495, 1496, 1497, 1498,       1486, 1487, 1488, 1489, 1490, 1491, 1493, 1494, 1495, 1496,
      1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1509,       1497, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507,
      1511, 1512, 1513, 1514, 1516, 1517, 1518, 1520, 1521, 1522,       1508, 1509, 1510, 1511, 1512, 1513, 1514, 1516, 1518, 1519,
      1523, 1524, 1525, 1521, 1527, 1523, 1524, 1526, 1526, 1529,       1520, 1521, 1523, 1524, 1525, 1527, 1528, 1529, 1530, 1531,
      1530, 1531, 1532, 1533, 1533, 1534, 1535, 1536, 1536, 1537,       1532, 1528, 1534, 1530, 1531, 1533, 1533, 1536, 1537, 1538,
   
      1534, 1538, 1539, 1541, 1537, 1542, 1543, 1544, 1545, 1546,       1539, 1540, 1540, 1541, 1542, 1543, 1543, 1544, 1541, 1545,
      1547, 1548, 1549, 1551, 1547, 1552, 1553, 1546, 1554, 1556,       1546, 1548, 1544, 1549, 1550, 1551, 1552, 1553, 1554, 1555,
      1557, 1558, 1560, 1561, 1562, 1563, 1564, 1566, 1567, 1568,       1556, 1558, 1554, 1559, 1560, 1553, 1561, 1562, 1564, 1565,
      1569, 1571, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1581,       1566, 1568, 1569, 1570, 1571, 1572, 1574, 1575, 1576, 1577,
      1582, 1583, 1584, 1586, 1587, 1588, 1589, 1590, 1591, 1592,       1579, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1589, 1590,
      1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602,       1591, 1592, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601,
      1603, 1604, 1587, 1605, 1606, 1607, 1608, 1609, 1610, 1611,       1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611,
      1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1622,       1612, 1595, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620,
      1623, 1624, 1626, 1627, 1628, 1630, 1631, 1632, 1633, 1634,       1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1630, 1631,
      1635, 1636, 1638, 1636, 1639, 1641, 1643, 1644, 1646, 1647,       1632, 1634, 1635, 1636, 1638, 1639, 1640, 1641, 1642, 1643,
   
      1648, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658,       1644, 1646, 1644, 1647, 1649, 1651, 1652, 1654, 1655, 1656,
      1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668,       1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667,
      1669, 1670, 1671, 1672, 1673, 1673, 1674, 1675, 1676, 1676,       1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677,
      1677, 1674, 1678, 1678, 1680, 1681, 1682, 1683, 1684, 1685,       1678, 1679, 1680, 1681, 1681, 1682, 1683, 1684, 1684, 1685,
      1687, 1688, 1683, 1689, 1690, 1691, 1691, 1693, 1694, 1695,       1682, 1686, 1686, 1688, 1689, 1690, 1691, 1692, 1693, 1695,
      1696, 1697, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704,       1696, 1691, 1697, 1698, 1699, 1699, 1701, 1702, 1703, 1704,
      1705, 1706, 1707, 1709, 1711, 1712, 1713, 1714, 1715, 1717,       1705, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713,
      1719, 1720, 1721, 1723, 1724, 1725, 1727, 1728, 1729, 1730,       1714, 1715, 1717, 1719, 1720, 1721, 1722, 1723, 1724, 1726,
      1731, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741,       1728, 1729, 1730, 1732, 1733, 1734, 1736, 1737, 1738, 1739,
      1742, 1743, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752,       1740, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750,
   
      1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762,       1751, 1752, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761,
      1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772,       1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771,
      1773, 1774, 1776, 1777, 1779, 1780, 1781, 1783, 1785, 1787,       1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781,
      1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1797,       1782, 1783, 1785, 1786, 1788, 1789, 1790, 1792, 1794, 1796,
      1799, 1800, 1801, 1802, 1804, 1805, 1806, 1807, 1808, 1809,       1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806,
      1810, 1812, 1813, 1815, 1816, 1817, 1818, 1820, 1821, 1822,       1808, 1809, 1810, 1811, 1813, 1814, 1815, 1816, 1817, 1818,
      1823, 1824, 1824, 1826, 1827, 1828, 1830, 1831, 1832, 1833,       1819, 1821, 1822, 1824, 1825, 1826, 1827, 1829, 1830, 1831,
      1834, 1835, 1836, 1836, 1837, 1838, 1839, 1840, 1842, 1843,       1832, 1833, 1833, 1835, 1836, 1837, 1839, 1840, 1841, 1842,
      1844, 1845, 1846, 1848, 1849, 1850, 1851, 1852, 1854, 1855,       1843, 1844, 1845, 1845, 1846, 1847, 1848, 1849, 1851, 1852,
      1856, 1851, 1857, 1858, 1859, 1860, 1861, 1863, 1864, 1866,       1853, 1854, 1855, 1857, 1858, 1859, 1860, 1861, 1863, 1864,
   
      1868, 1869, 1870, 1871, 1872, 1873, 1874, 1876, 1878, 1879,       1865, 1860, 1866, 1867, 1868, 1869, 1870, 1872, 1873, 1875,
      1880, 1882, 1883, 1885, 1886, 1888, 1889, 1890, 1891, 1893,       1876, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1886, 1888,
      1894, 1895, 1896, 1898, 1899, 1900, 1901, 1902, 1903, 1904,       1889, 1890, 1892, 1893, 1895, 1896, 1898, 1899, 1900, 1901,
      1905, 1907, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916,       1903, 1904, 1905, 1906, 1908, 1909, 1910, 1911, 1912, 1913,
      1917, 1918, 1920, 1921, 1922, 1923, 1924, 1926, 1928, 1929,       1914, 1915, 1917, 1919, 1920, 1921, 1922, 1923, 1924, 1925,
      1930, 1931, 1932, 1933, 1935, 1936, 1937, 1938, 1939, 1940,       1926, 1927, 1928, 1930, 1931, 1932, 1933, 1934, 1936, 1938,
      1941, 1943, 1944, 1946, 1947, 1948, 1949, 1951, 1952, 1954,       1939, 1940, 1941, 1942, 1943, 1945, 1946, 1947, 1948, 1949,
      1955, 1957, 1958, 1959, 1960, 1961, 1963, 1964, 1965, 1966,       1950, 1951, 1953, 1954, 1956, 1957, 1958, 1959, 1961, 1962,
      1967, 1968, 1969, 1970, 1971, 1973, 1974, 1975, 1976, 1977,       1964, 1965, 1967, 1968, 1969, 1970, 1971, 1973, 1974, 1975,
      1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987,       1976, 1977, 1978, 1979, 1980, 1981, 1983, 1984, 1985, 1986,
   
      1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1997,       1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
      1999, 2000, 2001, 2003, 2004, 2005, 2006, 2008, 2009, 2010,       1997, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
      2011, 2012, 2013, 2015, 2016, 2018, 2019, 2020, 2022, 2023,       2007, 2009, 2011, 2012, 2013, 2015, 2016, 2017, 2018, 2020,
      2024, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2034, 2035,       2021, 2022, 2023, 2024, 2025, 2027, 2028, 2030, 2031, 2032,
      2036, 2037, 2038, 2039, 2041, 2042, 2044, 2045, 2046, 2047,       2034, 2035, 2036, 2038, 2039, 2040, 2041, 2042, 2043, 2044,
      2048, 2049, 2050, 2052, 2054, 2055, 2056, 2058, 2059, 2060,       2046, 2047, 2048, 2049, 2050, 2051, 2053, 2054, 2056, 2057,
      2062, 2063, 2064, 2065, 2067, 2068, 2069, 2070, 2071, 2072,       2058, 2059, 2060, 2061, 2062, 2064, 2066, 2067, 2068, 2070,
      2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082,       2071, 2072, 2074, 2075, 2076, 2077, 2079, 2080, 2081, 2082,
      2083, 2084, 2085, 2086, 2087, 2088, 2089, 2091, 2092, 2093,       2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092,
      2095, 2097, 2098, 2100, 2101, 2102, 2103, 2104, 2106, 2107,       2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2103,
   
      2109, 2110, 2112, 2114, 2115, 2116, 2117, 2119, 2120, 2121,       2104, 2105, 2107, 2109, 2110, 2112, 2113, 2114, 2115, 2116,
      2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131,       2118, 2119, 2121, 2122, 2124, 2126, 2127, 2128, 2129, 2131,
      2132, 2134, 2135, 2136, 2138, 2139, 2140, 2141, 2142, 2144,       2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141,
      2146, 2147, 2149, 2151, 2153, 2155, 2156, 2157, 2158, 2159,       2142, 2143, 2144, 2146, 2147, 2148, 2150, 2151, 2152, 2153,
      2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169,       2154, 2156, 2158, 2159, 2161, 2163, 2165, 2167, 2168, 2169,
      2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179,       2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179,
      2180, 2181, 2183, 2184, 2185, 2187, 2188, 2190, 2192, 2193,       2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189,
      2195, 2196, 2197, 2198, 2199, 2201, 2203, 2204, 2205, 2206,       2190, 2191, 2192, 2193, 2195, 2196, 2197, 2199, 2200, 2202,
      2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216,       2204, 2205, 2207, 2208, 2209, 2210, 2211, 2213, 2215, 2216,
      2218, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228,       2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226,
   
      2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238,       2227, 2228, 2230, 2232, 2233, 2234, 2235, 2236, 2237, 2238,
      2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2249,       2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248,
      2250, 2252, 2254, 2255, 2256, 2257, 2258, 2260, 2262, 2264,       2249, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258,
      2266, 2267, 2269, 2271, 2272, 2273, 2274, 2276, 2277, 2278,       2259, 2261, 2262, 2264, 2266, 2267, 2268, 2269, 2270, 2272,
      2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288,       2274, 2276, 2278, 2279, 2281, 2283, 2284, 2285, 2286, 2288,
      2289, 2290, 2291, 2292, 2294, 2295, 2296, 2297, 2298, 2299,       2289, 2290, 2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298,
      2300, 2301, 2302, 2303, 2304, 2306, 2308, 2309, 2311, 2312,       2299, 2300, 2301, 2302, 2303, 2304, 2306, 2307, 2308, 2309,
      2313, 2314, 2315, 2316, 2317, 2318, 2319, 2321, 2322, 2323,       2310, 2311, 2312, 2313, 2314, 2315, 2316, 2318, 2320, 2321,
      2324, 2325, 2326, 2327, 2328, 2329, 2330, 2332, 2333, 2334,       2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2333,
      2336, 2337, 2339, 2340, 2341, 2342, 2344, 2345, 2346, 2347,       2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2344,
   
      2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357,       2345, 2346, 2348, 2349, 2351, 2352, 2353, 2354, 2356, 2357,
      2358, 2360, 2361, 2362, 2363, 2365, 2366, 2368, 2370, 2371,       2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367,
      2372, 2374, 2375, 2377, 2379, 2380, 2382, 2383, 2384, 2385,       2368, 2369, 2370, 2372, 2373, 2374, 2375, 2377, 2378, 2380,
      2386, 2388, 2389, 2391, 2393, 2395, 2397, 2398, 2400, 2401,       2382, 2383, 2384, 2386, 2387, 2389, 2391, 2392, 2394, 2395,
      2403, 2405, 2407, 2408, 2410, 2412, 2414, 2415, 2416, 2418,       2396, 2397, 2398, 2400, 2401, 2403, 2405, 2407, 2409, 2410,
      2420, 2421, 2422, 2424, 2426, 2427, 2429, 2431, 2433, 2435,       2412, 2413, 2415, 2417, 2419, 2420, 2422, 2424, 2426, 2427,
      2437, 2437, 2438, 2438, 2439, 2439, 2440, 2440, 2441, 2442,       2428, 2430, 2432, 2433, 2434, 2436, 2438, 2439, 2441, 2443,
      2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451,       2445, 2447, 2449, 2449, 2450, 2450, 2451, 2451, 2452, 2452,
      2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461,       2453, 2454, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461,
      2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471,       2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471,
   
      2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481,       2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481,
Line 1817
 
Line 1745
      2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501,       2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501,
      2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511,       2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511,
      2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521,       2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521,
      2522, 2523, 2524, 2525, 2525, 2526, 2527, 2528, 2529, 2530,       2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531,
      2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540,       2532, 2533, 2534, 2535, 2536, 2537, 2537, 2538, 2539, 2540,
      2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550,       2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550,
      2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560,       2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560,
      2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570,       2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570,
Line 1838
 
Line 1766
      2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690,       2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690,
      2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700,       2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700,
      2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710,       2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710,
      2711,  634,  633,  632,  631,  630,  629,  628,  627,  626,       2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720,
       625,  624,  623,  622,  621,  620,  619,  618,  617,  616,       2721, 2722, 2723, 2724, 2725,  634,  633,  632,  631,  630,
       615,  613,  612,  611,  610,  609,  608,  606,  605,  604,        629,  628,  627,  626,  625,  624,  623,  622,  621,  620,
       603,  601,  600,  598,  597,  596,  595,  594,  593,  592,        619,  618,  617,  615,  614,  613,  612,  611,  610,  608,
       591,  590,  588,  586,  585,  584,  583,  582,  581,  580,        607,  606,  605,  603,  602,  600,  599,  598,  597,  596,
       579,  578,  577,  576,  575,  574,  573,  572,  571,  570,        595,  594,  593,  592,  590,  588,  587,  586,  585,  584,
   
       569,  568,  566,  565,  564,  563,  562,  560,  559,  558,        583,  582,  581,  580,  579,  578,  577,  576,  575,  574,
       557,  556,  555,  554,  553,  552,  551,  550,  548,  547,        573,  572,  571,  570,  568,  567,  566,  565,  564,  562,
       546,  545,  543,  542,  540,  539,  538,  537,  536,  535,        561,  560,  559,  558,  557,  556,  555,  554,  553,  552,
       534,  532,  531,  530,  529,  528,  527,  526,  525,  524,        550,  549,  548,  547,  545,  544,  542,  541,  540,  539,
       522,  521,  520,  517,  516,  515,  514,  513,  512,  511,        538,  537,  536,  534,  533,  532,  531,  530,  529,  528,
       510,  507,  506,  504,  503,  502,  501,  500,  499,  498,        527,  526,  524,  523,  522,  519,  518,  517,  516,  515,
       497,  496,  495,  494,  493,  492,  491,  490,  489,  488,        514,  513,  512,  509,  508,  506,  505,  504,  503,  502,
       486,  485,  484,  483,  482,  481,  480,  479,  478,  477,        501,  500,  499,  498,  497,  496,  495,  494,  493,  492,
       476,  474,  473,  472,  470,  469,  468,  467,  466,  465,        491,  490,  489,  487,  486,  485,  484,  483,  482,  481,
       464,  462,  461,  460,  458,  457,  456,  455,  454,  453,        480,  479,  478,  477,  475,  474,  473,  471,  470,  469,
   
       452,  450,  449,  448,  446,  445,  444,  443,  442,  441,        468,  467,  466,  465,  463,  462,  461,  459,  458,  457,
       440,  439,  438,  436,  434,  433,  432,  431,  430,  429,        456,  455,  454,  453,  451,  450,  449,  447,  446,  445,
       428,  427,  426,  425,  424,  423,  422,  421,  420,  419,        444,  443,  442,  441,  440,  439,  437,  435,  434,  433,
       418,  417,  416,  415,  414,  412,  411,  410,  409,  408,        432,  431,  430,  429,  428,  427,  426,  425,  424,  423,
       407,  406,  405,  404,  403,  402,  401,  400,  399,  398,        422,  421,  420,  419,  418,  417,  416,  415,  413,  412,
       397,  396,  395,  394,  393,  392,  391,  390,  388,  387,        411,  410,  409,  408,  407,  406,  405,  404,  403,  402,
       386,  385,  384,  382,  381,  380,  379,  378,  377,  376,        401,  400,  399,  398,  397,  396,  395,  394,  393,  392,
       375,  374,  373,  372,  371,  370,  369,  368,  367,  366,        391,  389,  388,  387,  386,  385,  383,  382,  381,  380,
       365,  364,  361,  360,  358,  357,  356,  352,  350,  349,        379,  378,  377,  376,  375,  374,  373,  372,  371,  370,
       348,  347,  346,  345,  344,  343,  341,  340,  339,  338,        369,  368,  367,  366,  365,  362,  361,  359,  358,  357,
   
       337,  335,  333,  332,  331,  329,  328,  327,  326,  325,        353,  351,  350,  349,  348,  347,  346,  345,  344,  342,
       324,  323,  322,  320,  319,  318,  317,  316,  315,  314,        341,  340,  339,  338,  336,  334,  333,  332,  331,  329,
       313,  312,  311,  310,  309,  308,  307,  304,  302,  301,        328,  327,  326,  325,  324,  323,  322,  320,  319,  318,
       300,  299,  298,  297,  296,  295,  294,  293,  292,  291,        317,  316,  315,  314,  313,  312,  311,  310,  309,  308,
       290,  289,  288,  287,  286,  285,  283,  282,  281,  280,        307,  304,  302,  301,  300,  299,  298,  297,  296,  295,
       279,  278,  277,  276,  275,  273,  272,  271,  269,  268,        294,  293,  292,  291,  290,  289,  288,  287,  286,  285,
       267,  265,  264,  262,  261,  260,  259,  258,  257,  256,        283,  282,  281,  280,  279,  278,  277,  276,  275,  273,
       255,  254,  253,  252,  251,  250,  249,  248,  247,  246,        272,  271,  269,  268,  267,  265,  264,  262,  261,  260,
       245,  244,  243,  242,  241,  240,  238,  237,  236,  235,        259,  258,  257,  256,  255,  254,  253,  252,  251,  250,
       234,  233,  232,  231,  230,  229,  228,  227,  226,  224,        249,  248,  247,  246,  245,  244,  243,  242,  241,  240,
   
       223,  222,  221,  220,  219,  218,  217,  216,  215,  214,        238,  237,  236,  235,  234,  233,  232,  231,  230,  229,
       213,  212,  210,  209,  208,  206,  205,  204,  202,  201,        228,  227,  226,  224,  223,  222,  221,  220,  219,  218,
       200,  199,  198,  197,  196,  195,  194,  193,  190,  189,        217,  216,  215,  214,  213,  212,  210,  209,  208,  206,
       188,  187,  186,  185,  184,  183,  181,  180,  178,  176,        205,  204,  202,  201,  200,  199,  198,  197,  196,  195,
       174,  173,  172,  171,  170,  168,  165,  163,  162,  161,        194,  193,  190,  189,  188,  187,  186,  185,  184,  183,
       160,  159,  158,  157,  156,  155,  154,  153,  152,  151,        181,  180,  178,  176,  174,  173,  172,  171,  170,  168,
       150,  149,  148,  145,  141,  137,  136,  135,  132,  130,        165,  163,  162,  161,  160,  159,  158,  157,  156,  155,
       129,  128,  126,  125,  124,  123,  122,  121,  118,  116,        154,  153,  152,  151,  150,  149,  148,  145,  141,  137,
       115,  114,  113,  110,  109,  108,  107,  105,  104,  102,        136,  135,  132,  130,  129,  128,  126,  125,  124,  123,
       101,  100,   98,   97,   94,   93,   92,   91,   90,   89,        122,  121,  118,  116,  115,  114,  113,  110,  109,  108,
   
        88,   87,   85,   84,   83,   82,   81,   80,   79,   78,        107,  105,  104,  102,  101,  100,   98,   97,   94,   93,
        77,   76,   75,   74,   73,   72,   71,   70,   69,   68,         92,   91,   90,   89,   88,   87,   85,   84,   83,   82,
        67,   66,   65,   63,   62,   61,   59,   58,   56,   55,         81,   80,   79,   78,   77,   76,   75,   74,   73,   72,
        53,   52,   51,   46,   42,   39,   36,   23,   12,    9,         71,   70,   69,   68,   67,   66,   65,   63,   62,   61,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,         59,   58,   56,   55,   53,   52,   51,   46,   42,   39,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,         36,   23,   12,    9, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436,       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
      2436, 2436, 2436, 2436       2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448,
        2448, 2448, 2448, 2448, 2448, 2448, 2448, 2448
     } ;      } ;
   
 static yy_state_type yy_last_accepting_state;  static yy_state_type yy_last_accepting_state;
 static char *yy_last_accepting_cpos;  static char *yy_last_accepting_cpos;
   
 extern int yy_flex_debug;  
 int yy_flex_debug = 0;  
   
 /* The intent behind this definition is that it'll catch  /* The intent behind this definition is that it'll catch
  * any uses of REJECT which flex missed.   * any uses of REJECT which flex missed.
  */   */
Line 1914
 
Line 1840
 #define YY_RESTORE_YY_MORE_OFFSET  #define YY_RESTORE_YY_MORE_OFFSET
 char *yytext;  char *yytext;
 #line 1 "loader.l"  #line 1 "loader.l"
   #define INITIAL 0
 #line 2 "loader.l"  #line 2 "loader.l"
 /*  /*
  * static char *rcsid_object_c =   * static char *rcsid_object_c =
  *   "$Id: loader.c,v 1.67 2005/07/15 17:25:00 gros Exp $";   *   "$Id: loader.c,v 1.68 2005/08/23 05:42:57 mwedel Exp $";
  */   */
   
 /*  /*
Line 2383
 
Line 2310
   
 }  }
   
   /* This extracts the key/value from the yytext field -
    * calls set_ob_key_value() to actually set the value.
    * Function basically has to find spaces, strip out extra,
    * etc.  strchr doesn't work as good because could also
    * be tabs.
    */
   static void add_key_value(object * op) {
       char * key = NULL;
       char * value = NULL;
       char * cp;
       char * end;
   
       /* First, skip over leading whitespace. */
       for (cp = yytext; isspace(*cp); cp++) { ; }
   
       key = cp;
   
       /* Now look for the end of the key/field name. */
       for (; !isspace(*cp); cp++) {
           if (*cp == '\0') {
               /* Oops, ran out of string! Set the key with an empty value. */
               set_ob_key_value(op, key, NULL, TRUE);
               return;
           }
       }
      
       if (*cp == '\0') {
           set_ob_key_value(op, key, NULL, TRUE);
           return;   
       }
      
       /* Chop off the key, and start at the next character. */
       *cp = '\0';
       cp++;
       if (*cp == '\0') {
           /* Was followed by one space? */
           set_ob_key_value(op, key, NULL, TRUE);
           return;   
       }
      
       /* Now looking for the value. Skip over whitespace. */
       for (; isspace(*cp); cp++) {
           if (*cp == '\0') {
               /* Guess not. */
               set_ob_key_value(op, key, NULL, TRUE);
               return;
           }
       }
      
       value = cp;
      
       /* Got last character before null and strip
        * off tailing whitespace
        */
       for (end = value + (strlen(cp)-1); isspace(*end); end--) {
    if (end == value) {
        /* *blink blink* Still no value? */
        set_ob_key_value(op, key, NULL, TRUE);
        return;
    }
    *end='\0';
       }
       set_ob_key_value(op, key, value, TRUE);   
   }
   
 /* Don't have to link with -lfl with this */  
 /* need yy_push_state, yy_pop_state */  
 #line 2393 "loader.c"  
   
 #define INITIAL 0  
 #define MESSAGE 1  #define MESSAGE 1
   
 #define LORE 2  #define LORE 2
 #define SCRIPT 3  
   
 #ifndef YY_NO_UNISTD_H  #define SCRIPT 3
 /* 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  /* Don't have to link with -lfl with this */
 #define YY_EXTRA_TYPE void *  /* need yy_push_state, yy_pop_state */
 #endif  #define YY_STACK_USED 1
   #line 2389 "loader.c"
   
 /* Macros after this point can all be overridden by user definitions in  /* Macros after this point can all be overridden by user definitions in
  * section 1.   * section 1.
Line 2414
 
Line 2393
   
 #ifndef YY_SKIP_YYWRAP  #ifndef YY_SKIP_YYWRAP
 #ifdef __cplusplus  #ifdef __cplusplus
 extern "C" int yywrap (void );  extern "C" int yywrap YY_PROTO(( void ));
 #else  #else
 extern int yywrap (void );  extern int yywrap YY_PROTO(( void ));
 #endif  #endif
 #endif  #endif
   
     static void yyunput (int c,char *buf_ptr  );  #ifndef YY_NO_UNPUT
   static void yyunput YY_PROTO(( int c, char *buf_ptr ));
   #endif
          
 #ifndef yytext_ptr  #ifndef yytext_ptr
 static void yy_flex_strncpy (char *,yyconst char *,int );  static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
 #endif  #endif
   
 #ifdef YY_NEED_STRLEN  #ifdef YY_NEED_STRLEN
 static int yy_flex_strlen (yyconst char * );  static int yy_flex_strlen YY_PROTO(( yyconst char * ));
 #endif  #endif
   
 #ifndef YY_NO_INPUT  #ifndef YY_NO_INPUT
   
 #ifdef __cplusplus  #ifdef __cplusplus
 static int yyinput (void );  static int yyinput YY_PROTO(( void ));
 #else  #else
 static int input (void );  static int input YY_PROTO(( void ));
 #endif  #endif
   
 #endif  #endif
   
   #if YY_STACK_USED
         static int yy_start_stack_ptr = 0;          static int yy_start_stack_ptr = 0;
         static int yy_start_stack_depth = 0;          static int yy_start_stack_depth = 0;
         static int *yy_start_stack = 0;          static int *yy_start_stack = 0;
   #ifndef YY_NO_PUSH_STATE
   static void yy_push_state YY_PROTO(( int new_state ));
   #endif
   #ifndef YY_NO_POP_STATE
   static void yy_pop_state YY_PROTO(( void ));
   #endif
   #ifndef YY_NO_TOP_STATE
   static int yy_top_state YY_PROTO(( void ));
   #endif
          
     static void yy_push_state (int new_state );  #else
       #define YY_NO_PUSH_STATE 1
     static void yy_pop_state (void );  #define YY_NO_POP_STATE 1
   #define YY_NO_TOP_STATE 1
   #endif
          
     static int yy_top_state (void );  #ifdef YY_MALLOC_DECL
   YY_MALLOC_DECL
   #else
   #if __STDC__
   #ifndef __cplusplus
   #include <stdlib.h>
   #endif
   #else
   /* Just try to get by without declaring the routines.  This will fail
    * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
    * or sizeof(void*) != sizeof(int).
    */
   #endif
   #endif
          
 /* Amount of stuff to slurp up with each read. */  /* Amount of stuff to slurp up with each read. */
 #ifndef YY_READ_BUF_SIZE  #ifndef YY_READ_BUF_SIZE
Line 2456
 
Line 2460
 #endif  #endif
   
 /* Copy whatever the last rule matched to the standard output. */  /* Copy whatever the last rule matched to the standard output. */
   
 #ifndef ECHO  #ifndef ECHO
 /* This used to be an fputs(), but since the string might contain NUL's,  /* This used to be an fputs(), but since the string might contain NUL's,
  * we now use fwrite().   * we now use fwrite().
Line 2468
 
Line 2473
  */   */
 #ifndef YY_INPUT  #ifndef YY_INPUT
 #define YY_INPUT(buf,result,max_size) \  #define YY_INPUT(buf,result,max_size) \
  if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \   if ( yy_current_buffer->yy_is_interactive ) \
  { \   { \
  int c = '*'; \   int c = '*', n; \
  size_t n; \  
  for ( n = 0; n < max_size && \   for ( n = 0; n < max_size && \
       (c = getc( yyin )) != EOF && c != '\n'; ++n ) \        (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
  buf[n] = (char) c; \   buf[n] = (char) c; \
Line 2481
 
Line 2485
  YY_FATAL_ERROR( "input in flex scanner failed" ); \   YY_FATAL_ERROR( "input in flex scanner failed" ); \
  result = n; \   result = n; \
  } \   } \
  else \   else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
  { \     && ferror( yyin ) ) \
  errno=0; \   YY_FATAL_ERROR( "input in flex scanner failed" );
  while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \  
  { \  
  if( errno != EINTR) \  
  { \  
  YY_FATAL_ERROR( "input in flex scanner failed" ); \  
  break; \  
  } \  
  errno=0; \  
  clearerr(yyin); \  
  } \  
  }\  
 \  
   
 #endif  #endif
   
 /* No semi-colon after return; correct usage is to write "yyterminate();" -  /* No semi-colon after return; correct usage is to write "yyterminate();" -
Line 2517
 
Line 2508
 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )  #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
 #endif  #endif
   
 /* end tables serialization structures and prototypes */  
   
 /* Default declaration of generated scanner - a define so the user can  /* Default declaration of generated scanner - a define so the user can
  * easily add parameters.   * easily add parameters.
  */   */
 #ifndef YY_DECL  #ifndef YY_DECL
 #define YY_DECL_IS_OURS 1  #define YY_DECL int yylex YY_PROTO(( void ))
   #endif
 extern int yylex (void);  
   
 #define YY_DECL int yylex (void)  
 #endif /* !YY_DECL */  
   
 /* Code executed at the beginning of each rule, after yytext and yyleng  /* Code executed at the beginning of each rule, after yytext and yyleng
  * have been set up.   * have been set up.
Line 2544
 
Line 2529
   
 #define YY_RULE_SETUP \  #define YY_RULE_SETUP \
  if ( yyleng > 0 ) \   if ( yyleng > 0 ) \
  YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \   yy_current_buffer->yy_at_bol = \
  (yytext[yyleng - 1] == '\n'); \   (yytext[yyleng - 1] == '\n'); \
  YY_USER_ACTION   YY_USER_ACTION
   
 /** The main scanner function which does all the work.  
  */  
 YY_DECL  YY_DECL
 {  {
  register yy_state_type yy_current_state;   register yy_state_type yy_current_state;
  register char *yy_cp, *yy_bp;   register char *yy_cp, *yy_bp;
  register int yy_act;   register int yy_act;
          
 #line 489 "loader.l"  #line 554 "loader.l"
   
   
   
Line 2567
 
Line 2550
   
   
   
 #line 2571 "loader.c"  #line 2554 "loader.c"
   
  if ( (yy_init) )   if ( yy_init )
  {   {
  (yy_init) = 0;   yy_init = 0;
   
 #ifdef YY_USER_INIT  #ifdef YY_USER_INIT
  YY_USER_INIT;   YY_USER_INIT;
 #endif  #endif
   
  if ( ! (yy_start) )   if ( ! yy_start )
  (yy_start) = 1; /* first start state */   yy_start = 1; /* first start state */
   
  if ( ! yyin )   if ( ! yyin )
  yyin = stdin;   yyin = stdin;
Line 2586
 
Line 2569
  if ( ! yyout )   if ( ! yyout )
  yyout = stdout;   yyout = stdout;
   
  if ( ! YY_CURRENT_BUFFER ) {   if ( ! yy_current_buffer )
  yyensure_buffer_stack ();   yy_current_buffer =
  YY_CURRENT_BUFFER_LVALUE =  
  yy_create_buffer(yyin,YY_BUF_SIZE );   yy_create_buffer(yyin,YY_BUF_SIZE );
  }  
   
  yy_load_buffer_state( );   yy_load_buffer_state( );
  }   }
   
  while ( 1 ) /* loops until end-of-file is reached */   while ( 1 ) /* loops until end-of-file is reached */
  {   {
  yy_cp = (yy_c_buf_p);   yy_cp = yy_c_buf_p;
   
  /* Support of yytext. */   /* Support of yytext. */
  *yy_cp = (yy_hold_char);   *yy_cp = yy_hold_char;
   
  /* yy_bp points to the position in yy_ch_buf of the start of   /* yy_bp points to the position in yy_ch_buf of the start of
  * the current run.   * the current run.
  */   */
  yy_bp = yy_cp;   yy_bp = yy_cp;
   
  yy_current_state = (yy_start);   yy_current_state = yy_start;
  yy_current_state += YY_AT_BOL();   yy_current_state += YY_AT_BOL();
 yy_match:  yy_match:
  do   do
Line 2615
 
Line 2596
  register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];   register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  (yy_last_accepting_state) = yy_current_state;   yy_last_accepting_state = yy_current_state;
  (yy_last_accepting_cpos) = yy_cp;   yy_last_accepting_cpos = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2437 )   if ( yy_current_state >= 2449 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  ++yy_cp;   ++yy_cp;
  }   }
  while ( yy_base[yy_current_state] != 2741 );   while ( yy_base[yy_current_state] != 2755 );
   
 yy_find_action:  yy_find_action:
  yy_act = yy_accept[yy_current_state];   yy_act = yy_accept[yy_current_state];
  if ( yy_act == 0 )   if ( yy_act == 0 )
  { /* have to back up */   { /* have to back up */
  yy_cp = (yy_last_accepting_cpos);   yy_cp = yy_last_accepting_cpos;
  yy_current_state = (yy_last_accepting_state);   yy_current_state = yy_last_accepting_state;
  yy_act = yy_accept[yy_current_state];   yy_act = yy_accept[yy_current_state];
  }   }
   
  YY_DO_BEFORE_ACTION;   YY_DO_BEFORE_ACTION;
   
   
 do_action: /* This label is used only to access EOF actions. */  do_action: /* This label is used only to access EOF actions. */
   
   
  switch ( yy_act )   switch ( yy_act )
  { /* beginning of action switch */   { /* beginning of action switch */
  case 0: /* must back up */   case 0: /* must back up */
  /* undo the effects of YY_DO_BEFORE_ACTION */   /* undo the effects of YY_DO_BEFORE_ACTION */
  *yy_cp = (yy_hold_char);   *yy_cp = yy_hold_char;
  yy_cp = (yy_last_accepting_cpos);   yy_cp = yy_last_accepting_cpos;
  yy_current_state = (yy_last_accepting_state);   yy_current_state = yy_last_accepting_state;
  goto yy_find_action;   goto yy_find_action;
   
 case 1:  case 1:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 499 "loader.l"  #line 564 "loader.l"
 { BEGIN( MESSAGE ); msgbuf[0]='\0'; }  { BEGIN( MESSAGE ); msgbuf[0]='\0'; }
  YY_BREAK   YY_BREAK
 case 2:  case 2:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 500 "loader.l"  #line 565 "loader.l"
 { BEGIN( INITIAL );  { BEGIN( INITIAL );
  op->msg=add_string(msgbuf);   op->msg=add_string(msgbuf);
  /* Just print a warning so we can be reasonably safe   /* Just print a warning so we can be reasonably safe
Line 2677
 
Line 2660
  YY_BREAK   YY_BREAK
 case 3:  case 3:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 509 "loader.l"  #line 574 "loader.l"
 {strcat(msgbuf, yytext); strcat(msgbuf,"\n"); }  {strcat(msgbuf, yytext); strcat(msgbuf,"\n"); }
  YY_BREAK   YY_BREAK
 case 4:  case 4:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 511 "loader.l"  #line 576 "loader.l"
 { BEGIN( LORE ); lorebuf[0]='\0'; }  { BEGIN( LORE ); lorebuf[0]='\0'; }
  YY_BREAK   YY_BREAK
 case 5:  case 5:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 512 "loader.l"  #line 577 "loader.l"
 { BEGIN( INITIAL );  { BEGIN( INITIAL );
  op->lore=add_string(lorebuf);   op->lore=add_string(lorebuf);
  /* Just print a warning so we can be reasonably safe   /* Just print a warning so we can be reasonably safe
Line 2706
 
Line 2689
  YY_BREAK   YY_BREAK
 case 6:  case 6:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 521 "loader.l"  #line 586 "loader.l"
 {strcat(lorebuf, yytext); strcat(lorebuf,"\n"); }  {strcat(lorebuf, yytext); strcat(lorebuf,"\n"); }
  YY_BREAK   YY_BREAK
 case 7:  case 7:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 523 "loader.l"  #line 588 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') {   if (*yv=='\0') {
Line 2728
 
Line 2711
  YY_BREAK   YY_BREAK
 case 8:  case 8:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 537 "loader.l"  #line 602 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') LOG(llevError,"Name without val\n");   if (*yv=='\0') LOG(llevError,"Name without val\n");
Line 2737
 
Line 2720
  YY_BREAK   YY_BREAK
 case 9:  case 9:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 542 "loader.l"  #line 607 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') LOG(llevError,"Name without val\n");   if (*yv=='\0') LOG(llevError,"Name without val\n");
Line 2746
 
Line 2729
  YY_BREAK   YY_BREAK
 case 10:  case 10:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 547 "loader.l"  #line 612 "loader.l"
 FREE_AND_COPY(op->skill,yval());  FREE_AND_COPY(op->skill,yval());
  YY_BREAK   YY_BREAK
 case 11:  case 11:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 548 "loader.l"  #line 613 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') LOG(llevError,"Custom name without val\n");   if (*yv=='\0') LOG(llevError,"Custom name without val\n");
Line 2760
 
Line 2743
  YY_BREAK   YY_BREAK
 case 12:  case 12:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 553 "loader.l"  #line 618 "loader.l"
 FREE_AND_COPY(op->race,yval());  FREE_AND_COPY(op->race,yval());
  YY_BREAK   YY_BREAK
 case 13:  case 13:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 554 "loader.l"  #line 619 "loader.l"
 FREE_AND_COPY(op->slaying, yval());  FREE_AND_COPY(op->slaying, yval());
  YY_BREAK   YY_BREAK
 case 14:  case 14:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 555 "loader.l"  #line 620 "loader.l"
 LOG(llevError,"Got depreciated Inventory command?\n");  LOG(llevError,"Got depreciated Inventory command?\n");
  YY_BREAK   YY_BREAK
 case 15:  case 15:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 558 "loader.l"  #line 623 "loader.l"
 { /* If op->arch has been set, then this new object  { /* If op->arch has been set, then this new object
  * must be part of the inventory.  So process   * must be part of the inventory.  So process
  * appropriately.   * appropriately.
Line 2823
 
Line 2806
  YY_BREAK   YY_BREAK
 case 16:  case 16:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 600 "loader.l"  #line 665 "loader.l"
 op->other_arch=find_archetype(yval());  op->other_arch=find_archetype(yval());
  YY_BREAK   YY_BREAK
 case 17:  case 17:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 601 "loader.l"  #line 666 "loader.l"
 {  {
  if (strcmp (yval(), "NONE") == 0) {   if (strcmp (yval(), "NONE") == 0) {
      op->animation_id = 0;       op->animation_id = 0;
Line 2840
 
Line 2823
      }       }
  YY_BREAK   YY_BREAK
 case 18:  case 18:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 611 "loader.l"  #line 676 "loader.l"
 { /* We need to record that this is a multipart object,  { /* We need to record that this is a multipart object,
         * so the calling function can glue things back together          * so the calling function can glue things back together
         */          */
Line 2852
 
Line 2835
      }       }
  YY_BREAK   YY_BREAK
 case 19:  case 19:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 617 "loader.l"  #line 682 "loader.l"
 { check_loaded_object(op);  { check_loaded_object(op);
  if (ismore) return LL_MORE;    if (ismore) return LL_MORE;
  else return LL_NORMAL;   else return LL_NORMAL;
Line 2864
 
Line 2847
  YY_BREAK   YY_BREAK
 case 20:  case 20:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 621 "loader.l"  #line 686 "loader.l"
 op->last_heal = IVAL;  op->last_heal = IVAL;
  YY_BREAK   YY_BREAK
 case 21:  case 21:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 622 "loader.l"  #line 687 "loader.l"
 op->last_sp = IVAL;  op->last_sp = IVAL;
  YY_BREAK   YY_BREAK
 case 22:  case 22:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 623 "loader.l"  #line 688 "loader.l"
 op->last_grace = IVAL;  op->last_grace = IVAL;
  YY_BREAK   YY_BREAK
 case 23:  case 23:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 624 "loader.l"  #line 689 "loader.l"
 op->last_eat = IVAL;  op->last_eat = IVAL;
  YY_BREAK   YY_BREAK
 case 24:  case 24:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 625 "loader.l"  #line 690 "loader.l"
 { op->speed = FVAL;  { op->speed = FVAL;
  if (!(map_flags & MAP_STYLE)) {   if (!(map_flags & MAP_STYLE)) {
      if (op->speed<0) op->speed_left = op->speed_left-RANDOM()%100/100.0;       if (op->speed<0) op->speed_left = op->speed_left-RANDOM()%100/100.0;
Line 2894
 
Line 2877
  YY_BREAK   YY_BREAK
 case 25:  case 25:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 631 "loader.l"  #line 696 "loader.l"
 op->speed_left = FVAL;  op->speed_left = FVAL;
  YY_BREAK   YY_BREAK
 case 26:  case 26:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 632 "loader.l"  #line 697 "loader.l"
 { SET_SLOW_PENALTY(op,FVAL);  { SET_SLOW_PENALTY(op,FVAL);
  SET_FLAG(op, FLAG_SLOW_MOVE);   SET_FLAG(op, FLAG_SLOW_MOVE);
      }       }
  YY_BREAK   YY_BREAK
 case 27:  case 27:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 635 "loader.l"  #line 700 "loader.l"
 { char *y=yval();  { char *y=yval();
  if (*y=='\0') LOG(llevError,"Title without value.\n");   if (*y=='\0') LOG(llevError,"Title without value.\n");
  else FREE_AND_COPY(op->title, y);   else FREE_AND_COPY(op->title, y);
Line 2914
 
Line 2897
  YY_BREAK   YY_BREAK
 case 28:  case 28:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 640 "loader.l"  #line 705 "loader.l"
 op->face = &new_faces[FindFace(yval(), 0)];  op->face = &new_faces[FindFace(yval(), 0)];
  YY_BREAK   YY_BREAK
 case 29:  case 29:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 641 "loader.l"  #line 706 "loader.l"
 op->stats.Str = IVAL;  op->stats.Str = IVAL;
  YY_BREAK   YY_BREAK
 case 30:  case 30:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 642 "loader.l"  #line 707 "loader.l"
 op->stats.Dex = IVAL;  op->stats.Dex = IVAL;
  YY_BREAK   YY_BREAK
 case 31:  case 31:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 643 "loader.l"  #line 708 "loader.l"
 op->stats.Con = IVAL;  op->stats.Con = IVAL;
  YY_BREAK   YY_BREAK
 case 32:  case 32:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 644 "loader.l"  #line 709 "loader.l"
 op->stats.Wis = IVAL;  op->stats.Wis = IVAL;
  YY_BREAK   YY_BREAK
 case 33:  case 33:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 645 "loader.l"  #line 710 "loader.l"
 op->stats.Cha = IVAL;  op->stats.Cha = IVAL;
  YY_BREAK   YY_BREAK
 case 34:  case 34:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 646 "loader.l"  #line 711 "loader.l"
 op->stats.Int = IVAL;  op->stats.Int = IVAL;
  YY_BREAK   YY_BREAK
 case 35:  case 35:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 647 "loader.l"  #line 712 "loader.l"
 op->stats.Pow = IVAL;  op->stats.Pow = IVAL;
  YY_BREAK   YY_BREAK
 case 36:  case 36:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 648 "loader.l"  #line 713 "loader.l"
 op->stats.hp = IVAL;  op->stats.hp = IVAL;
  YY_BREAK   YY_BREAK
 case 37:  case 37:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 649 "loader.l"  #line 714 "loader.l"
 op->stats.maxhp = IVAL;  op->stats.maxhp = IVAL;
  YY_BREAK   YY_BREAK
 case 38:  case 38:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 650 "loader.l"  #line 715 "loader.l"
 op->stats.sp = IVAL;  op->stats.sp = IVAL;
  YY_BREAK   YY_BREAK
 case 39:  case 39:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 651 "loader.l"  #line 716 "loader.l"
 op->stats.maxsp = IVAL;  op->stats.maxsp = IVAL;
  YY_BREAK   YY_BREAK
 case 40:  case 40:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 652 "loader.l"  #line 717 "loader.l"
 op->stats.grace = IVAL;  op->stats.grace = IVAL;
  YY_BREAK   YY_BREAK
 case 41:  case 41:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 653 "loader.l"  #line 718 "loader.l"
 op->stats.maxgrace = IVAL;  op->stats.maxgrace = IVAL;
  YY_BREAK   YY_BREAK
 case 42:  case 42:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 654 "loader.l"  #line 719 "loader.l"
 op->stats.exp = atoll(yval());  op->stats.exp = atoll(yval());
  YY_BREAK   YY_BREAK
 case 43:  case 43:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 655 "loader.l"  #line 720 "loader.l"
 op->perm_exp = atoll(yval());  op->perm_exp = atoll(yval());
  YY_BREAK   YY_BREAK
 case 44:  case 44:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 656 "loader.l"  #line 721 "loader.l"
 op->stats.food = IVAL;  op->stats.food = IVAL;
  YY_BREAK   YY_BREAK
 case 45:  case 45:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 657 "loader.l"  #line 722 "loader.l"
 op->stats.dam = IVAL;  op->stats.dam = IVAL;
  YY_BREAK   YY_BREAK
 case 46:  case 46:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 658 "loader.l"  #line 723 "loader.l"
 op->stats.wc = IVAL;  op->stats.wc = IVAL;
  YY_BREAK   YY_BREAK
 case 47:  case 47:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 659 "loader.l"  #line 724 "loader.l"
 op->stats.ac = IVAL;  op->stats.ac = IVAL;
  YY_BREAK   YY_BREAK
 case 48:  case 48:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 660 "loader.l"  #line 725 "loader.l"
 {op->x = IVAL; op->ox= op->x; }  {op->x = IVAL; op->ox= op->x; }
  YY_BREAK   YY_BREAK
 case 49:  case 49:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 661 "loader.l"  #line 726 "loader.l"
 {op->y = IVAL; op->oy= op->y; }  {op->y = IVAL; op->oy= op->y; }
  YY_BREAK   YY_BREAK
 case 50:  case 50:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 662 "loader.l"  #line 727 "loader.l"
 op->nrof= atol(yval());  op->nrof= atol(yval());
  YY_BREAK   YY_BREAK
 case 51:  case 51:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 663 "loader.l"  #line 728 "loader.l"
 op->level = IVAL;  op->level = IVAL;
  YY_BREAK   YY_BREAK
 case 52:  case 52:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 664 "loader.l"  #line 729 "loader.l"
 op->direction = IVAL;  op->direction = IVAL;
  YY_BREAK   YY_BREAK
 case 53:  case 53:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 665 "loader.l"  #line 730 "loader.l"
 op->type = IVAL;  op->type = IVAL;
  YY_BREAK   YY_BREAK
 case 54:  case 54:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 666 "loader.l"  #line 731 "loader.l"
 op->subtype = IVAL;  op->subtype = IVAL;
  YY_BREAK   YY_BREAK
 case 55:  case 55:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 667 "loader.l"  #line 732 "loader.l"
 op->material = IVAL;  op->material = IVAL;
  YY_BREAK   YY_BREAK
 case 56:  case 56:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 668 "loader.l"  #line 733 "loader.l"
 { char *yv=yval();  { char *yv=yval();
  if (*yv=='\0')   if (*yv=='\0')
      LOG(llevError,"Materialname without val\n");       LOG(llevError,"Materialname without val\n");
Line 3064
 
Line 3047
  YY_BREAK   YY_BREAK
 case 57:  case 57:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 675 "loader.l"  #line 740 "loader.l"
 op->value = IVAL;  op->value = IVAL;
  YY_BREAK   YY_BREAK
 case 58:  case 58:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 676 "loader.l"  #line 741 "loader.l"
 op->weight = atol(yval());  op->weight = atol(yval());
  YY_BREAK   YY_BREAK
 case 59:  case 59:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 677 "loader.l"  #line 742 "loader.l"
 op->carrying = atol(yval());  op->carrying = atol(yval());
  YY_BREAK   YY_BREAK
 case 60:  case 60:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 678 "loader.l"  #line 743 "loader.l"
 op->attacktype = IVAL;  op->attacktype = IVAL;
  YY_BREAK   YY_BREAK
 case 61:  case 61:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 679 "loader.l"  #line 744 "loader.l"
 op->path_attuned = IVAL;  op->path_attuned = IVAL;
  YY_BREAK   YY_BREAK
 case 62:  case 62:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 680 "loader.l"  #line 745 "loader.l"
 op->path_repelled = IVAL;  op->path_repelled = IVAL;
  YY_BREAK   YY_BREAK
 case 63:  case 63:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 681 "loader.l"  #line 746 "loader.l"
 op->path_denied = IVAL;  op->path_denied = IVAL;
  YY_BREAK   YY_BREAK
 case 64:  case 64:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 682 "loader.l"  #line 747 "loader.l"
 op->invisible = IVAL;  op->invisible = IVAL;
  YY_BREAK   YY_BREAK
 case 65:  case 65:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 683 "loader.l"  #line 748 "loader.l"
 op->magic = IVAL;  op->magic = IVAL;
  YY_BREAK   YY_BREAK
 case 66:  case 66:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 684 "loader.l"  #line 749 "loader.l"
 op->state = IVAL;  op->state = IVAL;
  YY_BREAK   YY_BREAK
 case 67:  case 67:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 685 "loader.l"  #line 750 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ALIVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ALIVE, IVAL);
  YY_BREAK   YY_BREAK
 case 68:  case 68:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 686 "loader.l"  #line 751 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_APPLIED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_APPLIED, IVAL);
  YY_BREAK   YY_BREAK
 case 69:  case 69:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 687 "loader.l"  #line 752 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_UNPAID, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_UNPAID, IVAL);
  YY_BREAK   YY_BREAK
 case 70:  case 70:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 688 "loader.l"  #line 753 "loader.l"
 { /* not used - just ignore */ }  { /* not used - just ignore */ }
  YY_BREAK   YY_BREAK
 case 71:  case 71:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 689 "loader.l"  #line 754 "loader.l"
 { /* not used - jsut ignore */ }  { /* not used - jsut ignore */ }
  YY_BREAK   YY_BREAK
 case 72:  case 72:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 690 "loader.l"  #line 755 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_PICK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_PICK, IVAL);
  YY_BREAK   YY_BREAK
 case 73:  case 73:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 691 "loader.l"  #line 756 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_PASS, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_PASS, IVAL);
  YY_BREAK   YY_BREAK
 case 74:  case 74:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 692 "loader.l"  #line 757 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ANIMATE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ANIMATE, IVAL);
  YY_BREAK   YY_BREAK
 case 75:  case 75:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 693 "loader.l"  #line 758 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_WALK_ON, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_WALK_ON, IVAL);
  YY_BREAK   YY_BREAK
 case 76:  case 76:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 694 "loader.l"  #line 759 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_WALK_OFF, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_WALK_OFF, IVAL);
  YY_BREAK   YY_BREAK
 case 77:  case 77:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 695 "loader.l"  #line 760 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_FLY_ON, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_FLY_ON, IVAL);
  YY_BREAK   YY_BREAK
 case 78:  case 78:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 696 "loader.l"  #line 761 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_FLY_OFF, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_FLY_OFF, IVAL);
  YY_BREAK   YY_BREAK
 case 79:  case 79:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 697 "loader.l"  #line 762 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_FLYING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_FLYING, IVAL);
  YY_BREAK   YY_BREAK
 case 80:  case 80:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 698 "loader.l"  #line 763 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_MONSTER, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_MONSTER, IVAL);
  YY_BREAK   YY_BREAK
 case 81:  case 81:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 699 "loader.l"  #line 764 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NEUTRAL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NEUTRAL, IVAL);
  YY_BREAK   YY_BREAK
 case 82:  case 82:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 700 "loader.l"  #line 765 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_ATTACK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_ATTACK, IVAL);
  YY_BREAK   YY_BREAK
 case 83:  case 83:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 701 "loader.l"  #line 766 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_DAMAGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_DAMAGE, IVAL);
  YY_BREAK   YY_BREAK
 case 84:  case 84:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 702 "loader.l"  #line 767 "loader.l"
 { if (IVAL) {  { if (IVAL) {
      SET_FLAG(op, FLAG_FRIENDLY);       SET_FLAG(op, FLAG_FRIENDLY);
      if (op->type != PLAYER) {       if (op->type != PLAYER) {
Line 3212
 
Line 3195
  YY_BREAK   YY_BREAK
 case 85:  case 85:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 711 "loader.l"  #line 776 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_GENERATOR, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_GENERATOR, IVAL);
  YY_BREAK   YY_BREAK
 case 86:  case 86:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 712 "loader.l"  #line 777 "loader.l"
 SET_OR_CLEAR_FLAG (op,FLAG_CONTENT_ON_GEN, IVAL);  SET_OR_CLEAR_FLAG (op,FLAG_CONTENT_ON_GEN, IVAL);
  YY_BREAK   YY_BREAK
 case 87:  case 87:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 713 "loader.l"  #line 778 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_THROWN, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_THROWN, IVAL);
  YY_BREAK   YY_BREAK
 case 88:  case 88:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 714 "loader.l"  #line 779 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_AUTO_APPLY, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_AUTO_APPLY, IVAL);
  YY_BREAK   YY_BREAK
 case 89:  case 89:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 715 "loader.l"  #line 780 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_TREASURE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_TREASURE, IVAL);
  YY_BREAK   YY_BREAK
 case 90:  case 90:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 716 "loader.l"  #line 781 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SEE_INVISIBLE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SEE_INVISIBLE, IVAL);
  YY_BREAK   YY_BREAK
 case 91:  case 91:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 717 "loader.l"  #line 782 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CAN_ROLL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CAN_ROLL, IVAL);
  YY_BREAK   YY_BREAK
 case 92:  case 92:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 718 "loader.l"  #line 783 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_OVERLAY_FLOOR, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_OVERLAY_FLOOR, IVAL);
  YY_BREAK   YY_BREAK
 case 93:  case 93:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 719 "loader.l"  #line 784 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_TURNABLE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_TURNABLE, IVAL);
  YY_BREAK   YY_BREAK
 case 94:  case 94:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 720 "loader.l"  #line 785 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_USED_UP, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_USED_UP, IVAL);
  YY_BREAK   YY_BREAK
 case 95:  case 95:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 721 "loader.l"  #line 786 "loader.l"
 { if (IVAL) {  { if (IVAL) {
      SET_FLAG(op, FLAG_IDENTIFIED);       SET_FLAG(op, FLAG_IDENTIFIED);
      CLEAR_FLAG(op, FLAG_KNOWN_MAGICAL);       CLEAR_FLAG(op, FLAG_KNOWN_MAGICAL);
Line 3272
 
Line 3255
  YY_BREAK   YY_BREAK
 case 96:  case 96:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 727 "loader.l"  #line 792 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_REFLECTING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_REFLECTING, IVAL);
  YY_BREAK   YY_BREAK
 case 97:  case 97:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 728 "loader.l"  #line 793 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CHANGING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CHANGING, IVAL);
  YY_BREAK   YY_BREAK
 case 98:  case 98:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 729 "loader.l"  #line 794 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SPLITTING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SPLITTING, IVAL);
  YY_BREAK   YY_BREAK
 case 99:  case 99:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 730 "loader.l"  #line 795 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_HITBACK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_HITBACK, IVAL);
  YY_BREAK   YY_BREAK
 case 100:  case 100:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 731 "loader.l"  #line 796 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_STARTEQUIP, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_STARTEQUIP, IVAL);
  YY_BREAK   YY_BREAK
 case 101:  case 101:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 732 "loader.l"  #line 797 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_BLOCKSVIEW, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_BLOCKSVIEW, IVAL);
  YY_BREAK   YY_BREAK
 case 102:  case 102:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 733 "loader.l"  #line 798 "loader.l"
 op->arch->editable = IVAL;  op->arch->editable = IVAL;
  YY_BREAK   YY_BREAK
 case 103:  case 103:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 734 "loader.l"  #line 799 "loader.l"
 { }  { }
  YY_BREAK   YY_BREAK
 case 104:  case 104:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 735 "loader.l"  #line 800 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_UNDEAD, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_UNDEAD, IVAL);
  YY_BREAK   YY_BREAK
 case 105:  case 105:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 736 "loader.l"  #line 801 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SCARED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SCARED, IVAL);
  YY_BREAK   YY_BREAK
 case 106:  case 106:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 737 "loader.l"  #line 802 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_UNAGGRESSIVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_UNAGGRESSIVE, IVAL);
  YY_BREAK   YY_BREAK
 case 107:  case 107:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 738 "loader.l"  #line 803 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_REFL_MISSILE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_REFL_MISSILE, IVAL);
  YY_BREAK   YY_BREAK
 case 108:  case 108:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 739 "loader.l"  #line 804 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_REFL_SPELL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_REFL_SPELL, IVAL);
  YY_BREAK   YY_BREAK
 case 109:  case 109:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 740 "loader.l"  #line 805 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_MAGIC, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_MAGIC, IVAL);
  YY_BREAK   YY_BREAK
 case 110:  case 110:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 741 "loader.l"  #line 806 "loader.l"
 { if (IVAL) {  { if (IVAL) {
      SET_FLAG(op, FLAG_WIZ);       SET_FLAG(op, FLAG_WIZ);
      SET_FLAG(op, FLAG_WAS_WIZ);       SET_FLAG(op, FLAG_WAS_WIZ);
Line 3356
 
Line 3339
  YY_BREAK   YY_BREAK
 case 111:  case 111:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 751 "loader.l"  #line 816 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_WAS_WIZ, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_WAS_WIZ, IVAL);
  YY_BREAK   YY_BREAK
 case 112:  case 112:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 752 "loader.l"  #line 817 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_FIX_PLAYER, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_FIX_PLAYER, IVAL);
  YY_BREAK   YY_BREAK
 case 113:  case 113:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 753 "loader.l"  #line 818 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_TEAR_DOWN, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_LIGHTABLE, IVAL);
  YY_BREAK   YY_BREAK
 case 114:  case 114:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 754 "loader.l"  #line 819 "loader.l"
 op->stats.luck = IVAL;  SET_OR_CLEAR_FLAG(op, FLAG_TEAR_DOWN, IVAL);
  YY_BREAK   YY_BREAK
 case 115:  case 115:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 755 "loader.l"  #line 820 "loader.l"
 op->run_away = IVAL;  op->stats.luck = IVAL;
  YY_BREAK   YY_BREAK
 case 116:  case 116:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 756 "loader.l"  #line 821 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_PASS_THRU, IVAL);  op->run_away = IVAL;
  YY_BREAK   YY_BREAK
 case 117:  case 117:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 757 "loader.l"  #line 822 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CAN_PASS_THRU, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_PASS_THRU, IVAL);
  YY_BREAK   YY_BREAK
 case 118:  case 118:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 758 "loader.l"  #line 823 "loader.l"
 op->pick_up = IVAL;  SET_OR_CLEAR_FLAG(op, FLAG_CAN_PASS_THRU, IVAL);
  YY_BREAK   YY_BREAK
 case 119:  case 119:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 759 "loader.l"  #line 824 "loader.l"
 op->item_power = IVAL;  op->pick_up = IVAL;
  YY_BREAK   YY_BREAK
 case 120:  case 120:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 760 "loader.l"  #line 825 "loader.l"
 op->gen_sp_armour = IVAL;  op->item_power = IVAL;
  YY_BREAK   YY_BREAK
 case 121:  case 121:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 761 "loader.l"  #line 826 "loader.l"
 op->anim_speed = IVAL;  op->gen_sp_armour = IVAL;
  YY_BREAK   YY_BREAK
 case 122:  case 122:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 762 "loader.l"  #line 827 "loader.l"
 op->weight_limit = IVAL;  op->anim_speed = IVAL;
  YY_BREAK   YY_BREAK
 case 123:  case 123:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 763 "loader.l"  #line 828 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_DROP, IVAL);  op->weight_limit = IVAL;
  YY_BREAK   YY_BREAK
 case 124:  case 124:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 764 "loader.l"  #line 829 "loader.l"
 op->will_apply = IVAL;  SET_OR_CLEAR_FLAG(op, FLAG_NO_DROP, IVAL);
  YY_BREAK   YY_BREAK
 case 125:  case 125:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 765 "loader.l"  #line 830 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_RANDOM_MOVE, IVAL);  op->will_apply = IVAL;
  YY_BREAK   YY_BREAK
 case 126:  case 126:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 766 "loader.l"  #line 831 "loader.l"
 { }  SET_OR_CLEAR_FLAG(op, FLAG_RANDOM_MOVE, IVAL);
  YY_BREAK   YY_BREAK
 case 127:  case 127:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 767 "loader.l"  #line 832 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_SHIELD, IVAL);  { }
  YY_BREAK   YY_BREAK
 case 128:  case 128:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 768 "loader.l"  #line 833 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CAST_SPELL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_SHIELD, IVAL);
  YY_BREAK   YY_BREAK
 case 129:  case 129:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 769 "loader.l"  #line 834 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_SCROLL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CAST_SPELL, IVAL);
  YY_BREAK   YY_BREAK
 case 130:  case 130:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 770 "loader.l"  #line 835 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_RANGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_SCROLL, IVAL);
  YY_BREAK   YY_BREAK
 case 131:  case 131:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 771 "loader.l"  #line 836 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_BOW, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 132:  case 132:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 772 "loader.l"  #line 837 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_ARMOUR, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_BOW, IVAL);
  YY_BREAK   YY_BREAK
 case 133:  case 133:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 773 "loader.l"  #line 838 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_WEAPON, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_ARMOUR, IVAL);
  YY_BREAK   YY_BREAK
 case 134:  case 134:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 774 "loader.l"  #line 839 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_RING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_WEAPON, IVAL);
  YY_BREAK   YY_BREAK
 case 135:  case 135:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 775 "loader.l"  #line 840 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_BOW, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_RING, IVAL);
  YY_BREAK   YY_BREAK
 case 136:  case 136:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 776 "loader.l"  #line 841 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_XRAYS, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_BOW, IVAL);
  YY_BREAK   YY_BREAK
 case 137:  case 137:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 777 "loader.l"  #line 842 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_FLOOR, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_XRAYS, IVAL);
  YY_BREAK   YY_BREAK
 case 138:  case 138:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 778 "loader.l"  #line 843 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_LIFESAVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_FLOOR, IVAL);
  YY_BREAK   YY_BREAK
 case 139:  case 139:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 779 "loader.l"  #line 844 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_STRENGTH, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_LIFESAVE, IVAL);
  YY_BREAK   YY_BREAK
 case 140:  case 140:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 780 "loader.l"  #line 845 "loader.l"
   SET_OR_CLEAR_FLAG(op, FLAG_NO_STRENGTH, IVAL);
    YY_BREAK
   case 141:
   YY_RULE_SETUP
   #line 846 "loader.l"
 {  {
  SET_OR_CLEAR_FLAG(op, FLAG_SLEEP, IVAL);   SET_OR_CLEAR_FLAG(op, FLAG_SLEEP, IVAL);
  /*(LOG(llevDebug," Warning: Object %s has sleep set in arch.\n",op->name);*/   /*(LOG(llevDebug," Warning: Object %s has sleep set in arch.\n",op->name);*/
      }       }
  YY_BREAK   YY_BREAK
 case 141:  case 142:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 784 "loader.l"  #line 850 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_STAND_STILL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_STAND_STILL, IVAL);
  YY_BREAK   YY_BREAK
 case 142:  case 143:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 785 "loader.l"  #line 851 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_RANDOM_MOVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_RANDOM_MOVE, IVAL);
  YY_BREAK   YY_BREAK
 case 143:  case 144:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 786 "loader.l"  #line 852 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ONLY_ATTACK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ONLY_ATTACK, IVAL);
  YY_BREAK   YY_BREAK
 case 144:  case 145:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 788 "loader.l"  #line 854 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ACTIVATE_ON_PUSH, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ACTIVATE_ON_PUSH, IVAL);
  YY_BREAK   YY_BREAK
 case 145:  case 146:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 789 "loader.l"  #line 855 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ACTIVATE_ON_RELEASE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ACTIVATE_ON_RELEASE, IVAL);
  YY_BREAK   YY_BREAK
 /* armour is loaded for compatiblity reasons */  /* armour is loaded for compatiblity reasons */
 case 146:  case 147:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 792 "loader.l"  #line 858 "loader.l"
 SET_RESIST(op, ATNR_PHYSICAL, IVAL);  SET_RESIST(op, ATNR_PHYSICAL, IVAL);
  YY_BREAK   YY_BREAK
 /* Start of various attacktypes */  /* Start of various attacktypes */
 case 147:  case 148:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 794 "loader.l"  #line 860 "loader.l"
 SET_RESIST(op, ATNR_PHYSICAL, IVAL);  SET_RESIST(op, ATNR_PHYSICAL, IVAL);
  YY_BREAK   YY_BREAK
 case 148:  case 149:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 795 "loader.l"  #line 861 "loader.l"
 SET_RESIST(op, ATNR_MAGIC, IVAL);  SET_RESIST(op, ATNR_MAGIC, IVAL);
  YY_BREAK   YY_BREAK
 case 149:  case 150:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 796 "loader.l"  #line 862 "loader.l"
 SET_RESIST(op, ATNR_FIRE, IVAL);  SET_RESIST(op, ATNR_FIRE, IVAL);
  YY_BREAK   YY_BREAK
 case 150:  case 151:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 797 "loader.l"  #line 863 "loader.l"
 SET_RESIST(op, ATNR_ELECTRICITY, IVAL);  SET_RESIST(op, ATNR_ELECTRICITY, IVAL);
  YY_BREAK   YY_BREAK
 case 151:  case 152:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 798 "loader.l"  #line 864 "loader.l"
 SET_RESIST(op, ATNR_COLD, IVAL);  SET_RESIST(op, ATNR_COLD, IVAL);
  YY_BREAK   YY_BREAK
 case 152:  case 153:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 799 "loader.l"  #line 865 "loader.l"
 SET_RESIST(op, ATNR_CONFUSION, IVAL);  SET_RESIST(op, ATNR_CONFUSION, IVAL);
  YY_BREAK   YY_BREAK
 case 153:  case 154:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 800 "loader.l"  #line 866 "loader.l"
 SET_RESIST(op, ATNR_ACID, IVAL);  SET_RESIST(op, ATNR_ACID, IVAL);
  YY_BREAK   YY_BREAK
 case 154:  case 155:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 801 "loader.l"  #line 867 "loader.l"
 SET_RESIST(op, ATNR_DRAIN, IVAL);  SET_RESIST(op, ATNR_DRAIN, IVAL);
  YY_BREAK   YY_BREAK
 case 155:  case 156:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 802 "loader.l"  #line 868 "loader.l"
 SET_RESIST(op, ATNR_WEAPONMAGIC, IVAL);  SET_RESIST(op, ATNR_WEAPONMAGIC, IVAL);
  YY_BREAK   YY_BREAK
 case 156:  case 157:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 803 "loader.l"  #line 869 "loader.l"
 SET_RESIST(op, ATNR_GHOSTHIT, IVAL);  SET_RESIST(op, ATNR_GHOSTHIT, IVAL);
  YY_BREAK   YY_BREAK
 case 157:  case 158:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 804 "loader.l"  #line 870 "loader.l"
 SET_RESIST(op, ATNR_POISON, IVAL);  SET_RESIST(op, ATNR_POISON, IVAL);
  YY_BREAK   YY_BREAK
 case 158:  case 159:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 805 "loader.l"  #line 871 "loader.l"
 SET_RESIST(op, ATNR_SLOW, IVAL);  SET_RESIST(op, ATNR_SLOW, IVAL);
  YY_BREAK   YY_BREAK
 case 159:  case 160:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 806 "loader.l"  #line 872 "loader.l"
 SET_RESIST(op, ATNR_PARALYZE, IVAL);  SET_RESIST(op, ATNR_PARALYZE, IVAL);
  YY_BREAK   YY_BREAK
 case 160:  case 161:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 807 "loader.l"  #line 873 "loader.l"
 SET_RESIST(op, ATNR_TURN_UNDEAD, IVAL);  SET_RESIST(op, ATNR_TURN_UNDEAD, IVAL);
  YY_BREAK   YY_BREAK
 case 161:  case 162:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 808 "loader.l"  #line 874 "loader.l"
 SET_RESIST(op, ATNR_FEAR, IVAL);  SET_RESIST(op, ATNR_FEAR, IVAL);
  YY_BREAK   YY_BREAK
 case 162:  case 163:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 809 "loader.l"  #line 875 "loader.l"
 SET_RESIST(op, ATNR_CANCELLATION, IVAL);  SET_RESIST(op, ATNR_CANCELLATION, IVAL);
  YY_BREAK   YY_BREAK
 case 163:  case 164:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 810 "loader.l"  #line 876 "loader.l"
 SET_RESIST(op, ATNR_DEPLETE, IVAL);  SET_RESIST(op, ATNR_DEPLETE, IVAL);
  YY_BREAK   YY_BREAK
 case 164:  case 165:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 811 "loader.l"  #line 877 "loader.l"
 SET_RESIST(op, ATNR_DEATH, IVAL);  SET_RESIST(op, ATNR_DEATH, IVAL);
  YY_BREAK   YY_BREAK
 case 165:  case 166:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 812 "loader.l"  #line 878 "loader.l"
 SET_RESIST(op, ATNR_CHAOS, IVAL);  SET_RESIST(op, ATNR_CHAOS, IVAL);
  YY_BREAK   YY_BREAK
 case 166:  case 167:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 813 "loader.l"  #line 879 "loader.l"
 SET_RESIST(op, ATNR_COUNTERSPELL, IVAL);  SET_RESIST(op, ATNR_COUNTERSPELL, IVAL);
  YY_BREAK   YY_BREAK
 case 167:  case 168:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 814 "loader.l"  #line 880 "loader.l"
 SET_RESIST(op, ATNR_GODPOWER, IVAL);  SET_RESIST(op, ATNR_GODPOWER, IVAL);
  YY_BREAK   YY_BREAK
 case 168:  case 169:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 815 "loader.l"  #line 881 "loader.l"
 SET_RESIST(op, ATNR_HOLYWORD, IVAL);  SET_RESIST(op, ATNR_HOLYWORD, IVAL);
  YY_BREAK   YY_BREAK
 case 169:  case 170:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 816 "loader.l"  #line 882 "loader.l"
 SET_RESIST(op, ATNR_BLIND, IVAL);  SET_RESIST(op, ATNR_BLIND, IVAL);
  YY_BREAK   YY_BREAK
 case 170:  case 171:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 817 "loader.l"  #line 883 "loader.l"
 SET_RESIST(op, ATNR_INTERNAL, IVAL);  SET_RESIST(op, ATNR_INTERNAL, IVAL);
  YY_BREAK   YY_BREAK
 case 171:  case 172:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 818 "loader.l"  #line 884 "loader.l"
 SET_RESIST(op, ATNR_LIFE_STEALING, IVAL);  SET_RESIST(op, ATNR_LIFE_STEALING, IVAL);
  YY_BREAK   YY_BREAK
 case 172:  case 173:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 819 "loader.l"  #line 885 "loader.l"
 SET_RESIST(op, ATNR_DISEASE, IVAL);  SET_RESIST(op, ATNR_DISEASE, IVAL);
  YY_BREAK   YY_BREAK
 /* Old style resistances */  /* Old style resistances */
 case 173:  case 174:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 822 "loader.l"  #line 888 "loader.l"
 set_protection(op, IVAL, RESIST_IMMUNE);  set_protection(op, IVAL, RESIST_IMMUNE);
  YY_BREAK   YY_BREAK
 case 174:  case 175:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 823 "loader.l"  #line 889 "loader.l"
 set_protection(op, IVAL, RESIST_PROT);  set_protection(op, IVAL, RESIST_PROT);
  YY_BREAK   YY_BREAK
 case 175:  case 176:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 824 "loader.l"  #line 890 "loader.l"
 set_protection(op, IVAL, RESIST_VULN);  set_protection(op, IVAL, RESIST_VULN);
  YY_BREAK   YY_BREAK
 /* old values - keep them around for now, but they should be removed at some point */  /* old values - keep them around for now, but they should be removed at some point */
 case 176:  
 YY_RULE_SETUP  
 #line 827 "loader.l"  
 SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);  
  YY_BREAK  
 case 177:  case 177:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 828 "loader.l"  #line 893 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 178:  case 178:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 829 "loader.l"  #line 894 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 179:  case 179:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 830 "loader.l"  #line 895 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_RANGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 180:  case 180:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 832 "loader.l"  #line 896 "loader.l"
 op->move_type = IVAL;  SET_OR_CLEAR_FLAG(op, FLAG_USE_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 181:  case 181:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 833 "loader.l"  #line 898 "loader.l"
 op->move_status = IVAL;  op->move_type = IVAL;
  YY_BREAK   YY_BREAK
 case 182:  case 182:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 834 "loader.l"  #line 899 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CONFUSED, IVAL);  op->move_status = IVAL;
  YY_BREAK   YY_BREAK
 case 183:  case 183:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 835 "loader.l"  #line 900 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_STEALTH, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CONFUSED, IVAL);
  YY_BREAK   YY_BREAK
 case 184:  case 184:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 836 "loader.l"  #line 901 "loader.l"
 add_button_link(op, op->map, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_STEALTH, IVAL);
  YY_BREAK   YY_BREAK
 case 185:  case 185:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 837 "loader.l"  #line 902 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CURSED, IVAL);  add_button_link(op, op->map, IVAL);
  YY_BREAK   YY_BREAK
 case 186:  case 186:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 838 "loader.l"  #line 903 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_DAMNED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CURSED, IVAL);
  YY_BREAK   YY_BREAK
 case 187:  case 187:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 839 "loader.l"  #line 904 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SEE_ANYWHERE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_DAMNED, IVAL);
  YY_BREAK   YY_BREAK
 case 188:  case 188:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 840 "loader.l"  #line 905 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_KNOWN_MAGICAL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SEE_ANYWHERE, IVAL);
  YY_BREAK   YY_BREAK
 case 189:  case 189:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 841 "loader.l"  #line 906 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_KNOWN_CURSED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_KNOWN_MAGICAL, IVAL);
  YY_BREAK   YY_BREAK
 case 190:  case 190:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 842 "loader.l"  #line 907 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CAN_USE_SKILL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_KNOWN_CURSED, IVAL);
  YY_BREAK   YY_BREAK
 case 191:  case 191:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 843 "loader.l"  #line 908 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_BEEN_APPLIED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CAN_USE_SKILL, IVAL);
  YY_BREAK   YY_BREAK
 case 192:  case 192:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 844 "loader.l"  #line 909 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_SCROLL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_BEEN_APPLIED, IVAL);
  YY_BREAK   YY_BREAK
 case 193:  case 193:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 845 "loader.l"  #line 910 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_ROD, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_SCROLL, IVAL);
  YY_BREAK   YY_BREAK
 case 194:  case 194:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 846 "loader.l"  #line 911 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_HORN, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_ROD, IVAL);
  YY_BREAK   YY_BREAK
 case 195:  case 195:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 847 "loader.l"  #line 912 "loader.l"
 op->expmul = FVAL;  SET_OR_CLEAR_FLAG(op, FLAG_USE_HORN, IVAL);
  YY_BREAK   YY_BREAK
 case 196:  case 196:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 848 "loader.l"  #line 913 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_UNIQUE, IVAL);  op->expmul = FVAL;
  YY_BREAK   YY_BREAK
 case 197:  case 197:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 849 "loader.l"  #line 914 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_MAKE_INVIS, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_UNIQUE, IVAL);
  YY_BREAK   YY_BREAK
 case 198:  case 198:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 850 "loader.l"  #line 915 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_INV_LOCKED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_MAKE_INVIS, IVAL);
  YY_BREAK   YY_BREAK
 case 199:  case 199:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 851 "loader.l"  #line 916 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_WOODED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_INV_LOCKED, IVAL);
  YY_BREAK   YY_BREAK
 case 200:  case 200:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 852 "loader.l"  #line 917 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_HILLY, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_WOODED, IVAL);
  YY_BREAK   YY_BREAK
 case 201:  case 201:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 853 "loader.l"  #line 918 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_WATER, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_HILLY, IVAL);
  YY_BREAK   YY_BREAK
 case 202:  case 202:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 854 "loader.l"  #line 919 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_SKILL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_WATER, IVAL);
  YY_BREAK   YY_BREAK
 case 203:  case 203:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 855 "loader.l"  #line 920 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_WEAPON, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_SKILL, IVAL);
  YY_BREAK   YY_BREAK
 case 204:  case 204:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 856 "loader.l"  #line 921 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_SKILL_IDENT, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_WEAPON, IVAL);
  YY_BREAK   YY_BREAK
 case 205:  case 205:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 857 "loader.l"  #line 922 "loader.l"
 op->glow_radius = IVAL;  SET_OR_CLEAR_FLAG(op, FLAG_NO_SKILL_IDENT, IVAL);
  YY_BREAK   YY_BREAK
 case 206:  case 206:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 858 "loader.l"  #line 923 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_BLIND, IVAL);  op->glow_radius = IVAL;
  YY_BREAK   YY_BREAK
 case 207:  case 207:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 859 "loader.l"  #line 924 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SEE_IN_DARK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_BLIND, IVAL);
  YY_BREAK   YY_BREAK
 case 208:  case 208:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 860 "loader.l"  #line 925 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_CAULDRON, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SEE_IN_DARK, IVAL);
  YY_BREAK   YY_BREAK
 case 209:  case 209:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 861 "loader.l"  #line 926 "loader.l"
 op->randomitems = find_treasurelist(yval());  SET_OR_CLEAR_FLAG(op, FLAG_IS_CAULDRON, IVAL);
  YY_BREAK   YY_BREAK
 case 210:  case 210:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 862 "loader.l"  #line 927 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_STEAL, IVAL);  op->randomitems = find_treasurelist(yval());
  YY_BREAK   YY_BREAK
 case 211:  case 211:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 863 "loader.l"  #line 928 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ONE_HIT, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_STEAL, IVAL);
  YY_BREAK   YY_BREAK
 case 212:  case 212:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 864 "loader.l"  #line 929 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_BERSERK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ONE_HIT, IVAL);
  YY_BREAK   YY_BREAK
 case 213:  case 213:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 866 "loader.l"  #line 930 "loader.l"
 { /* Some archetypes have these values in them */ }  SET_OR_CLEAR_FLAG(op, FLAG_BERSERK, IVAL);
  YY_BREAK   YY_BREAK
 case 214:  case 214:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 867 "loader.l"  #line 932 "loader.l"
 { /* Probably the pupland archetypes - I imagined */ }  { /* Some archetypes have these values in them */ }
  YY_BREAK   YY_BREAK
 case 215:  case 215:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 868 "loader.l"  #line 933 "loader.l"
 { /* That these are for the new combat code */ }  { /* Probably the pupland archetypes - I imagined */ }
  YY_BREAK   YY_BREAK
 case 216:  case 216:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 869 "loader.l"  #line 934 "loader.l"
 { /* just ignore for now */ }  { /* That these are for the new combat code */ }
  YY_BREAK   YY_BREAK
 case 217:  case 217:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 870 "loader.l"  #line 935 "loader.l"
 { }  { /* just ignore for now */ }
  YY_BREAK   YY_BREAK
 case 218:  case 218:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 871 "loader.l"  #line 936 "loader.l"
 op->weapontype = IVAL;  { }
  YY_BREAK   YY_BREAK
 case 219:  case 219:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 872 "loader.l"  #line 937 "loader.l"
 op->tooltype = IVAL;  op->weapontype = IVAL;
  YY_BREAK   YY_BREAK
 case 220:  case 220:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 873 "loader.l"  #line 938 "loader.l"
 op->casting_time = FVAL;  op->tooltype = IVAL;
  YY_BREAK   YY_BREAK
 case 221:  case 221:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 874 "loader.l"  #line 939 "loader.l"
 op->elevation = IVAL;  op->casting_time = FVAL;
  YY_BREAK   YY_BREAK
 case 222:  case 222:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 875 "loader.l"  #line 940 "loader.l"
 op->smoothlevel = IVAL;  op->elevation = IVAL;
  YY_BREAK   YY_BREAK
 case 223:  case 223:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 876 "loader.l"  #line 941 "loader.l"
 op->client_type = IVAL;  op->smoothlevel = IVAL;
  YY_BREAK   YY_BREAK
 case 224:  case 224:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 877 "loader.l"  #line 942 "loader.l"
 set_body_info(op, yytext);  op->client_type = IVAL;
  YY_BREAK   YY_BREAK
 case 225:  case 225:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 878 "loader.l"  #line 943 "loader.l"
 op->duration = IVAL;  set_body_info(op, yytext);
  YY_BREAK   YY_BREAK
 case 226:  case 226:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 879 "loader.l"  #line 944 "loader.l"
 op->range = IVAL;  op->duration = IVAL;
  YY_BREAK   YY_BREAK
 case 227:  case 227:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 880 "loader.l"  #line 945 "loader.l"
 op->range_modifier = IVAL;  op->range = IVAL;
  YY_BREAK   YY_BREAK
 case 228:  case 228:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 881 "loader.l"  #line 946 "loader.l"
 op->dam_modifier = IVAL;  op->range_modifier = IVAL;
  YY_BREAK   YY_BREAK
 case 229:  case 229:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 882 "loader.l"  #line 947 "loader.l"
 op->duration_modifier = IVAL;  op->dam_modifier = IVAL;
  YY_BREAK   YY_BREAK
 case 230:  case 230:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 883 "loader.l"  #line 948 "loader.l"
 SET_OR_CLEAR_FLAG( op, FLAG_IS_BUILDABLE, IVAL );  op->duration_modifier = IVAL;
  YY_BREAK   YY_BREAK
 case 231:  case 231:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 885 "loader.l"  #line 949 "loader.l"
   SET_OR_CLEAR_FLAG( op, FLAG_IS_BUILDABLE, IVAL );
    YY_BREAK
   case 232:
   YY_RULE_SETUP
   #line 951 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 3972
 
Line 3960
         insert_event(op,EVENT_APPLY,yv,NULL,NULL);          insert_event(op,EVENT_APPLY,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 232:  case 233:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 893 "loader.l"  #line 959 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 3983
 
Line 3971
         insert_event(op,EVENT_APPLY,NULL,yv,NULL);          insert_event(op,EVENT_APPLY,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 233:  case 234:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 901 "loader.l"  #line 967 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 3994
 
Line 3982
         insert_event(op,EVENT_APPLY,NULL,NULL,yv);          insert_event(op,EVENT_APPLY,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 234:  case 235:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 909 "loader.l"  #line 975 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4005
 
Line 3993
         insert_event(op,EVENT_ATTACK,yv,NULL,NULL);          insert_event(op,EVENT_ATTACK,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 235:  case 236:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 917 "loader.l"  #line 983 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4016
 
Line 4004
         insert_event(op,EVENT_ATTACK,NULL,yv,NULL);          insert_event(op,EVENT_ATTACK,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 236:  case 237:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 925 "loader.l"  #line 991 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4027
 
Line 4015
         insert_event(op,EVENT_ATTACK,NULL,NULL,yv);          insert_event(op,EVENT_ATTACK,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 237:  case 238:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 932 "loader.l"  #line 998 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4038
 
Line 4026
         insert_event(op,EVENT_DEATH,yv,NULL,NULL);          insert_event(op,EVENT_DEATH,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 238:  case 239:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 940 "loader.l"  #line 1006 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4049
 
Line 4037
         insert_event(op,EVENT_DEATH,NULL,yv,NULL);          insert_event(op,EVENT_DEATH,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 239:  case 240:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 948 "loader.l"  #line 1014 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4060
 
Line 4048
         insert_event(op,EVENT_DEATH,NULL,NULL,yv);          insert_event(op,EVENT_DEATH,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 240:  case 241:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 955 "loader.l"  #line 1021 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4071
 
Line 4059
         insert_event(op,EVENT_DROP,yv,NULL,NULL);          insert_event(op,EVENT_DROP,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 241:  case 242:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 963 "loader.l"  #line 1029 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4082
 
Line 4070
         insert_event(op,EVENT_DROP,NULL,yv,NULL);          insert_event(op,EVENT_DROP,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 242:  case 243:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 971 "loader.l"  #line 1037 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4093
 
Line 4081
         insert_event(op,EVENT_DROP,NULL,NULL,yv);          insert_event(op,EVENT_DROP,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 243:  case 244:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 978 "loader.l"  #line 1044 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4104
 
Line 4092
         insert_event(op,EVENT_PICKUP,yv,NULL,NULL);          insert_event(op,EVENT_PICKUP,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 244:  case 245:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 986 "loader.l"  #line 1052 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4115
 
Line 4103
         insert_event(op,EVENT_PICKUP,NULL,yv,NULL);          insert_event(op,EVENT_PICKUP,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 245:  case 246:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 994 "loader.l"  #line 1060 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4126
 
Line 4114
         insert_event(op,EVENT_PICKUP,NULL,NULL,yv);          insert_event(op,EVENT_PICKUP,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 246:  case 247:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1001 "loader.l"  #line 1067 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4137
 
Line 4125
         insert_event(op,EVENT_SAY,yv,NULL,NULL);          insert_event(op,EVENT_SAY,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 247:  case 248:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1009 "loader.l"  #line 1075 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4148
 
Line 4136
         insert_event(op,EVENT_SAY,NULL,yv,NULL);          insert_event(op,EVENT_SAY,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 248:  case 249:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1017 "loader.l"  #line 1083 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4159
 
Line 4147
         insert_event(op,EVENT_SAY,NULL,NULL,yv);          insert_event(op,EVENT_SAY,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 249:  case 250:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1024 "loader.l"  #line 1090 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4170
 
Line 4158
         insert_event(op,EVENT_STOP,yv,NULL,NULL);          insert_event(op,EVENT_STOP,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 250:  case 251:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1032 "loader.l"  #line 1098 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4181
 
Line 4169
         insert_event(op,EVENT_STOP,NULL,yv,NULL);          insert_event(op,EVENT_STOP,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 251:  case 252:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1040 "loader.l"  #line 1106 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4192
 
Line 4180
         insert_event(op,EVENT_STOP,NULL,NULL,yv);          insert_event(op,EVENT_STOP,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 252:  case 253:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1047 "loader.l"  #line 1113 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4203
 
Line 4191
         insert_event(op,EVENT_TIME,yv,NULL,NULL);          insert_event(op,EVENT_TIME,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 253:  case 254:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1055 "loader.l"  #line 1121 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4214
 
Line 4202
         insert_event(op,EVENT_TIME,NULL,yv,NULL);          insert_event(op,EVENT_TIME,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 254:  case 255:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1063 "loader.l"  #line 1129 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4225
 
Line 4213
         insert_event(op,EVENT_TIME,NULL,NULL,yv);          insert_event(op,EVENT_TIME,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 255:  case 256:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1070 "loader.l"  #line 1136 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4236
 
Line 4224
         insert_event(op,EVENT_THROW,yv,NULL,NULL);          insert_event(op,EVENT_THROW,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 256:  case 257:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1078 "loader.l"  #line 1144 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4247
 
Line 4235
         insert_event(op,EVENT_THROW,NULL,yv,NULL);          insert_event(op,EVENT_THROW,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 257:  case 258:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1086 "loader.l"  #line 1152 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4258
 
Line 4246
         insert_event(op,EVENT_THROW,NULL,NULL,yv);          insert_event(op,EVENT_THROW,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 258:  case 259:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1093 "loader.l"  #line 1159 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4269
 
Line 4257
         insert_event(op,EVENT_TRIGGER,yv,NULL,NULL);          insert_event(op,EVENT_TRIGGER,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 259:  case 260:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1101 "loader.l"  #line 1167 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4280
 
Line 4268
         insert_event(op,EVENT_TRIGGER,NULL,yv,NULL);          insert_event(op,EVENT_TRIGGER,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 260:  case 261:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1109 "loader.l"  #line 1175 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4291
 
Line 4279
         insert_event(op,EVENT_TRIGGER,NULL,NULL,yv);          insert_event(op,EVENT_TRIGGER,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 261:  case 262:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1116 "loader.l"  #line 1182 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4302
 
Line 4290
         insert_event(op,EVENT_CLOSE,yv,NULL,NULL);          insert_event(op,EVENT_CLOSE,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 262:  case 263:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1124 "loader.l"  #line 1190 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4313
 
Line 4301
         insert_event(op,EVENT_CLOSE,NULL,yv,NULL);          insert_event(op,EVENT_CLOSE,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 263:  case 264:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1132 "loader.l"  #line 1198 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4324
 
Line 4312
         insert_event(op,EVENT_CLOSE,NULL,NULL,yv);          insert_event(op,EVENT_CLOSE,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 264:  case 265:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1139 "loader.l"  #line 1205 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4335
 
Line 4323
         insert_event(op,EVENT_TIMER,yv,NULL,NULL);          insert_event(op,EVENT_TIMER,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 265:  case 266:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1147 "loader.l"  #line 1213 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4346
 
Line 4334
         insert_event(op,EVENT_TIMER,NULL,yv,NULL);          insert_event(op,EVENT_TIMER,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 266:  case 267:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1155 "loader.l"  #line 1221 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4357
 
Line 4345
         insert_event(op,EVENT_TIMER,NULL,NULL,yv);          insert_event(op,EVENT_TIMER,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 267:  case 268:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1163 "loader.l"  #line 1229 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') LOG(llevError,"Script (current weapon) without val\n");   if (*yv=='\0') LOG(llevError,"Script (current weapon) without val\n");
Line 4369
 
Line 4357
                                                 };                                                  };
      }       }
  YY_BREAK   YY_BREAK
 case 268:  case 269:
 /* rule 268 can match eol */  
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1172 "loader.l"  #line 1238 "loader.l"
 {/* ignore empty lines, newlines we don't do above */}  {/* ignore empty lines, newlines we don't do above */}
  YY_BREAK   YY_BREAK
 case 269:  case 270:
 /* rule 269 can match eol */  
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1173 "loader.l"  #line 1239 "loader.l"
 {}  {}
  YY_BREAK   YY_BREAK
 case YY_STATE_EOF(INITIAL):  case YY_STATE_EOF(INITIAL):
 case YY_STATE_EOF(MESSAGE):  case YY_STATE_EOF(MESSAGE):
 case YY_STATE_EOF(LORE):  case YY_STATE_EOF(LORE):
 case YY_STATE_EOF(SCRIPT):  case YY_STATE_EOF(SCRIPT):
 #line 1175 "loader.l"  #line 1241 "loader.l"
 {/* If we got an error, return the error.  Otherwise, return that we got EOF */  {/* If we got an error, return the error.  Otherwise, return that we got EOF */
      if (lex_error!=0) return lex_error; else return LL_EOF;}       if (lex_error!=0) return lex_error; else return LL_EOF;}
  YY_BREAK   YY_BREAK
 case 270:  case 271:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1177 "loader.l"  #line 1243 "loader.l"
 { yyerror( "Unrecognized string"); lex_error= -1; }  { add_key_value(op); }
  YY_BREAK   YY_BREAK
 case 271:  case 272:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1178 "loader.l"  #line 1244 "loader.l"
 ECHO;  ECHO;
  YY_BREAK   YY_BREAK
 #line 4403 "loader.c"  #line 4389 "loader.c"
   
  case YY_END_OF_BUFFER:   case YY_END_OF_BUFFER:
  {   {
  /* Amount of text matched not including the EOB char. */   /* Amount of text matched not including the EOB char. */
  int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;   int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;
   
  /* Undo the effects of YY_DO_BEFORE_ACTION. */   /* Undo the effects of YY_DO_BEFORE_ACTION. */
  *yy_cp = (yy_hold_char);   *yy_cp = yy_hold_char;
  YY_RESTORE_YY_MORE_OFFSET   YY_RESTORE_YY_MORE_OFFSET
   
  if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )   if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
  {   {
  /* We're scanning a new file or input source.  It's   /* We're scanning a new file or input source.  It's
  * possible that this happened because the user   * possible that this happened because the user
  * just pointed yyin at a new source and called   * just pointed yyin at a new source and called
  * yylex().  If so, then we have to assure   * yylex().  If so, then we have to assure
  * consistency between YY_CURRENT_BUFFER and our   * consistency between yy_current_buffer and our
  * globals.  Here is the right place to do so, because   * globals.  Here is the right place to do so, because
  * this is the first action (other than possibly a   * this is the first action (other than possibly a
  * back-up) that will match for the new input source.   * back-up) that will match for the new input source.
  */   */
  (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;   yy_n_chars = yy_current_buffer->yy_n_chars;
  YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;   yy_current_buffer->yy_input_file = yyin;
  YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;   yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
  }   }
   
  /* Note that here we test for yy_c_buf_p "<=" to the position   /* Note that here we test for yy_c_buf_p "<=" to the position
Line 4433
 
Line 4419
  * end-of-buffer state).  Contrast this with the test   * end-of-buffer state).  Contrast this with the test
  * in input().   * in input().
  */   */
  if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )   if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  { /* This was really a NUL. */   { /* This was really a NUL. */
  yy_state_type yy_next_state;   yy_state_type yy_next_state;
   
  (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;   yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;
   
  yy_current_state = yy_get_previous_state(  );   yy_current_state = yy_get_previous_state(  );
   
Line 4452
 
Line 4438
   
  yy_next_state = yy_try_NUL_trans( yy_current_state );   yy_next_state = yy_try_NUL_trans( yy_current_state );
   
  yy_bp = (yytext_ptr) + YY_MORE_ADJ;   yy_bp = yytext_ptr + YY_MORE_ADJ;
   
  if ( yy_next_state )   if ( yy_next_state )
  {   {
  /* Consume the NUL. */   /* Consume the NUL. */
  yy_cp = ++(yy_c_buf_p);   yy_cp = ++yy_c_buf_p;
  yy_current_state = yy_next_state;   yy_current_state = yy_next_state;
  goto yy_match;   goto yy_match;
  }   }
   
  else   else
  {   {
  yy_cp = (yy_c_buf_p);   yy_cp = yy_c_buf_p;
  goto yy_find_action;   goto yy_find_action;
  }   }
  }   }
Line 4473
 
Line 4459
  {   {
  case EOB_ACT_END_OF_FILE:   case EOB_ACT_END_OF_FILE:
  {   {
  (yy_did_buffer_switch_on_eof) = 0;   yy_did_buffer_switch_on_eof = 0;
   
  if ( yywrap( ) )   if ( yywrap( ) )
  {   {
Line 4486
 
Line 4472
  * YY_NULL, it'll still work - another   * YY_NULL, it'll still work - another
  * YY_NULL will get returned.   * YY_NULL will get returned.
  */   */
  (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;   yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
   
  yy_act = YY_STATE_EOF(YY_START);   yy_act = YY_STATE_EOF(YY_START);
  goto do_action;   goto do_action;
Line 4494
 
Line 4480
   
  else   else
  {   {
  if ( ! (yy_did_buffer_switch_on_eof) )   if ( ! yy_did_buffer_switch_on_eof )
  YY_NEW_FILE;   YY_NEW_FILE;
  }   }
  break;   break;
  }   }
   
  case EOB_ACT_CONTINUE_SCAN:   case EOB_ACT_CONTINUE_SCAN:
  (yy_c_buf_p) =   yy_c_buf_p =
  (yytext_ptr) + yy_amount_of_matched_text;   yytext_ptr + yy_amount_of_matched_text;
   
  yy_current_state = yy_get_previous_state(  );   yy_current_state = yy_get_previous_state(  );
   
  yy_cp = (yy_c_buf_p);   yy_cp = yy_c_buf_p;
  yy_bp = (yytext_ptr) + YY_MORE_ADJ;   yy_bp = yytext_ptr + YY_MORE_ADJ;
  goto yy_match;   goto yy_match;
   
  case EOB_ACT_LAST_MATCH:   case EOB_ACT_LAST_MATCH:
  (yy_c_buf_p) =   yy_c_buf_p =
  &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];   &yy_current_buffer->yy_ch_buf[yy_n_chars];
   
  yy_current_state = yy_get_previous_state(  );   yy_current_state = yy_get_previous_state(  );
   
  yy_cp = (yy_c_buf_p);   yy_cp = yy_c_buf_p;
  yy_bp = (yytext_ptr) + YY_MORE_ADJ;   yy_bp = yytext_ptr + YY_MORE_ADJ;
  goto yy_find_action;   goto yy_find_action;
  }   }
  break;   break;
Line 4530
 
Line 4516
  } /* end of scanning one token */   } /* end of scanning one token */
 } /* end of yylex */  } /* end of yylex */
   
   
 /* yy_get_next_buffer - try to read in a new buffer  /* yy_get_next_buffer - try to read in a new buffer
  *   *
  * Returns a code representing an action:   * Returns a code representing an action:
Line 4537
 
Line 4524
  * EOB_ACT_CONTINUE_SCAN - continue scanning from current position   * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  * EOB_ACT_END_OF_FILE - end of file   * EOB_ACT_END_OF_FILE - end of file
  */   */
 static int yy_get_next_buffer (void)  
   static int yy_get_next_buffer()
 {  {
     register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;   register char *dest = yy_current_buffer->yy_ch_buf;
  register char *source = (yytext_ptr);   register char *source = yytext_ptr;
  register int number_to_move, i;   register int number_to_move, i;
  int ret_val;   int ret_val;
   
  if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )   if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "fatal flex scanner internal error--end of buffer missed" );   "fatal flex scanner internal error--end of buffer missed" );
   
  if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )   if ( yy_current_buffer->yy_fill_buffer == 0 )
  { /* Don't try to fill the buffer, so this is an EOF. */   { /* Don't try to fill the buffer, so this is an EOF. */
  if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )   if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
  {   {
  /* We matched a single character, the EOB, so   /* We matched a single character, the EOB, so
  * treat this as a final EOF.   * treat this as a final EOF.
Line 4570
 
Line 4558
  /* Try to read more data. */   /* Try to read more data. */
   
  /* First move last chars to start of buffer. */   /* First move last chars to start of buffer. */
  number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;   number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;
   
  for ( i = 0; i < number_to_move; ++i )   for ( i = 0; i < number_to_move; ++i )
  *(dest++) = *(source++);   *(dest++) = *(source++);
   
  if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )   if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  /* don't do the read, it's not guaranteed to return an EOF,   /* don't do the read, it's not guaranteed to return an EOF,
  * just force an EOF   * just force an EOF
  */   */
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;   yy_current_buffer->yy_n_chars = yy_n_chars = 0;
   
  else   else
  {   {
  size_t num_to_read =   int num_to_read =
  YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;   yy_current_buffer->yy_buf_size - number_to_move - 1;
   
  while ( num_to_read <= 0 )   while ( num_to_read <= 0 )
  { /* Not enough room in the buffer - grow it. */   { /* Not enough room in the buffer - grow it. */
   #ifdef YY_USES_REJECT
    YY_FATAL_ERROR(
   "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
   #else
   
  /* just a shorter name for the current buffer */   /* just a shorter name for the current buffer */
  YY_BUFFER_STATE b = YY_CURRENT_BUFFER;   YY_BUFFER_STATE b = yy_current_buffer;
   
  int yy_c_buf_p_offset =   int yy_c_buf_p_offset =
  (int) ((yy_c_buf_p) - b->yy_ch_buf);   (int) (yy_c_buf_p - b->yy_ch_buf);
   
  if ( b->yy_is_our_buffer )   if ( b->yy_is_our_buffer )
  {   {
Line 4606
 
Line 4598
   
  b->yy_ch_buf = (char *)   b->yy_ch_buf = (char *)
  /* Include room in for 2 EOB chars. */   /* Include room in for 2 EOB chars. */
  yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );   yy_flex_realloc( (void *) b->yy_ch_buf,
    b->yy_buf_size + 2 );
  }   }
  else   else
  /* Can't grow it, we don't own it. */   /* Can't grow it, we don't own it. */
Line 4616
 
Line 4609
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "fatal error - scanner input buffer overflow" );   "fatal error - scanner input buffer overflow" );
   
  (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];   yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
   
  num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -   num_to_read = yy_current_buffer->yy_buf_size -
  number_to_move - 1;   number_to_move - 1;
   #endif
  }   }
   
  if ( num_to_read > YY_READ_BUF_SIZE )   if ( num_to_read > YY_READ_BUF_SIZE )
  num_to_read = YY_READ_BUF_SIZE;   num_to_read = YY_READ_BUF_SIZE;
   
  /* Read in more data. */   /* Read in more data. */
  YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),   YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  (yy_n_chars), num_to_read );   yy_n_chars, num_to_read );
   
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);   yy_current_buffer->yy_n_chars = yy_n_chars;
  }   }
   
  if ( (yy_n_chars) == 0 )   if ( yy_n_chars == 0 )
  {   {
  if ( number_to_move == YY_MORE_ADJ )   if ( number_to_move == YY_MORE_ADJ )
  {   {
Line 4644
 
Line 4637
  else   else
  {   {
  ret_val = EOB_ACT_LAST_MATCH;   ret_val = EOB_ACT_LAST_MATCH;
  YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =   yy_current_buffer->yy_buffer_status =
  YY_BUFFER_EOF_PENDING;   YY_BUFFER_EOF_PENDING;
  }   }
  }   }
Line 4652
 
Line 4645
  else   else
  ret_val = EOB_ACT_CONTINUE_SCAN;   ret_val = EOB_ACT_CONTINUE_SCAN;
   
  (yy_n_chars) += number_to_move;   yy_n_chars += number_to_move;
  YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;   yy_current_buffer->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;   yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
   
  (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];   yytext_ptr = &yy_current_buffer->yy_ch_buf[0];
   
  return ret_val;   return ret_val;
 }  }
   
   
 /* yy_get_previous_state - get the state just before the EOB char was reached */  /* yy_get_previous_state - get the state just before the EOB char was reached */
   
     static yy_state_type yy_get_previous_state (void)  static yy_state_type yy_get_previous_state()
 {  {
  register yy_state_type yy_current_state;   register yy_state_type yy_current_state;
  register char *yy_cp;   register char *yy_cp;
          
  yy_current_state = (yy_start);   yy_current_state = yy_start;
  yy_current_state += YY_AT_BOL();   yy_current_state += YY_AT_BOL();
   
  for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )   for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
  {   {
  register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);   register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  (yy_last_accepting_state) = yy_current_state;   yy_last_accepting_state = yy_current_state;
  (yy_last_accepting_cpos) = yy_cp;   yy_last_accepting_cpos = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2437 )   if ( yy_current_state >= 2449 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
Line 4691
 
Line 4685
  return yy_current_state;   return yy_current_state;
 }  }
   
   
 /* yy_try_NUL_trans - try to make a transition on the NUL character  /* yy_try_NUL_trans - try to make a transition on the NUL character
  *   *
  * synopsis   * synopsis
  * next_state = yy_try_NUL_trans( current_state );   * next_state = yy_try_NUL_trans( current_state );
  */   */
   
   #ifdef YY_USE_PROTOS
     static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )      static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
   #else
   static yy_state_type yy_try_NUL_trans( yy_current_state )
   yy_state_type yy_current_state;
   #endif
 {  {
  register int yy_is_jam;   register int yy_is_jam;
     register char *yy_cp = (yy_c_buf_p);   register char *yy_cp = yy_c_buf_p;
   
  register YY_CHAR yy_c = 1;   register YY_CHAR yy_c = 1;
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  (yy_last_accepting_state) = yy_current_state;   yy_last_accepting_state = yy_current_state;
  (yy_last_accepting_cpos) = yy_cp;   yy_last_accepting_cpos = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2437 )   if ( yy_current_state >= 2449 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  yy_is_jam = (yy_current_state == 2436);   yy_is_jam = (yy_current_state == 2448);
   
  return yy_is_jam ? 0 : yy_current_state;   return yy_is_jam ? 0 : yy_current_state;
 }  }
   
   
   #ifndef YY_NO_UNPUT
   #ifdef YY_USE_PROTOS
     static void yyunput (int c, register char * yy_bp )      static void yyunput (int c, register char * yy_bp )
   #else
   static void yyunput( c, yy_bp )
   int c;
   register char *yy_bp;
   #endif
 {  {
  register char *yy_cp;   register char *yy_cp = yy_c_buf_p;
       
     yy_cp = (yy_c_buf_p);  
   
  /* undo effects of setting up yytext */   /* undo effects of setting up yytext */
  *yy_cp = (yy_hold_char);   *yy_cp = yy_hold_char;
   
  if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )   if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  { /* need to shift things up to make room */   { /* need to shift things up to make room */
  /* +2 for EOB chars. */   /* +2 for EOB chars. */
  register int number_to_move = (yy_n_chars) + 2;   register int number_to_move = yy_n_chars + 2;
  register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[   register char *dest = &yy_current_buffer->yy_ch_buf[
  YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];   yy_current_buffer->yy_buf_size + 2];
  register char *source =   register char *source =
  &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];   &yy_current_buffer->yy_ch_buf[number_to_move];
   
  while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )   while ( source > yy_current_buffer->yy_ch_buf )
  *--dest = *--source;   *--dest = *--source;
   
  yy_cp += (int) (dest - source);   yy_cp += (int) (dest - source);
  yy_bp += (int) (dest - source);   yy_bp += (int) (dest - source);
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars =   yy_current_buffer->yy_n_chars =
  (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;   yy_n_chars = yy_current_buffer->yy_buf_size;
   
  if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )   if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  YY_FATAL_ERROR( "flex scanner push-back overflow" );   YY_FATAL_ERROR( "flex scanner push-back overflow" );
  }   }
   
  *--yy_cp = (char) c;   *--yy_cp = (char) c;
   
  (yytext_ptr) = yy_bp;  
  (yy_hold_char) = *yy_cp;   yytext_ptr = yy_bp;
  (yy_c_buf_p) = yy_cp;   yy_hold_char = *yy_cp;
    yy_c_buf_p = yy_cp;
 }  }
   #endif /* ifndef YY_NO_UNPUT */
   
   
 #ifndef YY_NO_INPUT  
 #ifdef __cplusplus  #ifdef __cplusplus
     static int yyinput (void)  static int yyinput()
 #else  #else
     static int input  (void)  static int input()
 #endif  #endif
   
 {  {
  int c;   int c;
          
  *(yy_c_buf_p) = (yy_hold_char);   *yy_c_buf_p = yy_hold_char;
   
  if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )   if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  {   {
  /* yy_c_buf_p now points to the character we want to return.   /* yy_c_buf_p now points to the character we want to return.
  * If this occurs *before* the EOB characters, then it's a   * If this occurs *before* the EOB characters, then it's a
  * valid NUL; if not, then we've hit the end of the buffer.   * 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)] )   if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  /* This was really a NUL. */   /* This was really a NUL. */
  *(yy_c_buf_p) = '\0';   *yy_c_buf_p = '\0';
   
  else   else
  { /* need more input */   { /* need more input */
  int offset = (yy_c_buf_p) - (yytext_ptr);   int offset = yy_c_buf_p - yytext_ptr;
  ++(yy_c_buf_p);   ++yy_c_buf_p;
   
  switch ( yy_get_next_buffer(  ) )   switch ( yy_get_next_buffer(  ) )
  {   {
Line 4799
 
Line 4807
  /* Reset buffer status. */   /* Reset buffer status. */
  yyrestart(yyin );   yyrestart(yyin );
   
  /*FALLTHROUGH*/   /* fall through */
   
  case EOB_ACT_END_OF_FILE:   case EOB_ACT_END_OF_FILE:
  {   {
  if ( yywrap( ) )   if ( yywrap( ) )
  return EOF;   return EOF;
   
  if ( ! (yy_did_buffer_switch_on_eof) )   if ( ! yy_did_buffer_switch_on_eof )
  YY_NEW_FILE;   YY_NEW_FILE;
 #ifdef __cplusplus  #ifdef __cplusplus
  return yyinput();   return yyinput();
Line 4816
 
Line 4824
  }   }
   
  case EOB_ACT_CONTINUE_SCAN:   case EOB_ACT_CONTINUE_SCAN:
  (yy_c_buf_p) = (yytext_ptr) + offset;   yy_c_buf_p = yytext_ptr + offset;
  break;   break;
  }   }
  }   }
  }   }
   
  c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */   c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */
  *(yy_c_buf_p) = '\0'; /* preserve yytext */   *yy_c_buf_p = '\0'; /* preserve yytext */
  (yy_hold_char) = *++(yy_c_buf_p);   yy_hold_char = *++yy_c_buf_p;
   
  YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n');   yy_current_buffer->yy_at_bol = (c == '\n');
   
  return c;   return c;
 }  }
 #endif /* ifndef YY_NO_INPUT */  
   
 /** Immediately switch to a different input stream.  
  * @param input_file A readable stream.  #ifdef YY_USE_PROTOS
  *   
  * @note This function does not reset the start condition to @c INITIAL .  
  */  
     void yyrestart  (FILE * input_file )      void yyrestart  (FILE * input_file )
   #else
   void yyrestart( input_file )
   FILE *input_file;
   #endif
 {  {
    if ( ! yy_current_buffer )
    yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
          
  if ( ! YY_CURRENT_BUFFER ){   yy_init_buffer( yy_current_buffer, input_file );
         yyensure_buffer_stack ();  
  YY_CURRENT_BUFFER_LVALUE =  
             yy_create_buffer(yyin,YY_BUF_SIZE );  
  }  
   
  yy_init_buffer(YY_CURRENT_BUFFER,input_file );  
  yy_load_buffer_state( );   yy_load_buffer_state( );
 }  }
   
 /** Switch to a different input buffer.  
  * @param new_buffer The new input buffer.  #ifdef YY_USE_PROTOS
  *   
  */  
     void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )      void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
   #else
   void yy_switch_to_buffer( new_buffer )
   YY_BUFFER_STATE new_buffer;
   #endif
 {  {
        if ( yy_current_buffer == new_buffer )
  /* TODO. We should be able to replace this entire function body  
  * with  
  * yypop_buffer_state();  
  * yypush_buffer_state(new_buffer);  
      */  
  yyensure_buffer_stack ();  
  if ( YY_CURRENT_BUFFER == new_buffer )  
  return;   return;
   
  if ( YY_CURRENT_BUFFER )   if ( yy_current_buffer )
  {   {
  /* Flush out information for old buffer. */   /* Flush out information for old buffer. */
  *(yy_c_buf_p) = (yy_hold_char);   *yy_c_buf_p = yy_hold_char;
  YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);   yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);   yy_current_buffer->yy_n_chars = yy_n_chars;
  }   }
   
  YY_CURRENT_BUFFER_LVALUE = new_buffer;   yy_current_buffer = new_buffer;
  yy_load_buffer_state( );   yy_load_buffer_state( );
   
  /* We don't actually know whether we did this switch during   /* We don't actually know whether we did this switch during
Line 4882
 
Line 4881
  * is looked at is after yywrap() is called, so it's safe   * is looked at is after yywrap() is called, so it's safe
  * to go ahead and always set it.   * to go ahead and always set it.
  */   */
  (yy_did_buffer_switch_on_eof) = 1;   yy_did_buffer_switch_on_eof = 1;
 }  }
   
 static void yy_load_buffer_state  (void)  
   #ifdef YY_USE_PROTOS
   void yy_load_buffer_state( void )
   #else
   void yy_load_buffer_state()
   #endif
 {  {
     (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;   yy_n_chars = yy_current_buffer->yy_n_chars;
  (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;   yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;   yyin = yy_current_buffer->yy_input_file;
  (yy_hold_char) = *(yy_c_buf_p);   yy_hold_char = *yy_c_buf_p;
 }  }
   
 /** Allocate and initialize an input buffer state.  
  * @param file A readable stream.  #ifdef YY_USE_PROTOS
  * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.  
  *   
  * @return the allocated buffer state.  
  */  
     YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )      YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
   #else
   YY_BUFFER_STATE yy_create_buffer( file, size )
   FILE *file;
   int size;
   #endif
 {  {
  YY_BUFFER_STATE b;   YY_BUFFER_STATE b;
          
  b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );   b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  if ( ! b )   if ( ! b )
  YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
   
Line 4912
 
Line 4917
  /* yy_ch_buf has to be 2 characters longer than the size given because   /* yy_ch_buf has to be 2 characters longer than the size given because
  * we need to put in 2 end-of-buffer characters.   * we need to put in 2 end-of-buffer characters.
  */   */
  b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );   b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
  if ( ! b->yy_ch_buf )   if ( ! b->yy_ch_buf )
  YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
   
Line 4923
 
Line 4928
  return b;   return b;
 }  }
   
 /** Destroy the buffer.  
  * @param b a buffer created with yy_create_buffer()  #ifdef YY_USE_PROTOS
  *   
  */  
     void yy_delete_buffer (YY_BUFFER_STATE  b )      void yy_delete_buffer (YY_BUFFER_STATE  b )
   #else
   void yy_delete_buffer( b )
   YY_BUFFER_STATE b;
   #endif
 {  {
       
  if ( ! b )   if ( ! b )
  return;   return;
   
  if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */   if ( b == yy_current_buffer )
  YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;   yy_current_buffer = (YY_BUFFER_STATE) 0;
   
  if ( b->yy_is_our_buffer )   if ( b->yy_is_our_buffer )
  yyfree((void *) b->yy_ch_buf  );   yy_flex_free( (void *) b->yy_ch_buf );
   
  yyfree((void *) b  );   yy_flex_free( (void *) b );
 }  }
   
 #ifndef __cplusplus  
 extern int isatty (int );  
 #endif /* __cplusplus */  
          
 /* Initializes or reinitializes a buffer.  #ifndef YY_ALWAYS_INTERACTIVE
  * This function is sometimes called more than once on the same buffer,  #ifndef YY_NEVER_INTERACTIVE
  * such as during a yyrestart() or at EOF.  extern int isatty YY_PROTO(( int ));
  */  #endif
     static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )  #endif
   
 {  #ifdef YY_USE_PROTOS
  int oerrno = errno;  void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
   #else
   void yy_init_buffer( b, file )
   YY_BUFFER_STATE b;
   FILE *file;
   #endif
          
   
    {
  yy_flush_buffer(b );   yy_flush_buffer(b );
   
  b->yy_input_file = file;   b->yy_input_file = file;
  b->yy_fill_buffer = 1;   b->yy_fill_buffer = 1;
   
     /* If b is the current buffer, then yy_init_buffer was _probably_  #if YY_ALWAYS_INTERACTIVE
      * called from yyrestart() or through yy_get_next_buffer.   b->yy_is_interactive = 1;
      * In that case, we don't want to reset the lineno or column.  #else
      */  #if YY_NEVER_INTERACTIVE
     if (b != YY_CURRENT_BUFFER){   b->yy_is_interactive = 0;
         b->yy_bs_lineno = 1;  #else
         b->yy_bs_column = 0;  
     }  
   
         b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;          b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
       #endif
  errno = oerrno;  #endif
 }  }
   
 /** 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.  #ifdef YY_USE_PROTOS
  *   
  */  
     void yy_flush_buffer (YY_BUFFER_STATE  b )      void yy_flush_buffer (YY_BUFFER_STATE  b )
   #else
   void yy_flush_buffer( b )
   YY_BUFFER_STATE b;
   #endif
   
 {  {
     if ( ! b )      if ( ! b )
  return;   return;
Line 4997
 
Line 5007
  b->yy_at_bol = 1;   b->yy_at_bol = 1;
  b->yy_buffer_status = YY_BUFFER_NEW;   b->yy_buffer_status = YY_BUFFER_NEW;
   
  if ( b == YY_CURRENT_BUFFER )   if ( b == yy_current_buffer )
  yy_load_buffer_state( );  
 }  
   
 /** Pushes the new state onto the stack. The new state becomes  
  *  the current state. This function will allocate the stack  
  *  if necessary.  
  *  @param new_buffer The new state.  
  *    
  */  
 void yypush_buffer_state (YY_BUFFER_STATE new_buffer )  
 {  
     if (new_buffer == NULL)  
  return;  
   
  yyensure_buffer_stack();  
   
  /* This block is copied from yy_switch_to_buffer. */  
  if ( YY_CURRENT_BUFFER )  
  {  
  /* Flush out information for old buffer. */  
  *(yy_c_buf_p) = (yy_hold_char);  
  YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);  
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);  
  }  
   
  /* Only push if top exists. Otherwise, replace top. */  
  if (YY_CURRENT_BUFFER)  
  (yy_buffer_stack_top)++;  
  YY_CURRENT_BUFFER_LVALUE = new_buffer;  
   
  /* copied from yy_switch_to_buffer. */  
  yy_load_buffer_state( );  
  (yy_did_buffer_switch_on_eof) = 1;  
 }  
   
 /** Removes and deletes the top of the stack, if present.  
  *  The next element becomes the new top.  
  *    
  */  
 void yypop_buffer_state (void)  
 {  
     if (!YY_CURRENT_BUFFER)  
  return;  
   
  yy_delete_buffer(YY_CURRENT_BUFFER );  
  YY_CURRENT_BUFFER_LVALUE = NULL;  
  if ((yy_buffer_stack_top) > 0)  
  --(yy_buffer_stack_top);  
   
  if (YY_CURRENT_BUFFER) {  
  yy_load_buffer_state( );   yy_load_buffer_state( );
  (yy_did_buffer_switch_on_eof) = 1;  
  }  
 }  
   
 /* Allocates the stack if it does not exist.  
  *  Guarantees space for at least one push.  
  */  
 static void yyensure_buffer_stack (void)  
 {  
  int 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**)yyalloc  
  (num_to_alloc * sizeof(struct yy_buffer_state*)  
  );  
    
  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. */  #ifndef YY_NO_SCAN_BUFFER
  int grow_size = 8 /* arbitrary grow size */;  #ifdef YY_USE_PROTOS
   
  num_to_alloc = (yy_buffer_stack_max) + grow_size;  
  (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc  
  ((yy_buffer_stack),  
  num_to_alloc * sizeof(struct yy_buffer_state*)  
  );  
   
  /* zero only the new slots.*/  
  memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));  
  (yy_buffer_stack_max) = num_to_alloc;  
  }  
 }  
   
 /** Setup the input buffer state to scan directly from a user-specified character buffer.  
  * @param base the character buffer  
  * @param size the size in bytes of the character buffer  
  *   
  * @return the newly allocated buffer state object.   
  */  
 YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )  YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
   #else
   YY_BUFFER_STATE yy_scan_buffer( base, size )
   char *base;
   yy_size_t size;
   #endif
 {  {
  YY_BUFFER_STATE b;   YY_BUFFER_STATE b;
          
Line 5111
 
Line 5029
  /* They forgot to leave room for the EOB's. */   /* They forgot to leave room for the EOB's. */
  return 0;   return 0;
   
  b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );   b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  if ( ! b )   if ( ! b )
  YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
   
Line 5129
 
Line 5047
   
  return b;   return b;
 }  }
   #endif
   
 /** Setup the input buffer state to scan a string. The next call to yylex() will  
  * scan from a @e copy of @a str.  #ifndef YY_NO_SCAN_STRING
  * @param str a NUL-terminated string to scan  #ifdef YY_USE_PROTOS
  *   
  * @return the newly allocated buffer state object.  
  * @note If you want to scan bytes that may contain NUL values, then use  
  *       yy_scan_bytes() instead.  
  */  
 YY_BUFFER_STATE yy_scan_string (yyconst char * yy_str )  YY_BUFFER_STATE yy_scan_string (yyconst char * yy_str )
   #else
   YY_BUFFER_STATE yy_scan_string( yy_str )
   yyconst char *yy_str;
   #endif
 {  {
    int len;
    for ( len = 0; yy_str[len]; ++len )
    ;
          
  return yy_scan_bytes(yy_str,strlen(yy_str) );   return yy_scan_bytes( yy_str, len );
 }  }
   #endif
   
 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will  
  * scan from a @e copy of @a bytes.  #ifndef YY_NO_SCAN_BYTES
  * @param bytes the byte buffer to scan  #ifdef YY_USE_PROTOS
  * @param len the number of bytes in the buffer pointed to by @a bytes.  
  *   
  * @return the newly allocated buffer state object.  
  */  
 YY_BUFFER_STATE yy_scan_bytes  (yyconst char * bytes, int  len )  YY_BUFFER_STATE yy_scan_bytes  (yyconst char * bytes, int  len )
   #else
   YY_BUFFER_STATE yy_scan_bytes( bytes, len )
   yyconst char *bytes;
   int len;
   #endif
 {  {
  YY_BUFFER_STATE b;   YY_BUFFER_STATE b;
  char *buf;   char *buf;
Line 5160
 
Line 5083
          
  /* Get memory for full buffer, including space for trailing EOB's. */   /* Get memory for full buffer, including space for trailing EOB's. */
  n = len + 2;   n = len + 2;
  buf = (char *) yyalloc(n  );   buf = (char *) yy_flex_alloc( n );
  if ( ! buf )   if ( ! buf )
  YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
   
Line 5180
 
Line 5103
   
  return b;   return b;
 }  }
   #endif
   
   
   #ifndef YY_NO_PUSH_STATE
   #ifdef YY_USE_PROTOS
     static void yy_push_state (int  new_state )      static void yy_push_state (int  new_state )
   #else
   static void yy_push_state( new_state )
   int new_state;
   #endif
 {  {
     if ( (yy_start_stack_ptr) >= (yy_start_stack_depth) )   if ( yy_start_stack_ptr >= yy_start_stack_depth )
  {   {
  yy_size_t new_size;   yy_size_t new_size;
   
  (yy_start_stack_depth) += YY_START_STACK_INCR;   yy_start_stack_depth += YY_START_STACK_INCR;
  new_size = (yy_start_stack_depth) * sizeof( int );   new_size = yy_start_stack_depth * sizeof( int );
   
  if ( ! (yy_start_stack) )   if ( ! yy_start_stack )
  (yy_start_stack) = (int *) yyalloc(new_size  );   yy_start_stack = (int *) yy_flex_alloc( new_size );
   
  else   else
  (yy_start_stack) = (int *) yyrealloc((void *) (yy_start_stack),new_size  );   yy_start_stack = (int *) yy_flex_realloc(
    (void *) yy_start_stack, new_size );
   
  if ( ! (yy_start_stack) )   if ( ! yy_start_stack )
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "out of memory expanding start-condition stack" );   "out of memory expanding start-condition stack" );
  }   }
   
  (yy_start_stack)[(yy_start_stack_ptr)++] = YY_START;   yy_start_stack[yy_start_stack_ptr++] = YY_START;
   
  BEGIN(new_state);   BEGIN(new_state);
 }  }
   #endif
   
   
     static void yy_pop_state  (void)  #ifndef YY_NO_POP_STATE
   static void yy_pop_state()
 {  {
     if ( --(yy_start_stack_ptr) < 0 )   if ( --yy_start_stack_ptr < 0 )
  YY_FATAL_ERROR( "start-condition stack underflow" );   YY_FATAL_ERROR( "start-condition stack underflow" );
   
  BEGIN((yy_start_stack)[(yy_start_stack_ptr)]);   BEGIN(yy_start_stack[yy_start_stack_ptr]);
 }  }
   #endif
   
   
     static int yy_top_state  (void)  #ifndef YY_NO_TOP_STATE
   static int yy_top_state()
 {  {
     return (yy_start_stack)[(yy_start_stack_ptr) - 1];   return yy_start_stack[yy_start_stack_ptr - 1];
 }  }
   #endif
   
 #ifndef YY_EXIT_FAILURE  #ifndef YY_EXIT_FAILURE
 #define YY_EXIT_FAILURE 2  #define YY_EXIT_FAILURE 2
 #endif  #endif
   
 static void yy_fatal_error (yyconst char* msg )  #ifdef YY_USE_PROTOS
   static void yy_fatal_error( yyconst char msg[] )
   #else
   static void yy_fatal_error( msg )
   char msg[];
   #endif
 {  {
     (void) fprintf( stderr, "%s\n", msg );      (void) fprintf( stderr, "%s\n", msg );
  exit( YY_EXIT_FAILURE );   exit( YY_EXIT_FAILURE );
 }  }
   
   
   
 /* Redefine yyless() so it works in section 3 code. */  /* Redefine yyless() so it works in section 3 code. */
   
 #undef yyless  #undef yyless
Line 5236
 
Line 5182
  do \   do \
  { \   { \
  /* Undo effects of setting up yytext. */ \   /* Undo effects of setting up yytext. */ \
         int yyless_macro_arg = (n); \   yytext[yyleng] = yy_hold_char; \
         YY_LESS_LINENO(yyless_macro_arg);\   yy_c_buf_p = yytext + n; \
  yytext[yyleng] = (yy_hold_char); \   yy_hold_char = *yy_c_buf_p; \
  (yy_c_buf_p) = yytext + yyless_macro_arg; \   *yy_c_buf_p = '\0'; \
  (yy_hold_char) = *(yy_c_buf_p); \   yyleng = n; \
  *(yy_c_buf_p) = '\0'; \  
  yyleng = yyless_macro_arg; \  
  } \   } \
  while ( 0 )   while ( 0 )
   
 /* Accessor  methods (get/set functions) to struct members. */  
   
 /** Get the current line number.  
  *   
  */  
 int yyget_lineno  (void)  
 {  
           
     return yylineno;  
 }  
   
 /** Get the input stream.  
  *   
  */  
 FILE *yyget_in  (void)  
 {  
         return yyin;  
 }  
   
 /** Get the output stream.  
  *   
  */  
 FILE *yyget_out  (void)  
 {  
         return yyout;  
 }  
   
 /** Get the length of the current token.  
  *   
  */  
 int yyget_leng  (void)  
 {  
         return yyleng;  
 }  
   
 /** Get the current token.  
  *   
  */  
   
 char *yyget_text  (void)  
 {  
         return yytext;  
 }  
   
 /** Set the current line number.  
  * @param line_number  
  *   
  */  
 void yyset_lineno (int  line_number )  
 {  
       
     yylineno = line_number;  
 }  
   
 /** Set the input stream. This does not discard the current  
  * input buffer.  
  * @param in_str A readable stream.  
  *   
  * @see yy_switch_to_buffer  
  */  
 void yyset_in (FILE *  in_str )  
 {  
         yyin = in_str ;  
 }  
   
 void yyset_out (FILE *  out_str )  
 {  
         yyout = out_str ;  
 }  
   
 int yyget_debug  (void)  
 {  
         return yy_flex_debug;  
 }  
   
 void yyset_debug (int  bdebug )  
 {  
         yy_flex_debug = bdebug ;  
 }  
   
 /* yylex_destroy is for both reentrant and non-reentrant scanners. */  
 int yylex_destroy  (void)  
 {  
       
     /* Pop the buffer stack, destroying each element. */  
  while(YY_CURRENT_BUFFER){  
  yy_delete_buffer(YY_CURRENT_BUFFER  );  
  YY_CURRENT_BUFFER_LVALUE = NULL;  
  yypop_buffer_state();  
  }  
   
  /* Destroy the stack itself. */  
  yyfree((yy_buffer_stack) );  
  (yy_buffer_stack) = NULL;  
   
     /* Destroy the start condition stack. */  /* Internal utility routines. */
         yyfree((yy_start_stack)  );  
         (yy_start_stack) = NULL;  
   
     return 0;  
 }  
   
 /*  
  * Internal utility routines.  
  */  
   
 #ifndef yytext_ptr  #ifndef yytext_ptr
   #ifdef YY_USE_PROTOS
 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )  static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
   #else
   static void yy_flex_strncpy( s1, s2, n )
   char *s1;
   yyconst char *s2;
   int n;
   #endif
 {  {
  register int i;   register int i;
     for ( i = 0; i < n; ++i )      for ( i = 0; i < n; ++i )
Line 5362
 
Line 5210
 #endif  #endif
   
 #ifdef YY_NEED_STRLEN  #ifdef YY_NEED_STRLEN
   #ifdef YY_USE_PROTOS
 static int yy_flex_strlen (yyconst char * s )  static int yy_flex_strlen (yyconst char * s )
   #else
   static int yy_flex_strlen( s )
   yyconst char *s;
   #endif
 {  {
  register int n;   register int n;
     for ( n = 0; s[n]; ++n )      for ( n = 0; s[n]; ++n )
Line 5372
 
Line 5225
 }  }
 #endif  #endif
   
 void *yyalloc (yy_size_t  size )  
   #ifdef YY_USE_PROTOS
   static void *yy_flex_alloc( yy_size_t size )
   #else
   static void *yy_flex_alloc( size )
   yy_size_t size;
   #endif
 {  {
  return (void *) malloc( size );   return (void *) malloc( size );
 }  }
   
 void *yyrealloc  (void * ptr, yy_size_t  size )  #ifdef YY_USE_PROTOS
   static void *yy_flex_realloc( void *ptr, yy_size_t size )
   #else
   static void *yy_flex_realloc( ptr, size )
   void *ptr;
   yy_size_t size;
   #endif
 {  {
  /* The cast to (char *) in the following accommodates both   /* The cast to (char *) in the following accommodates both
  * implementations that use char* generic pointers, and those   * implementations that use char* generic pointers, and those
Line 5389
 
Line 5254
  return (void *) realloc( (char *) ptr, size );   return (void *) realloc( (char *) ptr, size );
 }  }
   
 void yyfree (void * ptr )  #ifdef YY_USE_PROTOS
   static void yy_flex_free( void *ptr )
   #else
   static void yy_flex_free( ptr )
   void *ptr;
   #endif
 {  {
  free( (char *) ptr ); /* see yyrealloc() for (char *) cast */   free( ptr );
 }  }
   
 #define YYTABLES_NAME "yytables"  #if YY_MAIN
   int main()
 #undef YY_NEW_FILE   {
 #undef YY_FLUSH_BUFFER   yylex();
 #undef yy_set_bol   return 0;
 #undef yy_new_buffer   }
 #undef yy_set_interactive  
 #undef yytext_ptr  
 #undef YY_DO_BEFORE_ACTION  
   
 #ifdef YY_DECL_IS_OURS  
 #undef YY_DECL_IS_OURS  
 #undef YY_DECL  
 #endif  #endif
 #line 1178 "loader.l"  #line 1244 "loader.l"
   
   
   
   
Line 5549
 
Line 5411
 "changing", "splitting", "hitback", "startequip",  "changing", "splitting", "hitback", "startequip",
 "blocksview", "undead", "scared", "unaggressive",  "blocksview", "undead", "scared", "unaggressive",
 "reflect_missile", "reflect_spell",                             /* 40 */  "reflect_missile", "reflect_spell",                             /* 40 */
 "no_magic", "no_fix_player", NULL, "tear_down", "run_away",  "no_magic", "no_fix_player", "is_lightable", "tear_down", "run_away",
 "pass_thru", "can_pass_thru", "pick_up", "unique", "no_drop",   /* 50 */  "pass_thru", "can_pass_thru", "pick_up", "unique", "no_drop",   /* 50 */
  NULL, "can_cast_spell", "can_use_scroll", "can_use_range",   NULL, "can_cast_spell", "can_use_scroll", "can_use_range",
 "can_use_bow",  "can_use_armour", "can_use_weapon",  "can_use_bow",  "can_use_armour", "can_use_weapon",
Line 5696
 
Line 5558
 #endif  #endif
   event *etmp;    event *etmp;
   event *etmp2;    event *etmp2;
     key_value * my_field;
     key_value * arch_field;
   
   buf[0]='\0';    buf[0]='\0';
   fastbuf=PREPARE_FASTCAT(buf);    fastbuf=PREPARE_FASTCAT(buf);
   
     /* This saves the key/value lists.  We do it first so that any
      * keys that match field names will be overwritten by the loader.
      */
     for (my_field = op->key_values; my_field != NULL; my_field = my_field->next) {
         /* Find the field in the opposing member. */
         arch_field = get_ob_key_link(op2, my_field->key);
         
         /* If there's no partnering field, or it's got a different value, save our field. */
         if (arch_field == NULL || my_field->value != arch_field->value) {
             FAST_STRCAT(fastbuf, my_field->key);
             FAST_STRNCAT(fastbuf, " ", 1);
      /* If this is null, then saving it as a space should
       * cause it to be null again.
       */
      if (my_field->value) FAST_STRCAT(fastbuf, my_field->value);
             FAST_STRNCAT(fastbuf, "\n", eol_size);
         }
     }
     /* We don't need to worry about the arch's extra fields - they
      * will get taken care of the copy_object function.
      */
   
   
   if(op->name && op->name!=op2->name) {    if(op->name && op->name!=op2->name) {
     ADD_STRINGLINE_ENTRY(fastbuf,"name ",op->name,5);      ADD_STRINGLINE_ENTRY(fastbuf,"name ",op->name,5);
   }    }
Line 6101
 
Line 5989
   
   
   
   


Legend:
line(s) removed in v.1.67 
line(s) changed
 line(s) added in v.1.68

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:10