    int paramstop []   /* stop symbols for parameter error recovery */
    =   { ';',
          ']',
          '{',
          VAR_IT,
          VAL_IT,
          FUNC_IT,
	  TYPE_IT,
	  SIGNATURE_IT,
	  EOF,
	  LIST_END     };
    int denseqstop []   /* stop symbols for statement list error recovery */
    =   { ';',
	  '#',
	  ELSIF_IT,
	  ELSE_IT,
          FI_IT,
          OD_IT,
          ')',
          NI_IT,
          '}',
          IF_IT,
          DO_IT,
          LET_IT,
          FUNC_IT,
          '(',
          WITH_IT,
          IN_IT,
	  EOF,
	  LIST_END       };
    int condstop []     /* stop symbols for error recovery in various       */
                        /* conditional constructs                           */
    =   {  OD_IT,
           FI_IT,
           RIGHT_ARROW_IT,
           '#',
           ';',
           LET_IT,
           DO_IT,
	   IF_IT,
	   THEN_IT,
	   ELSE_IT,
           '(',
	   EOF,
	   LIST_END       };
    int declstop []     /* stop symbols for error recovery in declarations  */
    =   { EQUALS_EQUALS_IT,
	  EQUALS_EQUALS_EQUALS_IT,
          ';',
          '}',
          IN_IT,
          NI_IT,
          IF_IT,
          DO_IT,
          LET_IT,
          '(',
	  EOF,
	  LIST_END        };

    NODE * sig_in();    /* Read signature info from object file */

    extern boolean initflag;    /* This is a compiler initialization run */
    extern boolean OOflag;      /* Save info for intermediate code optimizer */
    NODE * insrtptr = NIL;  /* pointer to dummy BLOCKDENOTATION vertex into */
			    /* which the syntax tree is to be inserted.     */
			    /* Set up by a previous initialization run of   */
			    /* compiler.                                    */
    extern NODE * id_Boolean;  /* LETTERID node in which the parameter node  */
                               /* for Boolean must be inserted.              */
    extern NODE * id_Void;     /* Analogous node for Void                    */
    extern NODE * id_Integer;  /* Analogous node for Integer                 */
    extern NODE * id_Null;     /* Analogous for Null                         */
    extern NODE * appl_Null;   /* Node corresponding to application of Null  */
    extern sttrelptr indx_Boolean; /* string table index of 'Boolean' */
    extern sttrelptr indx_Integer;
    extern sttrelptr indx_Void;
    extern sttrelptr indx_simple;
    extern sttrelptr indx_standard;
    extern sttrelptr indx_inline;

    extern sttrelptr indx_put;
    extern sttrelptr indx_Callcc;
    extern sttrelptr indx_Array;
    extern sttrelptr indx_Null;

    NODE * stxtree = NIL; /* pointer to root of syntax tree */

    unsigned i; /* temporary */
    extern sttrelptr     /* indices in string table of type components with   */
			 /* predefined signatures.                            */
	indx_assign,
	indx_passign,
	indx_massign,
        indx_equals,   
        indx_less,
        indx_greater,
        indx_le,
        indx_ge,
        indx_ne,
	indx_New,
	indx_ptr_New,
	indx_init_New,
	indx_ValueOf,
	indx_sconc,
	indx_pconc;

    NODE * sig_assign, /* pointers to trees representing predefined */
         * sig_equals, /* signatures.                               */
         * sig_less,
         * sig_greater,
         * sig_New,
         * sig_const,
	 * sig_ValueOf,
	 * sig_sconc,
	 * sig_pconc,
	 * sig_Signature;

extern char * (getname());

extern NODE * mkappl();

extern char * (* inline_cnvt)();

boolean has_externs; /* Mentions separately compiled Russell programs */

/* Defines to establish and test the presence of an optional element */
#   define PRESENT ((NodeStar)1)
#   define NOTPRESENT 0
#   define is_present(x)  ((x) == PRESENT)

/* Line 371 of yacc.c  */
#line 249 "y.tab.c"

# ifndef YY_NULL
#  if defined __cplusplus && 201103L <= __cplusplus
#   define YY_NULL nullptr
#  else
#   define YY_NULL 0
#  endif
# endif

/* Enabling verbose error messages.  */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif

/* In a future release of Bison, this section will be replaced
   by #include "y.tab.h".  */
#ifndef YY_YY_Y_TAB_H_INCLUDED
# define YY_YY_Y_TAB_H_INCLUDED
/* Enabling traces.  */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
#if YYDEBUG
extern int yydebug;
#endif

/* Tokens.  */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
   /* Put the tokens into the symbol table, so that GDB and other debuggers
      know about them.  */
   enum yytokentype {
     CAND = 258,
     CHARACTERS = 259,
     CONSTANTS = 260,
     COR = 261,
     DO = 262,
     ELSE = 263,
     ELSIF = 264,
     END = 265,
     ENUM = 266,
     EXPORT = 267,
     FI = 268,
     FIELD = 269,
     FUNC = 270,
     HIDE = 271,
     IF = 272,
     IN = 273,
     EXTEND = 274,
     LET = 275,
     NI = 276,
     OD = 277,
     READONLY = 278,
     RECORD = 279,
     THEN = 280,
     TYPE = 281,
     UNION = 282,
     USE = 283,
     VAL = 284,
     VAR = 285,
     WITH = 286,
     RIGHT_ARROW = 287,
     EQUALS_EQUALS = 288,
     EQUALS_EQUALS_EQUALS = 289,
     COLON = 290,
     WORDID = 291,
     OPID = 292,
     PROD = 293,
     QSTRING = 294,
     UQSTRING = 295,
     LEFT_ANGLE_BRACKET = 296,
     RIGHT_ANGLE_BRACKET = 297,
     EXTERN = 298,
     SIGNATURE = 299
   };
#endif
/* Tokens.  */
#define CAND 258
#define CHARACTERS 259
#define CONSTANTS 260
#define COR 261
#define DO 262
#define ELSE 263
#define ELSIF 264
#define END 265
#define ENUM 266
#define EXPORT 267
#define FI 268
#define FIELD 269
#define FUNC 270
#define HIDE 271
#define IF 272
#define IN 273
#define EXTEND 274
#define LET 275
#define NI 276
#define OD 277
#define READONLY 278
#define RECORD 279
#define THEN 280
#define TYPE 281
#define UNION 282
#define USE 283
#define VAL 284
#define VAR 285
#define WITH 286
#define RIGHT_ARROW 287
#define EQUALS_EQUALS 288
#define EQUALS_EQUALS_EQUALS 289
#define COLON 290
#define WORDID 291
#define OPID 292
#define PROD 293
#define QSTRING 294
#define UQSTRING 295
#define LEFT_ANGLE_BRACKET 296
#define RIGHT_ANGLE_BRACKET 297
#define EXTERN 298
#define SIGNATURE 299



#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef int YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
#endif

extern YYSTYPE yylval;

#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int yyparse (void *YYPARSE_PARAM);
#else
int yyparse ();
#endif
#else /* ! YYPARSE_PARAM */
#if defined __STDC__ || defined __cplusplus
int yyparse (void);
#else
int yyparse ();
#endif
#endif /* ! YYPARSE_PARAM */

#endif /* !YY_YY_Y_TAB_H_INCLUDED  */

/* Copy the second part of user declarations.  */

/* Line 390 of yacc.c  */
#line 403 "y.tab.c"

#ifdef short
# undef short
#endif

#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
#endif

#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else
typedef short int yytype_int8;
#endif

#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short int yytype_uint16;
#endif

#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short int yytype_int16;
#endif

#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
#  define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
#  define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
#  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
#  define YYSIZE_T size_t
# else
#  define YYSIZE_T unsigned int
# endif
#endif

#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)

#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
#  if ENABLE_NLS
#   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
#   define YY_(Msgid) dgettext ("bison-runtime", Msgid)
#  endif
# endif
# ifndef YY_
#  define YY_(Msgid) Msgid
# endif
#endif

/* Suppress unused-variable warnings by "using" E.  */
#if ! defined lint || defined __GNUC__
# define YYUSE(E) ((void) (E))
#else
# define YYUSE(E) /* empty */
#endif

/* Identity function, used to suppress warnings about constant conditions.  */
#ifndef lint
# define YYID(N) (N)
#else
#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static int
YYID (int yyi)
#else
static int
YYID (yyi)
    int yyi;
#endif
{
  return yyi;
}
#endif

#if ! defined yyoverflow || YYERROR_VERBOSE

/* The parser invokes alloca or malloc; define the necessary symbols.  */

# ifdef YYSTACK_USE_ALLOCA
#  if YYSTACK_USE_ALLOCA
#   ifdef __GNUC__
#    define YYSTACK_ALLOC __builtin_alloca
#   elif defined __BUILTIN_VA_ARG_INCR
#    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
#   elif defined _AIX
#    define YYSTACK_ALLOC __alloca
#   elif defined _MSC_VER
#    include <malloc.h> /* INFRINGES ON USER NAME SPACE */
#    define alloca _alloca
#   else
#    define YYSTACK_ALLOC alloca
#    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
#     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
      /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
#     ifndef EXIT_SUCCESS
#      define EXIT_SUCCESS 0
#     endif
#    endif
#   endif
#  endif
# endif

# ifdef YYSTACK_ALLOC
   /* Pacify GCC's `empty if-body' warning.  */
#  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
#  ifndef YYSTACK_ALLOC_MAXIMUM
    /* The OS might guarantee only one guard page at the bottom of the stack,
       and a page size can be as small as 4096 bytes.  So we cannot safely
       invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
       to allow for a few compiler-allocated temporary stack slots.  */
#   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
#  endif
# else
#  define YYSTACK_ALLOC YYMALLOC
#  define YYSTACK_FREE YYFREE
#  ifndef YYSTACK_ALLOC_MAXIMUM
#   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
#  endif
#  if (defined __cplusplus && ! defined EXIT_SUCCESS \
       && ! ((defined YYMALLOC || defined malloc) \
	     && (defined YYFREE || defined free)))
#   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
#   ifndef EXIT_SUCCESS
#    define EXIT_SUCCESS 0
#   endif
#  endif
#  ifndef YYMALLOC
#   define YYMALLOC malloc
#   if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
#   endif
#  endif
#  ifndef YYFREE
#   define YYFREE free
#   if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
#   endif
#  endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */


#if (! defined yyoverflow \
     && (! defined __cplusplus \
	 || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

/* A type that is properly aligned for any stack member.  */
union yyalloc
{
  yytype_int16 yyss_alloc;
  YYSTYPE yyvs_alloc;
};

/* The size of the maximum gap between one aligned stack and the next.  */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)

/* The size of an array large to enough to hold all stacks, each with
   N elements.  */
# define YYSTACK_BYTES(N) \
     ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
      + YYSTACK_GAP_MAXIMUM)

# define YYCOPY_NEEDED 1

/* Relocate STACK from its old location to the new one.  The
   local variables YYSIZE and YYSTACKSIZE give the old and new number of
   elements in the stack, and YYPTR gives the new location of the
   stack.  Advance YYPTR to a properly aligned location for the next
   stack.  */
# define YYSTACK_RELOCATE(Stack_alloc, Stack)				\
    do									\
      {									\
	YYSIZE_T yynewbytes;						\
	YYCOPY (&yyptr->Stack_alloc, Stack, yysize);			\
	Stack = &yyptr->Stack_alloc;					\
	yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
	yyptr += yynewbytes / sizeof (*yyptr);				\
      }									\
    while (YYID (0))

#endif

#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST.  The source and destination do
   not overlap.  */
# ifndef YYCOPY
#  if defined __GNUC__ && 1 < __GNUC__
#   define YYCOPY(Dst, Src, Count) \
      __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
#  else
#   define YYCOPY(Dst, Src, Count)              \
      do                                        \
        {                                       \
          YYSIZE_T yyi;                         \
          for (yyi = 0; yyi < (Count); yyi++)   \
            (Dst)[yyi] = (Src)[yyi];            \
        }                                       \
      while (YYID (0))
#  endif
# endif
#endif /* !YYCOPY_NEEDED */

/* YYFINAL -- State number of the termination state.  */
#define YYFINAL  5
/* YYLAST -- Last index in YYTABLE.  */
#define YYLAST   732

/* YYNTOKENS -- Number of terminals.  */
#define YYNTOKENS  56
/* YYNNTS -- Number of nonterminals.  */
#define YYNNTS  58
/* YYNRULES -- Number of rules.  */
#define YYNRULES  148
/* YYNRULES -- Number of states.  */
#define YYNSTATES  283

/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
#define YYUNDEFTOK  2
#define YYMAXUTOK   299

#define YYTRANSLATE(YYX)						\
  ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)

/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
static const yytype_uint8 yytranslate[] =
{
       0,     2,    53,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,    55,    54,     2,     2,     2,
      47,    48,     2,     2,    46,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,    45,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,    51,     2,    52,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,    49,     2,    50,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
      25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
      35,    36,    37,    38,    39,    40,    41,    42,    43,    44
};

#if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
   YYRHS.  */
static const yytype_uint16 yyprhs[] =
{
       0,     0,     3,     4,     7,     9,    10,    14,    18,    20,
      22,    24,    25,    27,    28,    30,    34,    36,    40,    42,
      44,    46,    49,    52,    54,    69,    83,    96,   107,   116,
     122,   124,   125,   130,   131,   137,   145,   152,   154,   155,
     157,   161,   163,   164,   168,   174,   176,   178,   180,   182,
     183,   185,   187,   189,   191,   193,   195,   198,   201,   203,
     205,   207,   209,   211,   214,   218,   222,   226,   232,   238,
     243,   247,   249,   251,   253,   254,   259,   265,   267,   274,
     280,   285,   289,   292,   294,   296,   298,   300,   302,   304,
     306,   308,   310,   314,   316,   320,   321,   323,   327,   332,
     337,   338,   340,   343,   344,   349,   354,   360,   363,   368,
     371,   377,   380,   382,   386,   388,   389,   393,   395,   397,
     403,   406,   412,   415,   418,   420,   422,   424,   428,   429,
     433,   435,   437,   439,   440,   444,   445,   447,   448,   451,
     457,   459,   463,   468,   470,   474,   476,   478,   480
};

/* YYRHS -- A `-1'-separated list of the rules' RHS.  */
static const yytype_int8 yyrhs[] =
{
      57,     0,    -1,    -1,    58,    76,    -1,     1,    -1,    -1,
       1,    59,    80,    -1,    64,    61,    65,    -1,    65,    -1,
       1,    -1,    35,    -1,    -1,    60,    -1,    -1,    62,    -1,
      63,    45,    62,    -1,   112,    -1,    64,    46,   112,    -1,
     112,    -1,    66,    -1,    44,    -1,    30,    77,    -1,    29,
      77,    -1,    70,    -1,    26,    47,    67,     5,    39,    39,
      39,    40,    39,    48,    73,    49,    72,    50,    -1,    26,
      47,    67,     5,    39,    39,    39,    40,    48,    73,    49,
      72,    50,    -1,    26,    47,    67,     5,    39,    39,    39,
      48,    73,    49,    72,    50,    -1,    26,    47,    67,     5,
      39,    48,    73,    49,    72,    50,    -1,    26,    47,    67,
      48,    73,    49,    72,    50,    -1,    26,    73,    49,    72,
      50,    -1,   112,    -1,    -1,    47,   112,    39,    48,    -1,
      -1,    47,   112,   112,    40,    48,    -1,    15,    69,    68,
      51,    63,    52,    65,    -1,    15,    68,    51,    63,    52,
      65,    -1,    74,    -1,    -1,    71,    -1,    72,    45,    71,
      -1,   112,    -1,    -1,    64,    61,    65,    -1,    64,    61,
      75,    14,    77,    -1,   112,    -1,     4,    -1,     1,    -1,
      23,    -1,    -1,    66,    -1,    77,    -1,    78,    -1,    53,
      -1,    79,    -1,    87,    -1,    78,    79,    -1,    78,    87,
      -1,    82,    -1,    84,    -1,     3,    -1,     6,    -1,    85,
      -1,    79,   100,    -1,    47,    80,    48,    -1,    17,   110,
      13,    -1,     7,   110,    22,    -1,    20,    89,    18,    80,
      21,    -1,    28,    88,    18,    80,    21,    -1,    43,    49,
      39,    50,    -1,    80,    45,    81,    -1,    76,    -1,     1,
      -1,    76,    -1,    -1,    83,    49,    80,    50,    -1,    83,
      49,    43,    39,    50,    -1,    70,    -1,    15,    69,    68,
      51,    63,    52,    -1,    15,    68,    51,    63,    52,    -1,
      79,    54,   112,   107,    -1,    79,    54,   113,    -1,   112,
     107,    -1,   113,    -1,    92,    -1,    95,    -1,    93,    -1,
      94,    -1,    96,    -1,    76,    -1,     8,    -1,     1,    -1,
      51,    88,    52,    -1,    76,    -1,    76,    46,    88,    -1,
      -1,    90,    -1,    89,    45,    90,    -1,    64,    91,    33,
      76,    -1,    64,    91,    34,    76,    -1,    -1,     1,    -1,
      61,    65,    -1,    -1,    11,    49,    64,    50,    -1,    19,
      49,    76,    50,    -1,    38,    73,    49,    63,    50,    -1,
      38,     1,    -1,    24,    49,    97,    50,    -1,    24,     1,
      -1,    27,    73,    49,    63,    50,    -1,    27,     1,    -1,
      98,    -1,    97,    45,    98,    -1,    99,    -1,    -1,    64,
      61,    76,    -1,   101,    -1,   102,    -1,    31,    73,    49,
      89,    50,    -1,    31,     1,    -1,   103,    73,    49,   104,
      50,    -1,    12,     1,    -1,    16,     1,    -1,    12,    -1,
      16,    -1,   105,    -1,   105,    45,   104,    -1,    -1,   112,
     107,   106,    -1,     5,    -1,     1,    -1,   102,    -1,    -1,
      41,    65,    42,    -1,    -1,   109,    -1,    -1,     8,    80,
      -1,     9,    76,    25,    80,   108,    -1,   111,    -1,   110,
      55,   111,    -1,    76,    25,    80,   108,    -1,     1,    -1,
      86,    32,    80,    -1,    36,    -1,    37,    -1,    39,    -1,
      40,    -1
};

/* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
static const yytype_uint16 yyrline[] =
{
       0,   210,   210,   210,   222,   225,   224,   229,   275,   277,
     309,   312,   315,   318,   321,   323,   327,   329,   333,   335,
     339,   343,   347,   351,   353,   363,   373,   383,   393,   403,
     411,   422,   425,   439,   442,   482,   487,   497,   500,   503,
     505,   509,   512,   515,   527,   560,   601,   608,   615,   618,
     621,   623,   626,   646,   658,   660,   662,   664,   668,   670,
     672,   674,   676,   678,   680,   702,   704,   706,   712,   718,
     726,   728,   730,   778,   781,   784,   803,   812,   814,   819,
     823,   829,   834,   839,   845,   847,   849,   851,   853,   857,
     859,   861,   865,   869,   871,   874,   877,   879,   883,   889,
     900,   901,   946,   949,   952,   956,   960,   969,   973,   975,
     979,   988,   992,   994,   998,  1001,  1004,  1015,  1017,  1021,
    1023,  1027,  1029,  1031,  1035,  1037,  1041,  1043,  1046,  1049,
    1051,  1053,  1057,  1060,  1063,  1066,  1069,  1072,  1078,  1088,
    1107,  1109,  1111,  1128,  1168,  1180,  1182,  1186,  1188
};
#endif

#if YYDEBUG || YYERROR_VERBOSE || 0
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
   First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
static const char *const yytname[] =
{
  "$end", "error", "$undefined", "CAND", "CHARACTERS", "CONSTANTS", "COR",
  "DO", "ELSE", "ELSIF", "END", "ENUM", "EXPORT", "FI", "FIELD", "FUNC",
  "HIDE", "IF", "IN", "EXTEND", "LET", "NI", "OD", "READONLY", "RECORD",
  "THEN", "TYPE", "UNION", "USE", "VAL", "VAR", "WITH", "RIGHT_ARROW",
  "EQUALS_EQUALS", "EQUALS_EQUALS_EQUALS", "COLON", "WORDID", "OPID",
  "PROD", "QSTRING", "UQSTRING", "LEFT_ANGLE_BRACKET",
  "RIGHT_ANGLE_BRACKET", "EXTERN", "SIGNATURE", "';'", "','", "'('", "')'",
  "'{'", "'}'", "'['", "']'", "'\\002'", "'$'", "'#'", "$accept",
  "Program", "@1", "$@2", "Parameters", "Opt.Colon", "Opt.Parameters",
  "Opt.Parameter.list", "Id.list", "Signature", "ManifestSignature",
  "Opt.Simple", "Opt.InLine", "Special", "FuncSignature",
  "Opt.TypeSignatureComponents", "Opt.TypeSignatureComponent.list",
  "Opt.Id", "TypeSignatureComponents", "Opt.Readonly", "Denotation",
  "BasicDenotation", "Primary.list", "Primary", "Denotation.seq",
  "Opt.Denotation", "FuncConstruction", "IncompleteFuncSignature",
  "Selection", "TypeConstruction", "Guard", "ArgList",
  "Opt.Denotation.list", "Opt.Declaration.list", "Opt.Declarations",
  "Opt.ColonSignature", "Enumeration", "Extension", "Product", "Record",
  "Union", "Opt.RecordElement.list", "Opt.RecordElements",
  "RecordElements", "TypeModifier", "WithList", "ExportList",
  "Start.ExportList", "ExportElement.list", "ExportElement",
  "Opt.ExportList", "Opt.SigClause", "Opt.ElseList", "ElseList",
  "GuardedDenotation.list", "GuardedDenotation", "ID", "STRING", YY_NULL
};
#endif

# ifdef YYPRINT
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
   token YYLEX-NUM.  */
static const yytype_uint16 yytoknum[] =
{
       0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
     265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
     275,   276,   277,   278,   279,   280,   281,   282,   283,   284,
     285,   286,   287,   288,   289,   290,   291,   292,   293,   294,
     295,   296,   297,   298,   299,    59,    44,    40,    41,   123,
     125,    91,    93,     2,    36,    35
};
# endif

/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
static const yytype_uint8 yyr1[] =
{
       0,    56,    58,    57,    57,    59,    57,    60,    60,    60,
      61,    61,    62,    62,    63,    63,    64,    64,    65,    65,
      66,    66,    66,    66,    66,    66,    66,    66,    66,    66,
      67,    67,    68,    68,    69,    70,    70,    71,    71,    72,
      72,    73,    73,    74,    74,    74,    74,    74,    75,    75,
      76,    76,    77,    77,    78,    78,    78,    78,    79,    79,
      79,    79,    79,    79,    79,    79,    79,    79,    79,    79,
      80,    80,    80,    81,    81,    82,    82,    83,    83,    83,
      84,    84,    84,    84,    85,    85,    85,    85,    85,    86,
      86,    86,    87,    88,    88,    88,    89,    89,    90,    90,
      90,    90,    91,    91,    92,    93,    94,    94,    95,    95,
      96,    96,    97,    97,    98,    98,    99,   100,   100,   101,
     101,   102,   102,   102,   103,   103,   104,   104,   104,   105,
     105,   105,   106,   106,   107,   107,   108,   108,   109,   109,
     110,   110,   110,   110,   111,   112,   112,   113,   113
};

/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
static const yytype_uint8 yyr2[] =
{
       0,     2,     0,     2,     1,     0,     3,     3,     1,     1,
       1,     0,     1,     0,     1,     3,     1,     3,     1,     1,
       1,     2,     2,     1,    14,    13,    12,    10,     8,     5,
       1,     0,     4,     0,     5,     7,     6,     1,     0,     1,
       3,     1,     0,     3,     5,     1,     1,     1,     1,     0,
       1,     1,     1,     1,     1,     1,     2,     2,     1,     1,
       1,     1,     1,     2,     3,     3,     3,     5,     5,     4,
       3,     1,     1,     1,     0,     4,     5,     1,     6,     5,
       4,     3,     2,     1,     1,     1,     1,     1,     1,     1,
       1,     1,     3,     1,     3,     0,     1,     3,     4,     4,
       0,     1,     2,     0,     4,     4,     5,     2,     4,     2,
       5,     2,     1,     3,     1,     0,     3,     1,     1,     5,
       2,     5,     2,     2,     1,     1,     1,     3,     0,     3,
       1,     1,     1,     0,     3,     0,     1,     0,     2,     5,
       1,     3,     4,     1,     3,     1,     1,     1,     1
};

/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
   Performed when YYTABLE doesn't specify something else to do.  Zero
   means the default is an error.  */
static const yytype_uint8 yydefact[] =
{
       0,     5,     0,     0,     0,     1,    60,    61,     0,     0,
      33,     0,     0,     0,     0,    42,     0,    95,     0,     0,
     145,   146,     0,   147,   148,     0,    20,     0,    95,    53,
      50,    23,     3,    51,    52,    54,    58,     0,    59,    62,
      55,    84,    86,    87,    85,    88,   135,    83,    72,    71,
       6,   143,    90,    89,     0,     0,   140,     0,     0,     0,
      33,     0,     0,   101,    11,     0,    96,    16,   109,   115,
      31,     0,    41,   111,     0,    93,     0,    77,    22,    21,
     107,     0,     0,     0,     0,    56,    57,     0,     0,     0,
       0,    63,   117,   118,    42,     0,     0,    82,    74,     0,
       0,    66,     0,     0,     0,     0,     0,     0,    65,     0,
      10,     0,     0,     0,     0,     0,    11,     0,   112,   114,
       0,    30,     0,     0,    95,     0,     0,     0,    64,    92,
     122,   123,   120,     0,   135,    81,     0,     0,     0,    33,
       0,    19,    23,    18,    73,    70,   137,   144,    91,    89,
     141,   104,     0,     0,     9,    12,    14,     0,    11,     8,
      16,     0,     0,   105,    17,   102,     0,     0,     0,    97,
       0,   115,   108,     0,    42,    47,    46,    11,    39,     0,
      37,    16,     0,    94,     0,     0,    69,     0,    80,     0,
       0,    75,     0,    33,   134,     0,     0,   142,   136,    32,
       0,     0,    79,     0,     0,    98,    99,    67,   116,   113,
       0,     0,    49,     0,    29,   110,    68,   106,     0,   131,
     130,     0,   126,   135,    76,     0,     0,   138,     0,    34,
      15,    36,     7,    78,     0,    42,     0,    48,    43,     0,
      40,   119,   121,     0,   133,     0,     0,     0,    35,     0,
       0,     0,     0,   127,   132,   129,     0,     0,   137,     0,
      42,     0,    28,    44,     0,   139,     0,    42,     0,     0,
      42,     0,     0,    27,     0,     0,     0,     0,     0,    26,
       0,    25,    24
};

/* YYDEFGOTO[NTERM-NUM].  */
static const yytype_int16 yydefgoto[] =
{
      -1,     2,     3,     4,   155,   112,   156,   157,   158,   159,
      30,   120,    59,    60,    31,   178,   179,    71,   180,   239,
      49,    33,    34,    35,    50,   145,    36,    37,    38,    39,
      54,    40,    76,    65,    66,   113,    41,    42,    43,    44,
      45,   117,   118,   119,    91,    92,    93,    94,   221,   222,
     255,    97,   197,   198,    55,    56,    46,    47
};

/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
   STATE-NUM.  */
#define YYPACT_NINF -129
static const yytype_int16 yypact[] =
{
     442,    32,    50,   579,   491,  -129,  -129,  -129,   344,   -30,
       5,   344,    45,   389,    13,   182,     6,   579,   618,   618,
    -129,  -129,   107,  -129,  -129,    74,  -129,   491,   579,  -129,
    -129,    89,  -129,  -129,   657,    10,  -129,   103,  -129,  -129,
    -129,  -129,  -129,  -129,  -129,  -129,    28,  -129,  -129,  -129,
     141,   149,  -129,   134,   163,    -7,  -129,     0,     0,   156,
     168,    15,   579,  -129,   234,     2,  -129,  -129,  -129,     0,
       0,   175,  -129,  -129,   178,   203,   240,  -129,  -129,  -129,
    -129,   211,   233,   135,   222,    10,  -129,   136,   165,   167,
     300,  -129,  -129,  -129,     0,   540,   688,  -129,   579,   491,
     491,  -129,   393,   119,   114,   260,     0,   231,  -129,   242,
    -129,     0,   688,   290,   491,    22,    96,    79,  -129,  -129,
      20,  -129,    29,   272,   579,   491,   272,   249,  -129,  -129,
    -129,  -129,  -129,   254,    28,  -129,   278,   -15,   147,     5,
     287,  -129,  -129,  -129,  -129,  -129,    30,   141,  -129,  -129,
    -129,  -129,   262,   293,  -129,  -129,  -129,   190,    96,  -129,
     176,   296,   260,  -129,  -129,  -129,   579,   579,     8,  -129,
     579,     0,  -129,   303,     0,  -129,  -129,    96,  -129,   161,
    -129,   187,   200,  -129,    75,   243,  -129,    85,  -129,   127,
     294,  -129,   292,   168,  -129,   491,   579,  -129,  -129,  -129,
     301,   110,   688,   688,   201,  -129,  -129,  -129,  -129,  -129,
      39,   299,   676,    29,  -129,  -129,  -129,  -129,   250,  -129,
    -129,   306,   308,    28,  -129,   260,   307,   141,   332,  -129,
    -129,  -129,  -129,   688,   321,     0,    29,  -129,  -129,   351,
    -129,  -129,  -129,   127,    19,   225,   260,   491,  -129,    67,
     317,   261,   618,  -129,  -129,  -129,   688,   226,    30,    58,
       0,    29,  -129,  -129,   688,  -129,   319,     0,   320,   268,
       0,   327,    29,  -129,   328,    29,   269,    29,   275,  -129,
     276,  -129,  -129
};

/* YYPGOTO[NTERM-NUM].  */
static const yytype_int16 yypgoto[] =
{
    -129,  -129,  -129,  -129,  -129,   -95,   177,  -113,     4,   -85,
     129,  -129,   -59,   247,    82,   166,   -79,    -4,  -129,  -129,
      43,   -14,  -129,   355,   -11,  -129,  -129,  -129,  -129,  -129,
    -129,   358,   -20,   215,   283,  -129,  -129,  -129,  -129,  -129,
    -129,  -129,   232,  -129,  -129,  -129,   162,  -129,   171,  -129,
    -129,  -128,   151,  -129,   394,   309,   -13,   325
};

/* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
   positive, shift that token.  If negative, reduce the rule which
   number is the opposite.  If YYTABLE_NINF, syntax error.  */
#define YYTABLE_NINF -129
static const yytype_int16 yytable[] =
{
      67,   107,    72,    72,    78,    79,   188,    73,    84,    72,
     182,   140,    74,   185,    68,   101,    83,    64,    81,    57,
     114,   170,    87,    63,   190,   173,    88,   165,   108,   207,
     175,    87,    -4,   176,    82,    88,    20,    21,   195,   196,
    -100,    89,    20,    21,    67,   104,    32,   115,   102,   204,
       5,    53,    58,    98,    53,   -42,    67,   121,    20,    21,
      75,   103,    69,   203,    90,    20,    21,  -100,   174,    96,
     102,    75,  -100,   116,   -38,    98,    72,   134,   234,   -38,
     192,    72,   212,   143,   138,   133,    63,   235,   146,   147,
     136,   153,   160,   161,    62,   244,   216,   266,   164,   143,
      77,    77,    67,   168,   183,   109,   267,   259,    80,   181,
     160,   154,   245,   160,   184,   260,    77,   231,   232,    64,
      98,    20,    21,    82,   171,   139,   177,   238,   219,   172,
    -100,   110,   220,   257,   226,  -100,    15,   130,   -77,    18,
      19,   144,   111,    20,    21,   149,    20,    21,   248,   160,
      20,    21,    95,   152,    26,   -13,   -42,   251,    67,    99,
     -13,    72,   -13,    20,    21,   111,   131,    75,   132,   151,
     211,   231,  -124,  -124,    67,   116,   223,  -128,   142,   248,
      98,   -91,   269,   128,   227,  -124,    98,   142,   160,   143,
     143,    64,    98,   276,   142,   100,   278,   191,   280,   143,
     181,  -125,  -125,    20,    21,   142,   213,   105,   142,   205,
     206,   214,   160,   208,  -125,   106,   -42,   177,    20,    21,
     143,   -18,    72,   181,   122,   141,   -18,   123,   -18,    70,
     223,   250,   -45,   160,   141,   201,   258,   -45,   263,   228,
     177,   141,   202,   143,   142,   201,   201,    72,   181,   124,
     215,   143,   141,   233,    72,   141,   268,    72,   125,   181,
     126,   154,   181,   271,   181,   177,   274,  -103,  -103,   110,
     201,   201,   127,   154,   129,   139,   177,   256,   264,   177,
     111,   177,   162,   142,   142,   142,    15,   139,   201,    18,
      19,   141,   163,   217,   142,   115,    20,    21,    15,   186,
     241,    18,    19,   187,    26,   -13,   213,   142,    20,    21,
     199,   262,   -13,   213,   213,   142,    26,   -13,   273,   279,
     213,   213,   -13,   166,   167,   281,   282,   189,   142,   194,
     141,   141,   141,   200,    77,   152,    20,    21,   142,    23,
      24,   141,   210,   225,   224,    51,   142,     6,   236,   229,
       7,     8,    52,   243,   141,     9,   242,   247,   246,    10,
     249,    11,   141,    12,    13,   252,   261,   270,    14,   272,
      15,    16,    17,    18,    19,   141,   275,   277,   230,   240,
      20,    21,    22,    23,    24,   141,   193,    25,    26,    85,
      63,    27,    86,   141,   148,    28,     6,    29,   169,     7,
       8,    52,   218,   209,     9,    61,   254,  -100,    10,   265,
      11,   150,    12,    13,   253,   135,     0,    14,     0,    15,
      16,    17,    18,    19,     0,    20,    21,     0,     0,    20,
      21,    22,    23,    24,  -100,     0,    25,    26,     0,     0,
      27,     0,     0,     1,    28,    -2,    29,     0,    -2,    -2,
       0,     0,     0,    -2,     0,     0,     0,    -2,     0,    -2,
       0,    -2,    -2,     0,     0,     0,    -2,     0,    -2,    -2,
      -2,    -2,    -2,     0,     0,     0,     0,     0,    -2,    -2,
      -2,    -2,    -2,     0,     0,    -2,    -2,     0,     0,    -2,
       0,     0,    48,    -2,     6,    -2,     0,     7,     8,     0,
       0,     0,     9,     0,     0,     0,    10,     0,    11,     0,
      12,    13,     0,     0,     0,    14,     0,    15,    16,    17,
      18,    19,     0,     0,     0,     0,     0,    20,    21,    22,
      23,    24,     0,     0,    25,    26,     0,     0,    27,     0,
       0,    48,    28,     6,    29,     0,     7,     8,     0,     0,
       0,     9,     0,     0,     0,    10,     0,    11,     0,    12,
      13,     0,     0,     0,    14,     0,    15,    16,    17,    18,
      19,     0,     0,     0,     0,     0,    20,    21,    22,    23,
      24,     0,     6,   137,    26,     7,     8,    27,     0,     0,
       9,    28,     0,    29,    10,     0,    11,     0,    12,    13,
       0,     0,     0,    14,     0,    15,    16,    17,    18,    19,
       0,     0,     0,     0,     0,    20,    21,    22,    23,    24,
       0,     6,    25,    26,     7,     8,    27,     0,     0,     9,
      28,     0,    29,    10,     0,    11,     0,    12,    13,     0,
       0,     0,    14,     0,     0,    16,    17,     0,     0,     0,
       0,     0,     0,     0,    20,    21,    22,    23,    24,     0,
       6,    25,     0,     7,     8,    27,     0,     0,     9,    28,
       0,    29,    10,     0,    11,     0,    12,    13,     0,     0,
       0,    14,     0,     0,    16,    17,     0,     0,     0,     0,
       0,   139,     0,    20,    21,    22,    23,    24,     0,   237,
      25,     0,    15,   139,    27,    18,    19,     0,    28,     0,
       0,     0,    20,    21,    15,     0,     0,    18,    19,     0,
      26,     0,     0,     0,    20,    21,     0,     0,     0,     0,
       0,     0,    26
};

#define yypact_value_is_default(Yystate) \
  (!!((Yystate) == (-129)))

#define yytable_value_is_error(Yytable_value) \
  YYID (0)

static const yytype_int16 yycheck[] =
{
      13,    60,    15,    16,    18,    19,   134,     1,    28,    22,
     123,    96,    16,   126,     1,    22,    27,    13,    22,    49,
      18,   116,    12,     1,    39,     5,    16,   112,    13,    21,
       1,    12,     0,     4,    49,    16,    36,    37,     8,     9,
      18,    31,    36,    37,    57,    58,     3,    45,    55,   162,
       0,     8,    47,    45,    11,    49,    69,    70,    36,    37,
      17,    57,    49,   158,    54,    36,    37,    45,    48,    41,
      55,    28,    50,    69,    45,    45,    89,    90,    39,    50,
     139,    94,   177,    96,    95,    89,     1,    48,    99,   100,
      94,   104,   105,   106,    49,   223,    21,    39,   111,   112,
      18,    19,   115,   114,   124,    62,    48,    40,     1,   122,
     123,     1,   225,   126,   125,    48,    34,   202,   203,   115,
      45,    36,    37,    49,    45,    15,   122,   212,     1,    50,
      45,    35,     5,   246,   193,    50,    26,     1,    49,    29,
      30,    98,    46,    36,    37,   102,    36,    37,   233,   162,
      36,    37,    49,    39,    44,    45,    49,   236,   171,    25,
      50,   174,    52,    36,    37,    46,     1,   124,     1,    50,
     174,   256,    36,    37,   187,   171,   189,    50,    96,   264,
      45,    32,   261,    48,   195,    49,    45,   105,   201,   202,
     203,   187,    45,   272,   112,    32,   275,    50,   277,   212,
     213,    36,    37,    36,    37,   123,    45,    51,   126,   166,
     167,    50,   225,   170,    49,    47,    49,   213,    36,    37,
     233,    45,   235,   236,    49,    96,    50,    49,    52,    47,
     243,   235,    45,   246,   105,    45,   247,    50,   252,   196,
     236,   112,    52,   256,   162,    45,    45,   260,   261,    46,
      50,   264,   123,    52,   267,   126,   260,   270,    18,   272,
      49,     1,   275,   267,   277,   261,   270,    33,    34,    35,
      45,    45,    39,     1,    52,    15,   272,    52,    52,   275,
      46,   277,    51,   201,   202,   203,    26,    15,    45,    29,
      30,   162,    50,    50,   212,    45,    36,    37,    26,    50,
      50,    29,    30,    49,    44,    45,    45,   225,    36,    37,
      48,    50,    52,    45,    45,   233,    44,    45,    50,    50,
      45,    45,    50,    33,    34,    50,    50,    49,   246,    42,
     201,   202,   203,    40,   252,    39,    36,    37,   256,    39,
      40,   212,    39,    51,    50,     1,   264,     3,    49,    48,
       6,     7,     8,    45,   225,    11,    50,    25,    51,    15,
      39,    17,   233,    19,    20,    14,    49,    48,    24,    49,
      26,    27,    28,    29,    30,   246,    49,    49,   201,   213,
      36,    37,    38,    39,    40,   256,   139,    43,    44,    34,
       1,    47,    34,   264,     1,    51,     3,    53,   115,     6,
       7,     8,   187,   171,    11,    11,   244,    18,    15,   258,
      17,   102,    19,    20,   243,    90,    -1,    24,    -1,    26,
      27,    28,    29,    30,    -1,    36,    37,    -1,    -1,    36,
      37,    38,    39,    40,    45,    -1,    43,    44,    -1,    -1,
      47,    -1,    -1,     1,    51,     3,    53,    -1,     6,     7,
      -1,    -1,    -1,    11,    -1,    -1,    -1,    15,    -1,    17,
      -1,    19,    20,    -1,    -1,    -1,    24,    -1,    26,    27,
      28,    29,    30,    -1,    -1,    -1,    -1,    -1,    36,    37,
      38,    39,    40,    -1,    -1,    43,    44,    -1,    -1,    47,
      -1,    -1,     1,    51,     3,    53,    -1,     6,     7,    -1,
      -1,    -1,    11,    -1,    -1,    -1,    15,    -1,    17,    -1,
      19,    20,    -1,    -1,    -1,    24,    -1,    26,    27,    28,
      29,    30,    -1,    -1,    -1,    -1,    -1,    36,    37,    38,
      39,    40,    -1,    -1,    43,    44,    -1,    -1,    47,    -1,
      -1,     1,    51,     3,    53,    -1,     6,     7,    -1,    -1,
      -1,    11,    -1,    -1,    -1,    15,    -1,    17,    -1,    19,
      20,    -1,    -1,    -1,    24,    -1,    26,    27,    28,    29,
      30,    -1,    -1,    -1,    -1,    -1,    36,    37,    38,    39,
      40,    -1,     3,    43,    44,     6,     7,    47,    -1,    -1,
      11,    51,    -1,    53,    15,    -1,    17,    -1,    19,    20,
      -1,    -1,    -1,    24,    -1,    26,    27,    28,    29,    30,
      -1,    -1,    -1,    -1,    -1,    36,    37,    38,    39,    40,
      -1,     3,    43,    44,     6,     7,    47,    -1,    -1,    11,
      51,    -1,    53,    15,    -1,    17,    -1,    19,    20,    -1,
      -1,    -1,    24,    -1,    -1,    27,    28,    -1,    -1,    -1,
      -1,    -1,    -1,    -1,    36,    37,    38,    39,    40,    -1,
       3,    43,    -1,     6,     7,    47,    -1,    -1,    11,    51,
      -1,    53,    15,    -1,    17,    -1,    19,    20,    -1,    -1,
      -1,    24,    -1,    -1,    27,    28,    -1,    -1,    -1,    -1,
      -1,    15,    -1,    36,    37,    38,    39,    40,    -1,    23,
      43,    -1,    26,    15,    47,    29,    30,    -1,    51,    -1,
      -1,    -1,    36,    37,    26,    -1,    -1,    29,    30,    -1,
      44,    -1,    -1,    -1,    36,    37,    -1,    -1,    -1,    -1,
      -1,    -1,    44
};

/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
   symbol of state STATE-NUM.  */
static const yytype_uint8 yystos[] =
{
       0,     1,    57,    58,    59,     0,     3,     6,     7,    11,
      15,    17,    19,    20,    24,    26,    27,    28,    29,    30,
      36,    37,    38,    39,    40,    43,    44,    47,    51,    53,
      66,    70,    76,    77,    78,    79,    82,    83,    84,    85,
      87,    92,    93,    94,    95,    96,   112,   113,     1,    76,
      80,     1,     8,    76,    86,   110,   111,    49,    47,    68,
      69,   110,    49,     1,    64,    89,    90,   112,     1,    49,
      47,    73,   112,     1,    73,    76,    88,    70,    77,    77,
       1,    73,    49,    80,    88,    79,    87,    12,    16,    31,
      54,   100,   101,   102,   103,    49,    41,   107,    45,    25,
      32,    22,    55,    64,   112,    51,    47,    68,    13,    76,
      35,    46,    61,    91,    18,    45,    64,    97,    98,    99,
      67,   112,    49,    49,    46,    18,    49,    39,    48,    52,
       1,     1,     1,    73,   112,   113,    73,    43,    80,    15,
      65,    66,    70,   112,    76,    81,    80,    80,     1,    76,
     111,    50,    39,   112,     1,    60,    62,    63,    64,    65,
     112,   112,    51,    50,   112,    65,    33,    34,    80,    90,
      61,    45,    50,     5,    48,     1,     4,    64,    71,    72,
      74,   112,    63,    88,    80,    63,    50,    49,   107,    49,
      39,    50,    68,    69,    42,     8,     9,   108,   109,    48,
      40,    45,    52,    61,    63,    76,    76,    21,    76,    98,
      39,    73,    61,    45,    50,    50,    21,    50,    89,     1,
       5,   104,   105,   112,    50,    51,    68,    80,    76,    48,
      62,    65,    65,    52,    39,    48,    49,    23,    65,    75,
      71,    50,    50,    45,   107,    63,    51,    25,    65,    39,
      73,    72,    14,   104,   102,   106,    52,    63,    80,    40,
      48,    49,    50,    77,    52,   108,    39,    48,    73,    72,
      48,    73,    49,    50,    73,    49,    72,    49,    72,    50,
      72,    50,    50
};

#define yyerrok		(yyerrstatus = 0)
#define yyclearin	(yychar = YYEMPTY)
#define YYEMPTY		(-2)
#define YYEOF		0

#define YYACCEPT	goto yyacceptlab
#define YYABORT		goto yyabortlab
#define YYERROR		goto yyerrorlab


/* Like YYERROR except do call yyerror.  This remains here temporarily
   to ease the transition to the new meaning of YYERROR, for GCC.
   Once GCC version 2 has supplanted version 1, this can go.  However,
   YYFAIL appears to be in use.  Nevertheless, it is formally deprecated
   in Bison 2.4.2's NEWS entry, where a plan to phase it out is
   discussed.  */

#define YYFAIL		goto yyerrlab
#if defined YYFAIL
  /* This is here to suppress warnings from the GCC cpp's
     -Wunused-macros.  Normally we don't worry about that warning, but
     some users do, and we want to make it easy for users to remove
     YYFAIL uses, which will produce warnings from Bison 2.5.  */
#endif

#define YYRECOVERING()  (!!yyerrstatus)

#define YYBACKUP(Token, Value)                                  \
do                                                              \
  if (yychar == YYEMPTY)                                        \
    {                                                           \
      yychar = (Token);                                         \
      yylval = (Value);                                         \
      YYPOPSTACK (yylen);                                       \
      yystate = *yyssp;                                         \
      goto yybackup;                                            \
    }                                                           \
  else                                                          \
    {                                                           \
      yyerror (YY_("syntax error: cannot back up")); \
      YYERROR;							\
    }								\
while (YYID (0))

/* Error token number */
#define YYTERROR	1
#define YYERRCODE	256


/* This macro is provided for backward compatibility. */
#ifndef YY_LOCATION_PRINT
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
#endif


/* YYLEX -- calling `yylex' with the right arguments.  */
#ifdef YYLEX_PARAM
# define YYLEX yylex (YYLEX_PARAM)
#else
# define YYLEX yylex ()
#endif

/* Enable debugging if requested.  */
#if YYDEBUG

# ifndef YYFPRINTF
#  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
#  define YYFPRINTF fprintf
# endif

# define YYDPRINTF(Args)			\
do {						\
  if (yydebug)					\
    YYFPRINTF Args;				\
} while (YYID (0))

# define YY_SYMBOL_PRINT(Title, Type, Value, Location)			  \
do {									  \
  if (yydebug)								  \
    {									  \
      YYFPRINTF (stderr, "%s ", Title);					  \
      yy_symbol_print (stderr,						  \
		  Type, Value); \
      YYFPRINTF (stderr, "\n");						  \
    }									  \
} while (YYID (0))


/*--------------------------------.
| Print this symbol on YYOUTPUT.  |
`--------------------------------*/

/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_value_print (yyoutput, yytype, yyvaluep)
    FILE *yyoutput;
    int yytype;
    YYSTYPE const * const yyvaluep;
#endif
{
  FILE *yyo = yyoutput;
  YYUSE (yyo);
  if (!yyvaluep)
    return;
# ifdef YYPRINT
  if (yytype < YYNTOKENS)
    YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# else
  YYUSE (yyoutput);
# endif
  switch (yytype)
    {
      default:
        break;
    }
}


/*--------------------------------.
| Print this symbol on YYOUTPUT.  |
`--------------------------------*/

#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_print (yyoutput, yytype, yyvaluep)
    FILE *yyoutput;
    int yytype;
    YYSTYPE const * const yyvaluep;
#endif
{
  if (yytype < YYNTOKENS)
    YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  else
    YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);

  yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  YYFPRINTF (yyoutput, ")");
}

/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included).                                                   |
`------------------------------------------------------------------*/

#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static void
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
#else
static void
yy_stack_print (yybottom, yytop)
    yytype_int16 *yybottom;
    yytype_int16 *yytop;
#endif
{
  YYFPRINTF (stderr, "Stack now");
  for (; yybottom <= yytop; yybottom++)
    {
      int yybot = *yybottom;
      YYFPRINTF (stderr, " %d", yybot);
    }
  YYFPRINTF (stderr, "\n");
}

# define YY_STACK_PRINT(Bottom, Top)				\
do {								\
  if (yydebug)							\
    yy_stack_print ((Bottom), (Top));				\
} while (YYID (0))


/*------------------------------------------------.
| Report that the YYRULE is going to be reduced.  |
`------------------------------------------------*/

#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static void
yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
#else
static void
yy_reduce_print (yyvsp, yyrule)
    YYSTYPE *yyvsp;
    int yyrule;
#endif
{
  int yynrhs = yyr2[yyrule];
  int yyi;
  unsigned long int yylno = yyrline[yyrule];
  YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
	     yyrule - 1, yylno);
  /* The symbols being reduced.  */
  for (yyi = 0; yyi < yynrhs; yyi++)
    {
      YYFPRINTF (stderr, "   $%d = ", yyi + 1);
      yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
		       &(yyvsp[(yyi + 1) - (yynrhs)])
		       		       );
      YYFPRINTF (stderr, "\n");
    }
}

# define YY_REDUCE_PRINT(Rule)		\
do {					\
  if (yydebug)				\
    yy_reduce_print (yyvsp, Rule); \
} while (YYID (0))

/* Nonzero means print parse trace.  It is left uninitialized so that
   multiple parsers can coexist.  */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args)
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */


/* YYINITDEPTH -- initial size of the parser's stacks.  */
#ifndef	YYINITDEPTH
# define YYINITDEPTH 200
#endif

/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
   if the built-in stack extension method is used).

   Do not make this value too large; the results are undefined if
   YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
   evaluated with infinite-precision integer arithmetic.  */

#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif


#if YYERROR_VERBOSE

# ifndef yystrlen
#  if defined __GLIBC__ && defined _STRING_H
#   define yystrlen strlen
#  else
/* Return the length of YYSTR.  */
#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static YYSIZE_T
yystrlen (const char *yystr)
#else
static YYSIZE_T
yystrlen (yystr)
    const char *yystr;
#endif
{
  YYSIZE_T yylen;
  for (yylen = 0; yystr[yylen]; yylen++)
    continue;
  return yylen;
}
#  endif
# endif

# ifndef yystpcpy
#  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
#   define yystpcpy stpcpy
#  else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
   YYDEST.  */
#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static char *
yystpcpy (char *yydest, const char *yysrc)
#else
static char *
yystpcpy (yydest, yysrc)
    char *yydest;
    const char *yysrc;
#endif
{
  char *yyd = yydest;
  const char *yys = yysrc;

  while ((*yyd++ = *yys++) != '\0')
    continue;

  return yyd - 1;
}
#  endif
# endif

# ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
   quotes and backslashes, so that it's suitable for yyerror.  The
   heuristic is that double-quoting is unnecessary unless the string
   contains an apostrophe, a comma, or backslash (other than
   backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
   null, do not copy; instead, return the length of what the result
   would have been.  */
static YYSIZE_T
yytnamerr (char *yyres, const char *yystr)
{
  if (*yystr == '"')
    {
      YYSIZE_T yyn = 0;
      char const *yyp = yystr;

      for (;;)
	switch (*++yyp)
	  {
	  case '\'':
	  case ',':
	    goto do_not_strip_quotes;

	  case '\\':
	    if (*++yyp != '\\')
	      goto do_not_strip_quotes;
	    /* Fall through.  */
	  default:
	    if (yyres)
	      yyres[yyn] = *yyp;
	    yyn++;
	    break;

	  case '"':
	    if (yyres)
	      yyres[yyn] = '\0';
	    return yyn;
	  }
    do_not_strip_quotes: ;
    }

  if (! yyres)
    return yystrlen (yystr);

  return yystpcpy (yyres, yystr) - yyres;
}
# endif

/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
   about the unexpected token YYTOKEN for the state stack whose top is
   YYSSP.

   Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is
   not large enough to hold the message.  In that case, also set
   *YYMSG_ALLOC to the required number of bytes.  Return 2 if the
   required number of bytes is too large to store.  */
static int
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
                yytype_int16 *yyssp, int yytoken)
{
  YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
  YYSIZE_T yysize = yysize0;
  enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
  /* Internationalized format string. */
  const char *yyformat = YY_NULL;
  /* Arguments of yyformat. */
  char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
  /* Number of reported tokens (one for the "unexpected", one per
     "expected"). */
  int yycount = 0;

  /* There are many possibilities here to consider:
     - Assume YYFAIL is not used.  It's too flawed to consider.  See
       <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
       for details.  YYERROR is fine as it does not invoke this
       function.
     - If this state is a consistent state with a default action, then
       the only way this function was invoked is if the default action
       is an error action.  In that case, don't check for expected
       tokens because there are none.
     - The only way there can be no lookahead present (in yychar) is if
       this state is a consistent state with a default action.  Thus,
       detecting the absence of a lookahead is sufficient to determine
       that there is no unexpected or expected token to report.  In that
       case, just report a simple "syntax error".
     - Don't assume there isn't a lookahead just because this state is a
       consistent state with a default action.  There might have been a
       previous inconsistent state, consistent state with a non-default
       action, or user semantic action that manipulated yychar.
     - Of course, the expected token list depends on states to have
       correct lookahead information, and it depends on the parser not
       to perform extra reductions after fetching a lookahead from the
       scanner and before detecting a syntax error.  Thus, state merging
       (from LALR or IELR) and default reductions corrupt the expected
       token list.  However, the list is correct for canonical LR with
       one exception: it will still contain any token that will not be
       accepted due to an error action in a later state.
  */
  if (yytoken != YYEMPTY)
    {
      int yyn = yypact[*yyssp];
      yyarg[yycount++] = yytname[yytoken];
      if (!yypact_value_is_default (yyn))
        {
          /* Start YYX at -YYN if negative to avoid negative indexes in
             YYCHECK.  In other words, skip the first -YYN actions for
             this state because they are default actions.  */
          int yyxbegin = yyn < 0 ? -yyn : 0;
          /* Stay within bounds of both yycheck and yytname.  */
          int yychecklim = YYLAST - yyn + 1;
          int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
          int yyx;

          for (yyx = yyxbegin; yyx < yyxend; ++yyx)
            if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
                && !yytable_value_is_error (yytable[yyx + yyn]))
              {
                if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
                  {
                    yycount = 1;
                    yysize = yysize0;
                    break;
                  }
                yyarg[yycount++] = yytname[yyx];
                {
                  YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
                  if (! (yysize <= yysize1
                         && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
                    return 2;
                  yysize = yysize1;
                }
              }
        }
    }

  switch (yycount)
    {
# define YYCASE_(N, S)                      \
      case N:                               \
        yyformat = S;                       \
      break
      YYCASE_(0, YY_("syntax error"));
      YYCASE_(1, YY_("syntax error, unexpected %s"));
      YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
      YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
      YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
      YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
# undef YYCASE_
    }

  {
    YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
    if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
      return 2;
    yysize = yysize1;
  }

  if (*yymsg_alloc < yysize)
    {
      *yymsg_alloc = 2 * yysize;
      if (! (yysize <= *yymsg_alloc
             && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
        *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
      return 1;
    }

  /* Avoid sprintf, as that infringes on the user's name space.
     Don't have undefined behavior even if the translation
     produced a string with the wrong number of "%s"s.  */
  {
    char *yyp = *yymsg;
    int yyi = 0;
    while ((*yyp = *yyformat) != '\0')
      if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
        {
          yyp += yytnamerr (yyp, yyarg[yyi++]);
          yyformat += 2;
        }
      else
        {
          yyp++;
          yyformat++;
        }
  }
  return 0;
}
#endif /* YYERROR_VERBOSE */

/*-----------------------------------------------.
| Release the memory associated to this symbol.  |
`-----------------------------------------------*/

/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
#else
static void
yydestruct (yymsg, yytype, yyvaluep)
    const char *yymsg;
    int yytype;
    YYSTYPE *yyvaluep;
#endif
{
  YYUSE (yyvaluep);

  if (!yymsg)
    yymsg = "Deleting";
  YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);

  switch (yytype)
    {

      default:
        break;
    }
}




/* The lookahead symbol.  */
int yychar;


#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif

/* The semantic value of the lookahead symbol.  */
YYSTYPE yylval YY_INITIAL_VALUE(yyval_default);

/* Number of syntax errors so far.  */
int yynerrs;


/*----------.
| yyparse.  |
`----------*/

#ifdef YYPARSE_PARAM
#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
int
yyparse (void *YYPARSE_PARAM)
#else
int
yyparse (YYPARSE_PARAM)
    void *YYPARSE_PARAM;
#endif
#else /* ! YYPARSE_PARAM */
#if (defined __STDC__ || defined __C99__FUNC__ \
     || defined __cplusplus || defined _MSC_VER)
int
yyparse (void)
#else