/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 42 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile extern char *yytext; #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" DeclarationNode *theTree = 0; // the resulting parse tree LinkageSpec::Type linkage = LinkageSpec::Cforall; std::stack< LinkageSpec::Type > linkageStack; TypedefTable typedefTable; /* Line 268 of yacc.c */ #line 94 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, VALIST = 279, BOOL = 280, COMPLEX = 281, IMAGINARY = 282, TYPEOF = 283, LABEL = 284, ENUM = 285, STRUCT = 286, UNION = 287, OTYPE = 288, FTYPE = 289, DTYPE = 290, TRAIT = 291, SIZEOF = 292, OFFSETOF = 293, ATTRIBUTE = 294, EXTENSION = 295, IF = 296, ELSE = 297, SWITCH = 298, CASE = 299, DEFAULT = 300, DO = 301, WHILE = 302, FOR = 303, BREAK = 304, CONTINUE = 305, GOTO = 306, RETURN = 307, CHOOSE = 308, DISABLE = 309, ENABLE = 310, FALLTHRU = 311, TRY = 312, CATCH = 313, CATCHRESUME = 314, FINALLY = 315, THROW = 316, THROWRESUME = 317, AT = 318, ASM = 319, ALIGNAS = 320, ALIGNOF = 321, ATOMIC = 322, GENERIC = 323, NORETURN = 324, STATICASSERT = 325, THREADLOCAL = 326, IDENTIFIER = 327, QUOTED_IDENTIFIER = 328, TYPEDEFname = 329, TYPEGENname = 330, ATTR_IDENTIFIER = 331, ATTR_TYPEDEFname = 332, ATTR_TYPEGENname = 333, INTEGERconstant = 334, FLOATINGconstant = 335, CHARACTERconstant = 336, STRINGliteral = 337, ZERO = 338, ONE = 339, ARROW = 340, ICR = 341, DECR = 342, LS = 343, RS = 344, LE = 345, GE = 346, EQ = 347, NE = 348, ANDAND = 349, OROR = 350, ELLIPSIS = 351, MULTassign = 352, DIVassign = 353, MODassign = 354, PLUSassign = 355, MINUSassign = 356, LSassign = 357, RSassign = 358, ANDassign = 359, ERassign = 360, ORassign = 361, ATassign = 362, THEN = 363 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define VALIST 279 #define BOOL 280 #define COMPLEX 281 #define IMAGINARY 282 #define TYPEOF 283 #define LABEL 284 #define ENUM 285 #define STRUCT 286 #define UNION 287 #define OTYPE 288 #define FTYPE 289 #define DTYPE 290 #define TRAIT 291 #define SIZEOF 292 #define OFFSETOF 293 #define ATTRIBUTE 294 #define EXTENSION 295 #define IF 296 #define ELSE 297 #define SWITCH 298 #define CASE 299 #define DEFAULT 300 #define DO 301 #define WHILE 302 #define FOR 303 #define BREAK 304 #define CONTINUE 305 #define GOTO 306 #define RETURN 307 #define CHOOSE 308 #define DISABLE 309 #define ENABLE 310 #define FALLTHRU 311 #define TRY 312 #define CATCH 313 #define CATCHRESUME 314 #define FINALLY 315 #define THROW 316 #define THROWRESUME 317 #define AT 318 #define ASM 319 #define ALIGNAS 320 #define ALIGNOF 321 #define ATOMIC 322 #define GENERIC 323 #define NORETURN 324 #define STATICASSERT 325 #define THREADLOCAL 326 #define IDENTIFIER 327 #define QUOTED_IDENTIFIER 328 #define TYPEDEFname 329 #define TYPEGENname 330 #define ATTR_IDENTIFIER 331 #define ATTR_TYPEDEFname 332 #define ATTR_TYPEGENname 333 #define INTEGERconstant 334 #define FLOATINGconstant 335 #define CHARACTERconstant 336 #define STRINGliteral 337 #define ZERO 338 #define ONE 339 #define ARROW 340 #define ICR 341 #define DECR 342 #define LS 343 #define RS 344 #define LE 345 #define GE 346 #define EQ 347 #define NE 348 #define ANDAND 349 #define OROR 350 #define ELLIPSIS 351 #define MULTassign 352 #define DIVassign 353 #define MODassign 354 #define PLUSassign 355 #define MINUSassign 356 #define LSassign 357 #define RSassign 358 #define ANDassign 359 #define ERassign 360 #define ORassign 361 #define ATassign 362 #define THEN 363 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 110 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantNode *constant; LabelNode *label; InitializerNode *in; OperKinds op; bool flag; /* Line 293 of yacc.c */ #line 363 "Parser/parser.cc" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif /* Copy the second part of user declarations. */ /* Line 343 of yacc.c */ #line 375 "Parser/parser.cc" #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 /* 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 /* 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 /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* 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 /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 251 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10969 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 241 /* YYNRULES -- Number of rules. */ #define YYNRULES 754 /* YYNRULES -- Number of states. */ #define YYNSTATES 1577 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 363 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 122, 2, 2, 2, 125, 119, 2, 109, 110, 118, 120, 116, 121, 113, 124, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 117, 132, 126, 131, 127, 130, 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, 111, 2, 112, 128, 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, 114, 129, 115, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108 }; #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, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 34, 36, 38, 42, 46, 48, 55, 60, 64, 72, 76, 84, 87, 90, 98, 103, 105, 109, 110, 112, 116, 124, 134, 136, 140, 142, 146, 154, 158, 166, 168, 170, 172, 175, 178, 181, 184, 187, 190, 195, 202, 204, 209, 214, 217, 222, 224, 226, 228, 230, 232, 234, 236, 241, 246, 248, 252, 256, 260, 262, 266, 270, 272, 276, 280, 282, 286, 290, 294, 298, 300, 304, 308, 310, 314, 316, 320, 322, 326, 328, 332, 334, 338, 340, 346, 351, 357, 359, 361, 365, 368, 369, 371, 373, 375, 377, 379, 381, 383, 385, 387, 389, 391, 393, 396, 402, 409, 417, 419, 423, 425, 429, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 455, 460, 463, 471, 473, 477, 479, 482, 484, 487, 489, 492, 495, 501, 509, 515, 525, 531, 541, 543, 547, 549, 551, 555, 559, 562, 564, 567, 570, 571, 573, 576, 580, 581, 583, 586, 590, 594, 599, 600, 602, 604, 607, 613, 621, 628, 635, 640, 644, 649, 652, 656, 659, 663, 667, 671, 675, 681, 685, 689, 694, 696, 702, 709, 715, 722, 732, 743, 753, 764, 767, 769, 772, 775, 778, 780, 787, 796, 807, 820, 835, 836, 838, 839, 841, 843, 847, 852, 860, 861, 863, 867, 869, 873, 875, 877, 879, 883, 885, 887, 889, 893, 894, 896, 900, 905, 907, 911, 913, 915, 919, 923, 927, 931, 935, 938, 942, 949, 953, 957, 962, 964, 967, 970, 974, 980, 989, 997, 1005, 1011, 1021, 1024, 1027, 1033, 1037, 1043, 1048, 1052, 1057, 1062, 1070, 1074, 1078, 1082, 1086, 1091, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1115, 1117, 1119, 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1137, 1143, 1145, 1148, 1152, 1154, 1157, 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1183, 1185, 1187, 1189, 1191, 1193, 1195, 1197, 1199, 1201, 1203, 1206, 1209, 1213, 1217, 1219, 1223, 1225, 1228, 1231, 1234, 1239, 1244, 1249, 1254, 1256, 1259, 1262, 1266, 1268, 1271, 1274, 1276, 1279, 1282, 1286, 1288, 1291, 1294, 1296, 1298, 1303, 1306, 1307, 1314, 1322, 1325, 1328, 1331, 1332, 1335, 1338, 1342, 1345, 1349, 1351, 1354, 1358, 1361, 1364, 1369, 1370, 1372, 1375, 1378, 1380, 1381, 1383, 1386, 1389, 1395, 1398, 1399, 1407, 1410, 1415, 1416, 1419, 1420, 1422, 1424, 1426, 1432, 1438, 1444, 1446, 1452, 1458, 1468, 1470, 1476, 1477, 1479, 1481, 1487, 1489, 1491, 1497, 1503, 1505, 1509, 1513, 1518, 1520, 1522, 1524, 1526, 1529, 1531, 1535, 1539, 1541, 1544, 1546, 1550, 1552, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1575, 1577, 1579, 1581, 1584, 1585, 1588, 1591, 1593, 1598, 1599, 1601, 1604, 1608, 1613, 1616, 1619, 1621, 1624, 1626, 1629, 1635, 1641, 1649, 1656, 1658, 1661, 1664, 1668, 1670, 1673, 1676, 1681, 1684, 1689, 1690, 1695, 1698, 1700, 1702, 1704, 1705, 1708, 1714, 1720, 1734, 1736, 1738, 1742, 1746, 1749, 1753, 1757, 1760, 1765, 1767, 1774, 1784, 1785, 1797, 1799, 1803, 1807, 1811, 1813, 1815, 1821, 1824, 1830, 1831, 1833, 1835, 1839, 1840, 1842, 1844, 1846, 1848, 1849, 1856, 1859, 1861, 1864, 1869, 1872, 1876, 1880, 1884, 1889, 1895, 1901, 1907, 1914, 1916, 1918, 1920, 1924, 1925, 1931, 1932, 1934, 1936, 1939, 1946, 1948, 1952, 1953, 1955, 1960, 1962, 1964, 1966, 1968, 1971, 1973, 1976, 1979, 1981, 1985, 1988, 1992, 1996, 1999, 2004, 2009, 2013, 2022, 2026, 2029, 2031, 2034, 2041, 2050, 2054, 2057, 2061, 2065, 2070, 2075, 2079, 2081, 2083, 2085, 2090, 2097, 2101, 2104, 2108, 2112, 2117, 2122, 2126, 2129, 2131, 2134, 2137, 2139, 2143, 2146, 2150, 2154, 2157, 2162, 2167, 2171, 2178, 2187, 2191, 2194, 2196, 2199, 2202, 2205, 2209, 2213, 2216, 2221, 2226, 2230, 2237, 2246, 2250, 2253, 2255, 2258, 2261, 2263, 2265, 2268, 2272, 2276, 2279, 2284, 2291, 2300, 2302, 2305, 2308, 2310, 2313, 2316, 2320, 2324, 2326, 2331, 2336, 2340, 2346, 2355, 2359, 2362, 2366, 2368, 2374, 2380, 2387, 2394, 2396, 2399, 2402, 2404, 2407, 2410, 2414, 2418, 2420, 2425, 2430, 2434, 2440, 2449, 2453, 2455, 2458, 2460, 2463, 2470, 2476, 2483, 2491, 2499, 2501, 2504, 2507, 2509, 2512, 2515, 2519, 2523, 2525, 2530, 2535, 2539, 2548, 2552, 2554, 2556, 2559, 2561, 2563, 2566, 2570, 2573, 2577, 2580, 2584, 2588, 2591, 2596, 2600, 2603, 2607, 2610, 2615, 2619, 2622, 2629, 2636, 2643, 2651, 2653, 2656, 2658, 2660, 2662, 2665, 2669, 2672, 2676, 2679, 2683, 2687, 2692, 2695, 2699, 2704, 2707, 2713, 2719, 2726, 2733, 2734, 2736, 2737 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 302, 0, -1, -1, -1, 79, -1, 80, -1, 81, -1, 72, -1, 76, -1, 140, -1, 72, -1, 76, -1, 72, -1, 140, -1, 83, -1, 84, -1, 82, -1, 141, 82, -1, 72, -1, 140, -1, 109, 169, 110, -1, 109, 173, 110, -1, 142, -1, 143, 111, 134, 164, 135, 112, -1, 143, 109, 144, 110, -1, 143, 113, 139, -1, 143, 113, 111, 134, 146, 135, 112, -1, 143, 85, 139, -1, 143, 85, 111, 134, 146, 135, 112, -1, 143, 86, -1, 143, 87, -1, 109, 275, 110, 114, 279, 372, 115, -1, 143, 114, 144, 115, -1, 145, -1, 144, 116, 145, -1, -1, 164, -1, 139, 117, 164, -1, 111, 134, 164, 135, 112, 117, 164, -1, 111, 134, 164, 116, 168, 135, 112, 117, 164, -1, 147, -1, 146, 116, 147, -1, 139, -1, 139, 113, 147, -1, 139, 113, 111, 134, 146, 135, 112, -1, 139, 85, 147, -1, 139, 85, 111, 134, 146, 135, 112, -1, 143, -1, 136, -1, 141, -1, 40, 151, -1, 149, 151, -1, 150, 151, -1, 86, 148, -1, 87, 148, -1, 37, 148, -1, 37, 109, 275, 110, -1, 38, 109, 275, 116, 139, 110, -1, 76, -1, 76, 109, 276, 110, -1, 76, 109, 145, 110, -1, 66, 148, -1, 66, 109, 275, 110, -1, 118, -1, 119, -1, 120, -1, 121, -1, 122, -1, 123, -1, 148, -1, 109, 275, 110, 151, -1, 109, 275, 110, 167, -1, 151, -1, 152, 118, 151, -1, 152, 124, 151, -1, 152, 125, 151, -1, 152, -1, 153, 120, 152, -1, 153, 121, 152, -1, 153, -1, 154, 88, 153, -1, 154, 89, 153, -1, 154, -1, 155, 126, 154, -1, 155, 127, 154, -1, 155, 90, 154, -1, 155, 91, 154, -1, 155, -1, 156, 92, 155, -1, 156, 93, 155, -1, 156, -1, 157, 119, 156, -1, 157, -1, 158, 128, 157, -1, 158, -1, 159, 129, 158, -1, 159, -1, 160, 94, 159, -1, 160, -1, 161, 95, 160, -1, 161, -1, 161, 130, 169, 117, 162, -1, 161, 130, 117, 162, -1, 161, 130, 169, 117, 167, -1, 162, -1, 162, -1, 148, 166, 164, -1, 167, 373, -1, -1, 164, -1, 131, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 111, 112, -1, 111, 134, 164, 135, 112, -1, 111, 134, 116, 168, 135, 112, -1, 111, 134, 164, 116, 168, 135, 112, -1, 165, -1, 168, 116, 165, -1, 164, -1, 169, 116, 164, -1, -1, 169, -1, 172, -1, 173, -1, 177, -1, 178, -1, 190, -1, 192, -1, 193, -1, 198, -1, 128, 143, 114, 144, 115, 132, -1, 72, 117, 312, 171, -1, 114, 115, -1, 114, 134, 134, 209, 174, 135, 115, -1, 175, -1, 174, 134, 175, -1, 212, -1, 40, 212, -1, 308, -1, 171, 135, -1, 171, -1, 176, 171, -1, 170, 132, -1, 41, 109, 169, 110, 171, -1, 41, 109, 169, 110, 171, 42, 171, -1, 43, 109, 169, 110, 183, -1, 43, 109, 169, 110, 114, 134, 205, 184, 115, -1, 53, 109, 169, 110, 183, -1, 53, 109, 169, 110, 114, 134, 205, 186, 115, -1, 163, -1, 163, 96, 163, -1, 310, -1, 179, -1, 180, 116, 179, -1, 44, 180, 117, -1, 45, 117, -1, 181, -1, 182, 181, -1, 182, 171, -1, -1, 185, -1, 182, 176, -1, 185, 182, 176, -1, -1, 187, -1, 182, 189, -1, 182, 176, 188, -1, 187, 182, 189, -1, 187, 182, 176, 188, -1, -1, 189, -1, 56, -1, 56, 132, -1, 47, 109, 169, 110, 171, -1, 46, 171, 47, 109, 169, 110, 132, -1, 48, 109, 134, 191, 110, 171, -1, 170, 135, 132, 170, 132, 170, -1, 212, 170, 132, 170, -1, 51, 72, 132, -1, 51, 118, 169, 132, -1, 50, 132, -1, 50, 72, 132, -1, 49, 132, -1, 49, 72, 132, -1, 52, 170, 132, -1, 61, 165, 132, -1, 62, 165, 132, -1, 62, 165, 63, 164, 132, -1, 57, 173, 194, -1, 57, 173, 196, -1, 57, 173, 194, 196, -1, 195, -1, 58, 109, 96, 110, 173, -1, 195, 58, 109, 96, 110, 173, -1, 59, 109, 96, 110, 173, -1, 195, 59, 109, 96, 110, 173, -1, 58, 109, 134, 134, 197, 135, 110, 173, 135, -1, 195, 58, 109, 134, 134, 197, 135, 110, 173, 135, -1, 59, 109, 134, 134, 197, 135, 110, 173, 135, -1, 195, 59, 109, 134, 134, 197, 135, 110, 173, 135, -1, 60, 173, -1, 225, -1, 225, 309, -1, 225, 357, -1, 366, 139, -1, 366, -1, 64, 199, 109, 141, 110, 132, -1, 64, 199, 109, 141, 117, 200, 110, 132, -1, 64, 199, 109, 141, 117, 200, 117, 200, 110, 132, -1, 64, 199, 109, 141, 117, 200, 117, 200, 117, 203, 110, 132, -1, 64, 199, 51, 109, 141, 117, 117, 200, 117, 203, 117, 204, 110, 132, -1, -1, 11, -1, -1, 201, -1, 202, -1, 201, 116, 202, -1, 141, 109, 163, 110, -1, 111, 163, 112, 141, 109, 163, 110, -1, -1, 141, -1, 203, 116, 141, -1, 139, -1, 204, 116, 139, -1, 135, -1, 206, -1, 212, -1, 206, 134, 212, -1, 135, -1, 208, -1, 222, -1, 208, 134, 222, -1, -1, 210, -1, 29, 211, 132, -1, 210, 29, 211, 132, -1, 274, -1, 211, 116, 274, -1, 213, -1, 222, -1, 214, 135, 132, -1, 219, 135, 132, -1, 216, 135, 132, -1, 293, 135, 132, -1, 296, 135, 132, -1, 215, 277, -1, 231, 215, 277, -1, 214, 135, 116, 134, 272, 277, -1, 367, 272, 311, -1, 370, 272, 311, -1, 227, 370, 272, 311, -1, 217, -1, 227, 217, -1, 231, 217, -1, 231, 227, 217, -1, 216, 135, 116, 134, 272, -1, 111, 112, 272, 109, 134, 260, 135, 110, -1, 370, 272, 109, 134, 260, 135, 110, -1, 218, 272, 109, 134, 260, 135, 110, -1, 111, 134, 262, 135, 112, -1, 111, 134, 262, 135, 116, 134, 263, 135, 112, -1, 3, 215, -1, 3, 217, -1, 219, 135, 116, 134, 139, -1, 3, 225, 309, -1, 220, 135, 116, 134, 309, -1, 227, 3, 225, 309, -1, 225, 3, 309, -1, 225, 3, 227, 309, -1, 3, 139, 131, 164, -1, 221, 135, 116, 134, 139, 131, 164, -1, 223, 135, 132, -1, 220, 135, 132, -1, 221, 135, 132, -1, 240, 135, 132, -1, 224, 309, 311, 277, -1, 223, 116, 312, 309, 311, 277, -1, 236, -1, 240, -1, 242, -1, 283, -1, 237, -1, 241, -1, 243, -1, 284, -1, -1, 227, -1, 228, -1, 227, 228, -1, 229, -1, 314, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 109, 230, 286, 110, -1, 232, -1, 227, 232, -1, 231, 227, 232, -1, 233, -1, 232, 233, -1, 234, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 69, -1, 71, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 25, -1, 26, -1, 27, -1, 24, -1, 237, -1, 231, 237, -1, 236, 233, -1, 236, 233, 227, -1, 236, 233, 237, -1, 238, -1, 226, 239, 226, -1, 235, -1, 227, 235, -1, 238, 228, -1, 238, 235, -1, 28, 109, 276, 110, -1, 28, 109, 169, 110, -1, 78, 109, 276, 110, -1, 78, 109, 169, 110, -1, 241, -1, 231, 241, -1, 240, 233, -1, 240, 233, 227, -1, 244, -1, 227, 244, -1, 241, 228, -1, 243, -1, 231, 243, -1, 242, 233, -1, 242, 233, 227, -1, 74, -1, 227, 74, -1, 243, 228, -1, 245, -1, 256, -1, 247, 114, 248, 115, -1, 247, 274, -1, -1, 247, 274, 246, 114, 248, 115, -1, 247, 109, 292, 110, 114, 248, 115, -1, 247, 285, -1, 31, 312, -1, 32, 312, -1, -1, 248, 249, -1, 250, 132, -1, 40, 250, 132, -1, 251, 132, -1, 40, 251, 132, -1, 366, -1, 366, 274, -1, 250, 116, 274, -1, 250, 116, -1, 225, 252, -1, 251, 116, 312, 252, -1, -1, 254, -1, 318, 253, -1, 331, 253, -1, 357, -1, -1, 254, -1, 117, 163, -1, 30, 312, -1, 255, 114, 258, 372, 115, -1, 255, 274, -1, -1, 255, 274, 257, 114, 258, 372, 115, -1, 274, 259, -1, 258, 116, 274, 259, -1, -1, 131, 163, -1, -1, 261, -1, 263, -1, 262, -1, 262, 135, 116, 134, 263, -1, 263, 135, 116, 134, 96, -1, 262, 135, 116, 134, 96, -1, 267, -1, 263, 135, 116, 134, 267, -1, 262, 135, 116, 134, 267, -1, 262, 135, 116, 134, 263, 135, 116, 134, 267, -1, 268, -1, 263, 135, 116, 134, 268, -1, -1, 265, -1, 266, -1, 266, 135, 116, 134, 96, -1, 270, -1, 269, -1, 266, 135, 116, 134, 270, -1, 266, 135, 116, 134, 269, -1, 269, -1, 362, 272, 373, -1, 370, 272, 373, -1, 227, 370, 272, 373, -1, 217, -1, 270, -1, 362, -1, 370, -1, 227, 370, -1, 371, -1, 224, 336, 373, -1, 224, 340, 373, -1, 224, -1, 224, 351, -1, 139, -1, 271, 116, 139, -1, 137, -1, 74, -1, 75, -1, 138, -1, 74, -1, 75, -1, 139, -1, 74, -1, 75, -1, 366, -1, 225, -1, 225, 357, -1, 366, -1, 371, -1, 225, -1, 225, 345, -1, -1, 131, 278, -1, 107, 278, -1, 164, -1, 114, 279, 372, 115, -1, -1, 278, -1, 280, 278, -1, 279, 116, 278, -1, 279, 116, 280, 278, -1, 281, 117, -1, 274, 117, -1, 282, -1, 281, 282, -1, 80, -1, 113, 274, -1, 111, 134, 164, 135, 112, -1, 111, 134, 310, 135, 112, -1, 111, 134, 163, 96, 163, 135, 112, -1, 113, 111, 134, 146, 135, 112, -1, 284, -1, 231, 284, -1, 283, 233, -1, 283, 233, 227, -1, 285, -1, 227, 285, -1, 284, 228, -1, 75, 109, 292, 110, -1, 287, 373, -1, 286, 116, 287, 373, -1, -1, 289, 274, 288, 290, -1, 225, 336, -1, 33, -1, 35, -1, 34, -1, -1, 290, 291, -1, 129, 274, 109, 292, 110, -1, 129, 114, 134, 298, 115, -1, 129, 109, 134, 286, 135, 110, 114, 134, 298, 115, 109, 292, 110, -1, 276, -1, 164, -1, 292, 116, 276, -1, 292, 116, 164, -1, 33, 294, -1, 232, 33, 294, -1, 293, 116, 294, -1, 295, 290, -1, 295, 290, 131, 276, -1, 274, -1, 273, 109, 134, 286, 135, 110, -1, 36, 274, 109, 134, 286, 135, 110, 114, 115, -1, -1, 36, 274, 109, 134, 286, 135, 110, 114, 297, 298, 115, -1, 299, -1, 298, 134, 299, -1, 300, 135, 132, -1, 301, 135, 132, -1, 215, -1, 217, -1, 300, 135, 116, 134, 272, -1, 225, 309, -1, 301, 135, 116, 134, 309, -1, -1, 303, -1, 305, -1, 303, 134, 305, -1, -1, 303, -1, 212, -1, 307, -1, 198, -1, -1, 5, 82, 306, 114, 304, 115, -1, 40, 305, -1, 308, -1, 323, 173, -1, 327, 134, 207, 173, -1, 216, 173, -1, 224, 323, 173, -1, 227, 323, 173, -1, 231, 323, 173, -1, 231, 227, 323, 173, -1, 224, 327, 134, 207, 173, -1, 227, 327, 134, 207, 173, -1, 231, 327, 134, 207, 173, -1, 231, 227, 327, 134, 207, 173, -1, 318, -1, 331, -1, 323, -1, 163, 123, 163, -1, -1, 64, 109, 141, 110, 312, -1, -1, 313, -1, 314, -1, 313, 314, -1, 39, 109, 109, 315, 110, 110, -1, 316, -1, 315, 116, 316, -1, -1, 317, -1, 317, 109, 170, 110, -1, 272, -1, 234, -1, 235, -1, 228, -1, 319, 312, -1, 320, -1, 321, 312, -1, 322, 312, -1, 137, -1, 109, 319, 110, -1, 149, 318, -1, 149, 227, 318, -1, 109, 320, 110, -1, 319, 349, -1, 109, 320, 110, 349, -1, 109, 321, 110, 350, -1, 109, 321, 110, -1, 109, 320, 110, 109, 134, 264, 135, 110, -1, 109, 322, 110, -1, 324, 312, -1, 325, -1, 326, 312, -1, 319, 109, 134, 264, 135, 110, -1, 109, 325, 110, 109, 134, 264, 135, 110, -1, 109, 324, 110, -1, 149, 323, -1, 149, 227, 323, -1, 109, 325, 110, -1, 109, 325, 110, 349, -1, 109, 326, 110, 350, -1, 109, 326, 110, -1, 328, -1, 329, -1, 330, -1, 319, 109, 271, 110, -1, 109, 329, 110, 109, 271, 110, -1, 109, 328, 110, -1, 149, 327, -1, 149, 227, 327, -1, 109, 329, 110, -1, 109, 329, 110, 349, -1, 109, 330, 110, 350, -1, 109, 330, 110, -1, 332, 312, -1, 333, -1, 334, 312, -1, 335, 312, -1, 341, -1, 109, 332, 110, -1, 149, 331, -1, 149, 227, 331, -1, 109, 333, 110, -1, 332, 349, -1, 109, 333, 110, 349, -1, 109, 334, 110, 350, -1, 109, 334, 110, -1, 332, 109, 134, 264, 135, 110, -1, 109, 333, 110, 109, 134, 264, 135, 110, -1, 109, 335, 110, -1, 319, 312, -1, 337, -1, 338, 312, -1, 339, 312, -1, 149, 336, -1, 149, 227, 336, -1, 109, 337, 110, -1, 319, 355, -1, 109, 337, 110, 349, -1, 109, 338, 110, 350, -1, 109, 338, 110, -1, 319, 109, 134, 264, 135, 110, -1, 109, 337, 110, 109, 134, 264, 135, 110, -1, 109, 339, 110, -1, 341, 312, -1, 342, -1, 343, 312, -1, 344, 312, -1, 74, -1, 75, -1, 149, 340, -1, 149, 227, 340, -1, 109, 342, 110, -1, 341, 355, -1, 109, 342, 110, 355, -1, 341, 109, 134, 264, 135, 110, -1, 109, 342, 110, 109, 134, 264, 135, 110, -1, 346, -1, 347, 312, -1, 348, 312, -1, 149, -1, 149, 227, -1, 149, 345, -1, 149, 227, 345, -1, 109, 346, 110, -1, 349, -1, 109, 346, 110, 349, -1, 109, 347, 110, 350, -1, 109, 347, 110, -1, 109, 134, 264, 135, 110, -1, 109, 346, 110, 109, 134, 264, 135, 110, -1, 109, 348, 110, -1, 111, 112, -1, 111, 112, 350, -1, 350, -1, 111, 134, 164, 135, 112, -1, 111, 134, 118, 135, 112, -1, 350, 111, 134, 164, 135, 112, -1, 350, 111, 134, 118, 135, 112, -1, 352, -1, 353, 312, -1, 354, 312, -1, 149, -1, 149, 227, -1, 149, 351, -1, 149, 227, 351, -1, 109, 352, 110, -1, 355, -1, 109, 352, 110, 355, -1, 109, 353, 110, 350, -1, 109, 353, 110, -1, 109, 134, 264, 135, 110, -1, 109, 352, 110, 109, 134, 264, 135, 110, -1, 109, 354, 110, -1, 356, -1, 356, 350, -1, 350, -1, 111, 112, -1, 111, 134, 227, 118, 135, 112, -1, 111, 134, 227, 135, 112, -1, 111, 134, 227, 164, 135, 112, -1, 111, 134, 7, 226, 164, 135, 112, -1, 111, 134, 227, 7, 164, 135, 112, -1, 358, -1, 359, 312, -1, 360, 312, -1, 149, -1, 149, 227, -1, 149, 357, -1, 149, 227, 357, -1, 109, 358, 110, -1, 349, -1, 109, 358, 110, 349, -1, 109, 359, 110, 350, -1, 109, 359, 110, -1, 109, 358, 110, 109, 134, 264, 135, 110, -1, 109, 360, 110, -1, 362, -1, 370, -1, 227, 370, -1, 363, -1, 364, -1, 149, 225, -1, 227, 149, 225, -1, 149, 371, -1, 227, 149, 371, -1, 149, 361, -1, 227, 149, 361, -1, 111, 112, 225, -1, 365, 225, -1, 111, 112, 350, 225, -1, 365, 350, 225, -1, 350, 225, -1, 111, 112, 363, -1, 365, 363, -1, 111, 112, 350, 363, -1, 365, 350, 363, -1, 350, 363, -1, 111, 134, 227, 118, 135, 112, -1, 111, 134, 227, 164, 135, 112, -1, 111, 134, 231, 164, 135, 112, -1, 111, 134, 231, 227, 164, 135, 112, -1, 370, -1, 227, 370, -1, 367, -1, 368, -1, 369, -1, 149, 225, -1, 227, 149, 225, -1, 149, 371, -1, 227, 149, 371, -1, 149, 366, -1, 227, 149, 366, -1, 111, 112, 225, -1, 111, 112, 350, 225, -1, 350, 225, -1, 111, 112, 368, -1, 111, 112, 350, 368, -1, 350, 368, -1, 111, 134, 263, 135, 112, -1, 111, 112, 109, 260, 110, -1, 370, 109, 134, 260, 135, 110, -1, 218, 109, 134, 260, 135, 110, -1, -1, 116, -1, -1, 131, 164, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 291, 291, 297, 306, 307, 308, 312, 313, 314, 318, 319, 323, 324, 328, 329, 333, 334, 340, 342, 344, 346, 351, 352, 358, 362, 364, 365, 367, 368, 370, 372, 374, 383, 384, 390, 391, 392, 397, 399, 404, 405, 409, 413, 415, 417, 419, 424, 427, 429, 431, 436, 449, 451, 453, 455, 457, 459, 461, 463, 465, 467, 469, 476, 477, 483, 484, 485, 486, 490, 491, 493, 498, 499, 501, 503, 508, 509, 511, 516, 517, 519, 524, 525, 527, 529, 531, 536, 537, 539, 544, 545, 550, 551, 556, 557, 562, 563, 568, 569, 574, 575, 578, 580, 585, 590, 591, 593, 599, 600, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 620, 622, 624, 626, 631, 632, 637, 638, 644, 645, 651, 652, 653, 654, 655, 656, 657, 658, 659, 669, 676, 678, 688, 689, 694, 696, 702, 704, 708, 709, 714, 719, 722, 724, 726, 736, 738, 749, 750, 752, 756, 758, 762, 763, 768, 769, 773, 778, 779, 783, 785, 791, 792, 796, 798, 800, 802, 808, 809, 813, 815, 820, 822, 824, 829, 831, 836, 838, 842, 845, 849, 852, 856, 858, 862, 864, 871, 873, 875, 884, 886, 888, 890, 892, 897, 899, 901, 903, 908, 921, 922, 927, 929, 934, 938, 940, 942, 944, 946, 952, 953, 959, 960, 964, 965, 970, 972, 978, 979, 981, 986, 988, 995, 997, 1001, 1002, 1007, 1009, 1013, 1014, 1018, 1020, 1024, 1025, 1029, 1030, 1034, 1035, 1050, 1051, 1052, 1053, 1054, 1058, 1063, 1070, 1080, 1085, 1090, 1098, 1103, 1108, 1113, 1118, 1126, 1148, 1153, 1160, 1162, 1169, 1174, 1179, 1190, 1195, 1200, 1205, 1210, 1219, 1224, 1232, 1233, 1234, 1235, 1241, 1246, 1254, 1255, 1256, 1257, 1261, 1262, 1263, 1264, 1269, 1270, 1279, 1280, 1285, 1286, 1291, 1293, 1295, 1297, 1299, 1302, 1301, 1313, 1314, 1316, 1326, 1327, 1332, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1355, 1357, 1359, 1361, 1363, 1365, 1367, 1369, 1371, 1373, 1375, 1377, 1379, 1385, 1386, 1388, 1390, 1392, 1397, 1398, 1404, 1405, 1407, 1409, 1414, 1416, 1418, 1420, 1425, 1426, 1428, 1430, 1435, 1436, 1438, 1443, 1444, 1446, 1448, 1453, 1455, 1457, 1462, 1463, 1467, 1469, 1475, 1474, 1478, 1480, 1485, 1487, 1493, 1494, 1499, 1500, 1502, 1503, 1512, 1513, 1515, 1517, 1522, 1524, 1530, 1531, 1533, 1536, 1539, 1544, 1545, 1550, 1555, 1559, 1561, 1567, 1566, 1573, 1575, 1581, 1582, 1590, 1591, 1595, 1596, 1597, 1599, 1601, 1608, 1609, 1611, 1613, 1618, 1619, 1625, 1626, 1630, 1631, 1636, 1637, 1638, 1640, 1648, 1649, 1651, 1654, 1656, 1660, 1661, 1662, 1664, 1666, 1670, 1675, 1683, 1684, 1693, 1695, 1700, 1701, 1702, 1706, 1707, 1708, 1712, 1713, 1714, 1718, 1719, 1720, 1725, 1726, 1727, 1728, 1734, 1735, 1737, 1742, 1743, 1748, 1749, 1750, 1751, 1752, 1767, 1768, 1773, 1774, 1782, 1784, 1786, 1789, 1791, 1793, 1816, 1817, 1819, 1821, 1826, 1827, 1829, 1834, 1839, 1840, 1846, 1845, 1849, 1853, 1855, 1857, 1863, 1864, 1869, 1874, 1876, 1881, 1883, 1884, 1886, 1891, 1893, 1895, 1900, 1902, 1907, 1912, 1920, 1926, 1925, 1939, 1940, 1945, 1946, 1950, 1955, 1960, 1968, 1973, 1984, 1985, 1996, 1997, 2003, 2004, 2008, 2009, 2010, 2013, 2012, 2023, 2032, 2038, 2044, 2053, 2059, 2065, 2071, 2077, 2085, 2091, 2099, 2105, 2114, 2115, 2116, 2120, 2124, 2126, 2131, 2132, 2136, 2137, 2142, 2148, 2149, 2152, 2154, 2155, 2159, 2160, 2161, 2162, 2196, 2198, 2199, 2201, 2206, 2211, 2216, 2218, 2220, 2225, 2227, 2229, 2231, 2236, 2238, 2247, 2249, 2250, 2255, 2257, 2259, 2264, 2266, 2268, 2273, 2275, 2277, 2286, 2287, 2288, 2292, 2294, 2296, 2301, 2303, 2305, 2310, 2312, 2314, 2329, 2331, 2332, 2334, 2339, 2340, 2345, 2347, 2349, 2354, 2356, 2358, 2360, 2365, 2367, 2369, 2379, 2381, 2382, 2384, 2389, 2391, 2393, 2398, 2400, 2402, 2404, 2409, 2411, 2413, 2444, 2446, 2447, 2449, 2454, 2459, 2467, 2469, 2471, 2476, 2478, 2483, 2485, 2499, 2500, 2502, 2507, 2509, 2511, 2513, 2515, 2520, 2521, 2523, 2525, 2530, 2532, 2534, 2540, 2542, 2544, 2548, 2550, 2552, 2554, 2568, 2569, 2571, 2576, 2578, 2580, 2582, 2584, 2589, 2590, 2592, 2594, 2599, 2601, 2603, 2609, 2610, 2612, 2621, 2624, 2626, 2629, 2631, 2633, 2646, 2647, 2649, 2654, 2656, 2658, 2660, 2662, 2667, 2668, 2670, 2672, 2677, 2679, 2687, 2688, 2689, 2694, 2695, 2699, 2701, 2703, 2705, 2707, 2709, 2716, 2718, 2720, 2722, 2724, 2726, 2728, 2730, 2732, 2734, 2739, 2741, 2743, 2748, 2774, 2775, 2777, 2781, 2782, 2786, 2788, 2790, 2792, 2794, 2796, 2803, 2805, 2807, 2809, 2811, 2813, 2818, 2823, 2825, 2827, 2845, 2847, 2852, 2853 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TRAIT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "FLOATINGconstant", "CHARACTERconstant", "STRINGliteral", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "':'", "'*'", "'&'", "'+'", "'-'", "'!'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "unary_expression", "ptrref_operator", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "assignment_operator", "tuple", "tuple_expression_list", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "storage_class_name", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "$@2", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "$@3", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@4", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "trait_specifier", "$@5", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@6", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "variable_type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 40, 41, 91, 93, 46, 123, 125, 44, 58, 42, 38, 43, 45, 33, 126, 47, 37, 60, 62, 94, 124, 63, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 133, 134, 135, 136, 136, 136, 137, 137, 137, 138, 138, 139, 139, 140, 140, 141, 141, 142, 142, 142, 142, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 144, 144, 145, 145, 145, 145, 145, 146, 146, 147, 147, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, 150, 150, 150, 150, 151, 151, 151, 152, 152, 152, 152, 153, 153, 153, 154, 154, 154, 155, 155, 155, 155, 155, 156, 156, 156, 157, 157, 158, 158, 159, 159, 160, 160, 161, 161, 162, 162, 162, 162, 163, 164, 164, 164, 165, 165, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 167, 167, 167, 167, 168, 168, 169, 169, 170, 170, 171, 171, 171, 171, 171, 171, 171, 171, 171, 172, 173, 173, 174, 174, 175, 175, 175, 175, 176, 176, 177, 178, 178, 178, 178, 178, 178, 179, 179, 179, 180, 180, 181, 181, 182, 182, 183, 184, 184, 185, 185, 186, 186, 187, 187, 187, 187, 188, 188, 189, 189, 190, 190, 190, 191, 191, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 193, 193, 193, 194, 194, 194, 194, 194, 195, 195, 195, 195, 196, 197, 197, 197, 197, 197, 198, 198, 198, 198, 198, 199, 199, 200, 200, 201, 201, 202, 202, 203, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 213, 213, 213, 213, 213, 214, 214, 214, 215, 215, 215, 216, 216, 216, 216, 216, 217, 217, 217, 218, 218, 219, 219, 219, 220, 220, 220, 220, 220, 221, 221, 222, 222, 222, 222, 223, 223, 224, 224, 224, 224, 225, 225, 225, 225, 226, 226, 227, 227, 228, 228, 229, 229, 229, 229, 229, 230, 229, 231, 231, 231, 232, 232, 233, 234, 234, 234, 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 236, 236, 236, 236, 236, 237, 237, 238, 238, 238, 238, 239, 239, 239, 239, 240, 240, 240, 240, 241, 241, 241, 242, 242, 242, 242, 243, 243, 243, 244, 244, 245, 245, 246, 245, 245, 245, 247, 247, 248, 248, 249, 249, 249, 249, 250, 250, 250, 250, 251, 251, 252, 252, 252, 252, 252, 253, 253, 254, 255, 256, 256, 257, 256, 258, 258, 259, 259, 260, 260, 261, 261, 261, 261, 261, 262, 262, 262, 262, 263, 263, 264, 264, 265, 265, 266, 266, 266, 266, 267, 267, 267, 267, 267, 268, 268, 268, 268, 268, 269, 269, 270, 270, 271, 271, 272, 272, 272, 273, 273, 273, 274, 274, 274, 275, 275, 275, 276, 276, 276, 276, 277, 277, 277, 278, 278, 279, 279, 279, 279, 279, 280, 280, 281, 281, 282, 282, 282, 282, 282, 282, 283, 283, 283, 283, 284, 284, 284, 285, 286, 286, 288, 287, 287, 289, 289, 289, 290, 290, 291, 291, 291, 292, 292, 292, 292, 293, 293, 293, 294, 294, 295, 295, 296, 297, 296, 298, 298, 299, 299, 300, 300, 300, 301, 301, 302, 302, 303, 303, 304, 304, 305, 305, 305, 306, 305, 305, 307, 307, 307, 308, 308, 308, 308, 308, 308, 308, 308, 308, 309, 309, 309, 310, 311, 311, 312, 312, 313, 313, 314, 315, 315, 316, 316, 316, 317, 317, 317, 317, 318, 318, 318, 318, 319, 319, 320, 320, 320, 321, 321, 321, 321, 322, 322, 323, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 327, 327, 327, 328, 328, 328, 329, 329, 329, 330, 330, 330, 331, 331, 331, 331, 332, 332, 333, 333, 333, 334, 334, 334, 334, 335, 335, 335, 336, 336, 336, 336, 337, 337, 337, 338, 338, 338, 338, 339, 339, 339, 340, 340, 340, 340, 341, 341, 342, 342, 342, 343, 343, 344, 344, 345, 345, 345, 346, 346, 346, 346, 346, 347, 347, 347, 347, 348, 348, 348, 349, 349, 349, 350, 350, 350, 350, 351, 351, 351, 352, 352, 352, 352, 352, 353, 353, 353, 353, 354, 354, 354, 355, 355, 355, 356, 356, 356, 356, 356, 356, 357, 357, 357, 358, 358, 358, 358, 358, 359, 359, 359, 359, 360, 360, 361, 361, 361, 362, 362, 363, 363, 363, 363, 363, 363, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 365, 365, 365, 365, 366, 366, 366, 367, 367, 368, 368, 368, 368, 368, 368, 369, 369, 369, 369, 369, 369, 370, 371, 371, 371, 372, 372, 373, 373 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 3, 7, 9, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 6, 1, 4, 4, 2, 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 4, 5, 1, 1, 3, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 6, 7, 1, 3, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 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, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 0, 6, 7, 2, 2, 2, 0, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 2, 0, 7, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 1, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 5, 6, 6, 0, 1, 0, 2 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 294, 294, 315, 313, 316, 314, 317, 318, 300, 302, 301, 0, 303, 329, 321, 326, 324, 325, 323, 322, 327, 328, 333, 330, 331, 332, 549, 549, 549, 0, 0, 0, 294, 220, 304, 319, 320, 7, 360, 0, 8, 14, 15, 0, 2, 63, 64, 567, 9, 294, 527, 525, 247, 3, 455, 3, 260, 0, 3, 3, 3, 248, 3, 0, 0, 0, 295, 296, 298, 294, 307, 310, 312, 341, 286, 334, 339, 287, 349, 288, 356, 353, 363, 0, 0, 364, 289, 475, 479, 3, 3, 0, 2, 521, 526, 531, 299, 0, 0, 549, 579, 549, 2, 590, 591, 592, 294, 0, 733, 734, 0, 12, 0, 13, 294, 270, 271, 0, 295, 290, 291, 292, 293, 528, 305, 393, 550, 551, 371, 372, 12, 446, 447, 11, 442, 445, 0, 505, 500, 491, 446, 447, 0, 0, 530, 221, 0, 294, 0, 0, 0, 0, 0, 0, 0, 0, 294, 294, 2, 0, 735, 295, 584, 596, 739, 732, 730, 737, 0, 0, 0, 254, 2, 0, 534, 440, 441, 439, 0, 0, 0, 0, 549, 0, 636, 637, 0, 0, 547, 543, 549, 564, 549, 549, 545, 2, 544, 549, 603, 549, 549, 606, 0, 0, 0, 294, 294, 313, 361, 2, 294, 261, 297, 308, 342, 354, 480, 0, 2, 0, 455, 262, 295, 335, 350, 357, 476, 0, 2, 0, 311, 336, 343, 344, 0, 351, 355, 358, 362, 447, 294, 373, 366, 370, 0, 395, 477, 481, 0, 0, 0, 1, 294, 2, 532, 578, 580, 294, 2, 743, 295, 746, 547, 547, 0, 295, 0, 0, 273, 549, 545, 2, 294, 0, 0, 294, 552, 2, 503, 2, 556, 0, 0, 0, 0, 0, 0, 18, 58, 4, 5, 6, 16, 0, 0, 294, 2, 65, 66, 67, 68, 48, 19, 49, 22, 47, 69, 294, 0, 72, 76, 79, 82, 87, 90, 92, 94, 96, 98, 100, 105, 497, 753, 453, 496, 0, 451, 452, 0, 568, 583, 586, 589, 595, 598, 601, 360, 0, 2, 741, 0, 294, 744, 2, 63, 294, 3, 427, 0, 435, 295, 294, 307, 334, 287, 349, 356, 3, 3, 409, 413, 423, 428, 475, 294, 429, 708, 709, 294, 430, 432, 294, 2, 585, 597, 731, 2, 2, 249, 2, 460, 0, 458, 457, 456, 141, 2, 2, 251, 2, 2, 250, 2, 281, 2, 282, 0, 280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 569, 608, 0, 455, 2, 563, 572, 662, 565, 566, 535, 294, 2, 602, 611, 604, 605, 0, 276, 294, 294, 340, 295, 0, 295, 0, 294, 736, 740, 738, 536, 294, 547, 255, 263, 309, 0, 2, 537, 294, 501, 337, 338, 283, 352, 359, 0, 294, 0, 751, 400, 0, 478, 502, 252, 253, 522, 294, 437, 0, 294, 237, 0, 2, 239, 0, 295, 0, 257, 2, 258, 278, 0, 0, 2, 294, 547, 294, 488, 490, 489, 0, 0, 753, 0, 294, 0, 294, 492, 294, 562, 560, 561, 559, 0, 554, 557, 0, 0, 294, 55, 294, 69, 50, 294, 61, 294, 294, 53, 54, 2, 127, 0, 0, 449, 0, 448, 730, 121, 294, 17, 0, 29, 30, 35, 2, 0, 35, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 110, 0, 51, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 2, 648, 454, 645, 549, 549, 653, 482, 294, 2, 587, 588, 0, 599, 600, 0, 2, 742, 745, 121, 294, 0, 2, 710, 295, 714, 705, 706, 712, 0, 2, 2, 670, 549, 753, 619, 549, 549, 753, 549, 633, 549, 549, 684, 436, 667, 549, 549, 675, 682, 294, 431, 295, 0, 0, 294, 720, 295, 725, 753, 717, 294, 722, 753, 294, 294, 294, 0, 121, 0, 18, 5, 2, 0, 19, 0, 461, 751, 0, 0, 467, 241, 0, 294, 0, 0, 0, 547, 571, 575, 577, 607, 610, 614, 617, 570, 609, 0, 284, 660, 0, 294, 277, 0, 0, 0, 0, 275, 2, 0, 259, 538, 294, 0, 0, 294, 2, 365, 385, 374, 0, 0, 379, 373, 752, 0, 0, 398, 0, 295, 3, 416, 3, 420, 419, 593, 0, 533, 294, 63, 3, 294, 435, 295, 3, 429, 430, 2, 0, 0, 0, 487, 306, 294, 483, 485, 3, 2, 2, 0, 504, 3, 0, 556, 129, 0, 0, 222, 0, 0, 0, 2, 0, 0, 36, 0, 0, 121, 294, 20, 0, 21, 0, 694, 699, 450, 691, 549, 549, 0, 108, 3, 2, 27, 2, 0, 33, 0, 2, 25, 0, 106, 73, 74, 75, 77, 78, 80, 81, 85, 86, 83, 84, 88, 89, 91, 93, 95, 97, 99, 0, 0, 754, 294, 0, 0, 0, 649, 650, 646, 647, 499, 498, 294, 0, 294, 716, 294, 721, 295, 294, 664, 294, 294, 707, 663, 2, 294, 0, 0, 0, 0, 0, 0, 0, 0, 685, 0, 671, 622, 638, 672, 2, 618, 625, 433, 620, 621, 434, 2, 632, 641, 634, 635, 668, 669, 683, 711, 715, 713, 753, 268, 2, 747, 2, 424, 719, 724, 425, 0, 403, 3, 3, 3, 3, 455, 3, 0, 2, 470, 466, 752, 0, 462, 469, 2, 465, 468, 0, 294, 242, 264, 3, 272, 274, 0, 455, 2, 573, 574, 2, 612, 613, 0, 661, 539, 3, 346, 345, 348, 347, 294, 540, 0, 541, 373, 0, 0, 294, 294, 0, 0, 694, 383, 386, 390, 549, 390, 389, 382, 375, 549, 377, 380, 294, 400, 394, 104, 401, 751, 0, 0, 438, 240, 0, 0, 3, 2, 670, 431, 0, 529, 0, 753, 491, 0, 294, 294, 294, 0, 553, 555, 130, 0, 0, 215, 0, 0, 0, 223, 224, 56, 0, 62, 294, 0, 60, 59, 0, 2, 128, 0, 0, 0, 695, 696, 692, 693, 460, 70, 71, 109, 125, 3, 108, 0, 0, 0, 24, 35, 3, 0, 32, 102, 0, 3, 652, 656, 659, 651, 3, 594, 3, 718, 723, 2, 63, 294, 3, 3, 295, 0, 3, 624, 628, 631, 640, 674, 678, 681, 294, 3, 623, 639, 673, 294, 294, 426, 294, 294, 748, 0, 0, 0, 0, 256, 0, 104, 0, 3, 3, 0, 463, 0, 459, 0, 0, 245, 294, 0, 0, 129, 0, 0, 0, 0, 0, 129, 0, 0, 108, 108, 18, 2, 0, 0, 3, 131, 132, 2, 143, 133, 134, 135, 136, 137, 138, 145, 147, 0, 0, 0, 285, 294, 294, 549, 0, 542, 294, 376, 378, 0, 392, 695, 387, 391, 388, 381, 385, 368, 399, 0, 581, 2, 666, 665, 0, 671, 2, 484, 486, 506, 3, 514, 515, 0, 2, 510, 3, 3, 0, 0, 558, 222, 0, 0, 0, 222, 0, 0, 3, 37, 121, 698, 702, 704, 697, 751, 108, 0, 3, 663, 42, 3, 40, 3, 34, 0, 3, 101, 103, 0, 2, 654, 655, 0, 0, 294, 0, 0, 0, 3, 640, 0, 2, 626, 627, 2, 642, 2, 676, 677, 0, 0, 63, 0, 3, 3, 3, 3, 411, 410, 414, 2, 2, 750, 749, 122, 0, 0, 0, 0, 3, 464, 3, 0, 243, 146, 3, 295, 294, 0, 0, 0, 0, 2, 0, 191, 0, 189, 0, 0, 0, 0, 0, 0, 0, 549, 121, 0, 151, 148, 294, 0, 0, 267, 279, 3, 3, 548, 615, 369, 384, 397, 294, 266, 294, 0, 517, 494, 294, 0, 0, 493, 508, 0, 0, 0, 216, 0, 225, 57, 108, 0, 2, 700, 701, 0, 126, 123, 0, 0, 0, 0, 0, 0, 23, 0, 657, 294, 582, 265, 726, 727, 728, 0, 679, 294, 294, 294, 3, 3, 0, 687, 0, 0, 0, 0, 294, 294, 3, 546, 471, 472, 0, 0, 246, 295, 0, 0, 0, 0, 294, 192, 190, 187, 0, 193, 0, 0, 0, 0, 197, 200, 198, 194, 0, 195, 129, 35, 144, 142, 244, 0, 0, 418, 422, 421, 0, 511, 2, 512, 2, 513, 507, 294, 228, 0, 226, 0, 228, 3, 663, 294, 31, 124, 2, 45, 2, 43, 41, 28, 122, 26, 3, 729, 3, 3, 3, 0, 0, 686, 688, 629, 643, 269, 2, 408, 3, 407, 0, 474, 471, 129, 0, 0, 129, 3, 0, 129, 188, 0, 2, 2, 209, 199, 0, 0, 0, 140, 0, 576, 616, 2, 0, 0, 2, 229, 0, 0, 217, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 689, 690, 294, 0, 473, 152, 0, 0, 2, 165, 129, 154, 0, 182, 0, 129, 0, 2, 156, 0, 2, 0, 2, 2, 2, 196, 32, 294, 516, 518, 509, 0, 0, 0, 0, 124, 38, 0, 3, 3, 658, 630, 644, 680, 412, 129, 158, 161, 0, 160, 164, 3, 167, 166, 0, 129, 184, 129, 3, 0, 294, 0, 294, 0, 2, 0, 2, 139, 2, 230, 231, 0, 227, 218, 0, 703, 0, 0, 153, 0, 0, 163, 233, 168, 2, 235, 183, 0, 186, 172, 201, 3, 210, 214, 203, 3, 0, 294, 0, 294, 0, 0, 0, 39, 46, 44, 159, 162, 129, 0, 169, 294, 129, 129, 0, 173, 0, 0, 694, 211, 212, 213, 0, 202, 3, 204, 3, 294, 219, 232, 149, 170, 155, 129, 236, 185, 180, 178, 174, 157, 129, 0, 695, 0, 0, 0, 0, 150, 171, 181, 175, 179, 178, 176, 3, 3, 0, 0, 495, 177, 205, 207, 3, 3, 206, 208 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 817, 468, 301, 47, 134, 135, 302, 303, 304, 305, 765, 766, 1143, 1144, 306, 381, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 1038, 518, 982, 546, 322, 983, 952, 1065, 1541, 1067, 1068, 1069, 1070, 1542, 1071, 1072, 1458, 1459, 1420, 1421, 1422, 1520, 1521, 1525, 1526, 1561, 1562, 1073, 1378, 1074, 1075, 1312, 1313, 1314, 1502, 1076, 146, 958, 959, 960, 1398, 1482, 1494, 1495, 469, 470, 879, 880, 1046, 51, 52, 53, 54, 55, 347, 159, 58, 59, 60, 61, 62, 349, 64, 65, 265, 67, 68, 275, 351, 352, 71, 72, 73, 74, 119, 76, 205, 354, 120, 79, 121, 81, 82, 455, 83, 454, 689, 690, 691, 913, 1094, 914, 84, 85, 458, 456, 697, 859, 860, 357, 358, 700, 701, 702, 359, 360, 361, 362, 466, 340, 136, 137, 522, 324, 171, 646, 647, 648, 649, 650, 86, 122, 88, 489, 490, 944, 491, 278, 495, 325, 89, 138, 139, 90, 1335, 1116, 1117, 1118, 1119, 91, 92, 718, 93, 274, 94, 95, 188, 1040, 680, 412, 126, 96, 501, 502, 503, 189, 269, 191, 192, 193, 270, 99, 100, 101, 102, 103, 104, 105, 196, 197, 198, 199, 200, 829, 605, 606, 607, 608, 201, 610, 611, 612, 572, 573, 574, 575, 754, 106, 614, 615, 616, 617, 618, 619, 975, 756, 757, 758, 595, 365, 366, 367, 368, 326, 165, 108, 109, 110, 370, 695, 569 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1315 static const yytype_int16 yypact[] = { 5006, 8237, -1315, 89, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 194, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 314, 314, 314, 792, 787, 234, 7780, 219, -1315, -1315, -1315, -1315, -1315, 257, -1315, -1315, -1315, 912, 264, -1315, -1315, -1315, -1315, 6920, -1315, -1315, -1315, -1315, 120, 272, -1315, 823, -1315, -1315, -1315, -1315, 302, 1619, 420, 112, 3706, -1315, -1315, 9405, 1262, -1315, -1315, -1315, 675, 440, 7333, 1133, 1444, 675, 1669, -1315, -1315, 482, 771, -1315, 675, 1807, -1315, 386, -1315, 507, 517, -1315, -1315, -1315, -1315, 426, 272, 314, -1315, 314, -1315, -1315, -1315, -1315, 8871, 823, -1315, -1315, 823, -1315, 415, -1315, 8985, -1315, -1315, 1777, 9099, -1315, 428, 428, 428, -1315, -1315, -1315, 314, -1315, -1315, -1315, 454, 468, 490, -1315, -1315, -1315, 500, -1315, -1315, -1315, -1315, -1315, 504, 509, -1315, -1315, 76, 8833, 2235, 669, 439, 450, 519, 522, 537, 567, 8121, 7182, 529, 581, -1315, 9443, -1315, -1315, -1315, -1315, 595, -1315, 216, 3771, 3771, -1315, 603, 313, -1315, -1315, -1315, -1315, 605, 316, 320, 345, 314, 589, -1315, -1315, 1619, 2809, 664, -1315, 49, -1315, 314, 314, 272, -1315, -1315, 87, -1315, 314, 314, -1315, 3249, 632, 636, 428, 7093, -1315, -1315, 646, 6920, -1315, -1315, 675, -1315, -1315, -1315, 272, -1315, 823, 120, -1315, 7972, -1315, 428, 428, 428, 272, -1315, 792, -1315, 5155, -1315, -1315, 635, 428, -1315, 428, -1315, 257, 8833, -1315, 657, -1315, 787, 660, 428, -1315, 792, 679, 704, -1315, 7780, 574, -1315, -1315, -1315, 9296, -1315, -1315, 6389, -1315, 664, 74, 5169, 9099, 1777, 3249, -1315, 97, -1315, -1315, 8985, 823, 708, 9849, -1315, -1315, 539, -1315, 10667, 680, 762, 10451, 751, 10470, 10528, -1315, 764, -1315, -1315, -1315, -1315, 10547, 10547, 8605, 778, -1315, -1315, -1315, -1315, -1315, -1315, 801, -1315, 969, 2181, 8947, 10470, -1315, 339, 731, 846, 265, 890, 795, 797, 810, 836, 33, -1315, -1315, 812, 497, -1315, 59, -1315, -1315, 2235, -1315, -1315, 588, 835, -1315, 622, 835, 847, 257, -1315, -1315, 863, 8871, -1315, 854, 878, 9061, -1315, -1315, 765, 1714, 8320, 7093, 675, -1315, 675, 428, 428, -1315, -1315, -1315, -1315, -1315, -1315, 428, 8871, 823, -1315, -1315, 9213, 843, -1315, 8757, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 886, 3575, 10470, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 1777, -1315, 793, 865, 884, 894, 869, 902, 905, 909, 2809, -1315, -1315, 918, 120, 935, -1315, -1315, 927, -1315, -1315, -1315, 9296, -1315, -1315, -1315, -1315, -1315, 3249, -1315, 8833, 8833, -1315, 428, 1777, 7213, 823, 8393, -1315, -1315, -1315, -1315, 9296, 74, -1315, -1315, 675, 272, -1315, -1315, 9296, -1315, 6557, -1315, -1315, 428, 428, 295, 9519, 937, 942, 934, 955, 428, -1315, -1315, -1315, -1315, 9927, -1315, 540, 6680, -1315, 272, 963, -1315, 1777, 10749, 5888, -1315, -1315, -1315, -1315, 899, 3249, -1315, 8466, 664, 7663, -1315, -1315, -1315, 1232, 551, 812, 787, 9849, 591, 8985, -1315, 9849, -1315, -1315, -1315, -1315, 576, -1315, 980, 762, 283, 8605, -1315, 9699, -1315, -1315, 8605, -1315, 8719, 8605, -1315, -1315, 987, -1315, 599, 996, 706, 999, -1315, -1315, 6048, 6769, -1315, 137, -1315, -1315, 6053, -1315, 286, 6053, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 5169, -1315, -1315, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 10470, 4672, 5169, -1315, 497, 1307, -1315, -1315, 314, 314, -1315, -1315, 8833, -1315, -1315, 927, 574, -1315, 927, 10393, -1315, -1315, -1315, 9329, 6769, 1002, 1007, -1315, 9099, -1315, -1315, 595, -1315, 1019, 941, 1024, 1647, 103, 812, -1315, 314, 314, 812, 133, -1315, 314, 314, 927, -1315, -1315, 314, 314, -1315, 835, 9781, 823, 10894, 412, 469, 9781, -1315, 6389, -1315, 812, -1315, 8871, -1315, 191, 5383, 5383, 5383, 823, -1315, 4873, 979, 513, 886, 151, 1028, 1030, -1315, 1036, 3771, 531, -1315, 1124, 823, 5383, 574, 1777, 574, 664, 782, 835, -1315, -1315, 802, 835, -1315, -1315, -1315, 762, -1315, 835, 272, 9927, -1315, 606, 1050, 616, 1051, -1315, 1052, 272, -1315, -1315, 9296, 272, 1054, 9699, 1053, -1315, 1508, -1315, 360, 367, 787, -1315, 787, 1056, 10470, -1315, 787, 10894, -1315, -1315, 1059, -1315, -1315, -1315, 574, -1315, 10822, 878, -1315, 5383, 769, 8320, -1315, -1315, 595, 1057, 1058, 1232, 3288, -1315, -1315, 9849, -1315, -1315, 1065, -1315, -1315, 1066, -1315, 1065, 1064, 10667, 5169, 121, 1034, 100, 1074, 1071, 1075, 778, 1072, 1078, -1315, 1080, 1082, 9557, 6889, -1315, 5169, -1315, 706, 2222, -1315, -1315, -1315, 314, 314, 5021, 5169, 1079, -1315, -1315, 886, 619, -1315, 5169, -1315, -1315, 971, -1315, -1315, -1315, -1315, 339, 339, 731, 731, 846, 846, 846, 846, 265, 265, 890, 795, 797, 810, 836, 10470, 975, -1315, 9927, 1084, 1086, 1087, 1307, -1315, -1315, -1315, -1315, -1315, 9927, 639, 5383, -1315, 8871, -1315, 7302, 9175, -1315, 8757, 7182, -1315, -1315, 941, 9927, 923, 1093, 1097, 1098, 1101, 1104, 1109, 1110, -1315, 3448, 1647, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 927, -1315, -1315, -1315, 812, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 1111, -1315, 1115, 1116, -1315, -1315, 120, 1079, 4873, -1315, -1315, -1315, 3575, 1113, -1315, -1315, -1315, -1315, -1315, 787, 6479, 1200, -1315, -1315, -1315, -1315, 1100, 120, -1315, -1315, 927, -1315, -1315, 927, 146, 927, -1315, -1315, -1315, -1315, -1315, -1315, 9481, -1315, 272, -1315, -1315, 380, 387, 9213, 7422, 1947, 10470, 2081, -1315, -1315, 1121, 77, 1121, -1315, 787, -1315, 314, -1315, -1315, 9630, 934, -1315, -1315, -1315, 942, 1122, 1117, -1315, -1315, 1129, 1130, -1315, 769, 2444, -1315, 476, -1315, 3288, 812, -1315, 1135, 9849, 9811, 8833, 1136, -1315, -1315, 1127, 1137, 1131, -1315, 10470, 134, 293, 1138, -1315, 1142, 574, 1142, 6769, 5169, -1315, -1315, 1142, 1139, -1315, 1150, 1152, 1153, 2222, -1315, -1315, -1315, 3575, -1315, -1315, -1315, -1315, 1156, 5169, 1140, 574, 4873, -1315, 6053, -1315, 574, -1315, -1315, 5169, -1315, 842, 835, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 886, 878, 9061, -1315, -1315, 7542, 1163, -1315, 882, 835, -1315, 892, 926, 835, -1315, 428, 4553, -1315, -1315, -1315, 9927, 9927, -1315, 8393, 8393, -1315, 1161, 1164, 1169, 1172, -1315, 1171, 527, 41, 1079, -1315, 574, -1315, 3771, -1315, 5169, 423, -1315, 6649, 1175, 1177, 10335, 1178, 1181, 9, 73, 48, 5169, 1182, 272, 5169, 5169, 1132, 1180, 489, 1162, -1315, -1315, -1315, 1184, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 787, 1183, 5169, -1315, 9927, 9927, 314, 1186, -1315, 9668, -1315, -1315, 984, -1315, 2081, -1315, -1315, -1315, -1315, 1508, -1315, -1315, 1188, -1315, -1315, -1315, -1315, 1191, 2444, -1315, -1315, 1185, -1315, 1065, -1315, -1315, 1777, 1194, -1315, -1315, -1315, 640, 1198, -1315, 100, 1201, 10470, 1195, 100, 100, 1213, 1214, -1315, 6048, 959, 835, -1315, -1315, 1036, 5169, 1217, 1156, 654, 46, 1216, -1315, 1214, -1315, 1222, 1216, -1315, -1315, 1226, -1315, -1315, 927, 1229, 1230, 7062, 1231, 1235, 1237, -1315, -1315, 1242, -1315, -1315, 927, -1315, -1315, -1315, -1315, 927, 5169, 5169, 878, 1244, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 10470, 10470, 1246, 1253, 1216, -1315, -1315, 787, -1315, -1315, -1315, 4813, 9811, 5169, 5169, 1321, 5169, -1315, 1239, -1315, 1247, -1315, 1248, 5169, 1250, 5169, 986, 1252, 81, 314, 9367, 1069, -1315, -1315, 6479, 1261, 436, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 10153, -1315, 8466, 1268, -1315, -1315, 9811, 437, 451, -1315, 1270, 1271, 762, 1280, -1315, 352, -1315, -1315, 5169, 1281, -1315, -1315, 927, 1277, -1315, -1315, 1284, 301, 375, 574, 1285, 1288, -1315, 1290, -1315, 9927, -1315, -1315, -1315, -1315, -1315, 1291, -1315, 9927, 9927, 9927, -1315, -1315, 1293, -1315, 1295, 1298, 1299, 590, 8088, 8204, -1315, -1315, 304, -1315, 1302, 1303, -1315, 8539, 652, 671, 1308, 690, 6255, -1315, -1315, -1315, 471, -1315, 711, 1310, 1311, 272, 1363, 1043, -1315, -1315, 5169, -1315, 10335, 6053, -1315, -1315, -1315, 1317, 1318, -1315, -1315, -1315, 1316, -1315, -1315, -1315, -1315, -1315, -1315, 9811, 762, 155, -1315, 1300, 762, 1156, 297, 9927, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 1314, -1315, -1315, -1315, -1315, -1315, -1315, 1323, 1324, -1315, -1315, -1315, -1315, -1315, -1315, -1315, 1329, -1315, 1330, -1315, -1315, 10335, 135, 5169, 10335, -1315, 1333, 5169, -1315, 281, 1344, 1348, -1315, -1315, 1340, 1343, 1331, -1315, 988, -1315, -1315, -1315, 823, 1777, 1338, 801, 995, 10470, -1315, 713, 1349, 5169, -1315, 574, 574, 1350, 1355, 1356, 1358, -1315, -1315, 8393, 1359, -1315, 1430, 10470, 1360, -1315, -1315, 10246, -1315, 722, -1315, 1347, 10335, 1352, -1315, -1315, 1366, -1315, 1370, -1315, 1385, 1386, -1315, 1354, 9811, -1315, -1315, -1315, 762, 574, 1382, 1364, 1381, -1315, 1389, 1216, 1216, -1315, -1315, -1315, -1315, -1315, 10335, 197, -1315, 1000, -1315, -1315, 7897, -1315, -1315, 1368, 5169, -1315, 5169, 7897, 272, 9699, 272, 9699, 1391, -1315, 1392, -1315, -1315, 1390, 801, -1315, 776, -1315, -1315, 5169, -1315, 1394, 1395, -1315, 10470, 10470, -1315, -1315, 1077, 85, -1315, -1315, 1372, -1315, 1077, -1315, -1315, 2494, 574, -1315, -1315, 272, 9699, 272, 9699, 1403, 1383, 574, -1315, -1315, -1315, -1315, -1315, 10246, 1401, 1077, 5739, 5169, 10157, 1402, 1077, 1408, 2494, 2404, -1315, -1315, -1315, 1409, -1315, -1315, -1315, -1315, 8833, -1315, -1315, -1315, 10024, -1315, 10246, -1315, -1315, 1388, 9931, -1315, -1315, 10157, 272, 2404, 272, 1413, 1414, 857, -1315, 10024, -1315, -1315, -1315, 9931, -1315, -1315, -1315, 272, 272, -1315, -1315, -1315, -1315, -1315, -1315, -1315, -1315 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1315, 4470, 3041, -1315, 39, -1315, 2507, 957, -207, -1315, 461, -523, -489, -955, -200, 5636, 0, -1315, 72, 572, 580, 245, 566, 964, 967, 968, 966, 976, -1315, 1601, -609, 5067, -949, -1315, -712, -938, 430, -728, 512, -1315, 1697, -1315, 311, -1200, -1315, -1315, 43, -1315, -1142, -1154, 154, -1315, -1315, -1315, -1315, -26, -1161, -1315, -1315, -1315, -1315, -1315, -1315, 231, -1202, 53, -1315, -908, -1315, 416, 205, -1315, 78, -1315, -367, -1315, -1315, -1315, 470, -824, -1315, -1315, 13, -940, 465, 2639, -1315, -1315, -1315, -107, -1315, 102, 269, -201, 1635, 4179, -1315, -1315, 5, 449, 756, -259, 1489, -1315, 1725, -1315, -1315, 52, 2057, -1315, 2147, 612, -1315, -1315, -1315, -616, -1315, 866, 867, 456, 631, 158, -1315, -1315, -1315, 858, 633, -514, -1315, -544, -359, 1913, -1315, -1315, -928, -991, 1380, 1398, 990, 324, -1315, 171, 457, -332, -192, -147, 584, 695, -1315, 919, -1315, 2794, 1328, -442, 850, -1315, -1315, 625, -1315, -238, -1315, -94, -1315, -1315, -1315, -1246, 330, -1315, -1315, -1315, 1091, -1315, 35, -1315, -1315, -834, -97, -1314, -130, 1985, -1315, 3026, -1315, 844, -1315, -170, 1212, -183, -173, -167, 7, -35, -34, -33, 936, 18, 55, 61, -143, -159, -156, -153, -151, -323, -535, -528, -526, -542, -318, -520, -1315, -1315, -512, 1006, 1009, 1011, 2067, 4895, -560, -543, -538, -536, -484, -1315, -481, -740, -737, -736, -586, -304, -339, -1315, -1315, 856, 707, -88, -1315, 3848, 29, -599, -291 }; /* 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 -525 static const yytype_int16 yytable[] = { 49, 114, 453, 399, 428, 69, 953, 98, 150, 151, 152, 770, 971, 400, 115, 972, 973, 407, 261, 401, 268, 498, 383, 384, 743, 628, 604, 402, 440, 632, 403, 609, 49, 404, 848, 405, 1148, 69, 1182, 98, 755, 596, 831, 148, 408, 1078, 1140, 980, 872, 49, 726, 670, 77, 50, 731, 1077, 162, 823, 410, 798, 830, 153, 824, 187, 825, 819, 210, 144, 342, 49, 194, 679, 820, 217, 821, 505, 227, 924, 167, 683, 822, 1206, 220, 399, 77, 50, 1192, 928, 31, 1396, 861, 861, 861, 400, 674, 676, 177, 407, 154, 401, 1180, 1181, 63, 1460, 155, 425, 114, 402, 1198, 861, 403, 1215, 1216, 404, 114, 405, 31, 267, 272, 834, 1210, 863, 864, 714, 408, 841, 31, 281, 566, -234, -234, 1261, 475, 477, 63, 447, 31, 1188, 409, 882, 203, 1207, 31, 167, 1316, 1208, 177, 307, 148, 177, 471, 150, 151, 152, 460, 162, 114, 345, 253, 1262, 411, 210, 730, 567, 1189, 721, 1211, 861, 373, 577, 971, 123, 31, 972, 973, 578, 327, 1460, 715, 1417, 1418, 745, 292, 476, 819, 282, 187, 187, 411, 1258, 204, 820, 1479, 821, 162, 177, 419, 936, 411, 724, -234, 142, 267, 527, 153, 1209, 481, 918, 411, 111, 49, 956, 832, 1317, 601, 1245, 527, 162, 668, 1249, 41, 42, 210, 111, 1197, 140, 141, 169, 527, 443, 145, 150, 151, 152, 41, 42, 665, 527, 954, 436, 307, 154, 839, 1125, 601, 1182, 802, 155, 762, 1419, 808, 170, 49, 588, 242, 245, 1085, 69, 177, 98, 272, 861, 868, 666, 1399, 272, 267, 267, 1024, 327, 117, 1506, 114, 823, 162, 862, 862, 862, 824, 1464, 825, 819, 1150, 342, 609, 999, 1023, 463, 820, 1088, 821, 1002, 857, 1490, 862, 307, 1011, 735, 1182, 657, 476, 436, 1092, 124, 77, 50, 1535, 307, 1537, 77, 665, 471, 177, 835, 1341, 903, 596, 838, 160, 177, 1189, 596, 568, 571, 1548, 1417, 1418, 672, 148, 1212, 1101, 471, 377, 677, 834, 373, 167, 666, 855, 471, 1519, 114, 858, 143, 1559, 345, 1524, 1124, 378, 602, 620, 1563, 862, 31, 63, 556, 557, 510, 111, 472, 1180, 1181, 1198, 1549, 625, 527, 147, 1544, 625, 41, 42, 114, 1551, 111, 598, 259, 156, 1464, 831, 547, 548, 178, 1464, 160, 41, 42, 172, 177, 1078, 714, 1564, 558, 559, 736, 823, 1428, 267, 768, 1077, 824, 737, 825, 1464, 1126, 177, 684, 187, -122, 177, 1464, 1127, 578, 1346, 373, 1403, 457, 323, 547, 182, -122, -122, 848, 1182, 202, 267, 339, 307, 307, -122, 387, 267, 262, 390, 625, 263, -122, 392, 342, 8, 9, 10, 11, 12, -290, 715, 388, 862, 111, 391, 70, 1449, 1450, 393, 547, 114, 327, 327, 549, 41, 42, 893, 394, 1339, 550, 551, 56, 116, 31, 1004, 1340, 77, 177, 267, 808, 498, 430, 919, 395, 1379, 434, 267, 70, 625, 921, 49, 1455, 1348, 373, 720, 69, 77, 98, 920, 1136, 114, 34, 919, 56, 77, 922, 1146, 873, 248, 921, 1112, 1022, 307, 251, 114, 323, 609, 307, 1089, 307, 307, 213, 1247, -520, 915, 1090, 472, 753, 1198, 327, 851, 114, 345, 886, 852, 1198, 957, 211, 1168, 1170, 221, 253, 77, 50, 1257, 1195, 472, 434, 327, 439, 488, 917, 264, 1024, 472, 330, 714, 645, 1195, 1330, 111, 1196, 140, 239, 884, 1027, 331, 287, 808, -10, 521, 41, 42, 1332, 1322, 1331, 571, 571, 41, 42, 1377, 471, 160, -443, 307, 1290, 1291, 853, 1198, 1333, 712, 854, 63, 750, 853, 625, 345, 240, 1108, -469, 620, 810, 241, 483, 514, -444, 602, 933, 602, 1380, 500, 715, 570, 327, 411, 277, 587, 874, 1136, 279, 593, 45, 46, 918, 280, 1022, 625, 772, 773, 774, -469, 625, -469, 620, 177, 332, -469, 625, 333, 626, 625, 625, 625, 630, 1496, -105, 339, 371, 875, -105, 643, 1496, 111, 334, 876, 849, 705, 1427, 1109, 625, 598, 267, 706, 41, 42, 342, 177, 722, 725, 111, 729, 140, 141, 723, 493, 1179, 494, 442, 178, 1035, 41, 42, 177, 335, 215, 2, 207, 4, 5, 6, 7, 114, 732, 441, 912, 629, 372, 177, 733, 633, 1082, 323, 323, 579, 1545, 411, 727, 70, 1365, 596, 376, 728, 1366, 107, 107, 749, 1120, 625, 938, 620, 389, 750, 897, 56, 385, 720, 720, 397, 750, 688, 1042, 519, 899, 399, 409, 988, 215, 582, 750, 411, 77, 989, 117, 400, 1498, 107, 1499, 426, 407, 401, 35, 427, 36, 114, 345, 1001, 1243, 402, 753, 753, 403, 706, 578, 404, 432, 405, 77, 488, 1373, 323, -122, 488, -122, 450, 750, 408, -122, -367, 177, 215, -396, 521, 107, 521, 253, 329, 521, 1374, 323, 521, 472, -122, -122, 750, 971, 504, 1444, 972, 973, 808, 339, 1546, 1390, 571, 714, 213, 1376, 779, 780, 781, 782, 625, 750, 625, 1457, 1007, 472, 461, 625, 345, 869, 752, 602, 411, 810, 1172, 342, 1381, 484, 1445, 45, 46, 230, 750, 602, 1442, 231, 979, 1465, 235, 215, 237, 462, 37, 750, 175, 176, 40, 246, 111, 292, 140, 141, 323, 41, 42, 712, 552, 553, 715, 41, 42, 673, 675, 806, 111, 508, 140, 141, 923, 130, 925, 131, 132, 133, 457, 41, 42, 215, 513, 372, 41, 42, 215, 937, 307, 601, 1517, 1457, 527, 69, 244, 1512, 45, 46, 847, 525, 887, 1513, 411, 593, 37, 1193, 175, 176, 40, 856, 625, 253, 329, 411, 164, 41, 42, 114, 345, 912, 890, 912, 411, 562, 37, 957, 175, 176, 40, 957, 957, 213, 665, 114, 563, 41, 42, 915, 1368, 565, 77, 715, 70, 554, 555, 519, 938, 938, 564, 177, 519, 720, 568, 519, 850, 338, 114, 307, 56, 666, 1152, 376, 411, 688, 917, -440, 48, 113, 107, 1113, 865, 215, 738, 345, 739, 589, 1569, 740, 230, 164, 746, 586, 578, 753, 658, 881, 327, 419, 661, 411, 63, 560, 561, 37, 163, 113, 113, 40, 48, -3, 1164, 488, 411, 659, 41, 42, 791, 638, 195, 48, 1167, 218, 601, 660, 228, 48, 345, 481, 329, 411, 712, 662, 37, 48, 663, 339, 40, 1238, 664, 48, 43, 1531, 48, 41, 42, 48, 667, 625, 625, 45, 46, 832, 329, 601, 1169, 849, 601, 258, 1337, 113, 113, 645, 215, 1309, 1310, 1311, 669, 307, 1047, 816, 693, 601, 1200, 528, 529, 530, 500, 694, 45, 46, 1347, 1349, 1350, 48, 696, 435, 48, 1254, 698, 411, 442, 1136, 1095, 48, 1095, 1003, -238, 531, 547, 532, 806, 533, 534, 163, 215, 992, 989, 114, 734, 1097, 750, 994, 912, 329, 411, -12, 374, 912, 747, 77, 1386, 1387, 1437, 989, 48, 751, 938, 230, 759, 235, 1442, 1443, 48, 811, 267, 1491, 1492, 48, 812, 510, 1417, 1418, 163, 775, 776, 783, 784, 435, 1397, 342, 815, 625, 1397, 777, 778, 826, 2, 207, 4, 5, 6, 7, 48, 48, -13, 163, 870, 213, 645, 472, 523, 871, 878, 528, 529, 530, 345, 444, 48, 898, 900, 213, 164, 901, 908, 955, 48, 905, -417, 806, 926, -524, 941, 950, 948, 48, 339, 531, 48, 532, 723, 533, 1319, 961, 963, 113, 962, 966, 965, 967, 107, 968, 688, 996, 984, 997, 998, 230, 272, 114, 113, 35, 1013, 36, 113, 215, 1014, 1015, 48, 113, 1016, 97, 220, 1017, 488, 1115, 323, 114, 1018, 1019, 1030, 307, 48, 48, -405, -404, 69, 1044, 1079, 48, 1081, 1102, 1103, 215, 1480, 625, 48, 911, 215, 114, 1104, 1105, 750, 97, 1111, 1121, 1122, 1123, 1217, 1047, 1132, 1141, 1113, 1128, 149, 978, 177, 213, 712, 1133, 97, 1134, 1135, 374, -3, 2, 207, 4, 5, 6, 7, 1138, 1162, 77, 190, 847, 1183, 97, 1185, 1184, 97, 1186, 1187, 1201, 48, 1202, 1204, 625, 625, 1205, 1213, 1218, 1225, 1220, 229, 1230, 272, 1440, -3, 1557, 1235, 307, 1233, 37, 48, 48, 1200, 40, 1239, 692, 215, 1244, 1246, 493, 41, 42, 8, 9, 10, 11, 12, 48, 1251, 63, 215, 48, 1248, 70, 1259, 1252, 35, 1263, 36, 1266, 114, 1268, 644, 712, 1270, 1271, 719, 374, 1272, 56, 399, 31, 1273, 1113, 1274, 45, 46, 1276, 48, 77, 400, 1283, 688, 1292, 407, 97, 401, 523, 48, 523, 1293, 1296, 523, 1300, 402, 523, 1303, 403, 97, 34, 404, 1321, 405, 1328, 1304, 1305, 48, 1307, 665, 1315, 1334, 408, 48, 1336, 48, 1338, 1066, 1344, 1342, 216, 267, 1345, 1351, 398, 190, 1352, 806, 1353, 1355, 472, 1361, 1530, 1362, 1363, 1364, 666, 243, 1114, 625, 1371, 1372, 570, 1375, 411, 1382, 1383, 215, 97, 1311, 113, 45, 46, 1391, 1392, 48, 1393, 1403, 1400, 177, 97, 1411, 1412, 48, 114, -406, 1430, 48, 1415, 1426, 1432, 48, 216, -291, 113, 1434, 113, 1113, 1435, 1441, 8, 9, 10, 11, 12, 442, 1451, 1446, 114, 1436, 97, 1452, 1453, 1200, 1454, 114, 644, 114, 1456, 114, 1200, 1366, 1470, 1461, 479, 1466, 1472, 1474, 1476, 31, 1468, 113, 1478, 339, 644, 216, 113, 644, 1483, 150, 151, 152, 1484, 70, 1485, 1486, 1497, 1507, 1509, 1529, 1523, 1511, 1515, 1516, 114, 1115, 114, 34, 1538, 56, 77, 1539, 1543, 1550, 1552, 1554, 1560, 77, 114, 1567, 1568, 1219, 785, 1200, 1529, 1529, 786, 788, 787, 1320, 1518, 1429, 162, 1570, 307, 113, 97, 692, 789, 1385, 1250, 1401, 48, 1500, 1096, 1224, 216, 906, 907, 1529, 1232, 214, 929, 48, 1100, 48, 373, 603, 1137, 1203, 472, 233, 1043, 327, 877, 1110, 1329, 472, 804, 943, 77, 717, 794, 951, 48, 795, 37, 796, 184, 185, 40, 0, 107, 0, 216, 0, 0, 41, 42, 216, 48, 0, 0, 0, 0, 0, 113, 0, 0, 0, 1115, 0, 0, 214, 0, 48, 0, 113, 48, 113, 0, 0, 0, 910, 190, 411, 0, 0, 215, 0, 472, 911, 45, 46, 0, 0, 0, 1298, 1299, 0, 1301, 66, 118, 0, 0, 0, 0, 1306, 0, 1308, 0, 48, 0, 0, 213, 113, 214, 113, 0, 0, 107, 113, 0, 8, 9, 10, 11, 12, 0, 113, 211, 221, 0, 66, 0, 0, 0, 70, -292, 0, 0, 0, 48, 48, 216, 8, 9, 10, 11, 12, 161, 0, 31, 56, 0, 0, 48, 37, 0, 184, 185, 40, 97, 0, 0, 0, 603, 0, 41, 42, 222, 1114, 0, 1115, 31, 0, 0, 214, 0, 0, 34, 0, 0, 0, 1439, 37, 0, 184, 185, 40, 0, 75, 0, 0, 186, 0, 41, 42, 0, 0, 1066, 0, 34, 45, 46, 0, 1503, 260, 1503, 0, 0, 0, 442, 0, 0, 214, 0, 70, 174, 0, 214, 107, 600, 75, 601, 216, 0, 0, 441, 0, 0, 45, 46, 56, 0, 499, 0, 0, 0, 48, 0, 0, 0, 1503, 0, 1503, 692, 0, 0, 328, 0, 48, 37, 0, 184, 185, 40, 260, 350, 0, 223, 254, 0, 41, 42, 0, 1114, 216, 0, 0, 0, 1423, 0, 323, 0, 0, -293, 215, 818, 0, 603, 0, 0, 8, 9, 10, 11, 12, 406, 600, 0, 601, 0, 0, 644, 0, 1389, 0, 45, 46, 0, 113, 0, 424, 0, 214, 429, 431, 0, 0, 703, 161, 31, 0, 0, 37, 0, 184, 185, 40, 0, 0, 0, 0, 48, 0, 41, 42, 704, 0, 0, 0, 448, 48, 0, 48, 451, 0, 452, 0, 34, 0, 113, 0, 0, 0, 0, 459, 353, 0, 0, 1416, 266, 66, 1424, 0, 0, 417, 473, 0, 0, 45, 46, 0, 0, 48, 916, 0, 480, 1114, 0, 0, 0, 107, 0, 215, 431, 70, 0, 0, 437, 0, 0, 0, 70, 113, 214, 0, 216, 0, 445, 0, 0, 56, 0, 107, 0, 818, 603, 1463, 56, 644, 0, 214, 1467, 0, 0, 0, 0, 113, 692, 0, 644, 107, 113, 0, 216, 0, 0, 0, 0, 216, 449, 0, 0, 0, 0, 0, 214, 0, 0, 0, 0, 0, 1489, 0, 0, 70, 0, 0, 0, 0, 260, 75, 0, 0, 594, 0, 75, 0, 0, 0, 622, 56, 0, 0, 0, 0, 520, 0, 0, 0, 0, 0, 113, 627, 0, 0, 0, 627, 0, 0, 260, 0, 0, 107, 0, 125, 128, 129, 0, 0, 0, 0, 0, 37, 0, 184, 185, 40, 0, 0, 0, 216, 818, 0, 41, 42, 0, 0, 0, 0, 113, 0, 0, 0, 603, 216, 107, 0, 0, 0, 0, 0, 0, 0, 48, 703, 0, 473, 1558, 48, 910, 78, 411, 0, 1558, 0, 0, 0, 0, 45, 46, 0, 350, 704, 0, 1558, 48, 473, 0, 1558, 223, 0, 0, 0, 0, 473, 0, 214, 255, 0, 256, 0, 0, 78, 0, 8, 9, 10, 11, 12, 0, 0, 0, 699, 0, 0, 431, 0, 0, 0, 0, 0, 0, 0, 0, 214, 0, 0, 0, 0, 214, 713, 0, 66, 31, 0, 1091, 0, 916, 0, 224, 431, 0, 0, 0, 431, 0, 0, 0, 0, 0, 216, 0, 0, 681, 0, 0, 75, 0, 107, 0, 80, 34, 0, 0, 0, 113, 37, 603, 184, 185, 40, 353, 0, 260, 350, 0, 75, 41, 42, 707, 396, 0, 107, 0, 75, 0, 703, 0, 48, 107, 415, 416, 80, 0, 0, 420, 703, 422, 423, 0, 0, 214, 353, 910, 704, 411, 0, 0, 0, 0, 703, 0, 45, 46, 704, 214, 520, 0, 0, 797, 353, 520, 75, 0, 520, 0, 0, 355, 704, 225, 0, 113, 113, 113, 0, 499, 0, 627, 809, 0, 0, 0, 107, 0, 0, 8, 9, 10, 11, 12, 828, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 353, 0, 0, 0, 594, 0, 413, 0, 0, 594, 31, 0, 0, 421, 0, 627, 0, 0, 350, 350, 350, 0, 0, 31, 0, 644, 0, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 350, 34, 0, 0, 0, 0, 0, 0, 0, 927, 214, 0, 0, 0, 34, 0, 356, 916, 699, 37, 0, 78, 916, 40, 545, 0, 78, 353, 0, 473, 41, 42, 0, 0, 0, 0, 0, 0, 0, 1504, 0, 1504, 0, 752, 0, 411, 0, 0, 413, 0, 216, 0, 45, 46, 0, 473, 43, 0, 350, 0, 0, 0, 0, 48, 48, 45, 46, 942, 0, 0, 431, 353, 353, 353, 113, 113, 1504, 0, 1504, 895, 0, 0, 0, 0, 0, 0, 0, 0, 902, 0, 353, 0, 904, 0, 260, 713, 0, 0, 0, 0, 974, 0, 576, 993, 0, 0, 0, 0, 353, 0, 580, 80, 113, 583, 0, 0, 80, 703, 703, 75, 224, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 704, 704, 0, 0, 0, 699, 0, 0, 0, 0, 75, 0, 0, 353, 0, 699, 0, 350, 0, 627, 31, 0, 1010, 0, 627, 809, 0, 0, 0, 699, 0, 8, 9, 10, 11, 12, 0, 48, 113, 1021, 703, 703, 413, 0, 0, 1037, 421, 113, 34, 0, 353, 0, 78, 37, 0, 184, 185, 40, 704, 704, 31, 0, 48, 48, 41, 42, 0, 355, 0, 0, 0, 0, 78, 0, 0, 225, 214, 0, 0, 0, 78, 0, 0, 0, 0, 112, 0, 48, 34, 927, 1528, 66, 411, 0, 0, 353, 0, 0, 355, 45, 46, 0, 0, 0, 216, 353, 0, 353, 0, 0, 0, 0, 223, 627, 0, 353, 355, 0, 78, 353, 260, 713, 0, 413, 1093, 0, 0, 0, 0, 0, 937, 0, 601, 0, 927, 0, 799, 800, 0, 45, 46, 0, 80, 37, 0, 184, 185, 40, 0, 0, 1107, 0, 0, 0, 41, 42, 0, 356, 431, 118, 355, 896, 80, 0, 0, 833, 0, 0, 836, 837, 80, 840, 1149, 842, 843, 0, 350, 1087, 844, 845, 1528, 75, 411, 0, 0, 0, 0, 0, 356, 45, 46, 1326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 0, 0, 0, 356, 0, 80, 1327, 0, 353, 0, 0, 576, 576, 57, 57, 0, 594, 0, 0, 0, 1037, 355, 0, 703, 0, 0, 0, 0, 0, 429, 0, 703, 703, 703, 699, 699, 0, 350, 350, 0, 0, 704, 0, 0, 0, 57, 0, 356, 0, 704, 704, 704, 0, 0, 0, 0, 0, 1199, 0, 0, 0, 0, 214, 353, 0, 355, 355, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 995, 0, 57, 0, 355, 0, 0, 0, 0, 0, 1000, 0, 699, 699, 0, 0, 0, 703, 0, 888, 927, 0, 355, 891, 1012, 0, 0, 0, 0, 0, 0, 356, 0, 78, 479, 704, 976, 977, 0, 0, 0, 0, 0, 0, 353, 353, 0, 353, 353, 0, 1214, 0, 0, 0, 465, 0, 0, 0, 0, 78, 0, 627, 355, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 356, 356, 356, 0, 0, 214, 0, 0, 927, 927, 0, 713, 0, 87, 0, 348, 0, 0, 0, 356, 0, 0, 0, 0, 355, 0, 0, 353, 353, 0, 0, 0, 0, 0, 0, 0, 0, 356, 8, 9, 10, 11, 12, 0, 0, 87, 0, 0, 80, 0, 0, 0, 0, 0, 1297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 355, 0, 0, 260, 0, 80, 0, 66, 356, 0, 355, 57, 355, 226, 576, 0, 0, 224, 0, 699, 355, 713, 0, 0, 355, 118, 34, 0, 0, 0, 0, 37, 353, 184, 185, 40, 0, 0, 0, 0, 0, 57, 41, 42, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 699, 0, 1098, 0, 0, 0, 0, 0, 699, 699, 699, 0, 0, 0, 186, 0, 0, 0, 0, 350, 350, 223, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 78, 1199, 1177, 1178, 356, 0, 0, 0, 0, 0, 0, 75, 0, 0, 356, 363, 356, 0, 0, 0, 0, 225, 0, 353, 356, 353, 0, 0, 356, 0, 355, 0, 0, 0, 118, 0, 0, 0, 112, 0, 0, 0, 699, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 1227, 1228, 0, 0, 927, 0, 353, 353, 353, 0, 0, 0, 1384, 0, 0, 0, 0, 353, 353, 0, 0, 0, 927, 0, 742, 355, 0, 0, 0, 0, 80, 75, 0, 0, 0, 0, 0, 0, 0, 763, 0, 0, 742, 0, 769, 742, 0, 0, 0, 0, 87, 0, 350, 0, 0, 87, 127, 127, 127, 0, 356, 0, 0, 0, 0, 0, 0, 1153, 0, 0, 0, 0, 353, 0, 1229, 0, 348, 118, 0, 0, 0, 0, 0, 0, 1165, 0, 355, 355, 0, 355, 355, 0, 0, 465, 0, 927, 927, 0, 168, 0, 173, 1199, 0, 179, 180, 181, 0, 183, 1199, 78, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 234, 0, 0, 0, 0, 57, 0, 127, 0, 127, 0, 0, 249, 250, 0, 0, 0, 0, 0, 0, 353, 0, 355, 355, 0, 0, 0, 226, 0, 0, 0, 0, 0, 0, 276, 0, 0, 0, 0, 1199, 413, 0, 0, 883, 0, 885, 1553, 348, 0, 1501, 0, 1505, 0, 0, 356, 356, 0, 356, 356, 0, 0, 0, 0, 0, 1354, 0, 0, 0, 0, 75, 0, 0, 1356, 1357, 1358, 0, 75, 80, 0, 0, 0, 0, 1255, 0, 1318, 0, 1534, 0, 1536, 0, 127, 0, 0, 0, 87, 932, 355, 0, 127, 0, 127, 127, 0, 0, 0, 127, 0, 127, 127, 363, 0, 348, 356, 356, 87, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 75, 0, 1565, 0, 1566, 0, 0, 0, 0, 1404, 224, 363, 8, 9, 10, 11, 12, 1573, 1574, 0, 0, 0, 0, 0, 0, 0, 348, 348, 348, 363, 0, 87, 78, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 355, 348, 355, 0, 127, 0, 0, 8, 9, 10, 11, 12, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 363, 37, 0, 184, 185, 40, 355, 31, 0, 0, 0, 0, 41, 42, 355, 355, 355, 0, 0, 0, 0, 0, 0, 0, 0, 355, 355, 225, 0, 0, 348, 0, 0, 0, 0, 34, 0, 0, 266, 78, 37, 0, 0, 0, 40, 0, 0, 45, 46, 80, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 356, 363, 591, 0, 599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 719, 623, 624, 355, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 356, 356, 356, 0, 363, 363, 363, 0, 0, 0, 0, 356, 356, 0, 0, 0, 0, 0, 0, 0, 348, 0, 0, 363, 0, 80, 0, 0, 348, 0, 0, 1020, 0, 0, 8, 9, 10, 11, 12, 0, 0, 363, 0, 0, 0, 1129, 355, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 31, 285, 0, 356, 0, 0, 1142, 0, 0, 742, 0, 1142, 0, 0, 0, 87, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 0, 57, 78, 287, 0, 0, 0, 288, 0, 78, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 1142, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 356, 0, 0, 0, 0, 0, 344, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 57, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 363, 127, 127, 0, 348, 226, 0, 0, 363, 0, 80, 0, 363, 283, 284, 0, 285, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 0, 0, 127, 127, 0, 127, 0, 127, 127, 0, 0, 286, 127, 127, 0, 0, 0, 640, 0, 140, 141, 288, 0, 0, 289, 641, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 348, 348, 80, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 642, 57, 643, 380, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 930, 0, 931, 0, 31, 0, 0, 0, 0, 934, 935, 0, 0, 0, 940, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 945, 1142, 1142, 1142, 0, 949, 34, 0, 35, 0, 36, 37, 0, 208, 39, 40, 127, 127, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 985, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 43, 0, 209, 0, 363, 363, 0, 363, 363, 45, 46, 742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 57, 57, 0, 0, 87, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 57, 295, 0, 379, 0, 0, 380, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 166, 0, 0, 0, 0, 1031, 1032, 1033, 1034, 0, 1036, 0, 0, 0, 0, 1142, 1142, 219, 0, 0, 0, 0, 0, 0, 0, 0, 1080, 0, 0, 0, 348, 348, 0, 0, 0, 0, 0, 0, 0, 57, 1086, 0, 0, 0, 57, 127, 0, 0, 0, 0, 127, 0, 0, 1481, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 273, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 1106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 0, 0, 375, 0, 1532, 0, 0, 0, 0, 87, 0, 0, 0, 1540, 0, 0, 0, 1139, 0, 0, 0, 363, 0, 363, 1147, 0, 0, 0, 0, 1151, 0, 0, 0, 0, 1155, 0, 1156, 0, 0, 0, 1158, 0, 1159, 1160, 0, 348, 1163, 0, 0, 0, 0, 166, 0, 0, 0, 1175, 363, 0, 0, 0, 0, 0, 0, 219, 363, 363, 363, 0, 0, 0, 57, 0, 0, 1190, 1191, 363, 363, 0, 0, 0, 0, 166, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 1221, 57, 0, 1223, 127, 0, 375, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1237, 0, 166, 0, 0, 0, 1241, 1242, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1260, 0, 0, 1264, 0, 1265, 0, 0, 1267, 0, 0, 0, 597, 0, 0, 0, 0, 621, 0, 0, 0, 1275, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 1282, 0, 1284, 1285, 1286, 1287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1294, 0, 1295, 0, 0, 0, 173, 0, 0, 0, 127, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 87, 236, 0, 238, 0, 0, 0, 87, 0, 0, 247, 0, 1323, 1324, 0, 0, 0, 0, 166, 166, 0, 0, 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 236, 238, 247, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 1359, 1360, 0, 0, 0, 0, 0, 0, 0, 716, 1370, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524, 0, 524, 0, 0, 524, 0, 166, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 1402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1407, 0, 1408, 1409, 1410, 0, 212, 0, 236, 238, 247, 0, 0, 0, 1414, 0, 0, 0, 0, 0, 0, 0, 0, 1425, 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 212, 0, 0, 814, 0, 212, 1448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 497, 0, 0, 0, 0, 0, 0, 0, 0, 597, 0, 0, 0, 0, 597, 0, 0, 0, 0, 0, 0, 0, 0, 369, 369, 369, 0, 0, 0, 0, 0, 1487, 1488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 1493, 0, 0, 0, 212, 0, 0, 1493, 0, 0, 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 524, 236, 238, 0, 0, 0, 0, 0, 0, 247, 1527, 0, 0, 0, 1533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 1173, 939, 252, 8, 9, 10, 11, 12, 0, 0, 0, 0, 257, 0, 0, 0, 1555, 0, 1556, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 716, 0, 0, 0, 0, 0, 0, 212, 0, 0, 1571, 1572, 212, 0, 212, 0, 0, 0, 1575, 1576, 0, 0, 0, 286, 34, 0, 0, 0, 0, 287, 0, 212, 157, 288, 212, 212, 289, 290, 291, 292, 41, 42, 212, 293, 294, 0, 386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 369, 0, 0, 0, 621, 0, 212, 0, 369, 295, 0, 379, 418, 0, 0, 0, 0, 0, 1174, 46, 297, 298, 299, 300, 0, 0, 433, 0, 0, 0, 0, 0, 0, 0, 0, 438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 464, 0, 0, 0, 0, 474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 0, 0, 482, 0, 0, 287, 0, 0, 492, 288, 496, 0, 289, 290, 291, 292, 41, 42, 716, 293, 294, 0, 0, 0, 0, 0, 0, 526, 0, 0, 0, 0, 0, 524, 212, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 0, 0, 0, 790, 45, 46, 297, 298, 299, 300, 166, 0, 0, 0, 0, 212, 0, 0, 0, 0, 212, 0, 585, 0, 0, 0, 369, 590, 0, 0, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 635, 26, 27, 28, 636, 637, 0, 639, 0, 0, 31, 0, 0, 597, 651, 652, 0, 653, 654, 0, 655, 0, 656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 369, 212, 0, 34, 585, 35, 0, 36, 0, 0, 208, 39, 671, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 497, 285, 682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 524, 0, 0, 286, 708, 0, 0, 0, 0, 287, 711, 0, 0, 288, 0, 464, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 748, 212, 760, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 767, 0, 0, 716, -519, 212, 0, 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, 0, 0, 26, 27, 28, 29, 793, 0, 30, 0, 0, 31, 32, 219, 0, 803, 0, 341, 364, 0, 0, 0, 805, 0, 283, 284, 0, 285, 813, 0, 0, 0, 0, 0, 0, 0, 33, 827, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 716, 414, 0, 286, 0, 41, 42, 0, 414, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 867, 0, 0, 43, 0, 44, 0, 0, 0, 212, 0, 0, 45, 46, 0, 0, 0, 0, 295, 0, 379, 0, 0, 978, 369, 369, 0, 45, 46, 297, 298, 299, 300, 219, 0, 0, 813, 0, 0, 0, 0, 212, 0, 0, 909, 0, 0, 0, 0, 0, 0, 0, 414, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 0, 0, 252, 0, 212, 0, 0, 0, 0, 31, 0, 0, 946, 947, 0, 212, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 964, 0, 0, 321, 0, 0, 0, 414, 0, 0, 0, 34, 0, 346, 0, 414, 581, 0, 414, 584, 0, 986, -294, 987, 286, 382, 382, 991, 0, 364, 287, 0, 0, 613, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 369, 0, 631, 0, 0, 341, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 0, 0, 0, 212, 45, 46, 297, 298, 299, 300, 414, 0, 0, 0, 414, 0, 0, 0, 0, 1025, 0, 0, 0, 0, 321, 0, 1026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524, 0, 524, 1028, 0, 1029, 0, 0, 0, 364, 0, 0, 478, 0, 0, 0, 0, 0, 0, 1041, 0, 0, 0, 0, 0, 0, 1045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524, 1083, 524, 0, 1084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 0, 0, 364, 212, 0, 0, 0, 0, 0, 0, 0, 166, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 414, 0, 0, 0, 341, 364, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 590, 0, 0, 0, 0, 0, 0, 0, 382, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 414, 414, 0, 0, 0, 0, 0, 0, 0, 0, 1157, 212, 0, 0, 0, 0, 0, 0, 0, 807, 364, 0, 0, 0, 0, 0, 0, 0, -402, 678, 613, 0, 613, 613, 0, 0, 45, 46, 0, 613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 846, 364, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 364, 364, 364, 0, 526, 0, 0, 0, 0, 0, 1222, 0, 710, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 414, 889, 0, 0, 414, 892, 0, 0, 0, 0, 0, 894, 0, 0, 0, 0, 0, 0, 0, 0, 1234, 0, 0, 0, 0, 1236, 0, 744, 0, 0, 414, 0, 0, 1240, 0, 0, 0, 0, 0, 0, 761, 0, 0, 0, 0, 744, 0, 0, 744, 0, 0, 0, 0, 364, 613, 0, 0, 0, 0, 0, 771, 0, 0, 0, 0, 0, 0, 0, 0, 1269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1277, 792, 0, 1278, 0, 1279, 0, 0, 341, 364, 0, 801, 0, 414, 414, 0, 0, 0, 346, 1288, 1289, 0, 0, 761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 866, 807, 364, 0, 0, 613, 0, 613, 0, 382, 0, 0, 0, 0, 0, 0, 0, 613, 1343, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 807, 0, 0, 0, 1394, 0, 1395, 341, 364, 414, 34, 414, 35, 0, 36, 414, 0, 38, 39, 761, 1405, 970, 1406, 0, 0, 0, 0, 0, 0, 0, 0, 981, 0, 0, 0, 0, 613, 613, 990, 0, 1413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 1431, 1433, 0, 0, 0, 45, 46, 364, 0, 0, 0, 1438, 0, 0, 1240, 0, 0, 414, 0, 0, 0, 0, 0, 0, 1008, 1009, 0, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 1462, 0, 414, 1154, 0, 346, 0, 0, 0, 1469, 0, 0, 1471, 364, 1473, 1475, 1477, 0, 0, 414, 1166, 0, 613, 613, 1171, 0, 0, 0, 0, 0, 507, 0, 509, 512, 364, 364, 283, 284, 0, 285, 515, 516, 0, 0, 0, 1039, 0, 0, 0, 382, 0, 0, 0, 0, 509, 509, 1508, 0, 1510, 0, 1240, 0, 0, 0, 0, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 1522, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 346, 0, 0, 0, 0, 509, 0, 0, 0, 0, 414, 0, 414, 0, 0, 0, 0, 414, 0, 0, 0, 295, 0, 379, 0, 0, 613, 0, 0, 0, 709, 46, 297, 298, 299, 300, 0, 0, 0, 321, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 807, 414, 1256, 0, 1130, 1131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382, 0, 0, 0, 0, 0, 981, 364, 0, 1145, 0, 744, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 1161, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 1176, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382, 0, 1194, 341, 0, 34, 0, 0, 0, 286, 0, 0, 38, 39, 0, 640, -294, 981, 981, 288, 0, 364, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 1226, 0, 0, 0, 0, 0, 0, 0, 0, 634, 0, 338, 0, 0, 295, 0, 764, 0, 45, 46, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 364, 364, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 0, 0, 981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1280, 1281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 981, 0, 286, 34, 0, 35, 0, 36, 287, 0, 38, 39, 288, 509, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 1063, 0, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 1388, 0, 0, 744, -129, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 414, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 414, 414, 0, 509, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 208, 39, 0, 0, 0, 0, 0, 1447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 45, 46, 26, 27, 28, 29, 0, 0, 30, 283, 284, 31, 1048, 1049, 0, 1050, 0, 0, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 0, 0, 0, 1059, 0, 0, 0, 1060, 1061, 0, 33, 0, 286, 34, 509, 35, 0, 36, 1062, 1514, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 0, 0, 295, 0, 1063, 0, 509, 172, 0, 0, 31, 45, 46, 297, 298, 299, 300, 0, 0, 321, 0, 1064, 0, 0, 0, -129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 509, 0, 0, 0, 0, -295, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 509, 30, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 111, 0, 38, 39, 0, 0, 295, 0, 44, 509, 0, 41, 42, 0, 0, 45, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 343, 0, 0, 0, 0, 760, 0, 344, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 38, 39, 40, 0, 295, 0, 969, 0, 0, 41, 42, 760, 0, 344, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 158, 0, 0, 0, 509, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 509, 509, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 295, 0, 969, 0, 0, 0, 0, 760, 0, 45, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 208, 39, 0, 0, 295, 0, 343, 0, 0, 0, 0, 0, 0, 344, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 208, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 1005, 0, 0, 0, 0, 0, 0, 1006, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 969, 0, 0, 0, 0, 0, 0, 344, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 208, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 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, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, -523, 0, 0, 45, 46, 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, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 0, 45, 46, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -294, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 44, 0, 0, 31, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 208, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 209, 0, 0, 0, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1367, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, 678, 0, 0, 0, 0, 41, 42, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 338, 0, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1369, 0, 0, 0, 34, 0, 0, 0, 0, 111, 0, 38, 39, 0, 0, 678, 0, 0, 0, 0, 41, 42, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 44, 0, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 271, 31, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 678, 31, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 592, 31, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 0, 0, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 517, 0, 0, 172, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 286, 34, 26, 27, 28, 0, 640, 0, 38, 39, 288, 31, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 295, -35, 741, 38, 39, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 634, 0, 338, 0, 283, 284, 31, 285, 0, 45, 46, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 286, 34, 26, 27, 28, 0, 287, 0, 38, 39, 288, 31, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 295, 0, 296, 38, 39, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 258, 0, 283, 284, 31, 285, 0, 45, 46, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 286, 34, 26, 27, 28, 0, 287, 0, 38, 39, 288, 31, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 295, 0, 158, 38, 39, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 158, 0, 283, 284, 31, 285, 0, 45, 46, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 286, 34, 26, 27, 28, 0, 287, 0, 38, 39, 288, 31, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 295, 0, 592, 208, 39, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 271, 0, 283, 284, 31, 285, 0, 45, 46, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 286, 34, 26, 27, 28, 0, 287, 0, 38, 39, 288, 31, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 295, 0, 379, 38, 39, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 467, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 338, 0, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 0, 38, 39, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 34, 26, 27, 28, 0, 37, 0, 336, 337, 40, 31, -294, 0, 0, -3, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 634, 37, 338, 336, 337, 40, 31, -294, 0, 45, 46, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 37, 338, 38, 39, 40, 31, 0, 0, 45, 46, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 43, 37, 44, 208, 39, 40, 31, 0, 0, 45, 46, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 43, 37, 271, 336, 337, 40, 31, 685, 0, 45, 46, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 34, 26, 27, 28, 634, 0, 338, 38, 39, 0, 31, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 686, 38, 39, 0, 687, -294, 0, 45, 46, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 338, 31, 685, 0, 0, 0, 0, 45, 46, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 685, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 34, 0, 0, 31, 0, 0, 686, 38, 39, 0, 1099, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 686, 0, 0, 0, 1231, 0, 0, 45, 46, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 686, 26, 27, 28, 0, 0, 0, 45, 46, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 485, 486, 487, 38, 39, 0, 31, 0, 0, 0, 592, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 44, 38, 39, 0, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 283, 284, 0, 285, 1049, 0, 1050, 0, 0, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 0, 0, 1547, 1059, 0, 0, 0, 1060, 1061, 34, 33, 35, 286, 36, 0, 0, 38, 39, 1062, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -415, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 1064, 0, 283, 284, -129, 285, 1049, 0, 1050, 0, 0, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 0, 0, 0, 1059, 0, 0, 0, 1060, 1061, 0, 33, 0, 286, 0, 0, 0, 0, 0, 1062, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 1064, 0, 0, 0, -129, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 283, 284, 0, 285, 1049, 0, 1050, 1417, 1418, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 0, 0, 1547, 1059, 0, 0, 0, 1060, 1061, 34, 33, 35, 286, 36, 0, 0, 38, 39, 1062, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 1325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 283, 284, 1064, 285, 1049, 0, 1050, 1417, 1418, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 0, 0, 0, 1059, 0, 0, 0, 1060, 1061, 0, 33, 0, 286, 0, 0, 0, 0, 0, 1062, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 283, 284, 1064, 285, 1049, 0, 1050, 0, 0, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 0, 0, 0, 1059, 0, 0, 0, 1060, 1061, 0, 33, 0, 286, 0, 0, 0, 0, 0, 1062, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 172, 0, 0, 0, 45, 46, 297, 298, 299, 300, 286, 0, 0, 0, 1064, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 379, 0, 0, 283, 284, 0, 285, 344, 46, 297, 298, 299, 300, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 286, 293, 294, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 506, 0, 0, 0, 0, 283, 284, 0, 285, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 295, 0, 0, 0, 0, 283, 284, 0, 285, 45, 46, 297, 298, 299, 300, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 286, 293, 294, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 511, 0, 0, 0, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 175, 176, 40, 0, 0, 0, 0, 0, 0, 41, 42, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 467, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1315)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 240, 186, 205, 0, 734, 0, 43, 43, 43, 534, 752, 186, 1, 752, 752, 187, 106, 186, 117, 280, 169, 170, 513, 364, 349, 186, 220, 368, 186, 349, 32, 186, 620, 186, 991, 32, 1029, 32, 521, 345, 602, 43, 187, 879, 984, 759, 647, 49, 492, 418, 0, 0, 496, 879, 49, 600, 188, 571, 602, 43, 600, 63, 600, 600, 66, 32, 156, 69, 63, 438, 600, 66, 600, 282, 69, 693, 49, 446, 600, 72, 69, 266, 32, 32, 1041, 696, 39, 1335, 634, 635, 636, 266, 426, 427, 57, 267, 43, 266, 1028, 1029, 0, 1417, 43, 202, 106, 266, 1048, 653, 266, 1060, 1061, 266, 114, 266, 39, 117, 118, 603, 72, 635, 636, 482, 267, 609, 39, 51, 95, 44, 45, 85, 262, 263, 32, 229, 39, 96, 64, 653, 28, 132, 39, 114, 63, 72, 107, 147, 148, 110, 257, 186, 186, 186, 248, 148, 156, 157, 109, 113, 111, 161, 494, 130, 123, 488, 118, 711, 161, 110, 910, 82, 39, 910, 910, 116, 147, 1491, 482, 44, 45, 513, 82, 109, 719, 109, 186, 187, 111, 1138, 78, 719, 1438, 719, 187, 156, 109, 711, 111, 490, 115, 30, 202, 82, 186, 132, 109, 688, 111, 72, 210, 111, 109, 132, 111, 1123, 82, 210, 410, 1127, 83, 84, 222, 72, 1048, 74, 75, 107, 82, 222, 11, 266, 266, 266, 83, 84, 406, 82, 117, 210, 240, 186, 109, 109, 111, 1236, 578, 186, 111, 114, 589, 131, 252, 341, 83, 84, 110, 252, 219, 252, 260, 805, 111, 406, 109, 265, 266, 267, 828, 240, 1, 1473, 272, 816, 267, 634, 635, 636, 816, 1421, 816, 816, 994, 371, 602, 797, 828, 252, 816, 905, 816, 805, 631, 96, 653, 295, 816, 504, 1289, 396, 109, 272, 911, 109, 252, 252, 1508, 307, 1510, 257, 480, 418, 273, 604, 1252, 682, 620, 608, 49, 280, 123, 625, 131, 323, 1524, 44, 45, 424, 328, 1057, 929, 438, 116, 430, 818, 328, 307, 480, 629, 446, 1494, 341, 633, 109, 1544, 345, 1500, 956, 132, 349, 350, 1551, 711, 39, 252, 90, 91, 285, 72, 257, 1288, 1289, 1302, 1524, 364, 82, 109, 1521, 368, 83, 84, 371, 1526, 72, 345, 106, 112, 1519, 938, 307, 308, 57, 1524, 114, 83, 84, 114, 348, 1222, 748, 1551, 126, 127, 110, 937, 114, 396, 111, 1222, 937, 117, 937, 1544, 110, 365, 110, 406, 110, 369, 1551, 117, 116, 111, 406, 117, 244, 147, 345, 116, 115, 116, 1007, 1413, 3, 424, 156, 426, 427, 131, 116, 430, 107, 116, 433, 110, 131, 116, 525, 10, 11, 12, 13, 14, 3, 748, 132, 805, 72, 132, 0, 1405, 1406, 132, 381, 454, 426, 427, 118, 83, 84, 667, 116, 110, 124, 125, 0, 1, 39, 807, 117, 418, 432, 472, 812, 733, 206, 116, 132, 1302, 210, 480, 32, 482, 116, 484, 1413, 111, 480, 488, 484, 438, 484, 132, 974, 494, 67, 116, 32, 446, 132, 989, 648, 116, 116, 946, 828, 506, 0, 508, 240, 828, 511, 132, 513, 514, 66, 1125, 0, 688, 132, 418, 521, 1462, 494, 112, 525, 526, 657, 116, 1469, 737, 66, 1016, 1017, 69, 109, 484, 484, 1137, 116, 438, 272, 513, 219, 275, 688, 131, 1107, 446, 110, 909, 380, 116, 116, 72, 132, 74, 75, 655, 850, 110, 72, 901, 109, 295, 83, 84, 116, 132, 132, 570, 571, 83, 84, 1302, 682, 307, 109, 578, 1188, 1189, 112, 1522, 132, 482, 116, 484, 116, 112, 589, 590, 109, 116, 80, 594, 590, 114, 273, 109, 109, 600, 708, 602, 132, 280, 909, 109, 578, 111, 109, 341, 80, 1093, 109, 345, 118, 119, 1098, 109, 942, 620, 549, 550, 551, 111, 625, 113, 627, 589, 110, 117, 631, 110, 364, 634, 635, 636, 368, 1462, 112, 371, 112, 111, 116, 113, 1469, 72, 110, 117, 620, 110, 1379, 943, 653, 625, 655, 116, 83, 84, 747, 621, 110, 491, 72, 493, 74, 75, 116, 129, 1028, 131, 222, 348, 865, 83, 84, 637, 110, 66, 4, 5, 6, 7, 8, 9, 685, 110, 222, 688, 365, 109, 652, 116, 369, 886, 426, 427, 109, 1522, 111, 109, 252, 112, 1007, 109, 114, 116, 0, 1, 110, 948, 711, 712, 713, 109, 116, 110, 252, 115, 719, 720, 132, 116, 454, 871, 295, 110, 910, 64, 110, 118, 109, 116, 111, 682, 116, 467, 910, 1466, 32, 1468, 109, 912, 910, 69, 109, 71, 747, 748, 110, 110, 910, 752, 753, 910, 116, 116, 910, 112, 910, 708, 492, 110, 494, 110, 496, 112, 132, 116, 912, 116, 114, 733, 161, 114, 506, 69, 508, 109, 110, 511, 110, 513, 514, 682, 131, 132, 116, 1528, 109, 1399, 1528, 1528, 1132, 525, 1523, 1319, 797, 1157, 350, 110, 556, 557, 558, 559, 805, 116, 807, 1417, 809, 708, 132, 812, 813, 643, 109, 816, 111, 813, 1020, 908, 110, 114, 110, 118, 119, 70, 116, 828, 116, 74, 759, 110, 77, 222, 79, 132, 72, 116, 74, 75, 76, 86, 72, 82, 74, 75, 578, 83, 84, 748, 120, 121, 1157, 83, 84, 426, 427, 589, 72, 109, 74, 75, 692, 72, 694, 74, 75, 76, 698, 83, 84, 260, 109, 109, 83, 84, 265, 109, 879, 111, 1490, 1491, 82, 879, 114, 110, 118, 119, 620, 112, 109, 116, 111, 625, 72, 1043, 74, 75, 76, 631, 901, 109, 110, 111, 49, 83, 84, 908, 909, 910, 109, 912, 111, 119, 72, 1123, 74, 75, 76, 1127, 1128, 473, 1093, 924, 128, 83, 84, 1098, 1288, 94, 879, 1236, 484, 88, 89, 506, 937, 938, 129, 901, 511, 942, 131, 514, 621, 111, 947, 948, 484, 1093, 109, 109, 111, 685, 1098, 109, 0, 1, 252, 947, 637, 350, 506, 964, 508, 112, 110, 511, 213, 114, 514, 109, 116, 974, 110, 652, 948, 109, 110, 111, 879, 92, 93, 72, 49, 29, 30, 76, 32, 112, 109, 723, 111, 110, 83, 84, 567, 112, 63, 43, 109, 66, 111, 110, 69, 49, 1007, 109, 110, 111, 909, 110, 72, 57, 110, 747, 76, 1115, 110, 63, 109, 1503, 66, 83, 84, 69, 109, 1028, 1029, 118, 119, 109, 110, 111, 109, 1007, 111, 111, 1246, 83, 84, 871, 431, 58, 59, 60, 112, 1048, 878, 109, 114, 111, 1048, 85, 86, 87, 733, 116, 118, 119, 1261, 1262, 1263, 107, 131, 210, 110, 109, 114, 111, 622, 1553, 915, 117, 917, 807, 114, 109, 1007, 111, 812, 113, 114, 148, 473, 115, 116, 1088, 109, 919, 116, 117, 1093, 110, 111, 117, 161, 1098, 112, 1048, 58, 59, 115, 116, 148, 110, 1107, 352, 110, 354, 116, 117, 156, 112, 1115, 116, 117, 161, 112, 1048, 44, 45, 187, 552, 553, 560, 561, 272, 1336, 1218, 112, 1132, 1340, 554, 555, 112, 4, 5, 6, 7, 8, 9, 186, 187, 117, 210, 117, 699, 978, 1048, 295, 116, 29, 85, 86, 87, 1157, 222, 202, 110, 110, 713, 307, 112, 112, 132, 210, 114, 110, 901, 115, 115, 115, 110, 109, 219, 908, 109, 222, 111, 116, 113, 114, 110, 110, 229, 116, 110, 117, 110, 484, 110, 924, 110, 116, 110, 110, 442, 1199, 1200, 244, 69, 110, 71, 248, 594, 110, 110, 252, 253, 110, 0, 1200, 110, 946, 947, 948, 1218, 110, 110, 110, 1222, 266, 267, 110, 110, 1222, 115, 29, 273, 131, 110, 116, 622, 1442, 1236, 280, 117, 627, 1240, 112, 112, 116, 32, 110, 110, 110, 117, 117, 1079, 112, 112, 1240, 116, 43, 114, 1218, 809, 1157, 110, 49, 110, 110, 328, 132, 4, 5, 6, 7, 8, 9, 116, 110, 1222, 63, 1007, 116, 66, 110, 116, 69, 110, 112, 109, 328, 109, 109, 1288, 1289, 109, 109, 112, 110, 132, 33, 110, 1297, 1395, 115, 1538, 110, 1302, 115, 72, 348, 349, 1302, 76, 115, 454, 699, 114, 112, 129, 83, 84, 10, 11, 12, 13, 14, 365, 110, 1222, 713, 369, 132, 879, 112, 116, 69, 116, 71, 112, 1335, 110, 380, 1236, 110, 110, 109, 406, 112, 879, 1528, 39, 112, 1335, 112, 118, 119, 110, 396, 1302, 1528, 112, 1088, 112, 1529, 148, 1528, 506, 406, 508, 112, 1195, 511, 47, 1528, 514, 132, 1528, 161, 67, 1528, 115, 1528, 110, 132, 132, 424, 132, 1553, 132, 115, 1529, 430, 117, 432, 110, 879, 115, 112, 66, 1395, 112, 112, 186, 187, 112, 1132, 112, 112, 1302, 112, 1503, 112, 110, 110, 1553, 83, 947, 1413, 112, 112, 109, 109, 111, 109, 109, 809, 210, 60, 467, 118, 119, 110, 110, 472, 114, 117, 132, 1394, 222, 112, 112, 480, 1438, 110, 96, 484, 112, 110, 96, 488, 118, 3, 491, 109, 493, 1438, 109, 115, 10, 11, 12, 13, 14, 1010, 110, 112, 1462, 132, 252, 110, 110, 1462, 110, 1469, 513, 1471, 42, 1473, 1469, 116, 110, 117, 266, 132, 110, 96, 96, 39, 132, 528, 132, 1218, 531, 161, 533, 534, 110, 1528, 1528, 1528, 132, 1048, 117, 110, 132, 110, 110, 1503, 132, 115, 112, 112, 1508, 1240, 1510, 67, 109, 1048, 1462, 132, 115, 115, 110, 110, 132, 1469, 1522, 110, 110, 1064, 562, 1522, 1528, 1529, 563, 565, 564, 1222, 1491, 1381, 1529, 1563, 1538, 582, 328, 685, 566, 1312, 1128, 1340, 589, 1469, 917, 1079, 222, 685, 685, 1553, 1098, 66, 698, 600, 925, 602, 1553, 349, 978, 1051, 1462, 76, 871, 1538, 649, 944, 1240, 1469, 582, 723, 1522, 484, 570, 733, 621, 570, 72, 570, 74, 75, 76, -1, 879, -1, 260, -1, -1, 83, 84, 265, 637, -1, -1, -1, -1, -1, 643, -1, -1, -1, 1335, -1, -1, 118, -1, 652, -1, 654, 655, 656, -1, -1, -1, 109, 406, 111, -1, -1, 1010, -1, 1522, 117, 118, 119, -1, -1, -1, 1201, 1202, -1, 1204, 0, 1, -1, -1, -1, -1, 1211, -1, 1213, -1, 688, -1, -1, 1199, 692, 161, 694, -1, -1, 947, 698, -1, 10, 11, 12, 13, 14, -1, 706, 1199, 1200, -1, 32, -1, -1, -1, 1222, 3, -1, -1, -1, 719, 720, 350, 10, 11, 12, 13, 14, 49, -1, 39, 1222, -1, -1, 733, 72, -1, 74, 75, 76, 484, -1, -1, -1, 488, -1, 83, 84, 69, 1240, -1, 1438, 39, -1, -1, 222, -1, -1, 67, -1, -1, -1, 1394, 72, -1, 74, 75, 76, -1, 0, -1, -1, 109, -1, 83, 84, -1, -1, 1222, -1, 67, 118, 119, -1, 1471, 106, 1473, -1, -1, -1, 1297, -1, -1, 260, -1, 1302, 55, -1, 265, 1048, 109, 32, 111, 431, -1, -1, 1297, -1, -1, 118, 119, 1302, -1, 280, -1, -1, -1, 816, -1, -1, -1, 1508, -1, 1510, 924, -1, -1, 148, -1, 828, 72, -1, 74, 75, 76, 156, 157, -1, 69, 98, -1, 83, 84, -1, 1335, 473, -1, -1, -1, 1375, -1, 1538, -1, -1, 3, 1199, 600, -1, 602, -1, -1, 10, 11, 12, 13, 14, 187, 109, -1, 111, -1, -1, 871, -1, 1318, -1, 118, 119, -1, 878, -1, 202, -1, 350, 205, 206, -1, -1, 464, 210, 39, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, 901, -1, 83, 84, 464, -1, -1, -1, 231, 910, -1, 912, 235, -1, 237, -1, 67, -1, 919, -1, -1, -1, -1, 246, 157, -1, -1, 1373, 109, 252, 1376, -1, -1, 194, 257, -1, -1, 118, 119, -1, -1, 942, 688, -1, 267, 1438, -1, -1, -1, 1200, -1, 1297, 275, 1462, -1, -1, 217, -1, -1, -1, 1469, 962, 431, -1, 594, -1, 227, -1, -1, 1462, -1, 1222, -1, 719, 720, 1421, 1469, 978, -1, 448, 1426, -1, -1, -1, -1, 986, 1088, -1, 989, 1240, 991, -1, 622, -1, -1, -1, -1, 627, 231, -1, -1, -1, -1, -1, 473, -1, -1, -1, -1, -1, 1456, -1, -1, 1522, -1, -1, -1, -1, 341, 252, -1, -1, 345, -1, 257, -1, -1, -1, 351, 1522, -1, -1, -1, -1, 295, -1, -1, -1, -1, -1, 1041, 364, -1, -1, -1, 368, -1, -1, 371, -1, -1, 1302, -1, 26, 27, 28, -1, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, 699, 816, -1, 83, 84, -1, -1, -1, -1, 1079, -1, -1, -1, 828, 713, 1335, -1, -1, -1, -1, -1, -1, -1, 1093, 671, -1, 418, 1542, 1098, 109, 0, 111, -1, 1548, -1, -1, -1, -1, 118, 119, -1, 433, 671, -1, 1559, 1115, 438, -1, 1563, 351, -1, -1, -1, -1, 446, -1, 594, 99, -1, 101, -1, -1, 32, -1, 10, 11, 12, 13, 14, -1, -1, -1, 464, -1, -1, 467, -1, -1, -1, -1, -1, -1, -1, -1, 622, -1, -1, -1, -1, 627, 482, -1, 484, 39, -1, 910, -1, 912, -1, 69, 492, -1, -1, -1, 496, -1, -1, -1, -1, -1, 809, -1, -1, 443, -1, -1, 418, -1, 1438, -1, 0, 67, -1, -1, -1, 1195, 72, 942, 74, 75, 76, 433, -1, 525, 526, -1, 438, 83, 84, 469, 182, -1, 1462, -1, 446, -1, 793, -1, 1218, 1469, 192, 193, 32, -1, -1, 197, 803, 199, 200, -1, -1, 699, 464, 109, 793, 111, -1, -1, -1, -1, 817, -1, 118, 119, 803, 713, 506, -1, -1, 571, 482, 511, 484, -1, 514, -1, -1, 157, 817, 69, -1, 1261, 1262, 1263, -1, 733, -1, 589, 590, -1, -1, -1, 1522, -1, -1, 10, 11, 12, 13, 14, 602, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, 526, -1, -1, -1, 620, -1, 190, -1, -1, 625, 39, -1, -1, 197, -1, 631, -1, -1, 634, 635, 636, -1, -1, 39, -1, 1319, -1, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 653, 67, -1, -1, -1, -1, -1, -1, -1, 696, 809, -1, -1, -1, 67, -1, 157, 1093, 671, 72, -1, 252, 1098, 76, 131, -1, 257, 590, -1, 682, 83, 84, -1, -1, -1, -1, -1, -1, -1, 1471, -1, 1473, -1, 109, -1, 111, -1, -1, 269, -1, 1010, -1, 118, 119, -1, 708, 109, -1, 711, -1, -1, -1, -1, 1394, 1395, 118, 119, 720, -1, -1, 723, 634, 635, 636, 1405, 1406, 1508, -1, 1510, 670, -1, -1, -1, -1, -1, -1, -1, -1, 679, -1, 653, -1, 683, -1, 747, 748, -1, -1, -1, -1, 753, -1, 323, 790, -1, -1, -1, -1, 671, -1, 331, 252, 1443, 334, -1, -1, 257, 1025, 1026, 682, 351, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 1025, 1026, -1, -1, -1, 793, -1, -1, -1, -1, 708, -1, -1, 711, -1, 803, -1, 805, -1, 807, 39, -1, 810, -1, 812, 813, -1, -1, -1, 817, -1, 10, 11, 12, 13, 14, -1, 1503, 1504, 827, 1083, 1084, 398, -1, -1, 867, 402, 1513, 67, -1, 748, -1, 418, 72, -1, 74, 75, 76, 1083, 1084, 39, -1, 1528, 1529, 83, 84, -1, 433, -1, -1, -1, -1, 438, -1, -1, 351, 1010, -1, -1, -1, 446, -1, -1, -1, -1, 1, -1, 1553, 67, 911, 109, 879, 111, -1, -1, 793, -1, -1, 464, 118, 119, -1, -1, -1, 1199, 803, -1, 805, -1, -1, -1, -1, 810, 901, -1, 813, 482, -1, 484, 817, 908, 909, -1, 479, 912, -1, -1, -1, -1, -1, 109, -1, 111, -1, 956, -1, 574, 575, -1, 118, 119, -1, 418, 72, -1, 74, 75, 76, -1, -1, 938, -1, -1, -1, 83, 84, -1, 433, 946, 947, 526, 671, 438, -1, -1, 603, -1, -1, 606, 607, 446, 609, 994, 611, 612, -1, 964, 903, 616, 617, 109, 879, 111, -1, -1, -1, -1, -1, 464, 118, 119, 1234, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1297, -1, -1, -1, 482, -1, 484, 1234, -1, 909, -1, -1, 570, 571, 0, 1, -1, 1007, -1, -1, -1, 1045, 590, -1, 1269, -1, -1, -1, -1, -1, 1020, -1, 1277, 1278, 1279, 1025, 1026, -1, 1028, 1029, -1, -1, 1269, -1, -1, -1, 32, -1, 526, -1, 1277, 1278, 1279, -1, -1, -1, -1, -1, 1048, -1, -1, -1, -1, 1199, 964, -1, 634, 635, 636, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 793, -1, 69, -1, 653, -1, -1, -1, -1, -1, 803, -1, 1083, 1084, -1, -1, -1, 1343, -1, 658, 1125, -1, 671, 662, 817, -1, -1, -1, -1, -1, -1, 590, -1, 682, 1528, 1343, 757, 758, -1, -1, -1, -1, -1, -1, 1025, 1026, -1, 1028, 1029, -1, 1059, -1, -1, -1, 253, -1, -1, -1, -1, 708, -1, 1132, 711, -1, -1, -1, -1, 1048, -1, -1, -1, -1, -1, -1, -1, 634, 635, 636, -1, -1, 1297, -1, -1, 1188, 1189, -1, 1157, -1, 0, -1, 157, -1, -1, -1, 653, -1, -1, -1, -1, 748, -1, -1, 1083, 1084, -1, -1, -1, -1, -1, -1, -1, -1, 671, 10, 11, 12, 13, 14, -1, -1, 32, -1, -1, 682, -1, -1, -1, -1, -1, 1200, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, 793, -1, -1, 1218, -1, 708, -1, 1222, 711, -1, 803, 222, 805, 69, 797, -1, -1, 810, -1, 1234, 813, 1236, -1, -1, 817, 1240, 67, -1, -1, -1, -1, 72, 1157, 74, 75, 76, -1, -1, -1, -1, -1, 252, 83, 84, -1, 748, -1, -1, -1, -1, -1, -1, -1, -1, 1269, -1, 921, -1, -1, -1, -1, -1, 1277, 1278, 1279, -1, -1, -1, 109, -1, -1, -1, -1, 1288, 1289, 1200, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, 879, 1302, 1025, 1026, 793, -1, -1, -1, -1, -1, -1, 1222, -1, -1, 803, 157, 805, -1, -1, -1, -1, 810, -1, 1234, 813, 1236, -1, -1, 817, -1, 909, -1, -1, -1, 1335, -1, -1, -1, 467, -1, -1, -1, 1343, -1, -1, -1, -1, 916, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1269, -1, 1083, 1084, -1, -1, 1399, -1, 1277, 1278, 1279, -1, -1, -1, 1311, -1, -1, -1, -1, 1288, 1289, -1, -1, -1, 1417, -1, 513, 964, -1, -1, -1, -1, 879, 1302, -1, -1, -1, -1, -1, -1, -1, 528, -1, -1, 531, -1, 533, 534, -1, -1, -1, -1, 252, -1, 1413, -1, -1, 257, 26, 27, 28, -1, 909, -1, -1, -1, -1, -1, -1, 996, -1, -1, -1, -1, 1343, -1, 1085, -1, 433, 1438, -1, -1, -1, -1, -1, -1, 1013, -1, 1025, 1026, -1, 1028, 1029, -1, -1, 582, -1, 1490, 1491, -1, 53, -1, 55, 1462, -1, 58, 59, 60, -1, 62, 1469, 1048, -1, -1, -1, -1, -1, 964, -1, -1, -1, -1, -1, -1, 77, -1, -1, -1, -1, 484, -1, 99, -1, 101, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, 1413, -1, 1083, 1084, -1, -1, -1, 351, -1, -1, -1, -1, -1, -1, 126, -1, -1, -1, -1, 1522, 1091, -1, -1, 654, -1, 656, 1529, 526, -1, 1470, -1, 1472, -1, -1, 1025, 1026, -1, 1028, 1029, -1, -1, -1, -1, -1, 1269, -1, -1, -1, -1, 1462, -1, -1, 1277, 1278, 1279, -1, 1469, 1048, -1, -1, -1, -1, 1133, -1, 1217, -1, 1507, -1, 1509, -1, 182, -1, -1, -1, 418, 706, 1157, -1, 190, -1, 192, 193, -1, -1, -1, 197, -1, 199, 200, 433, -1, 590, 1083, 1084, 438, -1, -1, -1, -1, -1, -1, -1, 446, -1, -1, -1, -1, -1, -1, 1522, -1, 1552, -1, 1554, -1, -1, -1, -1, 1343, 1200, 464, 10, 11, 12, 13, 14, 1567, 1568, -1, -1, -1, -1, -1, -1, -1, 634, 635, 636, 482, -1, 484, 1222, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, -1, 1234, 653, 1236, -1, 269, -1, -1, 10, 11, 12, 13, 14, -1, 1157, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 526, 72, -1, 74, 75, 76, 1269, 39, -1, -1, -1, -1, 83, 84, 1277, 1278, 1279, -1, -1, -1, -1, -1, -1, -1, -1, 1288, 1289, 1200, -1, -1, 711, -1, -1, -1, -1, 67, -1, -1, 109, 1302, 72, -1, -1, -1, 76, -1, -1, 118, 119, 1222, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, 1234, -1, 1236, 590, 344, -1, 346, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 357, 358, 1343, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, 1269, -1, -1, -1, -1, -1, -1, -1, 1277, 1278, 1279, -1, 634, 635, 636, -1, -1, -1, -1, 1288, 1289, -1, -1, -1, -1, -1, -1, -1, 805, -1, -1, 653, -1, 1302, -1, -1, 813, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, 671, -1, -1, -1, 962, 1413, -1, -1, -1, -1, -1, 682, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, 39, 40, -1, 1343, -1, -1, 986, -1, -1, 989, -1, 991, -1, -1, -1, 708, -1, -1, 711, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, 879, 1462, 72, -1, -1, -1, 76, -1, 1469, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 748, -1, -1, -1, -1, -1, 1041, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 1413, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, 1522, -1, -1, -1, -1, -1, -1, 947, 793, -1, -1, -1, -1, -1, -1, -1, -1, -1, 803, -1, 805, 574, 575, -1, 964, 810, -1, -1, 813, -1, 1462, -1, 817, 37, 38, -1, 40, 1469, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 603, -1, -1, 606, 607, -1, 609, -1, 611, 612, -1, -1, 66, 616, 617, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 1028, 1029, 1522, -1, -1, -1, 879, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 1048, 113, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 909, -1, -1, -1, -1, -1, 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, -1, -1, 30, 31, 32, -1, -1, 700, -1, 702, -1, 39, -1, -1, -1, -1, 709, 710, -1, -1, -1, 714, -1, -1, 964, -1, -1, -1, -1, -1, -1, -1, -1, 726, 1261, 1262, 1263, -1, 731, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, 757, 758, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 761, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, 109, -1, 111, -1, 1025, 1026, -1, 1028, 1029, 118, 119, 1319, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 1199, 1200, -1, -1, 1048, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 1222, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1083, 1084, 1240, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 49, -1, -1, -1, -1, 861, 862, 863, 864, -1, 866, -1, -1, -1, -1, 1405, 1406, 66, -1, -1, -1, -1, -1, -1, -1, -1, 882, -1, -1, -1, 1288, 1289, -1, -1, -1, -1, -1, -1, -1, 1297, 896, -1, -1, -1, 1302, 916, -1, -1, -1, -1, 921, -1, -1, 1443, 1157, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, 1335, -1, -1, 936, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1200, 147, -1, -1, -1, -1, -1, -1, -1, -1, -1, 157, -1, -1, -1, 161, -1, 1504, -1, -1, -1, -1, 1222, -1, -1, -1, 1513, -1, -1, -1, 983, -1, -1, -1, 1234, -1, 1236, 990, -1, -1, -1, -1, 995, -1, -1, -1, -1, 1000, -1, 1002, -1, -1, -1, 1006, -1, 1008, 1009, -1, 1413, 1012, -1, -1, -1, -1, 210, -1, -1, -1, 1021, 1269, -1, -1, -1, -1, -1, -1, 222, 1277, 1278, 1279, -1, -1, -1, 1438, -1, -1, 1039, 1040, 1288, 1289, -1, -1, -1, -1, 240, -1, -1, -1, -1, -1, -1, -1, 1302, -1, -1, -1, -1, 1462, -1, -1, -1, -1, -1, 1066, 1469, -1, 1069, 1085, -1, 265, -1, -1, -1, -1, -1, -1, 272, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1343, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1112, -1, 307, -1, -1, -1, 1118, 1119, 1522, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1130, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, 1143, -1, 1145, -1, -1, 1148, -1, -1, -1, 345, -1, -1, -1, -1, 350, -1, -1, -1, 1161, -1, -1, -1, -1, 1413, -1, -1, -1, -1, -1, -1, -1, 1174, -1, 1176, 1177, 1178, 1179, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1192, -1, 1194, -1, -1, -1, 1198, -1, -1, -1, 1217, -1, 66, -1, -1, -1, -1, -1, -1, -1, -1, -1, 76, 1462, 78, -1, 80, -1, -1, -1, 1469, -1, -1, 87, -1, 1227, 1228, -1, -1, -1, -1, 426, 427, -1, -1, -1, -1, -1, 433, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 118, -1, 120, 121, 122, 454, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1522, -1, -1, -1, -1, 1280, 1281, -1, -1, -1, -1, -1, -1, -1, 482, 1290, -1, -1, -1, -1, -1, -1, -1, -1, 161, -1, 494, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 506, -1, 508, -1, -1, 511, -1, 513, 514, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 526, -1, -1, -1, -1, -1, -1, -1, 1341, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1354, -1, 1356, 1357, 1358, -1, 222, -1, 224, 225, 226, -1, -1, -1, 1368, -1, -1, -1, -1, -1, -1, -1, -1, 1377, -1, -1, -1, -1, -1, -1, -1, 578, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 590, 260, -1, -1, 594, -1, 265, 1404, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 280, -1, -1, -1, -1, -1, -1, -1, -1, 620, -1, -1, -1, -1, 625, -1, -1, -1, -1, -1, -1, -1, -1, 634, 635, 636, -1, -1, -1, -1, -1, 1449, 1450, -1, -1, -1, -1, -1, -1, -1, -1, -1, 653, -1, 1462, -1, -1, -1, 328, -1, -1, 1469, -1, -1, -1, 44, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 350, -1, -1, -1, 685, 355, 356, -1, -1, -1, -1, -1, -1, 363, 1502, -1, -1, -1, 1506, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 711, 7, 713, 92, 10, 11, 12, 13, 14, -1, -1, -1, -1, 102, -1, -1, -1, 1535, -1, 1537, -1, -1, -1, -1, -1, -1, 406, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, 748, -1, -1, -1, -1, -1, -1, 424, -1, -1, 1565, 1566, 429, -1, 431, -1, -1, -1, 1573, 1574, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 448, 158, 76, 451, 452, 79, 80, 81, 82, 83, 84, 459, 86, 87, -1, 172, -1, -1, -1, -1, -1, -1, -1, -1, -1, 473, 805, -1, -1, -1, 809, -1, 480, -1, 813, 109, -1, 111, 195, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 209, -1, -1, -1, -1, -1, -1, -1, -1, 218, -1, -1, -1, -1, -1, -1, -1, -1, -1, 228, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 253, -1, -1, -1, -1, 258, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, 271, -1, -1, 72, -1, -1, 277, 76, 279, -1, 79, 80, 81, 82, 83, 84, 909, 86, 87, -1, -1, -1, -1, -1, -1, 296, -1, -1, -1, -1, -1, 924, 594, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 123, 948, -1, -1, -1, -1, 622, -1, -1, -1, -1, 627, -1, 338, -1, -1, -1, 964, 343, -1, -1, 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, -1, 372, 30, 31, 32, 376, 377, -1, 379, -1, -1, 39, -1, -1, 1007, 386, 387, -1, 389, 390, -1, 392, -1, 394, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1028, 1029, 699, -1, 67, 411, 69, -1, 71, -1, -1, 74, 75, 419, -1, -1, 713, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, 733, 40, 444, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, 1088, -1, -1, 66, 470, -1, -1, -1, -1, 72, 476, -1, -1, 76, -1, 481, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 797, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 517, 809, 116, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, 532, -1, -1, 1157, 0, 828, -1, 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, -1, -1, 30, 31, 32, 33, 570, -1, 36, -1, -1, 39, 40, 1199, -1, 579, -1, 156, 157, -1, -1, -1, 586, -1, 37, 38, -1, 40, 592, -1, -1, -1, -1, -1, -1, -1, 64, 601, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, 1236, 190, -1, 66, -1, 83, 84, -1, 197, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 642, -1, -1, 109, -1, 111, -1, -1, -1, 942, -1, -1, 118, 119, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, 1288, 1289, -1, 118, 119, 120, 121, 122, 123, 1297, -1, -1, 678, -1, -1, -1, -1, 974, -1, -1, 686, -1, -1, -1, -1, -1, -1, -1, 269, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, 717, -1, 1010, -1, -1, -1, -1, 39, -1, -1, 727, 728, -1, 1021, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, 741, -1, -1, 147, -1, -1, -1, 323, -1, -1, -1, 67, -1, 157, -1, 331, 332, -1, 334, 335, -1, 762, 78, 764, 66, 169, 170, 768, -1, 345, 72, -1, -1, 349, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 1413, -1, 368, -1, -1, 371, -1, -1, -1, -1, -1, 1093, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 1107, 118, 119, 120, 121, 122, 123, 398, -1, -1, -1, 402, -1, -1, -1, -1, 832, -1, -1, -1, -1, 240, -1, 839, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1471, -1, 1473, 852, -1, 854, -1, -1, -1, 433, -1, -1, 264, -1, -1, -1, -1, -1, -1, 868, -1, -1, -1, -1, -1, -1, 875, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1508, 887, 1510, -1, 890, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 479, -1, -1, 482, 1199, -1, -1, -1, -1, -1, -1, -1, 1538, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 521, -1, -1, -1, 525, 526, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 969, -1, -1, -1, -1, -1, -1, -1, 380, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, 570, 571, -1, -1, -1, -1, -1, -1, -1, -1, 1005, 1297, -1, -1, -1, -1, -1, -1, -1, 589, 590, -1, -1, -1, -1, -1, -1, -1, 110, 111, 600, -1, 602, 603, -1, -1, 118, 119, -1, 609, -1, -1, -1, -1, -1, -1, -1, -1, -1, 619, 620, -1, -1, -1, -1, 625, -1, -1, -1, -1, -1, -1, -1, -1, 634, 635, 636, -1, 1063, -1, -1, -1, -1, -1, 1069, -1, 474, -1, -1, -1, -1, -1, -1, 653, -1, -1, -1, -1, 658, 659, -1, -1, 662, 663, -1, -1, -1, -1, -1, 669, -1, -1, -1, -1, -1, -1, -1, -1, 1103, -1, -1, -1, -1, 1108, -1, 513, -1, -1, 688, -1, -1, 1116, -1, -1, -1, -1, -1, -1, 526, -1, -1, -1, -1, 531, -1, -1, 534, -1, -1, -1, -1, 711, 712, -1, -1, -1, -1, -1, 546, -1, -1, -1, -1, -1, -1, -1, -1, 1152, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1164, 568, -1, 1167, -1, 1169, -1, -1, 747, 748, -1, 578, -1, 752, 753, -1, -1, -1, 585, 1183, 1184, -1, -1, 590, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1205, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 797, -1, -1, -1, -1, -1, -1, -1, 805, -1, -1, -1, -1, -1, 639, 812, 813, -1, -1, 816, -1, 818, -1, 648, -1, -1, -1, -1, -1, -1, -1, 828, 1254, -1, -1, -1, -1, -1, -1, -1, 1553, -1, -1, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 901, -1, -1, -1, 1330, -1, 1332, 908, 909, 910, 67, 912, 69, -1, 71, 916, -1, 74, 75, 748, 1346, 750, 1348, -1, -1, -1, -1, -1, -1, -1, -1, 760, -1, -1, -1, -1, 937, 938, 767, -1, 1366, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 1382, 1383, -1, -1, -1, 118, 119, 964, -1, -1, -1, 1393, -1, -1, 1396, -1, -1, 974, -1, -1, -1, -1, -1, -1, 809, 810, -1, -1, 813, -1, -1, -1, -1, -1, -1, -1, -1, 1419, -1, 996, 997, -1, 827, -1, -1, -1, 1428, -1, -1, 1431, 1007, 1433, 1434, 1435, -1, -1, 1013, 1014, -1, 1016, 1017, 1018, -1, -1, -1, -1, -1, 283, -1, 285, 286, 1028, 1029, 37, 38, -1, 40, 293, 294, -1, -1, -1, 867, -1, -1, -1, 871, -1, -1, -1, -1, 307, 308, 1475, -1, 1477, -1, 1479, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, 1495, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 909, -1, -1, -1, -1, 345, -1, -1, -1, -1, 1091, -1, 1093, -1, -1, -1, -1, 1098, -1, -1, -1, 109, -1, 111, -1, -1, 1107, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, 948, -1, 381, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1132, 1133, 1134, -1, 964, 965, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 978, -1, -1, -1, -1, -1, 984, 1157, -1, 987, -1, 989, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1010, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 1021, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1043, -1, 1045, 1218, -1, 67, -1, -1, -1, 66, -1, -1, 74, 75, -1, 72, 78, 1060, 1061, 76, -1, 1236, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, 1081, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 109, -1, 111, -1, 118, 119, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, 1288, 1289, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, -1, -1, 1138, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1157, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1172, 1173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1413, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1252, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, 696, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 1316, -1, -1, 1319, 132, -1, -1, -1, -1, -1, -1, -1, 759, -1, -1, 1503, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 1528, 1529, -1, 790, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1553, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 1403, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 118, 119, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, 67, 911, 69, -1, 71, 72, 1485, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, 109, -1, 111, -1, 956, 114, -1, -1, 39, 118, 119, 120, 121, 122, 123, -1, -1, 1538, -1, 128, -1, -1, -1, 132, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 994, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, 1007, -1, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, 30, 31, 32, 33, -1, 1048, 36, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, 1125, -1, 83, 84, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1188, 1189, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 109, -1, 111, -1, -1, 83, 84, 116, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 1399, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1417, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 1490, 1491, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 115, -1, -1, 118, 119, 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, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 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, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, 111, -1, -1, 39, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 111, -1, -1, -1, -1, 83, 84, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 111, -1, 30, 31, 32, -1, -1, 118, 119, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 111, -1, -1, -1, -1, 83, 84, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 111, -1, 30, 31, 32, -1, -1, 118, 119, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, 110, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 109, -1, 111, -1, 37, 38, 39, 40, -1, 118, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 111, -1, 37, 38, 39, 40, -1, 118, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 111, -1, 37, 38, 39, 40, -1, 118, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 111, -1, 37, 38, 39, 40, -1, 118, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, 111, -1, 30, 31, 32, -1, -1, 118, 119, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, -1, 74, 75, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, 78, -1, -1, 114, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, 78, -1, 118, 119, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, 72, 111, 74, 75, 76, 39, -1, -1, 118, 119, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, -1, 118, 119, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, 40, -1, 118, 119, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 30, 31, 32, 109, -1, 111, 74, 75, -1, 39, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 111, 74, 75, -1, 115, 78, -1, 118, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, 40, -1, -1, -1, -1, 118, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, 67, -1, -1, 39, -1, -1, 111, 74, 75, -1, 115, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 111, -1, -1, -1, 115, -1, -1, 118, 119, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, -1, 118, 119, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 33, 34, 35, 74, 75, -1, 39, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, 37, 38, 132, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, -1, -1, 132, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 37, 38, 128, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 37, 38, 128, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, 128, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, -1, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, 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, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 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, 30, 31, 32, 33, 36, 39, 40, 64, 67, 69, 71, 72, 74, 75, 76, 83, 84, 109, 111, 118, 119, 137, 140, 149, 198, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 247, 255, 256, 283, 284, 285, 293, 296, 302, 303, 305, 307, 308, 314, 319, 323, 324, 325, 326, 327, 328, 329, 330, 350, 367, 368, 369, 370, 72, 139, 140, 149, 215, 217, 225, 227, 237, 241, 243, 284, 82, 109, 312, 313, 314, 312, 312, 72, 74, 75, 76, 138, 139, 273, 274, 294, 295, 74, 75, 274, 109, 305, 11, 199, 109, 149, 319, 324, 325, 326, 328, 329, 330, 112, 134, 111, 218, 225, 227, 323, 327, 366, 367, 370, 371, 135, 107, 131, 277, 114, 135, 173, 74, 75, 137, 272, 135, 135, 135, 116, 135, 74, 75, 109, 149, 309, 318, 319, 320, 321, 322, 323, 327, 331, 332, 333, 334, 335, 341, 3, 28, 78, 239, 3, 5, 74, 111, 149, 217, 228, 232, 235, 244, 285, 323, 327, 370, 215, 217, 227, 237, 241, 243, 284, 323, 327, 33, 233, 233, 228, 235, 135, 233, 228, 233, 228, 75, 109, 114, 274, 285, 114, 274, 233, 228, 116, 135, 135, 0, 134, 109, 173, 312, 312, 134, 111, 225, 227, 368, 272, 272, 131, 227, 109, 149, 309, 319, 323, 111, 149, 370, 306, 230, 314, 109, 290, 109, 109, 51, 109, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 109, 111, 120, 121, 122, 123, 136, 140, 141, 142, 143, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 167, 225, 276, 292, 366, 371, 227, 110, 110, 110, 110, 110, 110, 110, 74, 75, 111, 225, 272, 350, 368, 111, 118, 149, 164, 217, 218, 224, 227, 231, 232, 237, 240, 241, 243, 262, 263, 267, 268, 269, 270, 284, 350, 362, 363, 364, 365, 370, 371, 112, 109, 323, 327, 370, 109, 116, 132, 111, 114, 149, 164, 278, 278, 115, 134, 116, 132, 109, 116, 132, 116, 132, 116, 132, 312, 132, 319, 320, 321, 322, 332, 333, 334, 335, 227, 318, 331, 64, 311, 111, 312, 349, 350, 312, 312, 173, 134, 109, 312, 349, 312, 312, 227, 309, 109, 109, 226, 227, 225, 227, 112, 134, 225, 366, 371, 173, 134, 272, 277, 217, 232, 323, 327, 173, 134, 294, 227, 237, 132, 227, 227, 292, 248, 246, 258, 274, 257, 227, 294, 132, 132, 305, 134, 139, 271, 3, 135, 207, 208, 222, 224, 227, 134, 311, 109, 311, 164, 319, 227, 109, 134, 272, 114, 33, 34, 35, 225, 286, 287, 289, 134, 129, 131, 291, 134, 228, 234, 235, 272, 315, 316, 317, 109, 141, 109, 148, 109, 148, 151, 109, 148, 109, 109, 148, 148, 111, 164, 169, 173, 225, 275, 366, 370, 112, 134, 82, 85, 86, 87, 109, 111, 113, 114, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 131, 166, 151, 151, 118, 124, 125, 120, 121, 88, 89, 90, 91, 126, 127, 92, 93, 119, 128, 129, 94, 95, 130, 131, 373, 109, 149, 345, 346, 347, 348, 349, 110, 116, 109, 349, 350, 109, 349, 350, 134, 109, 225, 368, 112, 134, 135, 111, 225, 227, 361, 362, 370, 371, 135, 109, 111, 149, 319, 336, 337, 338, 339, 340, 341, 342, 343, 344, 350, 351, 352, 353, 354, 355, 356, 149, 370, 227, 135, 135, 149, 225, 227, 363, 272, 225, 350, 363, 272, 109, 134, 134, 134, 112, 134, 72, 80, 111, 113, 140, 274, 278, 279, 280, 281, 282, 134, 134, 134, 134, 134, 134, 309, 110, 110, 110, 110, 110, 110, 110, 318, 331, 109, 277, 112, 207, 134, 309, 169, 276, 169, 276, 309, 111, 207, 311, 173, 134, 207, 110, 40, 111, 115, 225, 249, 250, 251, 366, 114, 116, 372, 131, 259, 114, 227, 264, 265, 266, 269, 270, 110, 116, 173, 134, 118, 164, 134, 224, 227, 263, 362, 370, 303, 304, 109, 149, 336, 110, 116, 373, 274, 286, 109, 114, 274, 276, 286, 110, 116, 109, 141, 110, 117, 275, 275, 275, 111, 139, 145, 164, 276, 275, 112, 134, 110, 116, 110, 109, 149, 349, 357, 358, 359, 360, 110, 116, 164, 111, 139, 111, 144, 145, 134, 111, 139, 144, 164, 151, 151, 151, 152, 152, 153, 153, 154, 154, 154, 154, 155, 155, 156, 157, 158, 159, 160, 117, 169, 164, 134, 346, 347, 348, 227, 345, 312, 312, 164, 276, 134, 271, 134, 225, 350, 363, 227, 231, 112, 112, 134, 370, 112, 109, 134, 319, 337, 338, 339, 342, 352, 353, 354, 112, 134, 227, 336, 340, 351, 109, 312, 355, 373, 312, 312, 373, 109, 312, 355, 312, 312, 312, 312, 350, 225, 361, 371, 272, 112, 116, 112, 116, 373, 225, 363, 373, 260, 261, 262, 263, 260, 260, 272, 164, 134, 111, 274, 117, 116, 372, 278, 80, 111, 117, 282, 29, 209, 210, 272, 260, 139, 309, 139, 311, 109, 349, 350, 109, 349, 350, 141, 350, 173, 264, 110, 110, 110, 110, 112, 173, 207, 173, 114, 250, 251, 112, 134, 109, 117, 149, 252, 254, 318, 319, 331, 357, 116, 132, 116, 132, 274, 248, 274, 115, 162, 163, 258, 135, 135, 139, 222, 135, 135, 260, 109, 149, 370, 135, 115, 227, 287, 288, 135, 134, 134, 109, 135, 110, 316, 169, 170, 117, 132, 111, 141, 200, 201, 202, 110, 116, 110, 134, 117, 110, 110, 110, 111, 164, 358, 359, 360, 227, 357, 312, 312, 114, 151, 167, 164, 165, 168, 116, 135, 134, 134, 110, 116, 164, 134, 115, 162, 117, 264, 110, 110, 110, 345, 264, 110, 260, 225, 363, 111, 118, 149, 164, 164, 227, 342, 264, 110, 110, 110, 110, 110, 110, 110, 7, 227, 336, 340, 351, 134, 134, 373, 134, 134, 110, 135, 135, 135, 135, 277, 135, 162, 163, 164, 310, 134, 278, 280, 115, 134, 211, 274, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 72, 111, 128, 170, 171, 172, 173, 174, 175, 177, 178, 190, 192, 193, 198, 212, 308, 29, 135, 131, 277, 134, 134, 110, 135, 173, 248, 132, 132, 319, 163, 227, 253, 254, 253, 274, 312, 115, 259, 372, 110, 116, 112, 112, 135, 227, 116, 373, 290, 110, 286, 215, 217, 225, 298, 299, 300, 301, 292, 110, 110, 117, 163, 109, 110, 117, 116, 139, 164, 164, 112, 110, 110, 110, 357, 279, 116, 135, 168, 112, 139, 146, 147, 164, 145, 135, 146, 162, 167, 135, 109, 349, 350, 135, 135, 134, 135, 135, 135, 164, 110, 135, 109, 349, 350, 109, 355, 109, 355, 350, 226, 7, 118, 135, 164, 264, 264, 263, 267, 267, 268, 116, 116, 110, 110, 112, 96, 123, 135, 135, 146, 278, 164, 116, 132, 212, 216, 227, 231, 109, 109, 171, 109, 109, 72, 132, 72, 132, 72, 118, 170, 109, 173, 165, 165, 117, 112, 143, 132, 135, 134, 135, 211, 110, 164, 264, 264, 312, 110, 115, 252, 115, 134, 110, 134, 135, 309, 115, 134, 135, 135, 110, 114, 200, 112, 163, 132, 200, 202, 110, 116, 135, 109, 349, 350, 372, 165, 112, 135, 85, 113, 116, 135, 135, 112, 135, 110, 134, 110, 110, 112, 112, 112, 135, 110, 134, 134, 134, 164, 164, 135, 112, 135, 135, 135, 135, 134, 134, 163, 163, 112, 112, 135, 135, 274, 227, 169, 169, 47, 169, 134, 132, 132, 132, 169, 132, 169, 58, 59, 60, 194, 195, 196, 132, 63, 132, 312, 114, 175, 115, 132, 135, 135, 96, 269, 270, 110, 299, 116, 132, 116, 132, 115, 297, 117, 141, 110, 110, 117, 168, 112, 134, 115, 112, 111, 147, 111, 147, 147, 112, 112, 112, 264, 112, 264, 264, 264, 135, 135, 112, 112, 110, 110, 112, 116, 96, 263, 96, 135, 112, 112, 110, 110, 109, 110, 170, 191, 212, 132, 110, 109, 109, 173, 196, 58, 59, 164, 171, 144, 110, 110, 114, 134, 134, 298, 141, 203, 109, 132, 203, 135, 117, 264, 134, 134, 135, 135, 135, 135, 112, 112, 134, 135, 112, 171, 44, 45, 114, 181, 182, 183, 169, 171, 135, 110, 170, 114, 183, 96, 134, 96, 134, 109, 109, 132, 115, 134, 272, 309, 115, 116, 117, 163, 110, 112, 164, 135, 146, 146, 110, 110, 110, 110, 267, 42, 163, 179, 180, 310, 117, 134, 171, 181, 110, 132, 171, 132, 134, 110, 134, 110, 134, 96, 134, 96, 134, 132, 298, 141, 139, 204, 110, 132, 117, 110, 135, 135, 171, 96, 116, 117, 135, 205, 206, 212, 132, 170, 170, 205, 173, 197, 225, 366, 173, 197, 110, 134, 110, 134, 115, 110, 116, 164, 112, 112, 163, 179, 182, 184, 185, 134, 132, 182, 186, 187, 135, 109, 149, 309, 357, 139, 135, 173, 197, 173, 197, 109, 132, 139, 171, 176, 115, 182, 212, 170, 56, 176, 189, 115, 182, 110, 227, 110, 135, 135, 292, 171, 176, 132, 188, 189, 176, 189, 173, 173, 110, 110, 110, 188, 135, 135, 173, 173, 135, 135 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (YYLEX_PARAM) #else # define YYLEX yylex () #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* 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 { 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 (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) #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; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (void); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* 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 int yyparse () #endif #endif { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 291 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 297 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 306 "parser.yy" { (yyval.constant) = makeConstantInteger( *(yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 307 "parser.yy" { (yyval.constant) = makeConstantFloat( *(yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 308 "parser.yy" { (yyval.constant) = makeConstantChar( *(yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 333 "parser.yy" { (yyval.constant) = makeConstantStr( *(yyvsp[(1) - (1)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 334 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 18: /* Line 1806 of yacc.c */ #line 341 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 19: /* Line 1806 of yacc.c */ #line 343 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 20: /* Line 1806 of yacc.c */ #line 345 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 21: /* Line 1806 of yacc.c */ #line 347 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 23: /* Line 1806 of yacc.c */ #line 357 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 359 "parser.yy" { (yyval.en) = new CompositeExprNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); } break; case 25: /* Line 1806 of yacc.c */ #line 363 "parser.yy" { (yyval.en) = new CompositeExprNode( build_fieldSel( (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 27: /* Line 1806 of yacc.c */ #line 366 "parser.yy" { (yyval.en) = new CompositeExprNode( build_pfieldSel( (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 29: /* Line 1806 of yacc.c */ #line 369 "parser.yy" { (yyval.en) = new CompositeExprNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 30: /* Line 1806 of yacc.c */ #line 371 "parser.yy" { (yyval.en) = new CompositeExprNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 373 "parser.yy" { (yyval.en) = new CompoundLiteralNode( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 375 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new CompositeExprNode( build_func( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_link( (yyvsp[(3) - (4)].en) ) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 390 "parser.yy" { (yyval.en) = 0; } break; case 37: /* Line 1806 of yacc.c */ #line 393 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); } break; case 38: /* Line 1806 of yacc.c */ #line 398 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 400 "parser.yy" { (yyval.en) = (yyvsp[(9) - (9)].en)->set_argName( new CompositeExprNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (9)].en)->set_link( (yyvsp[(5) - (9)].en) ) ) ) ); } break; case 41: /* Line 1806 of yacc.c */ #line 405 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 42: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 43: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode( build_fieldSel( (yyvsp[(3) - (3)].en), new VarRefNode( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 44: /* Line 1806 of yacc.c */ #line 416 "parser.yy" { (yyval.en) = new CompositeExprNode( build_fieldSel( (yyvsp[(5) - (7)].en), new VarRefNode( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 45: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new CompositeExprNode( build_pfieldSel( (yyvsp[(3) - (3)].en), new VarRefNode( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 46: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = new CompositeExprNode( build_pfieldSel( (yyvsp[(5) - (7)].en), new VarRefNode( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 48: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 49: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 50: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 51: /* Line 1806 of yacc.c */ #line 437 "parser.yy" { switch ( (yyvsp[(1) - (2)].op) ) { case OperKinds::AddressOf: (yyval.en) = new CompositeExprNode( build_addressOf( (yyvsp[(2) - (2)].en) ) ); break; case OperKinds::PointTo: (yyval.en) = new CompositeExprNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); break; default: assert( false ); } } break; case 52: /* Line 1806 of yacc.c */ #line 450 "parser.yy" { (yyval.en) = new CompositeExprNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); } break; case 53: /* Line 1806 of yacc.c */ #line 452 "parser.yy" { (yyval.en) = new CompositeExprNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 54: /* Line 1806 of yacc.c */ #line 454 "parser.yy" { (yyval.en) = new CompositeExprNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 55: /* Line 1806 of yacc.c */ #line 456 "parser.yy" { (yyval.en) = new CompositeExprNode( build_sizeOf( (yyvsp[(2) - (2)].en) ) ); } break; case 56: /* Line 1806 of yacc.c */ #line 458 "parser.yy" { (yyval.en) = new CompositeExprNode( build_sizeOf( new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ) ); } break; case 57: /* Line 1806 of yacc.c */ #line 460 "parser.yy" { (yyval.en) = new CompositeExprNode( build_offsetOf( new TypeValueNode( (yyvsp[(3) - (6)].decl) ), new VarRefNode( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 58: /* Line 1806 of yacc.c */ #line 462 "parser.yy" { (yyval.en) = new CompositeExprNode( build_attr( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ) ); } break; case 59: /* Line 1806 of yacc.c */ #line 464 "parser.yy" { (yyval.en) = new CompositeExprNode( build_attr( new VarRefNode( (yyvsp[(1) - (4)].tok) ), new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ) ); } break; case 60: /* Line 1806 of yacc.c */ #line 466 "parser.yy" { (yyval.en) = new CompositeExprNode( build_attr( new VarRefNode( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); } break; case 61: /* Line 1806 of yacc.c */ #line 468 "parser.yy" { (yyval.en) = new CompositeExprNode( build_alignOf( (yyvsp[(2) - (2)].en) ) ); } break; case 62: /* Line 1806 of yacc.c */ #line 470 "parser.yy" { (yyval.en) = new CompositeExprNode( build_alignOf( new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 476 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 64: /* Line 1806 of yacc.c */ #line 477 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 65: /* Line 1806 of yacc.c */ #line 483 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 66: /* Line 1806 of yacc.c */ #line 484 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 67: /* Line 1806 of yacc.c */ #line 485 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 68: /* Line 1806 of yacc.c */ #line 486 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 70: /* Line 1806 of yacc.c */ #line 492 "parser.yy" { (yyval.en) = new CompositeExprNode( build_cast( new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ) ); } break; case 71: /* Line 1806 of yacc.c */ #line 494 "parser.yy" { (yyval.en) = new CompositeExprNode( build_cast( new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ) ); } break; case 73: /* Line 1806 of yacc.c */ #line 500 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 74: /* Line 1806 of yacc.c */ #line 502 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 75: /* Line 1806 of yacc.c */ #line 504 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 77: /* Line 1806 of yacc.c */ #line 510 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 78: /* Line 1806 of yacc.c */ #line 512 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 80: /* Line 1806 of yacc.c */ #line 518 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 520 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 83: /* Line 1806 of yacc.c */ #line 526 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 84: /* Line 1806 of yacc.c */ #line 528 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 85: /* Line 1806 of yacc.c */ #line 530 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 532 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 88: /* Line 1806 of yacc.c */ #line 538 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 89: /* Line 1806 of yacc.c */ #line 540 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 91: /* Line 1806 of yacc.c */ #line 546 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 93: /* Line 1806 of yacc.c */ #line 552 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 95: /* Line 1806 of yacc.c */ #line 558 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 97: /* Line 1806 of yacc.c */ #line 564 "parser.yy" { (yyval.en) = new CompositeExprNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 99: /* Line 1806 of yacc.c */ #line 570 "parser.yy" { (yyval.en) = new CompositeExprNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 101: /* Line 1806 of yacc.c */ #line 576 "parser.yy" { (yyval.en) = new CompositeExprNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 102: /* Line 1806 of yacc.c */ #line 579 "parser.yy" { (yyval.en) = new CompositeExprNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 581 "parser.yy" { (yyval.en) = new CompositeExprNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 106: /* Line 1806 of yacc.c */ #line 592 "parser.yy" { (yyval.en) = new CompositeExprNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 107: /* Line 1806 of yacc.c */ #line 594 "parser.yy" { (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new CompositeExprNode( build_binary_ptr( OperKinds::Assign, (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ) ); } break; case 108: /* Line 1806 of yacc.c */ #line 599 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 110: /* Line 1806 of yacc.c */ #line 604 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 111: /* Line 1806 of yacc.c */ #line 605 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 112: /* Line 1806 of yacc.c */ #line 606 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 113: /* Line 1806 of yacc.c */ #line 607 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 114: /* Line 1806 of yacc.c */ #line 608 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 115: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 116: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 117: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 119: /* Line 1806 of yacc.c */ #line 613 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 120: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 121: /* Line 1806 of yacc.c */ #line 621 "parser.yy" { (yyval.en) = new CompositeExprNode( build_tuple() ); } break; case 122: /* Line 1806 of yacc.c */ #line 623 "parser.yy" { (yyval.en) = new CompositeExprNode( build_tuple( (yyvsp[(3) - (5)].en) ) ); } break; case 123: /* Line 1806 of yacc.c */ #line 625 "parser.yy" { (yyval.en) = new CompositeExprNode( build_tuple( (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ) ); } break; case 124: /* Line 1806 of yacc.c */ #line 627 "parser.yy" { (yyval.en) = new CompositeExprNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( (yyvsp[(5) - (7)].en) ) ) ); } break; case 126: /* Line 1806 of yacc.c */ #line 633 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 128: /* Line 1806 of yacc.c */ #line 639 "parser.yy" { (yyval.en) = new CompositeExprNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 129: /* Line 1806 of yacc.c */ #line 644 "parser.yy" { (yyval.en) = 0; } break; case 133: /* Line 1806 of yacc.c */ #line 653 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 139: /* Line 1806 of yacc.c */ #line 660 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( StatementNode::Exp, new CompositeExprNode( build_func( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_link( (yyvsp[(4) - (6)].en) ) ) ), 0 ); } break; case 140: /* Line 1806 of yacc.c */ #line 670 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 141: /* Line 1806 of yacc.c */ #line 677 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 142: /* Line 1806 of yacc.c */ #line 684 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 144: /* Line 1806 of yacc.c */ #line 690 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 145: /* Line 1806 of yacc.c */ #line 695 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 697 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 147: /* Line 1806 of yacc.c */ #line 703 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 150: /* Line 1806 of yacc.c */ #line 710 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 151: /* Line 1806 of yacc.c */ #line 715 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 152: /* Line 1806 of yacc.c */ #line 721 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 153: /* Line 1806 of yacc.c */ #line 723 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); } break; case 154: /* Line 1806 of yacc.c */ #line 725 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 155: /* Line 1806 of yacc.c */ #line 727 "parser.yy" { StatementNode *sw = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); // The semantics of the declaration list is changed to include associated initialization, which is performed // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound // statement around the switch. Statements after the initial declaration list can never be executed, and // therefore, are removed from the grammar even though C allows it. The change also applies to choose // statement. (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new CompoundStmtNode( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_link( sw )) ) : sw; } break; case 156: /* Line 1806 of yacc.c */ #line 737 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 157: /* Line 1806 of yacc.c */ #line 739 "parser.yy" { StatementNode *sw = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new CompoundStmtNode( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_link( sw )) ) : sw; } break; case 158: /* Line 1806 of yacc.c */ #line 749 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 159: /* Line 1806 of yacc.c */ #line 751 "parser.yy" { (yyval.en) = new CompositeExprNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 161: /* Line 1806 of yacc.c */ #line 756 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(1) - (1)].en), 0 ); } break; case 162: /* Line 1806 of yacc.c */ #line 758 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_link( new StatementNode( StatementNode::Case, (yyvsp[(3) - (3)].en), 0 ) ) ); } break; case 163: /* Line 1806 of yacc.c */ #line 762 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 164: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 166: /* Line 1806 of yacc.c */ #line 769 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 167: /* Line 1806 of yacc.c */ #line 773 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(2) - (2)].sn) ) ); } break; case 168: /* Line 1806 of yacc.c */ #line 778 "parser.yy" { (yyval.sn) = 0; } break; case 170: /* Line 1806 of yacc.c */ #line 784 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(2) - (2)].sn) ) ); } break; case 171: /* Line 1806 of yacc.c */ #line 786 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 172: /* Line 1806 of yacc.c */ #line 791 "parser.yy" { (yyval.sn) = 0; } break; case 174: /* Line 1806 of yacc.c */ #line 797 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 175: /* Line 1806 of yacc.c */ #line 799 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new CompoundStmtNode( (StatementNode *)mkList( (*(yyvsp[(2) - (3)].sn), *(yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 176: /* Line 1806 of yacc.c */ #line 801 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 177: /* Line 1806 of yacc.c */ #line 803 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_link( (yyvsp[(2) - (4)].sn)->append_last_case( new CompoundStmtNode( (StatementNode *)mkList( (*(yyvsp[(3) - (4)].sn), *(yyvsp[(4) - (4)].sn) ) ) ) ) ) ); } break; case 178: /* Line 1806 of yacc.c */ #line 808 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 180: /* Line 1806 of yacc.c */ #line 814 "parser.yy" { (yyval.sn) = 0; } break; case 181: /* Line 1806 of yacc.c */ #line 816 "parser.yy" { (yyval.sn) = 0; } break; case 182: /* Line 1806 of yacc.c */ #line 821 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 183: /* Line 1806 of yacc.c */ #line 823 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); } break; case 184: /* Line 1806 of yacc.c */ #line 825 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); } break; case 185: /* Line 1806 of yacc.c */ #line 830 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 186: /* Line 1806 of yacc.c */ #line 832 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 187: /* Line 1806 of yacc.c */ #line 837 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 188: /* Line 1806 of yacc.c */ #line 841 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 189: /* Line 1806 of yacc.c */ #line 844 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 190: /* Line 1806 of yacc.c */ #line 848 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 191: /* Line 1806 of yacc.c */ #line 851 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 192: /* Line 1806 of yacc.c */ #line 855 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 193: /* Line 1806 of yacc.c */ #line 857 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 194: /* Line 1806 of yacc.c */ #line 859 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 195: /* Line 1806 of yacc.c */ #line 863 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 196: /* Line 1806 of yacc.c */ #line 865 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 197: /* Line 1806 of yacc.c */ #line 872 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 198: /* Line 1806 of yacc.c */ #line 874 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 199: /* Line 1806 of yacc.c */ #line 876 "parser.yy" { (yyvsp[(3) - (4)].pn)->set_link( (yyvsp[(4) - (4)].pn) ); (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (4)].sn),*(yyvsp[(3) - (4)].pn) )))); } break; case 201: /* Line 1806 of yacc.c */ #line 887 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 202: /* Line 1806 of yacc.c */ #line 889 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 891 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 204: /* Line 1806 of yacc.c */ #line 893 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 898 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 206: /* Line 1806 of yacc.c */ #line 900 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 902 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 208: /* Line 1806 of yacc.c */ #line 904 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 909 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 211: /* Line 1806 of yacc.c */ #line 923 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 212: /* Line 1806 of yacc.c */ #line 928 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 213: /* Line 1806 of yacc.c */ #line 930 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 215: /* Line 1806 of yacc.c */ #line 939 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); } break; case 216: /* Line 1806 of yacc.c */ #line 941 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); } break; case 217: /* Line 1806 of yacc.c */ #line 943 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ); } break; case 218: /* Line 1806 of yacc.c */ #line 945 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].constant) ); } break; case 219: /* Line 1806 of yacc.c */ #line 947 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].constant), (yyvsp[(12) - (14)].label) ); } break; case 220: /* Line 1806 of yacc.c */ #line 952 "parser.yy" { (yyval.flag) = false; } break; case 221: /* Line 1806 of yacc.c */ #line 954 "parser.yy" { (yyval.flag) = true; } break; case 222: /* Line 1806 of yacc.c */ #line 959 "parser.yy" { (yyval.en) = 0; } break; case 225: /* Line 1806 of yacc.c */ #line 966 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 226: /* Line 1806 of yacc.c */ #line 971 "parser.yy" { (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); } break; case 227: /* Line 1806 of yacc.c */ #line 973 "parser.yy" { (yyval.en) = new AsmExprNode( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ); } break; case 228: /* Line 1806 of yacc.c */ #line 978 "parser.yy" { (yyval.constant) = 0; } break; case 229: /* Line 1806 of yacc.c */ #line 980 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (1)].constant); } break; case 230: /* Line 1806 of yacc.c */ #line 982 "parser.yy" { (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); } break; case 231: /* Line 1806 of yacc.c */ #line 987 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 232: /* Line 1806 of yacc.c */ #line 989 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); } break; case 233: /* Line 1806 of yacc.c */ #line 996 "parser.yy" { (yyval.decl) = 0; } break; case 236: /* Line 1806 of yacc.c */ #line 1003 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 237: /* Line 1806 of yacc.c */ #line 1008 "parser.yy" { (yyval.decl) = 0; } break; case 240: /* Line 1806 of yacc.c */ #line 1015 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 245: /* Line 1806 of yacc.c */ #line 1029 "parser.yy" {} break; case 246: /* Line 1806 of yacc.c */ #line 1030 "parser.yy" {} break; case 254: /* Line 1806 of yacc.c */ #line 1059 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 255: /* Line 1806 of yacc.c */ #line 1066 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 256: /* Line 1806 of yacc.c */ #line 1071 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) )->addInitializer( (yyvsp[(6) - (6)].in) ) ); } break; case 257: /* Line 1806 of yacc.c */ #line 1081 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 258: /* Line 1806 of yacc.c */ #line 1086 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1091 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) ); (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addName( (yyvsp[(3) - (4)].tok) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1099 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 261: /* Line 1806 of yacc.c */ #line 1104 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1109 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 263: /* Line 1806 of yacc.c */ #line 1114 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1119 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 265: /* Line 1806 of yacc.c */ #line 1127 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 266: /* Line 1806 of yacc.c */ #line 1150 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 267: /* Line 1806 of yacc.c */ #line 1154 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 268: /* Line 1806 of yacc.c */ #line 1161 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1165 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 270: /* Line 1806 of yacc.c */ #line 1170 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 271: /* Line 1806 of yacc.c */ #line 1175 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 272: /* Line 1806 of yacc.c */ #line 1180 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 273: /* Line 1806 of yacc.c */ #line 1191 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 274: /* Line 1806 of yacc.c */ #line 1196 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) )->addTypedef() ); } break; case 275: /* Line 1806 of yacc.c */ #line 1201 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addType( (yyvsp[(3) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1206 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 277: /* Line 1806 of yacc.c */ #line 1211 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef()->addType( (yyvsp[(1) - (4)].decl) ); } break; case 278: /* Line 1806 of yacc.c */ #line 1220 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 279: /* Line 1806 of yacc.c */ #line 1225 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 284: /* Line 1806 of yacc.c */ #line 1242 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 285: /* Line 1806 of yacc.c */ #line 1247 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneBaseType( (yyvsp[(4) - (6)].decl)->addInitializer( (yyvsp[(6) - (6)].in) ) ) ); } break; case 294: /* Line 1806 of yacc.c */ #line 1269 "parser.yy" { (yyval.decl) = 0; } break; case 297: /* Line 1806 of yacc.c */ #line 1281 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 300: /* Line 1806 of yacc.c */ #line 1292 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 301: /* Line 1806 of yacc.c */ #line 1294 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 302: /* Line 1806 of yacc.c */ #line 1296 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 303: /* Line 1806 of yacc.c */ #line 1298 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 304: /* Line 1806 of yacc.c */ #line 1300 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 305: /* Line 1806 of yacc.c */ #line 1302 "parser.yy" { typedefTable.enterScope(); } break; case 306: /* Line 1806 of yacc.c */ #line 1306 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 308: /* Line 1806 of yacc.c */ #line 1315 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 309: /* Line 1806 of yacc.c */ #line 1317 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 311: /* Line 1806 of yacc.c */ #line 1328 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1337 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 314: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 315: /* Line 1806 of yacc.c */ #line 1341 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 316: /* Line 1806 of yacc.c */ #line 1343 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 317: /* Line 1806 of yacc.c */ #line 1345 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 318: /* Line 1806 of yacc.c */ #line 1347 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 319: /* Line 1806 of yacc.c */ #line 1349 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 320: /* Line 1806 of yacc.c */ #line 1351 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 321: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 322: /* Line 1806 of yacc.c */ #line 1358 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 323: /* Line 1806 of yacc.c */ #line 1360 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 324: /* Line 1806 of yacc.c */ #line 1362 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 325: /* Line 1806 of yacc.c */ #line 1364 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 326: /* Line 1806 of yacc.c */ #line 1366 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 327: /* Line 1806 of yacc.c */ #line 1368 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 328: /* Line 1806 of yacc.c */ #line 1370 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 329: /* Line 1806 of yacc.c */ #line 1372 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 330: /* Line 1806 of yacc.c */ #line 1374 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 331: /* Line 1806 of yacc.c */ #line 1376 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 332: /* Line 1806 of yacc.c */ #line 1378 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 333: /* Line 1806 of yacc.c */ #line 1380 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 335: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 336: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 337: /* Line 1806 of yacc.c */ #line 1391 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1393 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1399 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1406 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1408 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1410 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1415 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 346: /* Line 1806 of yacc.c */ #line 1417 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1421 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1427 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1429 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1431 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1437 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1439 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1445 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1447 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1449 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1454 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1456 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1468 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl), true ); } break; case 366: /* Line 1806 of yacc.c */ #line 1470 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0, false ); } break; case 367: /* Line 1806 of yacc.c */ #line 1475 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 368: /* Line 1806 of yacc.c */ #line 1477 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), 0, (yyvsp[(5) - (6)].decl), true ); } break; case 369: /* Line 1806 of yacc.c */ #line 1479 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); } break; case 370: /* Line 1806 of yacc.c */ #line 1481 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 371: /* Line 1806 of yacc.c */ #line 1486 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 372: /* Line 1806 of yacc.c */ #line 1488 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 373: /* Line 1806 of yacc.c */ #line 1493 "parser.yy" { (yyval.decl) = 0; } break; case 374: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 376: /* Line 1806 of yacc.c */ #line 1501 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 378: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 380: /* Line 1806 of yacc.c */ #line 1514 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1516 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1518 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1523 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1525 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1530 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 386: /* Line 1806 of yacc.c */ #line 1532 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 387: /* Line 1806 of yacc.c */ #line 1535 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1538 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 390: /* Line 1806 of yacc.c */ #line 1544 "parser.yy" { (yyval.en) = 0; } break; case 391: /* Line 1806 of yacc.c */ #line 1546 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 392: /* Line 1806 of yacc.c */ #line 1551 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 394: /* Line 1806 of yacc.c */ #line 1560 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1562 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 396: /* Line 1806 of yacc.c */ #line 1567 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 397: /* Line 1806 of yacc.c */ #line 1569 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 398: /* Line 1806 of yacc.c */ #line 1574 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 399: /* Line 1806 of yacc.c */ #line 1576 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1581 "parser.yy" { (yyval.en) = 0; } break; case 401: /* Line 1806 of yacc.c */ #line 1583 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 402: /* Line 1806 of yacc.c */ #line 1590 "parser.yy" { (yyval.decl) = 0; } break; case 406: /* Line 1806 of yacc.c */ #line 1598 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 407: /* Line 1806 of yacc.c */ #line 1600 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 408: /* Line 1806 of yacc.c */ #line 1602 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 410: /* Line 1806 of yacc.c */ #line 1610 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 411: /* Line 1806 of yacc.c */ #line 1612 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1614 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 414: /* Line 1806 of yacc.c */ #line 1620 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 415: /* Line 1806 of yacc.c */ #line 1625 "parser.yy" { (yyval.decl) = 0; } break; case 418: /* Line 1806 of yacc.c */ #line 1632 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 421: /* Line 1806 of yacc.c */ #line 1639 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 422: /* Line 1806 of yacc.c */ #line 1641 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 424: /* Line 1806 of yacc.c */ #line 1650 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 425: /* Line 1806 of yacc.c */ #line 1653 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 426: /* Line 1806 of yacc.c */ #line 1655 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 431: /* Line 1806 of yacc.c */ #line 1665 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 433: /* Line 1806 of yacc.c */ #line 1671 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1676 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 436: /* Line 1806 of yacc.c */ #line 1685 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 437: /* Line 1806 of yacc.c */ #line 1694 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 438: /* Line 1806 of yacc.c */ #line 1696 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 450: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 454: /* Line 1806 of yacc.c */ #line 1729 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1734 "parser.yy" { (yyval.in) = 0; } break; case 456: /* Line 1806 of yacc.c */ #line 1736 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 457: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 458: /* Line 1806 of yacc.c */ #line 1742 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 459: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 460: /* Line 1806 of yacc.c */ #line 1748 "parser.yy" { (yyval.in) = 0; } break; case 462: /* Line 1806 of yacc.c */ #line 1750 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1751 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1753 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1769 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 468: /* Line 1806 of yacc.c */ #line 1775 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 469: /* Line 1806 of yacc.c */ #line 1783 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 470: /* Line 1806 of yacc.c */ #line 1785 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(2) - (2)].tok) ) ); } break; case 471: /* Line 1806 of yacc.c */ #line 1788 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 472: /* Line 1806 of yacc.c */ #line 1790 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 473: /* Line 1806 of yacc.c */ #line 1792 "parser.yy" { (yyval.en) = new DesignatorNode( new CompositeExprNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ), true ); } break; case 474: /* Line 1806 of yacc.c */ #line 1794 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(4) - (6)].en) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1818 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1820 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1822 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1828 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1830 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1835 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1841 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1846 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 486: /* Line 1806 of yacc.c */ #line 1848 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 488: /* Line 1806 of yacc.c */ #line 1854 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 489: /* Line 1806 of yacc.c */ #line 1856 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 490: /* Line 1806 of yacc.c */ #line 1858 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 491: /* Line 1806 of yacc.c */ #line 1863 "parser.yy" { (yyval.decl) = 0; } break; case 492: /* Line 1806 of yacc.c */ #line 1865 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 493: /* Line 1806 of yacc.c */ #line 1870 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 494: /* Line 1806 of yacc.c */ #line 1875 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 495: /* Line 1806 of yacc.c */ #line 1877 "parser.yy" { (yyval.decl) = 0; } break; case 496: /* Line 1806 of yacc.c */ #line 1882 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 498: /* Line 1806 of yacc.c */ #line 1885 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 499: /* Line 1806 of yacc.c */ #line 1887 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 500: /* Line 1806 of yacc.c */ #line 1892 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 501: /* Line 1806 of yacc.c */ #line 1894 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 502: /* Line 1806 of yacc.c */ #line 1896 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1901 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1903 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 505: /* Line 1806 of yacc.c */ #line 1908 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 506: /* Line 1806 of yacc.c */ #line 1913 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1921 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 508: /* Line 1806 of yacc.c */ #line 1926 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 509: /* Line 1806 of yacc.c */ #line 1931 "parser.yy" { typedefTable.leaveTrait(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 511: /* Line 1806 of yacc.c */ #line 1941 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1951 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 515: /* Line 1806 of yacc.c */ #line 1956 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 516: /* Line 1806 of yacc.c */ #line 1961 "parser.yy" { typedefTable.addToEnclosingScope2( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 517: /* Line 1806 of yacc.c */ #line 1969 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 518: /* Line 1806 of yacc.c */ #line 1974 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 519: /* Line 1806 of yacc.c */ #line 1984 "parser.yy" {} break; case 520: /* Line 1806 of yacc.c */ #line 1986 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 522: /* Line 1806 of yacc.c */ #line 1998 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 523: /* Line 1806 of yacc.c */ #line 2003 "parser.yy" { (yyval.decl) = 0; } break; case 527: /* Line 1806 of yacc.c */ #line 2011 "parser.yy" {} break; case 528: /* Line 1806 of yacc.c */ #line 2013 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 529: /* Line 1806 of yacc.c */ #line 2018 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 530: /* Line 1806 of yacc.c */ #line 2024 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 532: /* Line 1806 of yacc.c */ #line 2039 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 533: /* Line 1806 of yacc.c */ #line 2045 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (4)].decl)->addOldDeclList( (yyvsp[(3) - (4)].decl) )->addFunctionBody( (yyvsp[(4) - (4)].sn) ); } break; case 534: /* Line 1806 of yacc.c */ #line 2054 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 535: /* Line 1806 of yacc.c */ #line 2060 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 536: /* Line 1806 of yacc.c */ #line 2066 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 537: /* Line 1806 of yacc.c */ #line 2072 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 538: /* Line 1806 of yacc.c */ #line 2078 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (4)].decl)->addFunctionBody( (yyvsp[(4) - (4)].sn) )->addQualifiers( (yyvsp[(2) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 539: /* Line 1806 of yacc.c */ #line 2086 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addType( (yyvsp[(1) - (5)].decl) ); } break; case 540: /* Line 1806 of yacc.c */ #line 2092 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 541: /* Line 1806 of yacc.c */ #line 2100 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 542: /* Line 1806 of yacc.c */ #line 2106 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (6)].decl)->addOldDeclList( (yyvsp[(5) - (6)].decl) )->addFunctionBody( (yyvsp[(6) - (6)].sn) )->addQualifiers( (yyvsp[(2) - (6)].decl) )->addQualifiers( (yyvsp[(1) - (6)].decl) ); } break; case 546: /* Line 1806 of yacc.c */ #line 2121 "parser.yy" { (yyval.en) = new CompositeExprNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 549: /* Line 1806 of yacc.c */ #line 2131 "parser.yy" { (yyval.decl) = 0; } break; case 552: /* Line 1806 of yacc.c */ #line 2138 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 553: /* Line 1806 of yacc.c */ #line 2144 "parser.yy" { (yyval.decl) = 0; } break; case 559: /* Line 1806 of yacc.c */ #line 2159 "parser.yy" {} break; case 560: /* Line 1806 of yacc.c */ #line 2160 "parser.yy" {} break; case 561: /* Line 1806 of yacc.c */ #line 2161 "parser.yy" {} break; case 562: /* Line 1806 of yacc.c */ #line 2162 "parser.yy" {} break; case 563: /* Line 1806 of yacc.c */ #line 2197 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 565: /* Line 1806 of yacc.c */ #line 2200 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2202 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2207 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2212 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 569: /* Line 1806 of yacc.c */ #line 2217 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2219 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2221 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 572: /* Line 1806 of yacc.c */ #line 2226 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2228 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 574: /* Line 1806 of yacc.c */ #line 2230 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2232 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 576: /* Line 1806 of yacc.c */ #line 2237 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2239 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 578: /* Line 1806 of yacc.c */ #line 2248 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2251 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2256 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2258 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2260 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 584: /* Line 1806 of yacc.c */ #line 2265 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2267 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 586: /* Line 1806 of yacc.c */ #line 2269 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 587: /* Line 1806 of yacc.c */ #line 2274 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 588: /* Line 1806 of yacc.c */ #line 2276 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2278 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 593: /* Line 1806 of yacc.c */ #line 2293 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2295 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2297 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 596: /* Line 1806 of yacc.c */ #line 2302 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2304 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2306 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 599: /* Line 1806 of yacc.c */ #line 2311 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2313 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2315 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 602: /* Line 1806 of yacc.c */ #line 2330 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2333 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2335 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2341 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 608: /* Line 1806 of yacc.c */ #line 2346 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2348 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2350 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 611: /* Line 1806 of yacc.c */ #line 2355 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2357 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2359 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2361 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 615: /* Line 1806 of yacc.c */ #line 2366 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2368 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2370 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 618: /* Line 1806 of yacc.c */ #line 2380 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2383 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2385 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2390 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2392 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2394 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 625: /* Line 1806 of yacc.c */ #line 2399 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2401 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2403 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2405 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 629: /* Line 1806 of yacc.c */ #line 2410 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2412 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2414 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 632: /* Line 1806 of yacc.c */ #line 2445 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2448 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2450 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2455 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2460 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2468 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2470 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2472 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 641: /* Line 1806 of yacc.c */ #line 2477 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2479 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2484 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2486 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2501 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2503 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2508 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 649: /* Line 1806 of yacc.c */ #line 2510 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2512 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2514 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2516 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 654: /* Line 1806 of yacc.c */ #line 2522 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2524 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 656: /* Line 1806 of yacc.c */ #line 2526 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 657: /* Line 1806 of yacc.c */ #line 2531 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 658: /* Line 1806 of yacc.c */ #line 2533 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2535 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 660: /* Line 1806 of yacc.c */ #line 2541 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 661: /* Line 1806 of yacc.c */ #line 2543 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2549 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 664: /* Line 1806 of yacc.c */ #line 2551 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 665: /* Line 1806 of yacc.c */ #line 2553 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2555 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2570 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2572 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2577 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 671: /* Line 1806 of yacc.c */ #line 2579 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2581 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2583 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2585 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 676: /* Line 1806 of yacc.c */ #line 2591 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2593 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2595 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 679: /* Line 1806 of yacc.c */ #line 2600 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 680: /* Line 1806 of yacc.c */ #line 2602 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 681: /* Line 1806 of yacc.c */ #line 2604 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 683: /* Line 1806 of yacc.c */ #line 2611 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 685: /* Line 1806 of yacc.c */ #line 2622 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 686: /* Line 1806 of yacc.c */ #line 2625 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 687: /* Line 1806 of yacc.c */ #line 2627 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 688: /* Line 1806 of yacc.c */ #line 2630 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 689: /* Line 1806 of yacc.c */ #line 2632 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 690: /* Line 1806 of yacc.c */ #line 2634 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 692: /* Line 1806 of yacc.c */ #line 2648 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2650 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2655 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 695: /* Line 1806 of yacc.c */ #line 2657 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2659 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2661 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2663 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 700: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2671 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2673 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 703: /* Line 1806 of yacc.c */ #line 2678 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 704: /* Line 1806 of yacc.c */ #line 2680 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 707: /* Line 1806 of yacc.c */ #line 2690 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2700 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2702 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2704 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2706 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2708 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2710 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2717 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2719 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2721 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2723 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2725 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2727 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2729 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2731 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2733 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2735 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2740 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2742 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 728: /* Line 1806 of yacc.c */ #line 2747 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 729: /* Line 1806 of yacc.c */ #line 2749 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 731: /* Line 1806 of yacc.c */ #line 2776 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2787 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2789 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2791 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2793 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2795 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2797 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2804 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2806 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2808 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2810 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2812 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2814 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2819 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2824 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 749: /* Line 1806 of yacc.c */ #line 2826 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 750: /* Line 1806 of yacc.c */ #line 2828 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 753: /* Line 1806 of yacc.c */ #line 2852 "parser.yy" { (yyval.en) = 0; } break; case 754: /* Line 1806 of yacc.c */ #line 2854 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9209 "Parser/parser.cc" default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } *++yyvsp = yylval; /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined(yyoverflow) || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval); } /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif /* Make sure YYID is used. */ return YYID (yyresult); } /* Line 2067 of yacc.c */ #line 2857 "parser.yy" // ----end of grammar---- void yyerror( const char * ) { std::cout << "Error "; if ( yyfilename ) { std::cout << "in file " << yyfilename << " "; } // if std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //