/* 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 #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" extern DeclarationNode * parseTree; extern LinkageSpec::Spec linkage; extern TypedefTable typedefTable; std::stack< LinkageSpec::Spec > linkageStack; void appendStr( std::string *to, std::string *from ) { // "abc" "def" "ghi" => "abcdefghi", remove new text from quotes and insert before last quote in old string. to->insert( to->length() - 1, from->substr( 1, from->length() - 2 ) ); } // appendStr /* Line 268 of yacc.c */ #line 99 "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 115 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantExpr *constant; ForCtl *fctl; LabelNode *label; InitializerNode *in; OperKinds op; std::string *str; bool flag; /* Line 293 of yacc.c */ #line 370 "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 382 "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 250 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10841 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 241 /* YYNRULES -- Number of rules. */ #define YYNRULES 750 /* YYNRULES -- Number of states. */ #define YYNSTATES 1554 /* 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, 121, 2, 2, 2, 124, 118, 2, 109, 110, 117, 119, 116, 120, 113, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 130, 132, 125, 131, 126, 129, 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, 127, 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, 128, 115, 122, 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, 33, 36, 38, 40, 44, 48, 50, 57, 62, 66, 74, 78, 86, 89, 92, 100, 105, 107, 111, 112, 114, 116, 120, 122, 126, 134, 138, 146, 148, 150, 152, 155, 158, 161, 164, 167, 170, 175, 178, 183, 190, 192, 197, 202, 204, 206, 208, 210, 212, 214, 216, 221, 226, 228, 232, 236, 240, 242, 246, 250, 252, 256, 260, 262, 266, 270, 274, 278, 280, 284, 288, 290, 294, 296, 300, 302, 306, 308, 312, 314, 318, 320, 326, 331, 337, 339, 341, 345, 348, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 373, 376, 382, 389, 397, 399, 403, 405, 409, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 435, 440, 443, 451, 453, 457, 459, 462, 464, 467, 469, 472, 475, 481, 489, 495, 505, 511, 521, 523, 527, 529, 531, 535, 539, 542, 544, 547, 550, 551, 553, 556, 560, 561, 563, 566, 570, 574, 579, 580, 582, 584, 587, 593, 601, 608, 615, 620, 624, 629, 632, 636, 639, 643, 647, 651, 655, 661, 665, 669, 674, 676, 682, 689, 695, 702, 712, 723, 733, 744, 747, 749, 752, 755, 758, 760, 767, 776, 787, 800, 815, 816, 818, 819, 821, 823, 827, 832, 840, 841, 843, 847, 849, 853, 855, 857, 859, 863, 865, 867, 869, 873, 874, 876, 880, 885, 887, 891, 893, 895, 899, 903, 907, 911, 915, 918, 922, 929, 933, 937, 942, 944, 947, 950, 954, 960, 969, 977, 985, 991, 1001, 1004, 1007, 1013, 1017, 1023, 1028, 1032, 1037, 1042, 1050, 1054, 1058, 1062, 1066, 1071, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1095, 1097, 1099, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1117, 1123, 1125, 1128, 1132, 1134, 1137, 1139, 1141, 1143, 1145, 1147, 1149, 1151, 1153, 1155, 1157, 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1184, 1187, 1191, 1195, 1197, 1201, 1203, 1206, 1209, 1212, 1217, 1222, 1227, 1232, 1234, 1237, 1240, 1244, 1246, 1249, 1252, 1254, 1257, 1260, 1264, 1266, 1269, 1272, 1274, 1276, 1281, 1284, 1285, 1292, 1300, 1303, 1306, 1309, 1310, 1313, 1316, 1320, 1323, 1327, 1329, 1332, 1336, 1339, 1342, 1347, 1348, 1350, 1353, 1356, 1358, 1359, 1361, 1364, 1367, 1373, 1376, 1377, 1385, 1388, 1393, 1394, 1397, 1398, 1400, 1402, 1404, 1410, 1416, 1422, 1424, 1430, 1436, 1446, 1448, 1454, 1455, 1457, 1459, 1465, 1467, 1469, 1475, 1481, 1483, 1487, 1491, 1496, 1498, 1500, 1502, 1504, 1507, 1509, 1513, 1517, 1519, 1522, 1524, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1553, 1555, 1557, 1559, 1562, 1563, 1566, 1569, 1571, 1576, 1577, 1579, 1582, 1586, 1591, 1594, 1597, 1599, 1602, 1605, 1611, 1617, 1625, 1632, 1634, 1637, 1640, 1644, 1646, 1649, 1652, 1657, 1660, 1665, 1666, 1671, 1674, 1676, 1678, 1680, 1681, 1684, 1690, 1696, 1710, 1712, 1714, 1718, 1722, 1725, 1729, 1733, 1736, 1741, 1743, 1750, 1760, 1761, 1773, 1775, 1779, 1783, 1787, 1789, 1791, 1797, 1800, 1806, 1807, 1809, 1811, 1815, 1816, 1818, 1820, 1822, 1824, 1825, 1832, 1835, 1837, 1840, 1845, 1848, 1852, 1856, 1860, 1865, 1871, 1877, 1883, 1890, 1892, 1894, 1896, 1900, 1901, 1907, 1908, 1910, 1912, 1915, 1922, 1924, 1928, 1929, 1931, 1936, 1938, 1940, 1942, 1944, 1947, 1949, 1952, 1955, 1957, 1961, 1964, 1968, 1972, 1975, 1980, 1985, 1989, 1998, 2002, 2005, 2007, 2010, 2017, 2026, 2030, 2033, 2037, 2041, 2046, 2051, 2055, 2057, 2059, 2061, 2066, 2073, 2077, 2080, 2084, 2088, 2093, 2098, 2102, 2105, 2107, 2110, 2113, 2115, 2119, 2122, 2126, 2130, 2133, 2138, 2143, 2147, 2154, 2163, 2167, 2170, 2172, 2175, 2178, 2181, 2185, 2189, 2192, 2197, 2202, 2206, 2213, 2222, 2226, 2229, 2231, 2234, 2237, 2239, 2241, 2244, 2248, 2252, 2255, 2260, 2267, 2276, 2278, 2281, 2284, 2286, 2289, 2292, 2296, 2300, 2302, 2307, 2312, 2316, 2322, 2331, 2335, 2338, 2342, 2344, 2350, 2356, 2363, 2370, 2372, 2375, 2378, 2380, 2383, 2386, 2390, 2394, 2396, 2401, 2406, 2410, 2416, 2425, 2429, 2431, 2434, 2436, 2439, 2446, 2452, 2459, 2467, 2475, 2477, 2480, 2483, 2485, 2488, 2491, 2495, 2499, 2501, 2506, 2511, 2515, 2524, 2528, 2530, 2532, 2535, 2537, 2539, 2542, 2546, 2549, 2553, 2556, 2560, 2564, 2567, 2572, 2576, 2579, 2583, 2586, 2591, 2595, 2598, 2605, 2612, 2619, 2627, 2629, 2632, 2634, 2636, 2638, 2641, 2645, 2648, 2652, 2655, 2659, 2663, 2668, 2671, 2675, 2680, 2683, 2689, 2695, 2702, 2709, 2710, 2712, 2713 }; /* 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, 142, -1, 82, -1, 142, 82, -1, 72, -1, 140, -1, 109, 170, 110, -1, 109, 174, 110, -1, 143, -1, 144, 111, 134, 165, 135, 112, -1, 144, 109, 145, 110, -1, 144, 113, 139, -1, 144, 113, 111, 134, 147, 135, 112, -1, 144, 85, 139, -1, 144, 85, 111, 134, 147, 135, 112, -1, 144, 86, -1, 144, 87, -1, 109, 275, 110, 114, 279, 372, 115, -1, 144, 114, 145, 115, -1, 146, -1, 145, 116, 146, -1, -1, 165, -1, 148, -1, 147, 116, 148, -1, 139, -1, 139, 113, 148, -1, 139, 113, 111, 134, 147, 135, 112, -1, 139, 85, 148, -1, 139, 85, 111, 134, 147, 135, 112, -1, 144, -1, 136, -1, 141, -1, 40, 152, -1, 150, 152, -1, 151, 152, -1, 86, 149, -1, 87, 149, -1, 37, 149, -1, 37, 109, 275, 110, -1, 66, 149, -1, 66, 109, 275, 110, -1, 38, 109, 275, 116, 139, 110, -1, 76, -1, 76, 109, 146, 110, -1, 76, 109, 276, 110, -1, 117, -1, 118, -1, 119, -1, 120, -1, 121, -1, 122, -1, 149, -1, 109, 275, 110, 152, -1, 109, 275, 110, 168, -1, 152, -1, 153, 117, 152, -1, 153, 123, 152, -1, 153, 124, 152, -1, 153, -1, 154, 119, 153, -1, 154, 120, 153, -1, 154, -1, 155, 88, 154, -1, 155, 89, 154, -1, 155, -1, 156, 125, 155, -1, 156, 126, 155, -1, 156, 90, 155, -1, 156, 91, 155, -1, 156, -1, 157, 92, 156, -1, 157, 93, 156, -1, 157, -1, 158, 118, 157, -1, 158, -1, 159, 127, 158, -1, 159, -1, 160, 128, 159, -1, 160, -1, 161, 94, 160, -1, 161, -1, 162, 95, 161, -1, 162, -1, 162, 129, 170, 130, 163, -1, 162, 129, 130, 163, -1, 162, 129, 170, 130, 168, -1, 163, -1, 163, -1, 149, 167, 165, -1, 168, 373, -1, -1, 165, -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, 165, 135, 112, -1, 111, 134, 116, 169, 135, 112, -1, 111, 134, 165, 116, 169, 135, 112, -1, 166, -1, 169, 116, 166, -1, 165, -1, 170, 116, 165, -1, -1, 170, -1, 173, -1, 174, -1, 178, -1, 179, -1, 191, -1, 193, -1, 194, -1, 199, -1, 127, 144, 114, 145, 115, 132, -1, 72, 130, 312, 172, -1, 114, 115, -1, 114, 134, 134, 210, 175, 135, 115, -1, 176, -1, 175, 134, 176, -1, 213, -1, 40, 213, -1, 308, -1, 172, 135, -1, 172, -1, 177, 172, -1, 171, 132, -1, 41, 109, 170, 110, 172, -1, 41, 109, 170, 110, 172, 42, 172, -1, 43, 109, 170, 110, 184, -1, 43, 109, 170, 110, 114, 134, 206, 185, 115, -1, 53, 109, 170, 110, 184, -1, 53, 109, 170, 110, 114, 134, 206, 187, 115, -1, 164, -1, 164, 96, 164, -1, 310, -1, 180, -1, 181, 116, 180, -1, 44, 181, 130, -1, 45, 130, -1, 182, -1, 183, 182, -1, 183, 172, -1, -1, 186, -1, 183, 177, -1, 186, 183, 177, -1, -1, 188, -1, 183, 190, -1, 183, 177, 189, -1, 188, 183, 190, -1, 188, 183, 177, 189, -1, -1, 190, -1, 56, -1, 56, 132, -1, 47, 109, 170, 110, 172, -1, 46, 172, 47, 109, 170, 110, 132, -1, 48, 109, 134, 192, 110, 172, -1, 171, 135, 132, 171, 132, 171, -1, 213, 171, 132, 171, -1, 51, 72, 132, -1, 51, 117, 170, 132, -1, 50, 132, -1, 50, 72, 132, -1, 49, 132, -1, 49, 72, 132, -1, 52, 171, 132, -1, 61, 166, 132, -1, 62, 166, 132, -1, 62, 166, 63, 165, 132, -1, 57, 174, 195, -1, 57, 174, 197, -1, 57, 174, 195, 197, -1, 196, -1, 58, 109, 96, 110, 174, -1, 196, 58, 109, 96, 110, 174, -1, 59, 109, 96, 110, 174, -1, 196, 59, 109, 96, 110, 174, -1, 58, 109, 134, 134, 198, 135, 110, 174, 135, -1, 196, 58, 109, 134, 134, 198, 135, 110, 174, 135, -1, 59, 109, 134, 134, 198, 135, 110, 174, 135, -1, 196, 59, 109, 134, 134, 198, 135, 110, 174, 135, -1, 60, 174, -1, 226, -1, 226, 309, -1, 226, 357, -1, 366, 139, -1, 366, -1, 64, 200, 109, 141, 110, 132, -1, 64, 200, 109, 141, 130, 201, 110, 132, -1, 64, 200, 109, 141, 130, 201, 130, 201, 110, 132, -1, 64, 200, 109, 141, 130, 201, 130, 201, 130, 204, 110, 132, -1, 64, 200, 51, 109, 141, 130, 130, 201, 130, 204, 130, 205, 110, 132, -1, -1, 11, -1, -1, 202, -1, 203, -1, 202, 116, 203, -1, 141, 109, 164, 110, -1, 111, 164, 112, 141, 109, 164, 110, -1, -1, 141, -1, 204, 116, 141, -1, 139, -1, 205, 116, 139, -1, 135, -1, 207, -1, 213, -1, 207, 134, 213, -1, 135, -1, 209, -1, 223, -1, 209, 134, 223, -1, -1, 211, -1, 29, 212, 132, -1, 211, 29, 212, 132, -1, 274, -1, 212, 116, 274, -1, 214, -1, 223, -1, 215, 135, 132, -1, 220, 135, 132, -1, 217, 135, 132, -1, 293, 135, 132, -1, 296, 135, 132, -1, 216, 277, -1, 232, 216, 277, -1, 215, 135, 116, 134, 272, 277, -1, 367, 272, 311, -1, 370, 272, 311, -1, 228, 370, 272, 311, -1, 218, -1, 228, 218, -1, 232, 218, -1, 232, 228, 218, -1, 217, 135, 116, 134, 272, -1, 111, 112, 272, 109, 134, 260, 135, 110, -1, 370, 272, 109, 134, 260, 135, 110, -1, 219, 272, 109, 134, 260, 135, 110, -1, 111, 134, 262, 135, 112, -1, 111, 134, 262, 135, 116, 134, 263, 135, 112, -1, 3, 216, -1, 3, 218, -1, 220, 135, 116, 134, 139, -1, 3, 226, 309, -1, 221, 135, 116, 134, 309, -1, 228, 3, 226, 309, -1, 226, 3, 309, -1, 226, 3, 228, 309, -1, 3, 139, 131, 165, -1, 222, 135, 116, 134, 139, 131, 165, -1, 224, 135, 132, -1, 221, 135, 132, -1, 222, 135, 132, -1, 240, 135, 132, -1, 225, 309, 311, 277, -1, 224, 116, 312, 309, 311, 277, -1, 236, -1, 240, -1, 242, -1, 283, -1, 237, -1, 241, -1, 243, -1, 284, -1, -1, 228, -1, 229, -1, 228, 229, -1, 230, -1, 314, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 109, 231, 286, 110, -1, 233, -1, 228, 233, -1, 232, 228, 233, -1, 234, -1, 233, 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, 232, 237, -1, 236, 234, -1, 236, 234, 228, -1, 236, 234, 237, -1, 238, -1, 227, 239, 227, -1, 235, -1, 228, 235, -1, 238, 229, -1, 238, 235, -1, 28, 109, 276, 110, -1, 28, 109, 170, 110, -1, 78, 109, 276, 110, -1, 78, 109, 170, 110, -1, 241, -1, 232, 241, -1, 240, 234, -1, 240, 234, 228, -1, 244, -1, 228, 244, -1, 241, 229, -1, 243, -1, 232, 243, -1, 242, 234, -1, 242, 234, 228, -1, 74, -1, 228, 74, -1, 243, 229, -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, 226, 252, -1, 251, 116, 312, 252, -1, -1, 254, -1, 318, 253, -1, 331, 253, -1, 357, -1, -1, 254, -1, 130, 164, -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, 164, -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, 228, 370, 272, 373, -1, 218, -1, 270, -1, 362, -1, 370, -1, 228, 370, -1, 371, -1, 225, 336, 373, -1, 225, 340, 373, -1, 225, -1, 225, 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, 226, -1, 226, 357, -1, 366, -1, 371, -1, 226, -1, 226, 345, -1, -1, 131, 278, -1, 107, 278, -1, 165, -1, 114, 279, 372, 115, -1, -1, 278, -1, 280, 278, -1, 279, 116, 278, -1, 279, 116, 280, 278, -1, 281, 130, -1, 274, 130, -1, 282, -1, 281, 282, -1, 113, 274, -1, 111, 134, 165, 135, 112, -1, 111, 134, 310, 135, 112, -1, 111, 134, 164, 96, 164, 135, 112, -1, 113, 111, 134, 147, 135, 112, -1, 284, -1, 232, 284, -1, 283, 234, -1, 283, 234, 228, -1, 285, -1, 228, 285, -1, 284, 229, -1, 75, 109, 292, 110, -1, 287, 373, -1, 286, 116, 287, 373, -1, -1, 289, 274, 288, 290, -1, 226, 336, -1, 33, -1, 35, -1, 34, -1, -1, 290, 291, -1, 128, 274, 109, 292, 110, -1, 128, 114, 134, 298, 115, -1, 128, 109, 134, 286, 135, 110, 114, 134, 298, 115, 109, 292, 110, -1, 276, -1, 165, -1, 292, 116, 276, -1, 292, 116, 165, -1, 33, 294, -1, 233, 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, 216, -1, 218, -1, 300, 135, 116, 134, 272, -1, 226, 309, -1, 301, 135, 116, 134, 309, -1, -1, 303, -1, 305, -1, 303, 134, 305, -1, -1, 303, -1, 213, -1, 307, -1, 199, -1, -1, 5, 82, 306, 114, 304, 115, -1, 40, 305, -1, 308, -1, 323, 174, -1, 327, 134, 208, 174, -1, 217, 174, -1, 225, 323, 174, -1, 228, 323, 174, -1, 232, 323, 174, -1, 232, 228, 323, 174, -1, 225, 327, 134, 208, 174, -1, 228, 327, 134, 208, 174, -1, 232, 327, 134, 208, 174, -1, 232, 228, 327, 134, 208, 174, -1, 318, -1, 331, -1, 323, -1, 164, 122, 164, -1, -1, 64, 109, 142, 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, 171, 110, -1, 272, -1, 234, -1, 235, -1, 229, -1, 319, 312, -1, 320, -1, 321, 312, -1, 322, 312, -1, 137, -1, 109, 319, 110, -1, 150, 318, -1, 150, 228, 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, 150, 323, -1, 150, 228, 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, 150, 327, -1, 150, 228, 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, 150, 331, -1, 150, 228, 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, 150, 336, -1, 150, 228, 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, 150, 340, -1, 150, 228, 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, 150, -1, 150, 228, -1, 150, 345, -1, 150, 228, 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, 165, 135, 112, -1, 111, 134, 117, 135, 112, -1, 350, 111, 134, 165, 135, 112, -1, 350, 111, 134, 117, 135, 112, -1, 352, -1, 353, 312, -1, 354, 312, -1, 150, -1, 150, 228, -1, 150, 351, -1, 150, 228, 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, 228, 117, 135, 112, -1, 111, 134, 228, 135, 112, -1, 111, 134, 228, 165, 135, 112, -1, 111, 134, 7, 227, 165, 135, 112, -1, 111, 134, 228, 7, 165, 135, 112, -1, 358, -1, 359, 312, -1, 360, 312, -1, 150, -1, 150, 228, -1, 150, 357, -1, 150, 228, 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, 228, 370, -1, 363, -1, 364, -1, 150, 226, -1, 228, 150, 226, -1, 150, 371, -1, 228, 150, 371, -1, 150, 361, -1, 228, 150, 361, -1, 111, 112, 226, -1, 365, 226, -1, 111, 112, 350, 226, -1, 365, 350, 226, -1, 350, 226, -1, 111, 112, 363, -1, 365, 363, -1, 111, 112, 350, 363, -1, 365, 350, 363, -1, 350, 363, -1, 111, 134, 228, 117, 135, 112, -1, 111, 134, 228, 165, 135, 112, -1, 111, 134, 232, 165, 135, 112, -1, 111, 134, 232, 228, 165, 135, 112, -1, 370, -1, 228, 370, -1, 367, -1, 368, -1, 369, -1, 150, 226, -1, 228, 150, 226, -1, 150, 371, -1, 228, 150, 371, -1, 150, 366, -1, 228, 150, 366, -1, 111, 112, 226, -1, 111, 112, 350, 226, -1, 350, 226, -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, 219, 109, 134, 260, 135, 110, -1, -1, 116, -1, -1, 131, 165, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 300, 300, 304, 311, 312, 313, 317, 318, 319, 323, 324, 328, 329, 333, 334, 338, 342, 343, 354, 356, 358, 360, 365, 366, 372, 376, 378, 379, 381, 382, 384, 386, 388, 397, 398, 404, 405, 409, 410, 414, 418, 420, 422, 424, 429, 432, 434, 436, 441, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 481, 482, 488, 489, 490, 491, 495, 496, 498, 503, 504, 506, 508, 513, 514, 516, 521, 522, 524, 529, 530, 532, 534, 536, 541, 542, 544, 549, 550, 555, 556, 561, 562, 567, 568, 573, 574, 579, 580, 583, 585, 590, 595, 596, 598, 604, 605, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 625, 627, 629, 631, 636, 637, 642, 643, 649, 650, 656, 657, 658, 659, 660, 661, 662, 663, 664, 674, 681, 683, 693, 694, 699, 701, 707, 709, 713, 714, 719, 724, 727, 729, 731, 741, 743, 754, 755, 757, 761, 763, 767, 768, 773, 774, 778, 783, 784, 788, 790, 796, 797, 801, 803, 805, 807, 813, 814, 818, 820, 825, 827, 829, 834, 836, 841, 843, 847, 850, 854, 857, 861, 863, 865, 867, 872, 874, 876, 881, 883, 885, 887, 889, 894, 896, 898, 900, 905, 917, 918, 923, 925, 930, 934, 936, 938, 940, 942, 948, 949, 955, 956, 960, 961, 966, 968, 974, 975, 977, 982, 987, 997, 999, 1003, 1004, 1009, 1011, 1015, 1016, 1020, 1022, 1026, 1027, 1031, 1032, 1036, 1037, 1052, 1053, 1054, 1055, 1056, 1060, 1065, 1072, 1082, 1087, 1092, 1100, 1105, 1110, 1115, 1120, 1128, 1150, 1155, 1162, 1164, 1171, 1176, 1181, 1192, 1197, 1202, 1207, 1212, 1221, 1226, 1234, 1235, 1236, 1237, 1243, 1248, 1256, 1257, 1258, 1259, 1263, 1264, 1265, 1266, 1271, 1272, 1281, 1282, 1287, 1288, 1293, 1295, 1297, 1299, 1301, 1304, 1303, 1315, 1316, 1318, 1328, 1329, 1334, 1336, 1338, 1340, 1342, 1345, 1347, 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, 1780, 1782, 1785, 1787, 1789, 1812, 1813, 1815, 1817, 1822, 1823, 1825, 1830, 1835, 1836, 1842, 1841, 1845, 1849, 1851, 1853, 1859, 1860, 1865, 1870, 1872, 1877, 1879, 1880, 1882, 1887, 1889, 1891, 1896, 1898, 1903, 1908, 1916, 1922, 1921, 1935, 1936, 1941, 1942, 1946, 1951, 1956, 1964, 1969, 1980, 1981, 1986, 1987, 1993, 1994, 1998, 1999, 2000, 2003, 2002, 2013, 2022, 2028, 2034, 2043, 2049, 2055, 2061, 2067, 2075, 2081, 2089, 2095, 2104, 2105, 2106, 2110, 2114, 2116, 2121, 2122, 2126, 2127, 2132, 2138, 2139, 2142, 2144, 2145, 2149, 2150, 2151, 2152, 2186, 2188, 2189, 2191, 2196, 2201, 2206, 2208, 2210, 2215, 2217, 2219, 2221, 2226, 2228, 2237, 2239, 2240, 2245, 2247, 2249, 2254, 2256, 2258, 2263, 2265, 2267, 2276, 2277, 2278, 2282, 2284, 2286, 2291, 2293, 2295, 2300, 2302, 2304, 2319, 2321, 2322, 2324, 2329, 2330, 2335, 2337, 2339, 2344, 2346, 2348, 2350, 2355, 2357, 2359, 2369, 2371, 2372, 2374, 2379, 2381, 2383, 2388, 2390, 2392, 2394, 2399, 2401, 2403, 2434, 2436, 2437, 2439, 2444, 2449, 2457, 2459, 2461, 2466, 2468, 2473, 2475, 2489, 2490, 2492, 2497, 2499, 2501, 2503, 2505, 2510, 2511, 2513, 2515, 2520, 2522, 2524, 2530, 2532, 2534, 2538, 2540, 2542, 2544, 2558, 2559, 2561, 2566, 2568, 2570, 2572, 2574, 2579, 2580, 2582, 2584, 2589, 2591, 2593, 2599, 2600, 2602, 2611, 2614, 2616, 2619, 2621, 2623, 2636, 2637, 2639, 2644, 2646, 2648, 2650, 2652, 2657, 2658, 2660, 2662, 2667, 2669, 2677, 2678, 2679, 2684, 2685, 2689, 2691, 2693, 2695, 2697, 2699, 2706, 2708, 2710, 2712, 2714, 2716, 2718, 2720, 2722, 2724, 2729, 2731, 2733, 2738, 2764, 2765, 2767, 2771, 2772, 2776, 2778, 2780, 2782, 2784, 2786, 2793, 2795, 2797, 2799, 2801, 2803, 2808, 2813, 2815, 2817, 2835, 2837, 2842, 2843 }; #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", "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", "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, 42, 38, 43, 45, 33, 126, 47, 37, 60, 62, 94, 124, 63, 58, 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, 142, 142, 143, 143, 143, 143, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 145, 145, 146, 146, 147, 147, 148, 148, 148, 148, 148, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 150, 150, 151, 151, 151, 151, 152, 152, 152, 153, 153, 153, 153, 154, 154, 154, 155, 155, 155, 156, 156, 156, 156, 156, 157, 157, 157, 158, 158, 159, 159, 160, 160, 161, 161, 162, 162, 163, 163, 163, 163, 164, 165, 165, 165, 166, 166, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 168, 168, 168, 168, 169, 169, 170, 170, 171, 171, 172, 172, 172, 172, 172, 172, 172, 172, 172, 173, 174, 174, 175, 175, 176, 176, 176, 176, 177, 177, 178, 179, 179, 179, 179, 179, 179, 180, 180, 180, 181, 181, 182, 182, 183, 183, 184, 185, 185, 186, 186, 187, 187, 188, 188, 188, 188, 189, 189, 190, 190, 191, 191, 191, 192, 192, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 194, 194, 194, 195, 195, 195, 195, 195, 196, 196, 196, 196, 197, 198, 198, 198, 198, 198, 199, 199, 199, 199, 199, 200, 200, 201, 201, 202, 202, 203, 203, 204, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 213, 213, 214, 214, 214, 214, 214, 215, 215, 215, 216, 216, 216, 217, 217, 217, 217, 217, 218, 218, 218, 219, 219, 220, 220, 220, 221, 221, 221, 221, 221, 222, 222, 223, 223, 223, 223, 224, 224, 225, 225, 225, 225, 226, 226, 226, 226, 227, 227, 228, 228, 229, 229, 230, 230, 230, 230, 230, 231, 230, 232, 232, 232, 233, 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, 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, 1, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 2, 4, 6, 1, 4, 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, 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, 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[] = { 292, 292, 312, 310, 313, 311, 314, 315, 298, 300, 299, 0, 301, 326, 318, 323, 321, 322, 320, 319, 324, 325, 330, 327, 328, 329, 545, 545, 545, 0, 0, 0, 292, 218, 302, 316, 317, 7, 357, 0, 8, 14, 15, 0, 2, 61, 62, 563, 9, 292, 523, 521, 245, 3, 452, 3, 258, 0, 3, 3, 3, 246, 3, 0, 0, 0, 293, 294, 296, 292, 305, 308, 338, 284, 331, 336, 285, 346, 286, 353, 350, 360, 0, 0, 361, 287, 471, 475, 3, 3, 0, 2, 517, 522, 527, 297, 0, 0, 545, 575, 545, 2, 586, 587, 588, 292, 0, 729, 730, 0, 12, 0, 13, 292, 268, 269, 0, 293, 288, 289, 290, 291, 524, 303, 390, 546, 547, 368, 369, 12, 443, 444, 11, 439, 442, 0, 501, 496, 487, 443, 444, 0, 0, 526, 219, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 292, 292, 2, 0, 731, 293, 580, 592, 735, 728, 726, 733, 0, 0, 0, 252, 2, 0, 530, 437, 438, 436, 0, 0, 0, 0, 545, 0, 632, 633, 0, 0, 543, 539, 545, 560, 545, 545, 541, 2, 540, 545, 599, 545, 545, 602, 0, 0, 0, 292, 292, 310, 358, 2, 292, 259, 295, 306, 339, 351, 476, 0, 2, 0, 452, 260, 293, 332, 347, 354, 472, 0, 2, 0, 309, 333, 340, 341, 0, 348, 352, 355, 359, 444, 292, 370, 363, 367, 0, 392, 473, 477, 0, 0, 0, 1, 292, 2, 528, 574, 576, 292, 2, 739, 293, 742, 543, 543, 0, 293, 0, 0, 271, 545, 541, 2, 292, 0, 0, 292, 548, 2, 499, 2, 552, 0, 0, 0, 0, 0, 0, 19, 58, 4, 5, 6, 17, 0, 0, 292, 2, 63, 64, 65, 66, 46, 20, 47, 16, 23, 45, 67, 292, 0, 70, 74, 77, 80, 85, 88, 90, 92, 94, 96, 98, 103, 493, 749, 450, 492, 0, 448, 449, 0, 564, 579, 582, 585, 591, 594, 597, 357, 0, 2, 737, 0, 292, 740, 2, 61, 292, 3, 424, 0, 432, 293, 292, 305, 331, 285, 346, 353, 3, 3, 406, 410, 420, 425, 471, 292, 426, 704, 705, 292, 427, 429, 292, 2, 581, 593, 727, 2, 2, 247, 2, 457, 0, 455, 454, 453, 139, 2, 2, 249, 2, 2, 248, 2, 279, 2, 280, 0, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 565, 604, 0, 452, 2, 559, 568, 658, 561, 562, 531, 292, 2, 598, 607, 600, 601, 0, 274, 292, 292, 337, 293, 0, 293, 0, 292, 732, 736, 734, 532, 292, 543, 253, 261, 307, 0, 2, 533, 292, 497, 334, 335, 281, 349, 356, 0, 292, 0, 747, 397, 0, 474, 498, 250, 251, 518, 292, 434, 0, 292, 235, 0, 2, 237, 0, 293, 0, 255, 2, 256, 276, 0, 0, 2, 292, 543, 292, 484, 486, 485, 0, 0, 749, 0, 292, 0, 292, 488, 292, 558, 556, 557, 555, 0, 550, 553, 0, 0, 292, 53, 292, 67, 48, 292, 55, 292, 292, 51, 52, 2, 125, 0, 0, 446, 0, 445, 726, 119, 292, 18, 0, 30, 31, 36, 2, 0, 36, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 108, 0, 49, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 2, 644, 451, 641, 545, 545, 649, 478, 292, 2, 583, 584, 0, 595, 596, 0, 2, 738, 741, 119, 292, 0, 2, 706, 293, 710, 701, 702, 708, 0, 2, 2, 666, 545, 749, 615, 545, 545, 749, 545, 629, 545, 545, 680, 433, 663, 545, 545, 671, 678, 292, 428, 293, 0, 0, 292, 716, 293, 721, 749, 713, 292, 718, 749, 292, 292, 292, 0, 119, 0, 19, 2, 0, 20, 0, 458, 747, 0, 0, 464, 239, 0, 292, 0, 0, 0, 543, 567, 571, 573, 603, 606, 610, 613, 566, 605, 0, 282, 656, 0, 292, 275, 0, 0, 0, 0, 273, 2, 0, 257, 534, 292, 0, 0, 292, 2, 362, 382, 371, 0, 0, 376, 370, 748, 0, 0, 395, 0, 293, 3, 413, 3, 417, 416, 589, 0, 529, 292, 61, 3, 292, 432, 293, 3, 426, 427, 2, 0, 0, 0, 483, 304, 292, 479, 481, 3, 2, 2, 0, 500, 3, 0, 552, 127, 0, 0, 220, 0, 0, 0, 0, 37, 0, 0, 119, 292, 21, 0, 22, 0, 690, 695, 447, 687, 545, 545, 0, 106, 3, 2, 28, 0, 34, 0, 2, 26, 0, 104, 71, 72, 73, 75, 76, 78, 79, 83, 84, 81, 82, 86, 87, 89, 91, 93, 95, 97, 0, 0, 750, 292, 0, 0, 0, 645, 646, 642, 643, 495, 494, 292, 0, 292, 712, 292, 717, 293, 292, 660, 292, 292, 703, 659, 2, 292, 0, 0, 0, 0, 0, 0, 0, 0, 681, 0, 667, 618, 634, 668, 2, 614, 621, 430, 616, 617, 431, 2, 628, 637, 630, 631, 664, 665, 679, 707, 711, 709, 749, 266, 2, 743, 2, 421, 715, 720, 422, 0, 400, 3, 3, 3, 3, 452, 3, 0, 2, 466, 463, 748, 0, 459, 2, 462, 465, 0, 292, 240, 262, 3, 270, 272, 0, 452, 2, 569, 570, 2, 608, 609, 0, 657, 535, 3, 343, 342, 345, 344, 292, 536, 0, 537, 370, 0, 0, 292, 292, 0, 0, 690, 380, 383, 387, 545, 387, 386, 379, 372, 545, 374, 377, 292, 397, 391, 102, 398, 747, 0, 0, 435, 238, 0, 0, 3, 2, 666, 428, 0, 525, 0, 749, 487, 0, 292, 292, 292, 0, 549, 551, 128, 0, 0, 213, 0, 0, 0, 221, 222, 54, 0, 56, 59, 60, 0, 2, 126, 0, 0, 0, 691, 692, 688, 689, 457, 68, 69, 107, 123, 3, 106, 0, 0, 25, 36, 3, 0, 33, 100, 0, 3, 648, 652, 655, 647, 3, 590, 3, 714, 719, 2, 61, 292, 3, 3, 293, 0, 3, 620, 624, 627, 636, 670, 674, 677, 292, 3, 619, 635, 669, 292, 292, 423, 292, 292, 744, 0, 0, 0, 0, 254, 0, 102, 0, 3, 3, 0, 460, 0, 456, 0, 0, 243, 292, 0, 0, 127, 0, 0, 0, 0, 0, 127, 0, 0, 106, 106, 19, 2, 0, 0, 3, 129, 130, 2, 141, 131, 132, 133, 134, 135, 136, 143, 145, 0, 0, 0, 283, 292, 292, 545, 0, 538, 292, 373, 375, 0, 389, 691, 384, 388, 385, 378, 382, 365, 396, 0, 577, 2, 662, 661, 0, 667, 2, 480, 482, 502, 3, 510, 511, 0, 2, 506, 3, 3, 0, 0, 554, 220, 0, 0, 0, 220, 0, 0, 119, 694, 698, 700, 693, 747, 106, 0, 3, 659, 40, 3, 38, 35, 0, 3, 99, 101, 0, 2, 650, 651, 0, 0, 292, 0, 0, 0, 3, 636, 0, 2, 622, 623, 2, 638, 2, 672, 673, 0, 0, 61, 0, 3, 3, 3, 3, 408, 407, 411, 2, 2, 746, 745, 120, 0, 0, 0, 0, 3, 461, 3, 0, 241, 144, 3, 293, 292, 0, 0, 0, 0, 2, 0, 189, 0, 187, 0, 0, 0, 0, 0, 0, 0, 545, 119, 0, 149, 146, 292, 0, 0, 265, 277, 3, 3, 544, 611, 366, 381, 394, 292, 264, 292, 0, 513, 490, 292, 0, 0, 489, 504, 0, 0, 0, 214, 0, 223, 57, 2, 696, 697, 0, 124, 121, 0, 0, 0, 0, 0, 24, 0, 653, 292, 578, 263, 722, 723, 724, 0, 675, 292, 292, 292, 3, 3, 0, 683, 0, 0, 0, 0, 292, 292, 3, 542, 120, 468, 0, 0, 244, 293, 0, 0, 0, 0, 292, 190, 188, 185, 0, 191, 0, 0, 0, 0, 195, 198, 196, 192, 0, 193, 127, 36, 142, 140, 242, 0, 0, 415, 419, 418, 0, 507, 2, 508, 2, 509, 503, 292, 226, 0, 224, 0, 226, 292, 32, 122, 2, 43, 2, 41, 39, 29, 27, 3, 725, 3, 3, 3, 0, 0, 682, 684, 625, 639, 267, 2, 405, 3, 404, 0, 470, 467, 127, 0, 0, 127, 3, 0, 127, 186, 0, 2, 2, 207, 197, 0, 0, 0, 138, 0, 572, 612, 2, 0, 0, 2, 227, 0, 0, 215, 0, 3, 0, 0, 0, 0, 0, 0, 685, 686, 292, 0, 469, 150, 0, 0, 2, 163, 127, 152, 0, 180, 0, 127, 0, 2, 154, 0, 2, 0, 2, 2, 2, 194, 33, 292, 512, 514, 505, 0, 0, 0, 0, 0, 3, 3, 654, 626, 640, 676, 409, 127, 156, 159, 0, 158, 162, 3, 165, 164, 0, 127, 182, 127, 3, 0, 292, 0, 292, 0, 2, 0, 2, 137, 2, 228, 229, 0, 225, 216, 699, 0, 0, 151, 0, 0, 161, 231, 166, 2, 233, 181, 0, 184, 170, 199, 3, 208, 212, 201, 3, 0, 292, 0, 292, 0, 0, 0, 44, 42, 157, 160, 127, 0, 167, 292, 127, 127, 0, 171, 0, 0, 690, 209, 210, 211, 0, 200, 3, 202, 3, 292, 217, 230, 147, 168, 153, 127, 234, 183, 178, 176, 172, 155, 127, 0, 691, 0, 0, 0, 0, 148, 169, 179, 173, 177, 176, 174, 3, 3, 0, 0, 491, 175, 203, 205, 3, 3, 204, 206 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 813, 468, 300, 47, 133, 134, 301, 302, 303, 304, 305, 761, 762, 1133, 1134, 306, 381, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 1030, 518, 975, 546, 322, 976, 947, 1057, 1518, 1059, 1060, 1061, 1062, 1519, 1063, 1064, 1437, 1438, 1401, 1402, 1403, 1497, 1498, 1502, 1503, 1538, 1539, 1065, 1361, 1066, 1067, 1298, 1299, 1300, 1480, 1068, 145, 953, 954, 955, 1381, 1461, 1472, 1473, 469, 470, 874, 875, 1038, 51, 52, 53, 54, 55, 347, 158, 58, 59, 60, 61, 62, 349, 64, 65, 264, 67, 68, 274, 351, 352, 71, 72, 73, 118, 75, 204, 354, 119, 78, 120, 80, 81, 455, 82, 454, 688, 689, 690, 908, 1086, 909, 83, 84, 458, 456, 696, 855, 856, 857, 858, 699, 700, 701, 359, 360, 361, 362, 466, 340, 135, 136, 522, 324, 170, 645, 646, 647, 648, 649, 85, 121, 87, 489, 490, 939, 491, 277, 495, 325, 88, 137, 138, 89, 1321, 1108, 1109, 1110, 1111, 90, 91, 717, 92, 273, 93, 94, 187, 1032, 679, 412, 125, 95, 501, 502, 503, 188, 268, 190, 191, 192, 269, 98, 99, 100, 101, 102, 103, 104, 195, 196, 197, 198, 199, 825, 605, 606, 607, 608, 200, 610, 611, 612, 572, 573, 574, 575, 751, 105, 614, 615, 616, 617, 618, 619, 968, 753, 754, 755, 595, 365, 366, 367, 368, 326, 164, 107, 108, 109, 370, 694, 569 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1282 static const yytype_int16 yypact[] = { 7429, 6461, -1282, 36, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 83, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 131, 131, 131, 1844, 994, 124, 7661, 230, -1282, -1282, -1282, -1282, -1282, 175, -1282, -1282, -1282, 965, 193, -1282, -1282, -1282, -1282, 5932, -1282, -1282, -1282, -1282, 122, 216, -1282, 1880, -1282, -1282, -1282, -1282, 251, 1298, 387, 61, 7777, -1282, -1282, 9536, 1247, -1282, -1282, 557, 425, 3682, 886, 409, 557, 1203, -1282, -1282, 744, 941, -1282, 557, 1708, -1282, 342, -1282, 478, 483, -1282, -1282, -1282, -1282, 384, 216, 131, -1282, 131, -1282, -1282, -1282, -1282, 2963, 1880, -1282, -1282, 1880, -1282, 381, -1282, 8264, -1282, -1282, 1830, 9075, -1282, 713, 713, 713, -1282, -1282, -1282, 131, -1282, -1282, -1282, 410, 433, 443, -1282, -1282, -1282, 470, -1282, -1282, -1282, -1282, -1282, 487, 492, -1282, -1282, 90, 9044, 2201, 567, 421, 477, 513, 520, 554, 575, 5546, 6949, 504, 495, -1282, 9574, -1282, -1282, -1282, -1282, 558, -1282, 116, 4885, 4885, -1282, 577, 253, -1282, -1282, -1282, -1282, 613, 284, 302, 335, 131, 616, -1282, -1282, 1298, 2031, 692, -1282, 65, -1282, 131, 131, 216, -1282, -1282, 103, -1282, 131, 131, -1282, 3459, 673, 678, 713, 6742, -1282, -1282, 702, 5932, -1282, -1282, 557, -1282, -1282, -1282, 216, -1282, 1880, 122, -1282, 8115, -1282, 713, 713, 713, 216, -1282, 1844, -1282, 4853, -1282, -1282, 627, 713, -1282, 713, -1282, 175, 9044, -1282, 738, -1282, 994, 742, 713, -1282, 1844, 706, 717, -1282, 7661, 598, -1282, -1282, -1282, 9503, -1282, -1282, 5769, -1282, 692, 43, 10287, 9075, 1830, 3459, -1282, 197, -1282, -1282, 8264, 1880, 745, 7808, -1282, -1282, 441, -1282, 10539, 754, 784, 3526, 766, 3896, 4720, -1282, 770, -1282, -1282, -1282, -1282, 10420, 10420, 8818, 772, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 805, -1282, 1317, 2104, 9157, 3896, -1282, 619, 651, 733, 206, 860, 791, 775, 785, 823, -65, -1282, -1282, 794, 596, -1282, 337, -1282, -1282, 2201, -1282, -1282, 290, 810, -1282, 298, 810, 819, 175, -1282, -1282, 836, 2963, -1282, 844, 858, 9270, -1282, -1282, 1515, 1616, 8533, 6742, 557, -1282, 557, 713, 713, -1282, -1282, -1282, -1282, -1282, -1282, 713, 2963, 1880, -1282, -1282, 9188, 1765, -1282, 4463, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 869, 6164, 3896, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 1830, -1282, 592, 881, 887, 907, 977, 913, 918, 926, 2031, -1282, -1282, 917, 122, 952, -1282, -1282, 968, -1282, -1282, -1282, 9503, -1282, -1282, -1282, -1282, -1282, 3459, -1282, 9044, 9044, -1282, 713, 1830, 6861, 1880, 8606, -1282, -1282, -1282, -1282, 9503, 43, -1282, -1282, 557, 216, -1282, -1282, 9503, -1282, 5584, -1282, -1282, 713, 713, 429, 4617, 967, 975, 972, 982, 713, -1282, -1282, -1282, -1282, 9803, -1282, 430, 6623, -1282, 216, 991, -1282, 1830, 10621, 10344, -1282, -1282, -1282, -1282, 984, 3459, -1282, 8679, 692, 7545, -1282, -1282, -1282, 1025, 534, 794, 994, 7808, 1044, 8264, -1282, 7808, -1282, -1282, -1282, -1282, 539, -1282, 997, 784, 70, 8818, -1282, 9301, -1282, -1282, 8818, -1282, 8931, 8818, -1282, -1282, 999, -1282, 564, 1000, 689, 1003, -1282, -1282, 9650, 6592, -1282, 291, -1282, -1282, 10287, -1282, 331, 10287, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 10287, -1282, -1282, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 3896, 5176, 10287, -1282, 596, 1665, -1282, -1282, 131, 131, -1282, -1282, 9044, -1282, -1282, 968, 598, -1282, 968, 10363, -1282, -1282, -1282, 5001, 6592, 1005, 1011, -1282, 9075, -1282, -1282, 558, -1282, 1017, 501, 1020, 3131, 211, 794, -1282, 131, 131, 794, 231, -1282, 131, 131, 968, -1282, -1282, 131, 131, -1282, 810, 9421, 1880, 10766, 79, 605, 9421, -1282, 5769, -1282, 794, -1282, 2963, -1282, 183, 8230, 8230, 8230, 1880, -1282, 10173, 1006, 869, 840, 1015, 1018, -1282, 1008, 4885, 242, -1282, 1104, 1880, 8230, 598, 1830, 598, 692, 448, 810, -1282, -1282, 771, 810, -1282, -1282, -1282, 784, -1282, 810, 216, 9803, -1282, 637, 1041, 647, 1049, -1282, 1023, 216, -1282, -1282, 9503, 216, 1046, 9301, 1053, -1282, 759, -1282, 357, 422, 994, -1282, 994, 1051, 3896, -1282, 994, 10766, -1282, -1282, 1057, -1282, -1282, -1282, 598, -1282, 10694, 858, -1282, 8230, 851, 8533, -1282, -1282, 558, 1055, 1056, 1025, 2498, -1282, -1282, 7808, -1282, -1282, 1062, -1282, -1282, 1070, -1282, 1062, 1072, 10539, 10287, 1060, 1061, 100, 1073, 1071, 1088, 1090, -1282, 1094, 1095, 9688, 6711, -1282, 10287, -1282, 689, 1753, -1282, -1282, -1282, 131, 131, 10230, 10287, 1080, -1282, -1282, 650, -1282, 10287, -1282, -1282, 885, -1282, -1282, -1282, -1282, 619, 619, 651, 651, 733, 733, 733, 733, 206, 206, 860, 791, 775, 785, 823, 3896, 14, -1282, 9803, 1099, 1100, 1102, 1665, -1282, -1282, -1282, -1282, -1282, 9803, 657, 8230, -1282, 2963, -1282, 7068, 9383, -1282, 4463, 6949, -1282, -1282, 501, 9803, 1030, 1108, 1109, 1110, 1111, 1112, 1114, 1117, -1282, 3725, 3131, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 968, -1282, -1282, -1282, 794, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 1118, -1282, 1120, 1122, -1282, -1282, 122, 1080, 10173, -1282, -1282, -1282, 6164, 1123, -1282, -1282, -1282, -1282, 994, 6295, 1204, -1282, -1282, -1282, -1282, 1116, 122, -1282, -1282, 968, -1282, -1282, 968, 125, 968, -1282, -1282, -1282, -1282, -1282, -1282, 9612, -1282, 216, -1282, -1282, 460, 467, 9188, 7187, 1951, 3896, 3145, -1282, -1282, 1105, 87, 1105, -1282, 994, -1282, 131, -1282, -1282, 8451, 972, -1282, -1282, -1282, 975, 1133, 1129, -1282, -1282, 1137, 1146, -1282, 851, 1870, -1282, 683, -1282, 2498, 794, -1282, 1149, 7808, 9721, 9044, 1151, -1282, -1282, 1150, 1152, 1138, -1282, 3896, 1158, 250, 1153, -1282, 1157, 598, 1157, -1282, -1282, 1157, 1160, -1282, 1166, 1169, 1172, 1753, -1282, -1282, -1282, 6164, -1282, -1282, -1282, -1282, 1168, 10287, 1175, 598, -1282, 10287, -1282, 598, -1282, -1282, 10287, -1282, 809, 810, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 869, 858, 9270, -1282, -1282, 7306, 1180, -1282, 829, 810, -1282, 854, 868, 810, -1282, 713, 4154, -1282, -1282, -1282, 9803, 9803, -1282, 8606, 8606, -1282, 1176, 1181, 1183, 1189, -1282, 1179, 724, -22, 1080, -1282, 598, -1282, 4885, -1282, 10287, 475, -1282, 6430, 1191, 1192, 10116, 1193, 1195, 21, 55, 195, 10287, 1196, 216, 10287, 10287, 1182, 1205, 579, 1209, -1282, -1282, -1282, 1200, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 994, 1213, 10287, -1282, 9803, 9803, 131, 1214, -1282, 8962, -1282, -1282, 893, -1282, 3145, -1282, -1282, -1282, -1282, 759, -1282, -1282, 1218, -1282, -1282, -1282, -1282, 1227, 1870, -1282, -1282, 1215, -1282, 1062, -1282, -1282, 1830, 1231, -1282, -1282, -1282, 669, 1234, -1282, 100, 1237, 3896, 1220, 100, 100, 1248, 9650, 876, 810, -1282, -1282, 1008, 10287, 1251, 1168, 563, 204, 1250, -1282, -1282, 1255, 1250, -1282, -1282, 1258, -1282, -1282, 968, 1259, 1261, 6830, 1263, 1265, 1267, -1282, -1282, 1273, -1282, -1282, 968, -1282, -1282, -1282, -1282, 968, 10287, 10287, 858, 1275, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 3896, 3896, 1278, 1279, 1250, -1282, -1282, 994, -1282, -1282, -1282, 8042, 9721, 10287, 10287, 1345, 10287, -1282, 1266, -1282, 1268, -1282, 1276, 10287, 1282, 10287, 1096, 1293, 49, 131, 5155, 1347, -1282, -1282, 6295, 1280, 482, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 9936, -1282, 8679, 1287, -1282, -1282, 9721, 490, 497, -1282, 1290, 1281, 784, 1319, -1282, 334, -1282, -1282, -1282, -1282, 968, 1323, -1282, -1282, 1327, 444, 549, 598, 1332, -1282, 1333, -1282, 9803, -1282, -1282, -1282, -1282, -1282, 1334, -1282, 9803, 9803, 9803, -1282, -1282, 1335, -1282, 1337, 1341, 1343, 735, 8303, 8418, -1282, -1282, 248, -1282, 1351, 1356, -1282, 8752, 676, 686, 1350, 707, 6096, -1282, -1282, -1282, 537, -1282, 716, 1365, 1367, 216, 1419, 951, -1282, -1282, 10287, -1282, 10116, 10287, -1282, -1282, -1282, 1370, 1372, -1282, -1282, -1282, 1369, -1282, -1282, -1282, -1282, -1282, -1282, 9721, 784, 1375, -1282, 1353, 784, 9803, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 1378, 1379, -1282, -1282, -1282, -1282, -1282, -1282, -1282, 1377, -1282, 1382, -1282, -1282, 10116, 104, 10287, 10116, -1282, 1387, 10287, -1282, 243, 1402, 1405, -1282, -1282, 1393, 1394, 1388, -1282, 916, -1282, -1282, -1282, 1880, 1830, 1389, -1282, 246, 3896, -1282, 729, -1282, 598, 598, 1399, 1400, 1404, 1409, -1282, -1282, 8606, 1407, -1282, 1479, 3896, 1395, -1282, -1282, 10028, -1282, 757, -1282, 1401, 10116, 1403, -1282, -1282, 1416, -1282, 1417, -1282, 1436, 1440, -1282, 1408, 9721, -1282, -1282, -1282, 784, 598, 1429, 1411, 1431, 1250, 1250, -1282, -1282, -1282, -1282, -1282, 10116, 10, -1282, 370, -1282, -1282, 7893, -1282, -1282, 1412, 10287, -1282, 10287, 7893, 216, 9301, 216, 9301, 1437, -1282, 1438, -1282, -1282, 1434, -1282, -1282, 790, -1282, -1282, -1282, 1441, 1442, -1282, 3896, 3896, -1282, -1282, 998, 93, -1282, -1282, 1424, -1282, 998, -1282, -1282, 2145, 598, -1282, -1282, 216, 9301, 216, 9301, 1446, 1425, 598, -1282, -1282, -1282, -1282, 10028, 1443, 998, 7969, 10287, 9940, 1455, 998, 1463, 2145, 3286, -1282, -1282, -1282, 1465, -1282, -1282, -1282, -1282, 9044, -1282, -1282, -1282, 9807, -1282, 10028, -1282, -1282, 1453, 5404, -1282, -1282, 9940, 216, 3286, 216, 1476, 1478, 831, -1282, 9807, -1282, -1282, -1282, 5404, -1282, -1282, -1282, 216, 216, -1282, -1282, -1282, -1282, -1282, -1282, -1282, -1282 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1282, 4519, 3402, -1282, 393, -1282, 353, 929, -255, 927, -1282, 536, -524, -496, -864, -86, 4763, 0, -1282, 1012, 494, 506, 417, 512, 1032, 1034, 1040, 1042, 1039, -1282, -348, -520, 3026, -967, -1282, -684, 629, -16, -590, 453, -1282, 172, -1282, 397, -1192, -1282, -1282, 141, -1282, -1281, -1043, 247, -1282, -1282, -1282, -1282, 72, -1149, -1282, -1282, -1282, -1282, -1282, -1282, 315, -843, 50, -1282, -384, -1282, 498, 288, -1282, 167, -1282, -343, -1282, -1282, -1282, 546, -651, -1282, -1282, 8, -1002, 97, 1423, -1282, -1282, -1282, -125, -1282, 23, 1201, -202, 1925, 4332, -1282, -1282, 52, 224, 459, 1086, -1282, 1865, -1282, -1282, 25, 2362, -1282, 2640, 1529, -1282, -1282, -1282, -646, -1282, 935, 945, 535, 718, 78, -1282, -1282, -1282, 934, 722, -464, -1282, -94, -89, 313, -1282, -1282, -870, -942, -24, 1177, 1054, 368, -1282, 1732, 548, -317, -213, -127, 662, 776, -1282, 990, -1282, 3077, 1178, -438, 923, -1282, -1282, 710, -1282, -234, -1282, 99, -1282, -1282, -1282, -1240, 423, -1282, -1282, -1282, 1170, -1282, -20, -1282, -1282, -853, -105, -1239, -126, 2286, -1282, 2146, -1282, 921, -1282, -146, 59, -177, -171, -166, 7, -40, -28, -27, 725, 4, 28, 37, -63, -154, -151, -150, -141, -271, -540, -513, -508, -569, -320, -517, -1282, -1282, -518, 1092, 1093, 1097, 1371, 5065, -582, -555, -549, -535, -441, -1282, -497, -722, -721, -701, -607, -309, -346, -1282, -1282, 185, 133, -15, -1282, 3702, -45, -609, -238 }; /* 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 -521 static const yytype_int16 yytable[] = { 49, 113, 428, 149, 166, 453, 440, 97, 399, 114, 766, 267, 143, 844, 400, 150, 151, 740, 628, 401, 827, 1070, 632, 63, 752, 76, 505, 964, 965, 609, 566, 402, 49, 826, 403, 404, 596, 868, 1187, 97, 407, 383, 384, 147, 405, 819, 919, 152, 966, 49, 50, 820, 69, 794, 725, 63, 161, 76, 730, 96, 815, 410, 357, 186, 567, 821, 209, 358, 166, 49, 193, 153, 973, 216, 1177, 669, 226, 219, 604, 1171, 154, 1379, 50, 818, 69, 1204, 1205, 816, 399, 202, 260, 96, 817, 1195, 400, 678, 425, 56, 115, 401, 1178, 327, 148, 682, 31, 113, 1468, 409, 96, 673, 675, 402, 1302, 113, 403, 404, 266, 271, 122, 1137, 407, 1443, 189, 408, 405, 96, 31, 1197, 96, 56, 747, 471, 1178, 106, 106, 475, 477, -232, -232, 203, 342, 280, 31, 948, 986, 149, 307, 147, 1398, 1399, 1169, 1170, 476, 1196, 161, 113, 345, 150, 151, 1439, 209, 1245, 830, 210, 436, 106, 220, 373, 837, 1181, 31, 859, 860, 714, 252, 923, 411, 729, 815, 1458, 735, 1303, 291, 964, 965, 186, 186, 1198, 877, 152, 913, 847, 123, 161, 327, 848, 742, 667, 411, 281, 736, 266, 106, 408, 966, 816, 96, 527, -232, 49, 817, 951, 419, 153, 411, 1443, 161, 720, 1400, 96, 1443, 209, 154, 1069, 70, 149, 436, 173, 443, 168, 1439, 463, 377, 142, 163, 1077, 31, 150, 151, 307, 1443, 144, 1016, 804, 398, 189, 931, 1443, 378, 734, 31, 49, 723, 169, 1080, 1015, 70, 819, 97, 271, 664, 798, 166, 820, 271, 266, 266, 1199, 96, 253, 31, 113, 815, 161, 63, 991, 76, 821, 519, 472, 96, 76, 609, 1171, 146, 853, 1187, 1398, 1399, 1248, 212, 656, 476, 471, 307, 1003, 556, 557, 163, 816, 598, 50, 1139, 69, 817, 155, 481, 307, 411, 1525, 96, 596, 1200, 471, 568, 1093, 596, 1249, 441, 671, 828, 471, 601, 571, 479, 676, 588, 447, 147, 1536, 171, 558, 559, 1171, 664, 373, 1540, 994, 898, 357, 835, 113, 601, 665, 358, 345, 460, 922, 56, 602, 620, 827, 1526, 870, 111, 642, 342, 1409, 1070, -467, 1118, -467, 1423, 110, 625, 417, 831, 181, 625, 387, 834, 113, 871, 830, 41, 42, 1424, 819, -467, 1541, 1119, 327, 327, 820, 106, 388, 1084, 96, 437, 1186, 201, 851, 844, 713, 435, 854, 266, 821, 445, 579, 390, 411, 759, 110, 1169, 1170, 186, 582, 603, 411, 672, 674, -289, 373, 41, 42, 391, 665, 392, 8, 9, 10, 11, 12, 266, 177, 307, 307, -288, 1496, 266, 1116, 357, 625, 393, 1501, 714, 358, 985, 1187, 702, 472, 764, 76, 1325, 442, 1187, 577, 31, 327, 176, 394, 1171, 578, 113, 1521, 435, 996, 247, 1201, 1528, 472, 804, 76, 1326, 189, 520, 395, 327, 472, 1126, 76, 266, 914, 261, 70, 34, 262, 250, 523, 266, 952, 625, -516, 49, 1135, 1469, 373, 719, 915, 519, 97, 163, 252, 113, 519, 357, 1187, 519, 176, 1470, 358, 176, 1104, 609, 711, 307, 63, 113, 76, 342, 307, 263, 307, 307, 1029, 110, 1016, 1244, -10, 869, 750, 1428, 1429, 1434, 113, 345, 41, 42, 229, 881, 330, 230, 327, 50, 234, 69, 236, 916, 683, 704, 910, -440, 96, 245, 578, 705, 603, 176, 879, 804, 787, -441, 1014, 917, 1330, 471, 882, 922, 411, 1069, 2, 206, 4, 5, 6, 7, 1157, 1159, 493, 571, 571, 494, 37, 212, 845, 914, 40, 307, 276, 598, 56, 928, 916, 41, 42, 439, 331, 1126, 625, 345, 1184, 1081, 913, 620, 714, 278, 1236, 1184, 1082, 602, 279, 602, 922, 372, 465, 1316, 1185, 1019, 1484, 812, 176, 601, 1318, 1308, 680, 371, 106, 45, 46, 625, 110, 1317, 332, 912, 625, 35, 620, 36, 1319, 333, 625, 41, 42, 625, 625, 625, 1362, 1138, 691, 483, 706, 806, 1512, 721, 1514, 702, 500, 1027, 731, 722, 286, 625, 747, 266, 732, 713, 1276, 1277, 814, 1332, 603, 41, 42, 334, 176, 1014, 376, 1074, 1363, 110, 229, 176, -120, 746, -120, 252, 329, 520, -120, 747, 41, 42, 520, 113, 335, 520, 907, 514, 1029, 596, 523, 385, 523, -120, -120, 523, 212, 1360, 523, 1101, 252, 329, 411, 472, 570, 76, 411, 70, 1112, 625, 933, 620, 45, 46, 357, 177, 849, 719, 719, 358, 850, 389, 8, 9, 10, 11, 12, 399, 342, 472, 1234, 76, 629, 400, 1238, 549, 633, 498, 401, 1034, 176, 550, 551, 113, 345, 911, 892, 397, 750, 750, 402, 31, 747, 403, 404, 409, 894, 176, 450, 980, 407, 176, 747, 405, 702, 981, 993, 711, 922, 552, 553, 1408, 705, 162, 702, 804, 814, 603, 1232, 34, 1373, 426, 964, 965, 578, 1356, 427, 194, 702, 1474, 217, 747, 571, 227, 849, 1357, 1474, 749, 1100, 411, 625, 747, 625, 966, 999, 45, 46, 625, 345, 1161, 229, 602, 234, 432, 713, 110, 1359, 139, 238, 111, 554, 555, 747, 602, 176, 1364, 41, 42, 922, 922, 37, 747, 183, 184, 40, -103, 714, 461, 1426, -103, 890, 41, 42, 408, 1423, 442, 1348, 1522, 462, 897, 1349, -364, 239, 899, 1476, -393, 1477, 240, 484, 952, 806, 1425, 504, 952, 952, 291, 1444, 905, 691, 411, 814, 162, 747, 307, 508, 45, 46, 1436, 513, 885, 760, 411, 603, 525, 374, 765, 527, 342, 906, 2, 206, 4, 5, 6, 7, 625, 63, 327, 76, 1490, 229, 563, 113, 345, 907, 1491, 907, 1182, 562, 1523, 162, 110, 564, 139, 140, 714, 565, 1141, 113, 411, 338, 212, 41, 42, 568, 69, 711, -437, 48, 112, 1168, 933, 933, 162, 465, 212, 719, 1153, 664, 411, 1546, 113, 307, 910, 586, 444, 578, 1494, 1436, 1105, 864, 560, 561, 845, 35, 589, 36, 112, 112, 932, 48, 601, 1156, 1083, 601, 911, 750, 45, 46, -3, 56, 48, 775, 776, 777, 778, 1158, 48, 601, 1323, 638, 176, 891, 1508, 1241, 48, 411, 1087, 846, 1087, 657, 48, 702, 702, 48, 603, 658, 48, 345, 984, 981, 1227, 329, 411, 861, 878, 106, 880, 1369, 1370, 112, 112, 110, 176, 139, 140, 659, -3, 876, 625, 625, 665, 661, 41, 42, 666, 912, 662, 212, 176, 1418, 981, 1126, 922, 48, 663, 37, 48, 1106, 307, 40, 1398, 1399, 176, 48, 771, 772, 41, 42, 922, 702, 702, 374, 737, 243, 738, 713, 927, 739, 773, 774, 743, 472, 668, 76, 110, 1380, 139, 140, 1079, 1380, 779, 780, 43, 106, 48, 41, 42, 257, 113, 692, 45, 46, 48, 907, 419, 660, 411, 48, 907, 693, 1189, 481, 329, 411, 697, 37, 70, 933, 500, 40, 987, 695, 691, -236, 733, 266, 41, 42, 748, 744, 992, 756, 48, 48, 110, 807, 139, 140, 922, 922, 625, 808, 867, 176, 1004, 41, 42, 811, 48, 374, 822, 873, 718, 896, -12, 56, 48, 828, 329, 601, 45, 46, 911, -13, 345, 48, 866, 911, 48, 893, 213, 726, 1295, 1296, 1297, 112, 727, 895, 900, 232, 1331, 1333, 1334, 903, 921, -414, 1459, 711, -520, 936, 112, 106, 1284, 1285, 112, 1287, 722, 943, 48, 112, 945, 956, 1292, 1351, 1294, 957, 271, 113, 949, 498, 342, 950, 48, 48, 977, 219, 958, 1312, 959, 48, 116, 213, 960, 961, -290, 113, 48, 988, 989, 307, 990, 8, 9, 10, 11, 12, 1005, 1006, 1007, 1008, 1009, 1203, 1010, 625, 442, 1011, 1022, 113, -402, 702, -401, 1071, 63, 906, 76, 1105, 1036, 702, 702, 702, 31, 1094, 215, 1095, 213, 1073, 711, 1096, 159, 2, 206, 4, 5, 6, 7, 48, 1097, 1103, 242, 1113, 1114, 69, 70, 691, 747, 1117, 1115, 1120, 34, 971, 1122, 1421, 625, 625, 1123, 48, 48, 1124, 228, 1534, 1125, 271, 1128, 210, 220, 1131, 307, 176, 1151, 1176, 1172, 1174, 48, 215, 510, 1173, 48, 1175, 1190, 1191, 1193, 702, 1194, 1202, 258, 213, 56, 643, 1121, 472, 1206, 76, 159, -3, 35, 1207, 36, 547, 548, 113, 106, 1214, 1219, 48, 1106, 1058, 399, 1105, 1166, 1167, 1132, 1222, 400, 48, 1132, 1224, 215, 401, 1189, 1209, 1404, 493, 106, 213, 1228, 323, 1233, 1235, 213, 402, 1237, 48, 403, 404, 339, 547, 1240, 48, 407, 48, 106, 1246, 405, 499, 1250, 1252, 1254, 1256, 37, 1257, 183, 184, 40, 1258, 1507, 1259, 266, 1260, 441, 41, 42, 1262, 664, 56, 1132, 1269, 1216, 1217, 1278, 1279, 1286, 547, 625, 1307, 112, 1314, 1289, 215, 1290, 48, 528, 529, 530, 1320, 430, 185, 1291, 48, 434, 1322, 212, 48, 1293, 45, 46, 48, 1106, 113, 112, 106, 112, 57, 57, 1301, 531, 1105, 532, 1324, 533, 534, 528, 529, 530, 70, 213, 215, 1328, 1329, 323, 113, 215, 408, 1335, 1336, 1338, 1344, 113, 1345, 113, 1346, 113, 1347, 106, 57, 531, 112, 532, 1358, 533, 1305, 112, 1354, 472, 149, 76, 665, 1355, 1367, 327, 472, 434, 76, 1365, 488, 1366, 150, 151, 1297, 1374, 1506, 1375, 1376, 1382, 1383, 113, -403, 113, 57, 1392, 1393, 57, 1189, 1396, 521, 1192, 1407, 1411, 113, 1189, 1413, 1415, 1416, 1422, 1506, 1506, 442, 159, 1430, 1431, 112, 70, 161, 1432, 307, 1106, 213, 48, 1433, 1417, 1435, 472, 1349, 76, 1440, 1449, 1451, 215, 48, 1506, 48, 1453, 1445, 213, 1447, 1455, 373, 56, 1462, 1457, 1464, 587, 1463, 1475, 56, 593, 1485, 1487, 1489, 48, 1189, 106, 1492, 1493, 1515, 1500, 1516, 1520, 213, 413, 768, 769, 770, 479, 626, 48, 421, 1337, 630, 1527, 112, 339, 1529, 106, 1531, 1339, 1340, 1341, 348, 48, 106, 112, 48, 112, 1537, 1544, 37, 1545, 174, 175, 40, 1208, 888, 781, 214, 56, 782, 41, 42, 176, 1132, 1132, 1132, 783, 785, 1130, 784, 1306, 215, 1495, 1410, 1547, 1368, 1384, 1478, 48, 1213, 1239, 901, 112, 1479, 112, 1483, 372, 1221, 112, 323, 323, 902, 1088, 924, 106, 1127, 112, 1482, 800, 1482, 872, 413, 1385, 703, 1092, 1035, 57, 938, 214, 48, 48, 1102, 0, 215, 1315, 946, 716, 687, 0, 1511, 0, 1513, 0, 48, 790, 791, 1058, 70, 0, 792, 116, 0, 0, 1482, 70, 1482, 57, 8, 9, 10, 11, 12, 213, 0, 0, 0, 0, 0, 0, 0, 37, 214, 183, 184, 40, 488, 576, 323, 0, 488, 0, 41, 42, 1542, 580, 1543, 31, 583, 0, 521, 213, 521, 0, -291, 521, 213, 323, 521, 1550, 1551, 8, 9, 10, 11, 12, 70, 0, 600, 339, 601, 0, 0, 0, 0, 34, 45, 46, 0, 0, 0, 0, 1132, 1132, 48, 0, 0, 0, 1420, 0, 31, 0, 0, 214, 0, 0, 48, 0, 0, 0, 1372, 0, 0, 0, 0, 141, 8, 9, 10, 11, 12, 972, 413, 176, 0, 215, 421, 570, 34, 411, 1460, 0, 323, 0, 0, 45, 46, 213, 0, 0, 0, 214, 0, 802, 0, 31, 214, 0, 0, 643, 0, 213, 0, 215, 0, 112, 0, 0, 215, 0, 0, 0, 1397, 0, 0, 1405, 0, 241, 244, 0, 0, 499, 0, 34, 843, 0, 0, 0, 48, 593, 0, 0, 0, 0, 0, 852, 0, 48, 1509, 48, 37, 0, 174, 175, 40, 0, 112, 1517, 0, 0, 703, 41, 42, 413, 0, 0, 0, 0, 1442, 348, 0, 0, 0, 1446, 0, 749, 0, 411, 74, 48, 0, 0, 0, 45, 46, 0, 0, 376, 0, 215, 0, 0, 214, 8, 9, 10, 11, 12, 687, 112, 0, 1467, 0, 215, 213, 0, 0, 0, 0, 0, 74, 0, 0, 643, 0, 37, 0, 183, 184, 40, 57, 112, 31, 0, 0, 112, 41, 42, 0, 129, 0, 130, 131, 132, 0, 0, 488, 0, 66, 117, 41, 42, 0, 0, 0, 0, 0, 222, 0, 0, 34, 0, 265, 0, 576, 576, 0, 0, 339, 0, 45, 46, 348, 0, 0, 37, 0, 174, 175, 40, 66, 0, 0, 214, 0, 112, 41, 42, 0, 703, 0, 0, 0, 0, 0, 1535, 0, 160, 457, 703, 0, 1535, 932, 0, 601, 0, 215, 0, 0, 0, 45, 46, 1535, 703, 0, 0, 1535, 221, 0, 0, 0, 0, 0, 112, 0, 214, 0, 995, 0, 0, 0, 0, 802, 0, 547, 0, 348, 48, 0, 0, 0, 0, 48, 0, 353, 0, 37, 0, 183, 184, 40, 883, 0, 259, 0, 886, 0, 41, 42, 48, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 510, 0, 0, 0, 0, 348, 348, 348, 905, 0, 411, 0, 0, 0, 0, 0, 45, 46, 31, 0, 328, 0, 0, 348, 0, 0, 0, 0, 259, 350, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 449, 0, 802, 34, 0, 0, 0, 0, 37, 339, 183, 184, 40, 0, 0, 0, 406, 644, 112, 41, 42, 74, 0, 0, 0, 687, 74, 0, 214, 0, 0, 424, 0, 0, 429, 431, 0, 0, 348, 160, 0, 48, 0, 0, 0, 185, 0, 488, 1107, 323, 0, 0, 0, 45, 46, 0, 214, 0, 0, 0, 448, 214, 0, 0, 451, 0, 452, 0, 0, 576, 0, 0, 0, 0, 0, 459, 0, 126, 126, 126, 0, 66, 112, 112, 112, 215, 473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 480, 0, 0, 703, 703, 0, 0, 0, 431, 843, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 8, 9, 10, 11, 12, 222, 37, 0, 183, 184, 40, 0, 724, 348, 728, 0, 214, 41, 42, 0, 0, 348, 0, 0, 545, 0, 0, 0, 0, 31, 214, 0, 0, 126, 0, 126, 0, 0, 0, 0, 0, 703, 703, 1505, 0, 411, 0, 0, 0, 0, 0, 45, 46, 0, 0, 259, 0, 34, 0, 594, 275, 0, 37, 213, 0, 622, 40, 0, 0, 0, 687, 413, 74, 41, 42, 0, 0, 0, 627, 0, 0, 0, 627, 0, 0, 259, 57, 353, 0, 0, 0, 0, 74, 0, 0, 48, 48, 0, 0, 43, 74, 124, 127, 128, 112, 112, 0, 45, 46, 0, 0, 0, 802, 0, 0, 0, 126, 0, 353, 0, 0, 0, 0, 214, 126, 0, 126, 126, 0, 0, 0, 126, 473, 126, 126, 0, 353, 0, 74, 0, 0, 0, 112, 0, 0, 0, 0, 350, 1142, 0, 0, 77, 473, 0, 57, 215, 0, 0, 213, 0, 473, 0, 0, 865, 0, 1154, 0, 0, 0, 0, 0, 0, 0, 254, 0, 255, 0, 0, 698, 0, 353, 431, 0, 77, 0, 0, 0, 0, 0, 1313, 0, 0, 0, 0, 0, 0, 712, 339, 66, 48, 112, 0, 0, 126, 0, 0, 431, 0, 0, 112, 431, 0, 918, 0, 920, 0, 0, 0, 457, 1107, 223, 703, 0, 48, 48, 0, 0, 0, 0, 703, 703, 703, 348, 348, 0, 0, 0, 0, 0, 259, 350, 0, 0, 413, 353, 0, 0, 0, 48, 0, 215, 0, 57, 0, 0, 0, 396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415, 416, 0, 0, 0, 420, 0, 422, 423, 0, 0, 0, 0, 0, 0, 0, 0, 1242, 0, 793, 0, 0, 353, 353, 353, 0, 0, 703, 0, 0, 0, 8, 9, 10, 11, 12, 0, 627, 805, 0, 353, 355, 0, 0, 0, 1107, 0, 0, 0, 0, 824, 0, 0, 0, 214, 0, 0, 0, 353, 0, 31, 0, 0, 0, 0, 0, 0, 0, 594, 74, 0, 0, 0, 594, 0, 0, 0, 0, 0, 627, 0, 0, 350, 350, 350, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 74, 0, 40, 353, 0, 350, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 698, 0, 0, 0, 644, 0, 0, 0, 0, 0, 1039, 473, 718, 0, 0, 353, 57, 57, 77, 0, 45, 46, 0, 77, 0, 1107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473, 0, 57, 350, 0, 0, 0, 0, 79, 0, 0, 0, 937, 0, 1089, 431, 0, 0, 0, 1481, 57, 1481, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 353, 0, 0, 259, 712, 222, 79, 0, 353, 967, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 1481, 0, 1481, 0, 0, 0, 0, 0, 0, 0, 348, 348, 0, 0, 0, 0, 644, 0, 0, 57, 0, 0, 224, 0, 57, 0, 223, 698, 0, 323, 214, 0, 0, 126, 126, 0, 0, 698, 0, 350, 0, 627, 0, 0, 1002, 0, 627, 805, 0, 0, 0, 698, 74, 0, 0, 0, 0, 57, 0, 0, 0, 1013, 126, 0, 0, 126, 126, 0, 126, 0, 126, 126, 0, 0, 0, 126, 126, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 356, 0, 0, 66, 77, 0, 0, 1039, 0, 0, 0, 0, 77, 0, 0, 0, 214, 0, 0, 0, 0, 348, 0, 0, 0, 627, 0, 0, 0, 0, 355, 0, 259, 712, 0, 0, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 355, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1099, 0, 795, 796, 0, 0, 57, 0, 431, 117, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 353, 0, 353, 353, 0, 355, 829, 0, 79, 832, 833, 0, 836, 79, 838, 839, 0, 126, 126, 840, 841, 0, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1282, 0, 0, 0, 0, 0, 57, 0, 594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 429, 0, 0, 353, 353, 698, 698, 0, 350, 350, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1188, 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, 224, 0, 26, 27, 28, 355, 355, 355, 0, 698, 698, 31, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 355, 0, 0, 0, 0, 38, 39, 0, 969, 970, 0, 77, 0, 0, 0, 627, 0, 0, 0, 0, 0, 0, 222, 0, 0, 126, 79, 0, 0, 0, 126, 0, 0, 0, 0, 0, 0, 77, 0, 712, 355, 356, 257, 0, 74, 86, 79, 0, 45, 46, 0, 0, 0, 0, 79, 0, 353, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 0, 355, 0, 86, 0, 0, 0, 0, 1283, 0, 0, 0, 0, 0, 353, 0, 356, 0, 79, 0, 0, 0, 353, 353, 353, 0, 259, 0, 0, 0, 66, 0, 0, 353, 353, 8, 9, 10, 11, 12, 225, 0, 698, 0, 712, 355, 0, 74, 117, 8, 9, 10, 11, 12, 0, 355, 0, 355, 0, 0, 356, 0, 223, 0, 31, 355, 321, 0, 0, 355, 0, 0, 0, 0, 698, 0, 346, 0, 31, 0, 0, 0, 698, 698, 698, 0, 353, 0, 382, 382, 0, 0, 34, 350, 350, 0, 1090, 37, 0, 183, 184, 40, 0, 0, 0, 0, 34, 1188, 41, 42, 0, 37, 0, 183, 184, 40, 0, 126, 0, 0, 0, 0, 41, 42, 356, 0, 0, 363, 0, 0, 77, 0, 0, 0, 600, 0, 601, 0, 0, 0, 117, 0, 45, 46, 0, 0, 698, 0, 905, 0, 411, 0, 0, 353, 0, 0, 45, 46, 0, 321, 355, 0, 0, 0, 0, 0, 0, 0, 356, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478, 0, 0, 356, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 74, 0, 0, 0, 356, 0, 0, 74, 0, 0, 0, 0, 0, 350, 0, 79, 0, 0, 0, 31, 0, 0, 86, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, 0, 79, 0, 0, 356, 0, 126, 34, 0, 0, 0, 0, 37, 0, 183, 184, 40, 1218, 74, 0, 1188, 0, 0, 41, 42, 0, 0, 1188, 0, 0, 0, 0, 0, 355, 355, 0, 355, 355, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1505, 0, 411, 0, 0, 0, 0, 77, 45, 46, 0, 382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1188, 0, 0, 0, 225, 356, 0, 1530, 0, 0, 0, 0, 0, 355, 355, 356, 0, 356, 0, 0, 0, 0, 224, 0, 0, 356, 0, 0, 0, 356, 0, 167, 0, 172, 0, 0, 178, 179, 180, 0, 182, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 249, 1304, 0, 0, 86, 0, 0, 31, 0, 709, 0, 0, 0, 0, 0, 0, 0, 355, 0, 363, 0, 0, 0, 79, 86, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 34, 0, 0, 0, 0, 37, 0, 183, 184, 40, 0, 0, 0, 741, 0, 363, 41, 42, 356, 0, 0, 0, 0, 0, 0, 223, 758, 0, 0, 0, 0, 741, 0, 363, 741, 86, 0, 282, 283, 0, 284, 0, 265, 0, 0, 0, 767, 77, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 355, 0, 355, 0, 0, 0, 0, 285, 0, 788, 0, 0, 0, 286, 0, 0, 0, 287, 363, 797, 288, 289, 290, 291, 41, 42, 346, 292, 293, 0, 0, 758, 355, 0, 0, 0, 0, 0, 0, 0, 355, 355, 355, 0, 0, 0, 0, 0, 0, 0, 506, 355, 355, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 0, 77, 0, 0, 0, 0, 0, 0, 356, 356, 0, 356, 356, 0, 0, 0, 862, 0, 363, 0, 0, 0, 0, 0, 382, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 363, 363, 363, 0, 356, 356, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 1012, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 591, 363, 599, 34, 0, 165, 0, 0, 0, 0, 355, 0, 86, 623, 624, 0, 282, 283, 31, 284, 0, 0, 218, 0, 0, 758, 0, 963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 974, 86, 0, 356, 363, 0, 982, 0, 285, 34, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 77, 288, 289, 290, 291, 41, 42, 77, 292, 293, 0, 0, 165, 0, 0, 0, 272, 0, 0, 363, 0, 0, 0, 0, 0, 0, 224, 0, 1000, 1001, 0, 294, 346, 379, 0, 0, 0, 0, 0, 344, 46, 296, 297, 298, 299, 165, 346, 0, 79, 0, 0, 0, 0, 0, 0, 369, 0, 0, 77, 375, 356, 0, 356, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 363, 0, 0, 0, 0, 225, 0, 0, 363, 0, 0, 1031, 363, 0, 0, 382, 0, 356, 0, 0, 0, 0, 0, 0, 0, 356, 356, 356, 0, 0, 0, 0, 0, 165, 0, 0, 356, 356, 0, 0, 0, 0, 0, 0, 0, 218, 0, 0, 0, 0, 79, 0, 346, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 0, 0, 0, 375, 356, 286, 321, 0, 0, 287, 165, 0, 288, 289, 290, 291, 41, 42, 363, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524, 382, 0, 0, 0, 0, 0, 974, 0, 294, 0, 741, 0, 165, 0, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1150, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 1165, 0, 0, 0, 0, 0, 0, 0, 597, 0, 0, 0, 0, 621, 0, 0, 0, 0, 0, 0, 0, 0, 382, 0, 1183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 974, 974, 0, 79, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 363, 363, 0, 363, 363, 1215, 0, 925, 0, 926, 0, 0, 0, 0, 0, 0, 929, 930, 0, 0, 0, 935, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 940, 165, 165, 0, 0, 944, 0, 0, 369, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 974, 0, 524, 0, 0, 0, 978, 1162, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 715, 0, 0, 1266, 1267, 0, 0, 282, 283, 31, 284, 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524, 0, 524, 0, 0, 524, 0, 165, 524, 0, 0, 0, 285, 34, 0, 363, 0, 0, 286, 0, 369, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 1024, 1025, 1026, 294, 1028, 379, 225, 0, 0, 0, 0, 1163, 46, 296, 297, 298, 299, 0, 0, 1072, 165, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 369, 1078, 0, 0, 810, 0, 0, 0, 363, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 597, 0, 0, 0, 0, 597, 1371, 0, 0, 741, 363, 1098, 0, 0, 369, 369, 369, 0, 363, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1129, 0, 0, 0, 0, 0, 1136, 0, 524, 0, 0, 1140, 0, 0, 0, 0, 1144, 0, 1145, 0, 211, 0, 1147, 0, 1148, 1149, 363, 0, 1152, 231, 0, 235, 0, 237, 369, 0, 934, 1164, 0, 0, 246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1179, 1180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 715, 0, 211, 0, 235, 237, 246, 0, 0, 0, 0, 0, 0, 1210, 0, 0, 1212, 0, 0, 0, 0, 0, 0, 0, 363, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 211, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 369, 0, 0, 1226, 621, 0, 0, 0, 369, 1230, 1231, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 34, 0, 1247, 0, 0, 1251, 0, 38, 39, 1253, 0, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1261, 211, 0, 235, 237, 246, 0, 0, 0, 0, 0, 156, 0, 1268, 0, 1270, 1271, 1272, 1273, 0, 634, 0, 338, 0, 86, 0, 0, 0, 45, 46, 0, 1280, 0, 1281, 0, 0, 0, 172, 0, 211, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 715, 0, 0, 0, 251, 497, 0, 0, 0, 0, 0, 0, 1309, 1310, 256, 524, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 165, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 684, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 1342, 1343, 0, 0, 0, 0, 0, 0, 156, 0, 1353, 0, 0, 0, 211, 0, 34, 0, 0, 235, 237, 0, 386, 38, 39, 0, 0, 246, 0, 0, 0, 0, 0, 597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418, 0, 0, 0, 0, 0, 0, 0, 0, 369, 369, 0, 0, 0, 433, 685, 0, 0, 0, 686, 0, 45, 46, 438, 0, 211, 1388, 0, 1389, 1390, 1391, 0, 0, 446, 0, 0, 0, 0, 0, 0, 1395, 0, 0, 211, 282, 283, 0, 284, 211, 1406, 211, 0, 0, 0, 0, 0, 0, 0, 464, 0, 0, 0, 0, 474, 0, 0, 0, 211, 0, 524, 211, 211, 0, 285, 1427, 0, 482, 0, 211, 286, 0, 0, 492, 287, 496, 0, 288, 289, 290, 291, 41, 42, 211, 292, 293, 0, 0, 0, 0, 211, 0, 526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 511, 1465, 1466, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 1471, 0, 0, 0, 0, 715, 0, 1471, 0, 0, 0, 0, 0, 0, 585, 0, 0, 0, 0, 590, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -292, 1504, 0, 0, 0, 1510, 0, 0, 0, 218, 635, 31, 0, 0, 636, 637, 0, 639, 0, 0, 0, 0, 0, 0, 650, 651, 0, 652, 653, 0, 654, 0, 655, 1532, 0, 1533, 0, 0, 0, 34, 0, 282, 283, 0, 284, 211, 715, 0, 0, 585, -292, 0, 0, 0, 0, 0, 0, 670, 0, 0, 0, 0, 0, 1548, 1549, 0, 0, 0, 0, 0, 285, 1552, 1553, 211, 0, 0, 286, 0, 211, 0, 287, 0, 681, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 369, 369, 0, 0, 0, 0, 0, 0, 0, 218, 0, 0, 0, 707, 0, 0, 0, 0, 294, 710, 379, 0, 0, 380, 464, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -292, 211, 26, 27, 28, 0, 0, 745, 0, 0, 0, 31, 0, 0, 0, 211, 507, 0, 509, 512, 0, 0, 763, 0, 0, 0, 515, 516, 0, 0, 0, 0, 0, 0, 0, 497, 0, 0, 0, 34, 0, 509, 509, 0, 37, 0, 336, 337, 40, 0, -292, 0, 0, 0, 0, 41, 42, 0, 0, 0, 789, 0, 0, 0, 0, 0, 0, 369, 0, 799, 0, 0, 0, 0, 0, 0, 801, 0, 0, 509, 0, 634, 809, 338, 0, 0, 0, 0, 0, 45, 46, 823, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 509, 0, 0, 0, 0, 0, 0, 0, 524, 0, 524, 0, 211, 0, 0, 0, 863, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -292, 0, 26, 27, 28, 524, 0, 524, 0, 0, 0, 31, 0, 809, 0, 0, 0, 0, 0, 0, 0, 904, 0, 0, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 165, 0, 0, 341, 364, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, -292, 0, 251, 0, 0, 41, 42, 0, 0, 285, 0, 0, 941, 942, 0, 286, 0, 0, 0, 287, 0, 414, 288, 289, 290, 291, 41, 42, 414, 292, 293, 0, 0, 338, 0, 0, 211, 0, 0, 45, 46, 0, 0, 0, 0, 979, 0, 0, 0, 0, 983, 0, 294, 0, 379, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 211, 0, 0, 0, 0, 0, 0, 786, 0, 0, 0, 0, 0, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 509, 0, 0, 0, 414, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 1017, 0, 0, 0, 0, 0, 0, 1018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1020, 0, 1021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1033, 0, 0, 0, 0, 414, 1037, 0, 0, 0, 0, 0, 0, 414, 581, 0, 414, 584, 1075, 0, 0, 1076, 0, 0, 0, 0, 0, 364, 0, 0, 0, 613, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 631, 0, 0, 341, 0, 0, 0, 0, 282, 283, 0, 284, 1041, 0, 1042, 0, 0, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 509, 0, 1524, 1051, 0, 414, 0, 1052, 1053, 414, 33, 0, 285, 0, 0, 0, 0, 0, 1054, 0, 0, 0, 287, 590, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 1146, 0, 171, 509, 211, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 1056, 0, 0, 0, 0, -127, 0, 0, 0, 0, 0, 0, 0, 414, 0, 0, 364, 0, 509, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 526, 0, 26, 27, 28, 0, 1211, 0, 0, 0, 0, 31, 414, 0, 0, 0, 341, 364, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -293, 34, 1223, 211, 0, 0, 37, 1225, 336, 337, 40, 31, 0, 0, 0, 1229, 0, 41, 42, 0, 0, 0, 0, 414, 414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 803, 364, 0, 338, 0, 0, 1255, 0, -293, 45, 46, 613, 0, 613, 613, 509, 0, 0, 1263, 0, 613, 1264, 0, 1265, 0, 0, 0, 0, 0, 0, 842, 364, 0, 0, 0, 0, 364, 1274, 1275, 0, 0, 0, 0, 0, 0, 364, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1288, 509, 0, 0, 364, 0, 0, 0, 0, 414, 884, 0, 0, 414, 887, 0, 0, 0, 0, 0, 889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 414, 0, 0, 0, 0, 0, 0, 0, 1327, 0, 509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 613, 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, 509, 0, 0, 0, 0, 31, 341, 364, 0, 0, 0, 414, 414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1377, 34, 1378, 0, 0, 0, 0, 0, 207, 39, 0, 0, 0, 0, 1386, 0, 1387, 0, 0, 0, 0, 0, 0, 414, 0, 0, 0, 211, 0, 0, 0, 364, 0, 1394, 0, 0, 0, 0, 803, 364, 0, 0, 613, 0, 613, 509, 0, 0, 0, 1412, 1414, 45, 46, 0, 613, 0, 0, 0, 0, 0, 1419, 0, 0, 1229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1441, 0, 0, 0, 0, 0, 0, 0, 0, 1448, 0, 0, 1450, 0, 1452, 1454, 1456, 0, 0, 0, 0, 509, 509, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 803, 26, 27, 28, 0, 0, 0, 341, 364, 414, 31, 414, 1486, 0, 1488, 414, 1229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1499, 0, 0, 0, 0, 613, 613, 34, 0, 0, 0, 0, 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, 414, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 157, 0, 0, 0, 0, 0, 45, 46, 0, 0, 414, 1143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 414, 1155, 0, 613, 613, 1160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 206, 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, 282, 283, 31, 284, 0, 0, 0, 0, 0, 0, 0, 0, 509, 0, 0, 414, 0, 414, 0, 0, 0, 0, 414, 0, 0, 0, 0, 0, 509, 285, 34, 613, 35, 0, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 803, 414, 1243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 294, 0, 1055, 0, 0, 0, 364, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, -127, 0, 285, 509, 509, 0, 0, 0, 640, 0, 139, 140, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 294, 0, 641, 0, 642, 380, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 1, 2, 206, 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, 282, 283, 31, 1040, 1041, 0, 1042, 364, 364, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 0, 1051, 0, 0, 0, 1052, 1053, 0, 33, 0, 285, 34, 0, 35, 0, 36, 1054, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 1055, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 1056, 0, 0, 0, 0, -127, 0, 0, 0, 0, 0, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 364, 26, 27, 28, 29, 0, 0, 30, 282, 283, 31, 284, 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, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 110, 0, 38, 39, 0, 0, 294, 0, 44, 0, 0, 41, 42, 414, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 414, 44, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 110, 0, 38, 39, 0, 0, 294, 0, 343, 0, 0, 41, 42, 757, 344, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 962, 0, 0, 0, 0, 757, 344, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 207, 39, 0, 0, 294, 0, 962, 0, 0, 0, 0, 757, 45, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 0, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 343, 0, 0, 0, 0, 0, 344, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 0, 36, 286, 0, 207, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 997, 0, 0, 0, 0, 0, 998, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 0, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 962, 0, 0, 0, 0, 0, 344, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 0, 36, 286, 0, 207, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, -515, 0, 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, 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, 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, -519, 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, 45, 46, 205, 2, 206, 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, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 485, 486, 487, 34, 0, 35, 31, 36, 37, 0, 207, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 43, 0, 208, 0, 0, 0, 0, 0, 45, 46, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -292, 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, -292, 1, 2, 206, 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, 44, 30, 0, 0, 31, 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, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 205, 2, 206, 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, 44, 31, 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, 0, 34, 0, 35, 0, 36, 0, 0, 207, 39, 0, 2, 206, 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, 208, 31, 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, 0, 34, 0, 35, 0, 36, 37, 0, 207, 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, 208, 0, 0, 0, 0, 0, 45, 46, 2, 206, 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, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 34, 0, 35, 0, 36, 0, 31, 38, 39, 0, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 38, 39, -399, 677, 31, 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, 0, 34, 0, 35, 0, 36, 157, 0, 38, 39, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 677, 0, 0, 0, 0, 0, 45, 46, 2, 206, 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, 684, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1352, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 677, 0, 0, 0, 0, 0, 45, 46, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 685, 26, 27, 28, 1091, 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, 207, 39, 0, 2, 206, 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, 270, 31, 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, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 206, 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, 677, 31, 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, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 206, 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, 45, 46, 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, 207, 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, 282, 283, 31, 284, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 34, 0, 0, 0, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 517, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 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, 282, 283, 31, 284, 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, 285, 34, 0, 0, 31, 684, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, -36, 295, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 685, 26, 27, 28, 1220, 0, 45, 46, 282, 283, 31, 284, 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, 285, 34, 0, 0, 31, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 207, 39, 0, 0, 294, 0, 295, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 270, 26, 27, 28, 0, 0, 45, 46, 282, 283, 31, 284, 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, 285, 34, 0, 0, 31, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 157, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 338, 26, 27, 28, 0, 0, 45, 46, 282, 283, 31, 284, 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, 285, 34, 0, 0, 31, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 592, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 685, 26, 27, 28, 0, 0, 45, 46, 282, 283, 31, 284, 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, 285, 34, 26, 27, 28, 0, 286, 0, 38, 39, 287, 31, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 294, 0, 379, 38, 39, 0, 0, 0, 45, 46, 296, 297, 298, 299, 467, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 592, 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, 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, 0, 38, 39, 40, 31, 0, 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, 43, 37, 44, 207, 39, 40, 31, 0, 45, 46, 0, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -292, 34, 26, 27, 28, 43, 37, 270, 336, 337, 40, 31, 0, 45, 46, 0, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -292, 34, 26, 27, 28, 634, 0, 338, 38, 39, 0, 31, -292, 45, 46, 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, 0, 0, 634, 31, 338, 38, 39, 0, 0, -292, 45, 46, 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, 0, 38, 39, 0, 0, 338, 0, 0, 0, 0, 0, 45, 46, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 44, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 0, 282, 283, 0, 284, 1041, 0, 1042, 0, 0, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 0, 1051, 0, 0, 0, 1052, 1053, 34, 33, 35, 285, 36, 0, 0, 38, 39, 1054, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -412, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 1056, 0, 0, 0, 0, -127, 2, 206, 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, 282, 283, 0, 284, 1041, 0, 1042, 1398, 1399, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 1524, 1051, 0, 0, 0, 1052, 1053, 34, 33, 35, 285, 36, 0, 0, 38, 39, 1054, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 1311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 282, 283, 1056, 284, 1041, 0, 1042, 1398, 1399, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 0, 1051, 0, 0, 0, 1052, 1053, 0, 33, 0, 285, 0, 0, 0, 0, 0, 1054, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 282, 283, 1056, 284, 1041, 0, 1042, 0, 0, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 0, 0, 0, 1051, 0, 0, 0, 1052, 1053, 0, 33, 0, 285, 0, 0, 0, 0, 0, 1054, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 1056, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 0, 0, 757, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 971, 0, 0, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 379, 0, 282, 283, 0, 284, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 285, 292, 293, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 294, 0, 379, 0, 282, 283, 0, 284, 708, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 294, 0, 379, 0, 0, 0, 0, 0, 344, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 2, 206, 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, 174, 175, 40, 0, 0, 0, 0, 0, 0, 41, 42, 205, 2, 206, 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, 207, 39, 467, 2, 206, 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, 206, 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, 207, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1282)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 204, 43, 49, 239, 219, 0, 185, 1, 534, 116, 32, 620, 185, 43, 43, 513, 364, 185, 602, 874, 368, 0, 521, 0, 281, 749, 749, 349, 95, 185, 32, 602, 185, 185, 345, 646, 1040, 32, 186, 168, 169, 43, 185, 600, 692, 43, 749, 49, 0, 600, 0, 571, 492, 32, 49, 32, 496, 0, 600, 187, 156, 63, 129, 600, 66, 156, 113, 69, 63, 43, 756, 66, 96, 418, 69, 69, 349, 1021, 43, 1321, 32, 600, 32, 1052, 1053, 600, 265, 28, 105, 32, 600, 72, 265, 438, 201, 0, 1, 265, 122, 146, 43, 446, 39, 105, 96, 64, 49, 426, 427, 265, 63, 113, 265, 265, 116, 117, 82, 983, 266, 1402, 63, 186, 265, 66, 39, 72, 69, 32, 116, 256, 122, 0, 1, 261, 262, 44, 45, 78, 155, 51, 39, 733, 130, 185, 146, 147, 44, 45, 1020, 1021, 109, 132, 147, 155, 156, 185, 185, 1398, 160, 1128, 603, 66, 209, 32, 69, 160, 609, 1033, 39, 635, 636, 482, 109, 695, 111, 494, 718, 1419, 110, 132, 82, 905, 905, 185, 186, 132, 652, 185, 687, 112, 109, 186, 239, 116, 513, 410, 111, 109, 130, 201, 69, 266, 905, 718, 147, 82, 115, 209, 718, 111, 109, 185, 111, 1496, 209, 488, 114, 160, 1501, 221, 185, 874, 0, 265, 271, 55, 221, 107, 1469, 251, 116, 109, 49, 110, 39, 265, 265, 239, 1521, 11, 824, 589, 185, 186, 710, 1528, 132, 504, 39, 251, 490, 131, 900, 824, 32, 812, 251, 259, 406, 578, 307, 812, 264, 265, 266, 72, 209, 97, 39, 271, 812, 266, 251, 793, 251, 812, 294, 256, 221, 256, 602, 1225, 109, 631, 1288, 44, 45, 85, 66, 396, 109, 418, 294, 812, 90, 91, 113, 812, 345, 251, 986, 251, 812, 112, 109, 307, 111, 1501, 251, 620, 117, 438, 131, 924, 625, 113, 221, 424, 109, 446, 111, 323, 265, 430, 341, 228, 328, 1521, 114, 125, 126, 1275, 480, 328, 1528, 801, 681, 433, 109, 341, 111, 406, 433, 345, 247, 695, 251, 349, 350, 933, 1501, 111, 1, 113, 371, 114, 1211, 111, 110, 113, 116, 72, 364, 193, 604, 116, 368, 116, 608, 371, 130, 814, 83, 84, 130, 932, 130, 1528, 130, 426, 427, 932, 251, 132, 906, 328, 216, 1040, 3, 629, 999, 482, 209, 633, 396, 932, 226, 109, 116, 111, 111, 72, 1274, 1275, 406, 109, 349, 111, 426, 427, 3, 406, 83, 84, 132, 480, 116, 10, 11, 12, 13, 14, 424, 57, 426, 427, 3, 1472, 430, 951, 526, 433, 132, 1478, 745, 526, 786, 1441, 464, 418, 111, 418, 110, 221, 1448, 110, 39, 494, 57, 116, 1394, 116, 454, 1498, 271, 803, 116, 1049, 1503, 438, 808, 438, 130, 406, 294, 132, 513, 446, 967, 446, 472, 116, 106, 251, 67, 109, 0, 294, 480, 736, 482, 0, 484, 981, 116, 480, 488, 132, 506, 484, 307, 109, 494, 511, 590, 1499, 514, 106, 130, 590, 109, 941, 824, 482, 506, 484, 508, 484, 525, 511, 131, 513, 514, 863, 72, 1099, 1127, 109, 647, 521, 1386, 1387, 1394, 525, 526, 83, 84, 70, 656, 110, 73, 578, 484, 76, 484, 78, 116, 110, 110, 687, 109, 484, 85, 116, 116, 488, 155, 654, 896, 567, 109, 824, 132, 111, 681, 109, 906, 111, 1211, 4, 5, 6, 7, 8, 9, 1008, 1009, 128, 570, 571, 131, 72, 350, 620, 116, 76, 578, 109, 625, 484, 707, 116, 83, 84, 218, 110, 1085, 589, 590, 116, 132, 1090, 594, 904, 109, 1117, 116, 132, 600, 109, 602, 951, 109, 252, 116, 132, 846, 1452, 109, 218, 111, 116, 132, 443, 112, 484, 117, 118, 620, 72, 132, 110, 687, 625, 69, 627, 71, 132, 110, 631, 83, 84, 634, 635, 636, 1288, 986, 454, 272, 469, 590, 1486, 110, 1488, 670, 279, 861, 110, 116, 72, 652, 116, 654, 116, 745, 1177, 1178, 600, 111, 602, 83, 84, 110, 272, 937, 109, 881, 132, 72, 212, 279, 110, 110, 112, 109, 110, 506, 116, 116, 83, 84, 511, 684, 110, 514, 687, 109, 1037, 999, 506, 115, 508, 131, 132, 511, 473, 1288, 514, 938, 109, 110, 111, 681, 109, 681, 111, 484, 943, 710, 711, 712, 117, 118, 809, 348, 112, 718, 719, 809, 116, 109, 10, 11, 12, 13, 14, 905, 744, 707, 1115, 707, 365, 905, 1119, 117, 369, 279, 905, 867, 348, 123, 124, 744, 745, 687, 110, 132, 749, 750, 905, 39, 116, 905, 905, 64, 110, 365, 132, 110, 907, 369, 116, 905, 789, 116, 110, 745, 1117, 119, 120, 1362, 116, 49, 799, 1122, 718, 719, 110, 67, 1305, 109, 1505, 1505, 116, 110, 109, 63, 813, 1441, 66, 116, 793, 69, 112, 110, 1448, 109, 116, 111, 801, 116, 803, 1505, 805, 117, 118, 808, 809, 1012, 352, 812, 354, 112, 904, 72, 110, 74, 75, 467, 88, 89, 116, 824, 432, 110, 83, 84, 1177, 1178, 72, 116, 74, 75, 76, 112, 1146, 132, 110, 116, 669, 83, 84, 907, 116, 622, 112, 1499, 132, 678, 116, 114, 109, 682, 1445, 114, 1447, 114, 114, 1115, 809, 1382, 109, 1119, 1120, 82, 110, 109, 684, 111, 812, 147, 116, 874, 109, 117, 118, 1398, 109, 109, 528, 111, 824, 112, 160, 533, 82, 903, 130, 4, 5, 6, 7, 8, 9, 896, 874, 943, 874, 110, 442, 127, 903, 904, 905, 116, 907, 1035, 118, 1500, 186, 72, 128, 74, 75, 1225, 94, 109, 919, 111, 111, 698, 83, 84, 131, 874, 904, 109, 0, 1, 1020, 932, 933, 209, 582, 712, 937, 109, 1085, 111, 110, 942, 943, 1090, 109, 221, 116, 1468, 1469, 942, 111, 92, 93, 999, 69, 112, 71, 29, 30, 109, 32, 111, 109, 905, 111, 907, 967, 117, 118, 112, 874, 43, 556, 557, 558, 559, 109, 49, 111, 1235, 112, 589, 670, 1481, 109, 57, 111, 910, 621, 912, 110, 63, 1017, 1018, 66, 937, 110, 69, 999, 115, 116, 1107, 110, 111, 637, 653, 874, 655, 58, 59, 82, 83, 72, 621, 74, 75, 110, 132, 651, 1020, 1021, 1085, 110, 83, 84, 109, 1090, 110, 805, 637, 115, 116, 1530, 1382, 106, 110, 72, 109, 942, 1040, 76, 44, 45, 651, 116, 552, 553, 83, 84, 1398, 1075, 1076, 328, 506, 114, 508, 1146, 705, 511, 554, 555, 514, 1040, 112, 1040, 72, 1322, 74, 75, 898, 1326, 560, 561, 109, 942, 147, 83, 84, 111, 1080, 114, 117, 118, 155, 1085, 109, 110, 111, 160, 1090, 116, 1040, 109, 110, 111, 114, 72, 874, 1099, 732, 76, 789, 131, 919, 114, 109, 1107, 83, 84, 110, 112, 799, 110, 185, 186, 72, 112, 74, 75, 1468, 1469, 1122, 112, 116, 732, 813, 83, 84, 112, 201, 406, 112, 29, 109, 112, 130, 1040, 209, 109, 110, 111, 117, 118, 1085, 130, 1146, 218, 130, 1090, 221, 110, 66, 109, 58, 59, 60, 228, 114, 110, 114, 75, 1248, 1249, 1250, 112, 115, 110, 1423, 1146, 115, 115, 243, 1040, 1190, 1191, 247, 1193, 116, 109, 251, 252, 110, 110, 1200, 1274, 1202, 116, 1188, 1189, 130, 732, 1207, 132, 265, 266, 116, 1189, 110, 1223, 110, 272, 1, 117, 110, 110, 3, 1207, 279, 110, 110, 1211, 110, 10, 11, 12, 13, 14, 110, 110, 110, 110, 110, 1051, 110, 1225, 1002, 110, 110, 1229, 110, 1255, 110, 29, 1211, 130, 1211, 1229, 115, 1263, 1264, 1265, 39, 110, 66, 116, 160, 131, 1225, 112, 49, 4, 5, 6, 7, 8, 9, 328, 112, 110, 82, 110, 110, 1211, 1040, 1080, 116, 109, 130, 116, 67, 114, 112, 1378, 1274, 1275, 110, 348, 349, 110, 33, 1515, 110, 1283, 116, 1188, 1189, 112, 1288, 896, 110, 112, 116, 110, 365, 117, 284, 116, 369, 110, 109, 109, 109, 1327, 109, 109, 105, 221, 1211, 380, 957, 1288, 130, 1288, 113, 115, 69, 112, 71, 307, 308, 1321, 1189, 110, 110, 396, 1229, 874, 1505, 1321, 1017, 1018, 979, 115, 1505, 406, 983, 110, 160, 1505, 1288, 132, 1358, 128, 1211, 259, 115, 146, 114, 112, 264, 1505, 132, 424, 1505, 1505, 155, 345, 110, 430, 1506, 432, 1229, 112, 1505, 279, 116, 112, 110, 110, 72, 110, 74, 75, 76, 112, 1481, 112, 1378, 112, 1283, 83, 84, 110, 1530, 1288, 1033, 112, 1075, 1076, 112, 112, 47, 381, 1394, 115, 467, 110, 132, 221, 132, 472, 85, 86, 87, 115, 205, 109, 132, 480, 209, 130, 1188, 484, 132, 117, 118, 488, 1321, 1419, 491, 1288, 493, 0, 1, 132, 109, 1419, 111, 110, 113, 114, 85, 86, 87, 1211, 350, 259, 115, 112, 239, 1441, 264, 1506, 112, 112, 112, 112, 1448, 112, 1450, 110, 1452, 110, 1321, 32, 109, 528, 111, 109, 113, 114, 533, 112, 1441, 1505, 1441, 1530, 112, 1297, 1515, 1448, 271, 1448, 109, 274, 109, 1505, 1505, 60, 110, 1481, 110, 114, 109, 132, 1486, 110, 1488, 66, 112, 112, 69, 1441, 112, 294, 1043, 110, 96, 1499, 1448, 96, 109, 109, 115, 1505, 1506, 1283, 307, 110, 110, 582, 1288, 1506, 110, 1515, 1419, 431, 589, 110, 132, 42, 1499, 116, 1499, 130, 110, 110, 350, 600, 1530, 602, 96, 132, 448, 132, 96, 1530, 1441, 110, 132, 110, 341, 132, 132, 1448, 345, 110, 110, 115, 621, 1499, 1419, 112, 112, 109, 132, 132, 115, 473, 189, 549, 550, 551, 1505, 364, 637, 196, 1255, 368, 115, 642, 371, 110, 1441, 110, 1263, 1264, 1265, 156, 651, 1448, 653, 654, 655, 132, 110, 72, 110, 74, 75, 76, 1056, 666, 562, 66, 1499, 563, 83, 84, 1207, 1248, 1249, 1250, 564, 566, 977, 565, 1211, 431, 1469, 1364, 1540, 1298, 1326, 1448, 687, 1071, 1120, 684, 691, 1449, 693, 1451, 109, 1090, 697, 426, 427, 684, 912, 697, 1499, 971, 705, 1450, 582, 1452, 648, 268, 1327, 464, 920, 867, 221, 722, 117, 718, 719, 939, -1, 473, 1229, 732, 484, 454, -1, 1485, -1, 1487, -1, 732, 570, 570, 1211, 1441, -1, 570, 467, -1, -1, 1486, 1448, 1488, 251, 10, 11, 12, 13, 14, 594, -1, -1, -1, -1, -1, -1, -1, 72, 160, 74, 75, 76, 492, 323, 494, -1, 496, -1, 83, 84, 1529, 331, 1531, 39, 334, -1, 506, 622, 508, -1, 3, 511, 627, 513, 514, 1544, 1545, 10, 11, 12, 13, 14, 1499, -1, 109, 525, 111, -1, -1, -1, -1, 67, 117, 118, -1, -1, -1, -1, 1386, 1387, 812, -1, -1, -1, 1377, -1, 39, -1, -1, 221, -1, -1, 824, -1, -1, -1, 1304, -1, -1, -1, -1, 30, 10, 11, 12, 13, 14, 756, 398, 1377, -1, 594, 402, 109, 67, 111, 1424, -1, 578, -1, -1, 117, 118, 698, -1, -1, -1, 259, -1, 589, -1, 39, 264, -1, -1, 867, -1, 712, -1, 622, -1, 873, -1, -1, 627, -1, -1, -1, 1356, -1, -1, 1359, -1, 82, 83, -1, -1, 732, -1, 67, 620, -1, -1, -1, 896, 625, -1, -1, -1, -1, -1, 631, -1, 905, 1482, 907, 72, -1, 74, 75, 76, -1, 914, 1491, -1, -1, 670, 83, 84, 479, -1, -1, -1, -1, 1402, 433, -1, -1, -1, 1407, -1, 109, -1, 111, 0, 937, -1, -1, -1, 117, 118, -1, -1, 109, -1, 698, -1, -1, 350, 10, 11, 12, 13, 14, 684, 957, -1, 1435, -1, 712, 805, -1, -1, -1, -1, -1, 32, -1, -1, 971, -1, 72, -1, 74, 75, 76, 484, 979, 39, -1, -1, 983, 83, 84, -1, 72, -1, 74, 75, 76, -1, -1, 722, -1, 0, 1, 83, 84, -1, -1, -1, -1, -1, 69, -1, -1, 67, -1, 109, -1, 570, 571, -1, -1, 744, -1, 117, 118, 526, -1, -1, 72, -1, 74, 75, 76, 32, -1, -1, 431, -1, 1033, 83, 84, -1, 789, -1, -1, -1, -1, -1, 1519, -1, 49, 243, 799, -1, 1525, 109, -1, 111, -1, 805, -1, -1, -1, 117, 118, 1536, 813, -1, -1, 1540, 69, -1, -1, -1, -1, -1, 1071, -1, 473, -1, 803, -1, -1, -1, -1, 808, -1, 999, -1, 590, 1085, -1, -1, -1, -1, 1090, -1, 156, -1, 72, -1, 74, 75, 76, 657, -1, 105, -1, 661, -1, 83, 84, 1107, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, 1040, -1, -1, -1, -1, 634, 635, 636, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 39, -1, 147, -1, -1, 652, -1, -1, -1, -1, 155, 156, -1, -1, -1, -1, -1, -1, 1002, -1, -1, -1, -1, -1, -1, 230, -1, 896, 67, -1, -1, -1, -1, 72, 903, 74, 75, 76, -1, -1, -1, 186, 380, 1184, 83, 84, 251, -1, -1, -1, 919, 256, -1, 594, -1, -1, 201, -1, -1, 204, 205, -1, -1, 710, 209, -1, 1207, -1, -1, -1, 109, -1, 941, 942, 943, -1, -1, -1, 117, 118, -1, 622, -1, -1, -1, 230, 627, -1, -1, 234, -1, 236, -1, -1, 793, -1, -1, -1, -1, -1, 245, -1, 26, 27, 28, -1, 251, 1248, 1249, 1250, 1002, 256, -1, -1, -1, -1, -1, -1, -1, -1, -1, 266, -1, -1, 1017, 1018, -1, -1, -1, 274, 999, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 10, 11, 12, 13, 14, 351, 72, -1, 74, 75, 76, -1, 491, 801, 493, -1, 698, 83, 84, -1, -1, 809, -1, -1, 131, -1, -1, -1, -1, 39, 712, -1, -1, 98, -1, 100, -1, -1, -1, -1, -1, 1075, 1076, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, 341, -1, 67, -1, 345, 125, -1, 72, 1188, -1, 351, 76, -1, -1, -1, 1080, 911, 418, 83, 84, -1, -1, -1, 364, -1, -1, -1, 368, -1, -1, 371, 874, 433, -1, -1, -1, -1, 438, -1, -1, 1377, 1378, -1, -1, 109, 446, 26, 27, 28, 1386, 1387, -1, 117, 118, -1, -1, -1, 1122, -1, -1, -1, 181, -1, 464, -1, -1, -1, -1, 805, 189, -1, 191, 192, -1, -1, -1, 196, 418, 198, 199, -1, 482, -1, 484, -1, -1, -1, 1424, -1, -1, -1, -1, 433, 988, -1, -1, 0, 438, -1, 942, 1188, -1, -1, 1283, -1, 446, -1, -1, 642, -1, 1005, -1, -1, -1, -1, -1, -1, -1, 98, -1, 100, -1, -1, 464, -1, 526, 467, -1, 32, -1, -1, -1, -1, -1, 1223, -1, -1, -1, -1, -1, -1, 482, 1207, 484, 1481, 1482, -1, -1, 268, -1, -1, 492, -1, -1, 1491, 496, -1, 691, -1, 693, -1, -1, -1, 697, 1229, 69, 1255, -1, 1505, 1506, -1, -1, -1, -1, 1263, 1264, 1265, 1020, 1021, -1, -1, -1, -1, -1, 525, 526, -1, -1, 1083, 590, -1, -1, -1, 1530, -1, 1283, -1, 1040, -1, -1, -1, 181, -1, -1, -1, -1, -1, -1, -1, -1, -1, 191, 192, -1, -1, -1, 196, -1, 198, 199, -1, -1, -1, -1, -1, -1, -1, -1, 1123, -1, 571, -1, -1, 634, 635, 636, -1, -1, 1327, -1, -1, -1, 10, 11, 12, 13, 14, -1, 589, 590, -1, 652, 156, -1, -1, -1, 1321, -1, -1, -1, -1, 602, -1, -1, -1, 1002, -1, -1, -1, 670, -1, 39, -1, -1, -1, -1, -1, -1, -1, 620, 681, -1, -1, -1, 625, -1, -1, -1, -1, -1, 631, -1, -1, 634, 635, 636, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 707, -1, 76, 710, -1, 652, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 670, -1, -1, -1, 867, -1, -1, -1, -1, -1, 873, 681, 109, -1, -1, 745, 1188, 1189, 251, -1, 117, 118, -1, 256, -1, 1419, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 707, -1, 1211, 710, -1, -1, -1, -1, 0, -1, -1, -1, 719, -1, 914, 722, -1, -1, -1, 1450, 1229, 1452, 789, -1, -1, -1, -1, -1, -1, -1, -1, -1, 799, -1, 801, -1, -1, 744, 745, 806, 32, -1, 809, 750, -1, -1, 813, -1, -1, -1, -1, -1, -1, -1, -1, 1486, -1, 1488, -1, -1, -1, -1, -1, -1, -1, 1274, 1275, -1, -1, -1, -1, 971, -1, -1, 1283, -1, -1, 69, -1, 1288, -1, 351, 789, -1, 1515, 1188, -1, -1, 574, 575, -1, -1, 799, -1, 801, -1, 803, -1, -1, 806, -1, 808, 809, -1, -1, -1, 813, 874, -1, -1, -1, -1, 1321, -1, -1, -1, 823, 603, -1, -1, 606, 607, -1, 609, -1, 611, 612, -1, -1, -1, 616, 617, -1, -1, -1, -1, -1, 904, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 418, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 433, 156, -1, -1, 874, 438, -1, -1, 1071, -1, -1, -1, -1, 446, -1, -1, -1, 1283, -1, -1, -1, -1, 1394, -1, -1, -1, 896, -1, -1, -1, -1, 464, -1, 903, 904, -1, -1, 907, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1419, -1, 482, -1, 484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 933, -1, 574, 575, -1, -1, 1441, -1, 941, 942, -1, -1, -1, 1448, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1017, 1018, -1, 1020, 1021, -1, 526, 603, -1, 251, 606, 607, -1, 609, 256, 611, 612, -1, 754, 755, 616, 617, -1, 1040, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1184, -1, -1, -1, -1, -1, 1499, -1, 999, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1012, -1, -1, 1075, 1076, 1017, 1018, -1, 1020, 1021, -1, -1, -1, -1, -1, 590, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1040, -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, 351, -1, 30, 31, 32, 634, 635, 636, -1, 1075, 1076, 39, -1, -1, -1, -1, -1, -1, -1, -1, 1146, -1, -1, 652, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 670, -1, -1, -1, -1, 74, 75, -1, 754, 755, -1, 681, -1, -1, -1, 1122, -1, -1, -1, -1, -1, -1, 1189, -1, -1, 911, 418, -1, -1, -1, 916, -1, -1, -1, -1, -1, -1, 707, -1, 1146, 710, 433, 111, -1, 1211, 0, 438, -1, 117, 118, -1, -1, -1, -1, 446, -1, 1223, -1, 1225, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 464, -1, -1, 745, -1, 32, -1, -1, -1, -1, 1189, -1, -1, -1, -1, -1, 1255, -1, 482, -1, 484, -1, -1, -1, 1263, 1264, 1265, -1, 1207, -1, -1, -1, 1211, -1, -1, 1274, 1275, 10, 11, 12, 13, 14, 69, -1, 1223, -1, 1225, 789, -1, 1288, 1229, 10, 11, 12, 13, 14, -1, 799, -1, 801, -1, -1, 526, -1, 806, -1, 39, 809, 146, -1, -1, 813, -1, -1, -1, -1, 1255, -1, 156, -1, 39, -1, -1, -1, 1263, 1264, 1265, -1, 1327, -1, 168, 169, -1, -1, 67, 1274, 1275, -1, 916, 72, -1, 74, 75, 76, -1, -1, -1, -1, 67, 1288, 83, 84, -1, 72, -1, 74, 75, 76, -1, 1077, -1, -1, -1, -1, 83, 84, 590, -1, -1, 156, -1, -1, 874, -1, -1, -1, 109, -1, 111, -1, -1, -1, 1321, -1, 117, 118, -1, -1, 1327, -1, 109, -1, 111, -1, -1, 1394, -1, -1, 117, 118, -1, 239, 904, -1, -1, -1, -1, -1, -1, -1, 634, 635, 636, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 263, -1, -1, 652, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 1441, -1, -1, -1, 670, -1, -1, 1448, -1, -1, -1, -1, -1, 1394, -1, 681, -1, -1, -1, 39, -1, -1, 251, -1, -1, -1, -1, 256, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1419, -1, -1, 707, -1, -1, 710, -1, 1206, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, 1077, 1499, -1, 1441, -1, -1, 83, 84, -1, -1, 1448, -1, -1, -1, -1, -1, 1017, 1018, -1, 1020, 1021, -1, 745, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 1040, 117, 118, -1, 380, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1499, -1, -1, -1, 351, 789, -1, 1506, -1, -1, -1, -1, -1, 1075, 1076, 799, -1, 801, -1, -1, -1, -1, 806, -1, -1, 809, -1, -1, -1, 813, -1, 53, -1, 55, -1, -1, 58, 59, 60, -1, 62, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 76, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, 89, 1206, -1, -1, 418, -1, -1, 39, -1, 474, -1, -1, -1, -1, -1, -1, -1, 1146, -1, 433, -1, -1, -1, 874, 438, -1, -1, -1, -1, -1, -1, -1, 446, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, 513, -1, 464, 83, 84, 904, -1, -1, -1, -1, -1, -1, 1189, 526, -1, -1, -1, -1, 531, -1, 482, 534, 484, -1, 37, 38, -1, 40, -1, 109, -1, -1, -1, 546, 1211, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, 1223, -1, 1225, -1, -1, -1, -1, 66, -1, 568, -1, -1, -1, 72, -1, -1, -1, 76, 526, 578, 79, 80, 81, 82, 83, 84, 585, 86, 87, -1, -1, 590, 1255, -1, -1, -1, -1, -1, -1, -1, 1263, 1264, 1265, -1, -1, -1, -1, -1, -1, -1, 109, 1274, 1275, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, 1288, -1, -1, -1, -1, -1, -1, 1017, 1018, -1, 1020, 1021, -1, -1, -1, 639, -1, 590, -1, -1, -1, -1, -1, 647, -1, -1, -1, -1, -1, -1, 1040, -1, -1, -1, -1, -1, -1, -1, -1, 1327, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 634, 635, 636, -1, 1075, 1076, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, 652, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, 344, 670, 346, 67, -1, 49, -1, -1, -1, -1, 1394, -1, 681, 357, 358, -1, 37, 38, 39, 40, -1, -1, 66, -1, -1, 745, -1, 747, -1, -1, -1, -1, -1, -1, -1, -1, -1, 757, 707, -1, 1146, 710, -1, 763, -1, 66, 67, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, 1441, 79, 80, 81, 82, 83, 84, 1448, 86, 87, -1, -1, 113, -1, -1, -1, 117, -1, -1, 745, -1, -1, -1, -1, -1, -1, 1189, -1, 805, 806, -1, 109, 809, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 146, 823, -1, 1211, -1, -1, -1, -1, -1, -1, 156, -1, -1, 1499, 160, 1223, -1, 1225, 789, -1, -1, -1, -1, -1, -1, -1, -1, -1, 799, -1, 801, -1, -1, -1, -1, 806, -1, -1, 809, -1, -1, 863, 813, -1, -1, 867, -1, 1255, -1, -1, -1, -1, -1, -1, -1, 1263, 1264, 1265, -1, -1, -1, -1, -1, 209, -1, -1, 1274, 1275, -1, -1, -1, -1, -1, -1, -1, 221, -1, -1, -1, -1, 1288, -1, 904, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, 239, -1, -1, -1, -1, -1, -1, -1, -1, -1, 874, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 264, 1327, 72, 943, -1, -1, 76, 271, -1, 79, 80, 81, 82, 83, 84, 904, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 294, 971, -1, -1, -1, -1, -1, 977, -1, 109, -1, 981, -1, 307, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1002, -1, -1, -1, -1, -1, 1394, -1, -1, -1, -1, 1013, -1, -1, -1, -1, -1, -1, -1, 345, -1, -1, -1, -1, 350, -1, -1, -1, -1, -1, -1, -1, -1, 1035, -1, 1037, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1052, 1053, -1, 1441, -1, -1, -1, -1, -1, -1, 1448, -1, -1, -1, -1, -1, 1017, 1018, -1, 1020, 1021, 1073, -1, 699, -1, 701, -1, -1, -1, -1, -1, -1, 708, 709, -1, -1, -1, 713, -1, 1040, -1, -1, -1, -1, -1, -1, -1, -1, -1, 725, 426, 427, -1, -1, 730, -1, -1, 433, -1, -1, -1, 1499, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1075, 1076, 1128, -1, 454, -1, -1, -1, 758, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 1146, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 482, -1, -1, 1161, 1162, -1, -1, 37, 38, 39, 40, -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, 66, 67, -1, 1146, -1, -1, 72, -1, 526, -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, 857, 858, 859, 860, 109, 862, 111, 1189, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 877, 578, -1, -1, -1, -1, -1, -1, -1, 1211, -1, -1, -1, 590, 891, -1, -1, 594, -1, -1, -1, 1223, -1, 1225, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 620, -1, -1, -1, -1, 625, 1302, -1, -1, 1305, 1255, 931, -1, -1, 634, 635, 636, -1, 1263, 1264, 1265, -1, -1, -1, -1, -1, -1, -1, -1, 1274, 1275, -1, 652, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1288, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 976, -1, -1, -1, -1, -1, 982, -1, 684, -1, -1, 987, -1, -1, -1, -1, 992, -1, 994, -1, 66, -1, 998, -1, 1000, 1001, 1327, -1, 1004, 75, -1, 77, -1, 79, 710, -1, 712, 1013, -1, -1, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1031, 1032, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 745, -1, 117, -1, 119, 120, 121, -1, -1, -1, -1, -1, -1, 1058, -1, -1, 1061, -1, -1, -1, -1, -1, -1, -1, 1394, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 160, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 801, -1, -1, 1104, 805, -1, -1, -1, 809, 1110, 1111, -1, -1, -1, -1, 1441, -1, -1, -1, -1, -1, -1, 1448, -1, -1, -1, -1, 67, -1, 1130, -1, -1, 1133, -1, 74, 75, 1137, -1, 1515, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1150, 221, -1, 223, 224, 225, -1, -1, -1, -1, -1, 44, -1, 1163, -1, 1165, 1166, 1167, 1168, -1, 109, -1, 111, -1, 1499, -1, -1, -1, 117, 118, -1, 1181, -1, 1183, -1, -1, -1, 1187, -1, 259, -1, -1, -1, -1, 264, -1, -1, -1, -1, -1, -1, -1, -1, -1, 904, -1, -1, -1, 91, 279, -1, -1, -1, -1, -1, -1, 1216, 1217, 101, 919, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 943, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 40, -1, -1, 328, -1, -1, -1, -1, -1, -1, -1, 1266, 1267, -1, -1, -1, -1, -1, -1, 157, -1, 1276, -1, -1, -1, 350, -1, 67, -1, -1, 355, 356, -1, 171, 74, 75, -1, -1, 363, -1, -1, -1, -1, -1, 999, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 194, -1, -1, -1, -1, -1, -1, -1, -1, 1020, 1021, -1, -1, -1, 208, 111, -1, -1, -1, 115, -1, 117, 118, 217, -1, 406, 1337, -1, 1339, 1340, 1341, -1, -1, 227, -1, -1, -1, -1, -1, -1, 1351, -1, -1, 424, 37, 38, -1, 40, 429, 1360, 431, -1, -1, -1, -1, -1, -1, -1, 252, -1, -1, -1, -1, 257, -1, -1, -1, 448, -1, 1080, 451, 452, -1, 66, 1385, -1, 270, -1, 459, 72, -1, -1, 276, 76, 278, -1, 79, 80, 81, 82, 83, 84, 473, 86, 87, -1, -1, -1, -1, 480, -1, 295, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 1428, 1429, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 1441, -1, -1, -1, -1, 1146, -1, 1448, -1, -1, -1, -1, -1, -1, 338, -1, -1, -1, -1, 343, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1480, -1, -1, -1, 1484, -1, -1, -1, 1188, 372, 39, -1, -1, 376, 377, -1, 379, -1, -1, -1, -1, -1, -1, 386, 387, -1, 389, 390, -1, 392, -1, 394, 1512, -1, 1514, -1, -1, -1, 67, -1, 37, 38, -1, 40, 594, 1225, -1, -1, 411, 78, -1, -1, -1, -1, -1, -1, 419, -1, -1, -1, -1, -1, 1542, 1543, -1, -1, -1, -1, -1, 66, 1550, 1551, 622, -1, -1, 72, -1, 627, -1, 76, -1, 444, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 1274, 1275, -1, -1, -1, -1, -1, -1, -1, 1283, -1, -1, -1, 470, -1, -1, -1, -1, 109, 476, 111, -1, -1, 114, 481, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 698, 30, 31, 32, -1, -1, 517, -1, -1, -1, 39, -1, -1, -1, 712, 282, -1, 284, 285, -1, -1, 532, -1, -1, -1, 292, 293, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, -1, 67, -1, 307, 308, -1, 72, -1, 74, 75, 76, -1, 78, -1, -1, -1, -1, 83, 84, -1, -1, -1, 570, -1, -1, -1, -1, -1, -1, 1394, -1, 579, -1, -1, -1, -1, -1, -1, 586, -1, -1, 345, -1, 109, 592, 111, -1, -1, -1, -1, -1, 117, 118, 601, -1, -1, -1, -1, 793, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 805, -1, -1, -1, -1, -1, -1, 381, -1, -1, -1, -1, -1, -1, -1, 1450, -1, 1452, -1, 824, -1, -1, -1, 641, -1, -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, 1486, -1, 1488, -1, -1, -1, 39, -1, 677, -1, -1, -1, -1, -1, -1, -1, 685, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, 1515, -1, -1, 155, 156, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 78, -1, 716, -1, -1, 83, 84, -1, -1, 66, -1, -1, 726, 727, -1, 72, -1, -1, -1, 76, -1, 189, 79, 80, 81, 82, 83, 84, 196, 86, 87, -1, -1, 111, -1, -1, 937, -1, -1, 117, 118, -1, -1, -1, -1, 759, -1, -1, -1, -1, 764, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 967, -1, -1, -1, -1, -1, -1, 130, -1, -1, -1, -1, -1, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, -1, -1, -1, 268, 1002, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1013, -1, 828, -1, -1, -1, -1, -1, -1, 835, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 848, -1, 850, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 864, -1, -1, -1, -1, 323, 870, -1, -1, -1, -1, -1, -1, 331, 332, -1, 334, 335, 882, -1, -1, 885, -1, -1, -1, -1, -1, 345, -1, -1, -1, 349, -1, -1, 1085, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1099, -1, 368, -1, -1, 371, -1, -1, -1, -1, 37, 38, -1, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, 695, -1, 56, 57, -1, 398, -1, 61, 62, 402, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, 962, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 433, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 997, -1, 114, 756, 1188, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -1, -1, -1, 132, -1, -1, -1, -1, -1, -1, -1, 479, -1, -1, 482, -1, 786, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1055, -1, 30, 31, 32, -1, 1061, -1, -1, -1, -1, 39, 521, -1, -1, -1, 525, 526, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 1095, 1283, -1, -1, 72, 1100, 74, 75, 76, 39, -1, -1, -1, 1108, -1, 83, 84, -1, -1, -1, -1, 570, 571, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, 589, 590, -1, 111, -1, -1, 1141, -1, 78, 117, 118, 600, -1, 602, 603, 906, -1, -1, 1153, -1, 609, 1156, -1, 1158, -1, -1, -1, -1, -1, -1, 619, 620, -1, -1, -1, -1, 625, 1172, 1173, -1, -1, -1, -1, -1, -1, 634, 635, 636, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1194, 951, -1, -1, 652, -1, -1, -1, -1, 657, 658, -1, -1, 661, 662, -1, -1, -1, -1, -1, 668, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 986, -1, -1, 687, -1, -1, -1, -1, -1, -1, -1, 1241, -1, 999, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 710, 711, -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, 1040, -1, -1, -1, -1, 39, 744, 745, -1, -1, -1, 749, 750, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1316, 67, 1318, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 1330, -1, 1332, -1, -1, -1, -1, -1, -1, 793, -1, -1, -1, 1530, -1, -1, -1, 801, -1, 1349, -1, -1, -1, -1, 808, 809, -1, -1, 812, -1, 814, 1117, -1, -1, -1, 1365, 1366, 117, 118, -1, 824, -1, -1, -1, -1, -1, 1376, -1, -1, 1379, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1400, -1, -1, -1, -1, -1, -1, -1, -1, 1409, -1, -1, 1412, -1, 1414, 1415, 1416, -1, -1, -1, -1, 1177, 1178, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 896, 30, 31, 32, -1, -1, -1, 903, 904, 905, 39, 907, 1454, -1, 1456, 911, 1458, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1473, -1, -1, -1, -1, 932, 933, 67, -1, -1, -1, -1, 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, 967, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, 988, 989, -1, -1, -1, -1, -1, -1, -1, -1, -1, 999, -1, -1, -1, -1, -1, 1005, 1006, -1, 1008, 1009, 1010, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1020, 1021, -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, 1382, -1, -1, 1083, -1, 1085, -1, -1, -1, -1, 1090, -1, -1, -1, -1, -1, 1398, 66, 67, 1099, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 1122, 1123, 1124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, 109, -1, 111, -1, -1, -1, 1146, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, 132, -1, 66, 1468, 1469, -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, 1207, 109, -1, 111, -1, 113, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, 1225, -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, 41, -1, 43, 1274, 1275, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -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, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -1, -1, -1, 132, -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, 1394, 30, 31, 32, 33, -1, -1, 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, -1, -1, 83, 84, 1481, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1505, 1506, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1530, 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, -1, -1, 109, -1, 111, -1, -1, 83, 84, 116, 117, 118, 119, 120, 121, 122, 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, 116, 117, 118, 119, 120, 121, 122, 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, 116, 117, 118, 119, 120, 121, 122, 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, 117, 118, 119, 120, 121, 122, 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, 117, 118, 119, 120, 121, 122, 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, 117, 118, 119, 120, 121, 122, 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, 117, 118, 119, 120, 121, 122, 0, -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, 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, 117, 118, 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, 117, 118, 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, 117, 118, 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, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, 34, 35, 67, -1, 69, 39, 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, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 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, 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, 111, 36, -1, -1, 39, -1, 117, 118, -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, 111, 39, -1, -1, -1, -1, 117, 118, -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, 117, 118, -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, 117, 118, 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, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 67, -1, 69, -1, 71, -1, 39, 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, 67, -1, 30, 31, 32, -1, -1, 74, 75, 110, 111, 39, -1, -1, -1, -1, 117, 118, -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, 111, -1, 74, 75, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, 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, 40, 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, -1, -1, 74, 75, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, 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, 111, 30, 31, 32, 115, -1, 117, 118, -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, 117, 118, -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, 117, 118, -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, 117, 118, -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, 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, 117, 118, -1, -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, 117, 118, 119, 120, 121, 122, 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, -1, 39, 40, 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, 110, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, 115, -1, 117, 118, 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, -1, 39, -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, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 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, 117, 118, 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, -1, 39, -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, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 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, 117, 118, 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, -1, 39, -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, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 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, 117, 118, 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, -1, 111, 74, 75, -1, -1, -1, 117, 118, 119, 120, 121, 122, 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, 111, 30, 31, 32, -1, -1, 117, 118, -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, 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, -1, 74, 75, 76, 39, -1, -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, -1, 117, 118, -1, -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, 72, 111, 74, 75, 76, 39, -1, 117, 118, -1, -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, 78, 117, 118, 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, -1, -1, 109, 39, 111, 74, 75, -1, -1, 78, 117, 118, -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, -1, 74, 75, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, 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, 111, 30, 31, 32, -1, -1, 117, 118, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 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, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -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, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 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, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 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, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, 127, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 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, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 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, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, 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, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 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, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 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, 117, 118, 137, 140, 150, 199, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 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, 150, 216, 218, 226, 228, 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, 200, 109, 150, 319, 324, 325, 326, 328, 329, 330, 112, 134, 111, 219, 226, 228, 323, 327, 366, 367, 370, 371, 135, 107, 131, 277, 114, 135, 174, 74, 75, 137, 272, 135, 135, 135, 116, 135, 74, 75, 109, 150, 309, 318, 319, 320, 321, 322, 323, 327, 331, 332, 333, 334, 335, 341, 3, 28, 78, 239, 3, 5, 74, 111, 150, 218, 229, 233, 235, 244, 285, 323, 327, 370, 216, 218, 228, 237, 241, 243, 284, 323, 327, 33, 234, 234, 229, 235, 135, 234, 229, 234, 229, 75, 109, 114, 274, 285, 114, 274, 234, 229, 116, 135, 135, 0, 134, 109, 174, 312, 312, 134, 111, 226, 228, 368, 272, 272, 131, 228, 109, 150, 309, 319, 323, 111, 150, 370, 306, 231, 314, 109, 290, 109, 109, 51, 109, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 109, 111, 119, 120, 121, 122, 136, 140, 141, 142, 143, 144, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 168, 226, 276, 292, 366, 371, 228, 110, 110, 110, 110, 110, 110, 110, 74, 75, 111, 226, 272, 350, 368, 111, 117, 150, 165, 218, 219, 225, 228, 232, 233, 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, 150, 165, 278, 278, 115, 134, 116, 132, 109, 116, 132, 116, 132, 116, 132, 312, 132, 319, 320, 321, 322, 332, 333, 334, 335, 228, 318, 331, 64, 311, 111, 312, 349, 350, 312, 312, 174, 134, 109, 312, 349, 312, 312, 228, 309, 109, 109, 227, 228, 226, 228, 112, 134, 226, 366, 371, 174, 134, 272, 277, 218, 233, 323, 327, 174, 134, 294, 228, 237, 132, 228, 228, 292, 248, 246, 258, 274, 257, 228, 294, 132, 132, 305, 134, 139, 271, 3, 135, 208, 209, 223, 225, 228, 134, 311, 109, 311, 165, 319, 228, 109, 134, 272, 114, 33, 34, 35, 226, 286, 287, 289, 134, 128, 131, 291, 134, 229, 234, 235, 272, 315, 316, 317, 109, 141, 109, 149, 109, 149, 152, 109, 149, 109, 109, 149, 149, 111, 165, 170, 174, 226, 275, 366, 370, 112, 134, 82, 85, 86, 87, 109, 111, 113, 114, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 131, 167, 152, 152, 117, 123, 124, 119, 120, 88, 89, 90, 91, 125, 126, 92, 93, 118, 127, 128, 94, 95, 129, 131, 373, 109, 150, 345, 346, 347, 348, 349, 110, 116, 109, 349, 350, 109, 349, 350, 134, 109, 226, 368, 112, 134, 135, 111, 226, 228, 361, 362, 370, 371, 135, 109, 111, 150, 319, 336, 337, 338, 339, 340, 341, 342, 343, 344, 350, 351, 352, 353, 354, 355, 356, 150, 370, 228, 135, 135, 150, 226, 228, 363, 272, 226, 350, 363, 272, 109, 134, 134, 134, 112, 134, 72, 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, 208, 134, 309, 170, 276, 170, 276, 309, 111, 208, 311, 174, 134, 208, 110, 40, 111, 115, 226, 249, 250, 251, 366, 114, 116, 372, 131, 259, 114, 228, 264, 265, 266, 269, 270, 110, 116, 174, 134, 117, 165, 134, 225, 228, 263, 362, 370, 303, 304, 109, 150, 336, 110, 116, 373, 274, 286, 109, 114, 274, 276, 286, 110, 116, 109, 141, 110, 130, 275, 275, 275, 146, 165, 276, 275, 112, 134, 110, 116, 110, 109, 150, 349, 357, 358, 359, 360, 110, 116, 165, 111, 139, 145, 146, 134, 111, 139, 145, 165, 152, 152, 152, 153, 153, 154, 154, 155, 155, 155, 155, 156, 156, 157, 158, 159, 160, 161, 130, 170, 165, 134, 346, 347, 348, 228, 345, 312, 312, 165, 276, 134, 271, 134, 226, 350, 363, 228, 232, 112, 112, 134, 370, 112, 109, 134, 319, 337, 338, 339, 342, 352, 353, 354, 112, 134, 228, 336, 340, 351, 109, 312, 355, 373, 312, 312, 373, 109, 312, 355, 312, 312, 312, 312, 350, 226, 361, 371, 272, 112, 116, 112, 116, 373, 226, 363, 373, 260, 261, 262, 263, 260, 260, 272, 165, 134, 111, 274, 130, 116, 372, 278, 111, 130, 282, 29, 210, 211, 272, 260, 139, 309, 139, 311, 109, 349, 350, 109, 349, 350, 142, 350, 174, 264, 110, 110, 110, 110, 112, 174, 208, 174, 114, 250, 251, 112, 134, 109, 130, 150, 252, 254, 318, 319, 331, 357, 116, 132, 116, 132, 274, 248, 274, 115, 163, 164, 258, 135, 135, 139, 223, 135, 135, 260, 109, 150, 370, 135, 115, 228, 287, 288, 135, 134, 134, 109, 135, 110, 316, 170, 171, 130, 132, 111, 141, 201, 202, 203, 110, 116, 110, 110, 110, 110, 111, 165, 358, 359, 360, 228, 357, 312, 312, 114, 152, 168, 165, 166, 169, 116, 135, 134, 110, 116, 165, 134, 115, 163, 130, 264, 110, 110, 110, 345, 264, 110, 260, 226, 363, 111, 117, 150, 165, 165, 228, 342, 264, 110, 110, 110, 110, 110, 110, 110, 7, 228, 336, 340, 351, 134, 134, 373, 134, 134, 110, 135, 135, 135, 135, 277, 135, 163, 164, 165, 310, 134, 278, 280, 115, 134, 212, 274, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 72, 111, 127, 171, 172, 173, 174, 175, 176, 178, 179, 191, 193, 194, 199, 213, 308, 29, 135, 131, 277, 134, 134, 110, 135, 174, 248, 132, 132, 319, 164, 228, 253, 254, 253, 274, 312, 115, 259, 372, 110, 116, 112, 112, 135, 228, 116, 373, 290, 110, 286, 216, 218, 226, 298, 299, 300, 301, 292, 110, 110, 130, 164, 109, 110, 130, 116, 139, 112, 110, 110, 110, 357, 279, 116, 135, 169, 112, 139, 147, 148, 146, 135, 147, 163, 168, 135, 109, 349, 350, 135, 135, 134, 135, 135, 135, 165, 110, 135, 109, 349, 350, 109, 355, 109, 355, 350, 227, 7, 117, 135, 165, 264, 264, 263, 267, 267, 268, 116, 116, 110, 110, 112, 96, 122, 135, 135, 147, 278, 165, 116, 132, 213, 217, 228, 232, 109, 109, 172, 109, 109, 72, 132, 72, 132, 72, 117, 171, 109, 174, 166, 166, 130, 112, 144, 132, 135, 134, 135, 212, 110, 165, 264, 264, 312, 110, 115, 252, 115, 134, 110, 134, 135, 309, 115, 134, 135, 135, 110, 114, 201, 112, 164, 132, 201, 203, 110, 109, 349, 350, 372, 166, 112, 135, 85, 113, 116, 135, 112, 135, 110, 134, 110, 110, 112, 112, 112, 135, 110, 134, 134, 134, 165, 165, 135, 112, 135, 135, 135, 135, 134, 134, 164, 164, 112, 112, 135, 135, 274, 228, 170, 170, 47, 170, 134, 132, 132, 132, 170, 132, 170, 58, 59, 60, 195, 196, 197, 132, 63, 132, 312, 114, 176, 115, 132, 135, 135, 96, 269, 270, 110, 299, 116, 132, 116, 132, 115, 297, 130, 141, 110, 110, 130, 134, 115, 112, 111, 148, 111, 148, 148, 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, 171, 192, 213, 132, 110, 109, 109, 174, 197, 58, 59, 165, 172, 145, 110, 110, 114, 134, 134, 298, 141, 204, 109, 132, 204, 264, 134, 134, 135, 135, 135, 135, 112, 112, 134, 135, 112, 172, 44, 45, 114, 182, 183, 184, 170, 172, 135, 110, 171, 114, 184, 96, 134, 96, 134, 109, 109, 132, 115, 134, 272, 309, 115, 116, 130, 164, 110, 135, 147, 147, 110, 110, 110, 110, 267, 42, 164, 180, 181, 310, 130, 134, 172, 182, 110, 132, 172, 132, 134, 110, 134, 110, 134, 96, 134, 96, 134, 132, 298, 141, 139, 205, 110, 132, 110, 135, 135, 172, 96, 116, 130, 135, 206, 207, 213, 132, 171, 171, 206, 174, 198, 226, 366, 174, 198, 110, 134, 110, 134, 115, 110, 116, 112, 112, 164, 180, 183, 185, 186, 134, 132, 183, 187, 188, 135, 109, 150, 309, 357, 139, 135, 174, 198, 174, 198, 109, 132, 139, 172, 177, 115, 183, 213, 171, 56, 177, 190, 115, 183, 110, 228, 110, 135, 135, 292, 172, 177, 132, 189, 190, 177, 190, 174, 174, 110, 110, 110, 189, 135, 135, 174, 174, 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 300 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 304 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 311 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); } break; case 5: /* Line 1806 of yacc.c */ #line 312 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 6: /* Line 1806 of yacc.c */ #line 313 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); } break; case 16: /* Line 1806 of yacc.c */ #line 338 "parser.yy" { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].str) ); } break; case 17: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { (yyval.str) = (yyvsp[(1) - (1)].tok); } break; case 18: /* Line 1806 of yacc.c */ #line 344 "parser.yy" { appendStr( (yyvsp[(1) - (2)].str), (yyvsp[(2) - (2)].tok) ); // append 2nd juxtaposed string to 1st delete (yyvsp[(2) - (2)].tok); // allocated by lexer (yyval.str) = (yyvsp[(1) - (2)].str); // conversion from tok to str } break; case 19: /* Line 1806 of yacc.c */ #line 355 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 20: /* Line 1806 of yacc.c */ #line 357 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 21: /* Line 1806 of yacc.c */ #line 359 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 22: /* Line 1806 of yacc.c */ #line 361 "parser.yy" { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 371 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 25: /* Line 1806 of yacc.c */ #line 373 "parser.yy" { (yyval.en) = new ExpressionNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); } break; case 26: /* Line 1806 of yacc.c */ #line 377 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 28: /* Line 1806 of yacc.c */ #line 380 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 30: /* Line 1806 of yacc.c */ #line 383 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 387 "parser.yy" { (yyval.en) = new ExpressionNode( build_compoundLiteral( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ) ); } break; case 33: /* Line 1806 of yacc.c */ #line 389 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_last( (yyvsp[(3) - (4)].en) ) ) ); } break; case 35: /* Line 1806 of yacc.c */ #line 399 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 36: /* Line 1806 of yacc.c */ #line 404 "parser.yy" { (yyval.en) = 0; } break; case 39: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 40: /* Line 1806 of yacc.c */ #line 415 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 41: /* Line 1806 of yacc.c */ #line 419 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(3) - (3)].en), build_varref( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 42: /* Line 1806 of yacc.c */ #line 421 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(5) - (7)].en), build_varref( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 43: /* Line 1806 of yacc.c */ #line 423 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(3) - (3)].en), build_varref( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 44: /* Line 1806 of yacc.c */ #line 425 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(5) - (7)].en), build_varref( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 46: /* Line 1806 of yacc.c */ #line 433 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 47: /* Line 1806 of yacc.c */ #line 435 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 48: /* Line 1806 of yacc.c */ #line 437 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 49: /* Line 1806 of yacc.c */ #line 442 "parser.yy" { switch ( (yyvsp[(1) - (2)].op) ) { case OperKinds::AddressOf: (yyval.en) = new ExpressionNode( build_addressOf( (yyvsp[(2) - (2)].en) ) ); break; case OperKinds::PointTo: (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); break; default: assert( false ); } } break; case 50: /* Line 1806 of yacc.c */ #line 455 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); } break; case 51: /* Line 1806 of yacc.c */ #line 457 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 52: /* Line 1806 of yacc.c */ #line 459 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 53: /* Line 1806 of yacc.c */ #line 461 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 54: /* Line 1806 of yacc.c */ #line 463 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 55: /* Line 1806 of yacc.c */ #line 465 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 56: /* Line 1806 of yacc.c */ #line 467 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 57: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = new ExpressionNode( build_offsetOf( (yyvsp[(3) - (6)].decl), build_varref( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 58: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); } break; case 59: /* Line 1806 of yacc.c */ #line 473 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); } break; case 60: /* Line 1806 of yacc.c */ #line 475 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrtype( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].decl) ) ); } break; case 61: /* Line 1806 of yacc.c */ #line 481 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 62: /* Line 1806 of yacc.c */ #line 482 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 63: /* Line 1806 of yacc.c */ #line 488 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 64: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 65: /* Line 1806 of yacc.c */ #line 490 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 66: /* Line 1806 of yacc.c */ #line 491 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 68: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 69: /* Line 1806 of yacc.c */ #line 499 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 71: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 72: /* Line 1806 of yacc.c */ #line 507 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 73: /* Line 1806 of yacc.c */ #line 509 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 75: /* Line 1806 of yacc.c */ #line 515 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 76: /* Line 1806 of yacc.c */ #line 517 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 78: /* Line 1806 of yacc.c */ #line 523 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 79: /* Line 1806 of yacc.c */ #line 525 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 531 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 82: /* Line 1806 of yacc.c */ #line 533 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 83: /* Line 1806 of yacc.c */ #line 535 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 84: /* Line 1806 of yacc.c */ #line 537 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 543 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 87: /* Line 1806 of yacc.c */ #line 545 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 89: /* Line 1806 of yacc.c */ #line 551 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 91: /* Line 1806 of yacc.c */ #line 557 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 93: /* Line 1806 of yacc.c */ #line 563 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 95: /* Line 1806 of yacc.c */ #line 569 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 97: /* Line 1806 of yacc.c */ #line 575 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 99: /* Line 1806 of yacc.c */ #line 581 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 100: /* Line 1806 of yacc.c */ #line 584 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); } break; case 101: /* Line 1806 of yacc.c */ #line 586 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 104: /* Line 1806 of yacc.c */ #line 597 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 105: /* Line 1806 of yacc.c */ #line 599 "parser.yy" { (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new ExpressionNode( build_binary_ptr( OperKinds::Assign, (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ) ); } break; case 106: /* Line 1806 of yacc.c */ #line 604 "parser.yy" { (yyval.en) = nullptr; } break; case 108: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 109: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 110: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 111: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 112: /* Line 1806 of yacc.c */ #line 613 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 113: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 114: /* Line 1806 of yacc.c */ #line 615 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 115: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 116: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 117: /* Line 1806 of yacc.c */ #line 618 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 619 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 119: /* Line 1806 of yacc.c */ #line 626 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple() ); } break; case 120: /* Line 1806 of yacc.c */ #line 628 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (yyvsp[(3) - (5)].en) ) ); } break; case 121: /* Line 1806 of yacc.c */ #line 630 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_last( (yyvsp[(4) - (6)].en) ) ) ); } break; case 122: /* Line 1806 of yacc.c */ #line 632 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_last( (yyvsp[(5) - (7)].en) ) ) ); } break; case 124: /* Line 1806 of yacc.c */ #line 638 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 126: /* Line 1806 of yacc.c */ #line 644 "parser.yy" { (yyval.en) = new ExpressionNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 127: /* Line 1806 of yacc.c */ #line 649 "parser.yy" { (yyval.en) = 0; } break; case 131: /* Line 1806 of yacc.c */ #line 658 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 137: /* Line 1806 of yacc.c */ #line 665 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( build_expr( new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_last( (yyvsp[(4) - (6)].en) ) ) ) ) ); } break; case 138: /* Line 1806 of yacc.c */ #line 675 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 139: /* Line 1806 of yacc.c */ #line 682 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (StatementNode *)0 ) ); } break; case 140: /* Line 1806 of yacc.c */ #line 689 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (yyvsp[(5) - (7)].sn) ) ); } break; case 142: /* Line 1806 of yacc.c */ #line 695 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 143: /* Line 1806 of yacc.c */ #line 700 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 144: /* Line 1806 of yacc.c */ #line 702 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 145: /* Line 1806 of yacc.c */ #line 708 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 148: /* Line 1806 of yacc.c */ #line 715 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 149: /* Line 1806 of yacc.c */ #line 720 "parser.yy" { (yyval.sn) = new StatementNode( build_expr( (yyvsp[(1) - (2)].en) ) ); } break; case 150: /* Line 1806 of yacc.c */ #line 726 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn), nullptr ) ); } break; case 151: /* Line 1806 of yacc.c */ #line 728 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].sn), (yyvsp[(7) - (7)].sn) ) ); } break; case 152: /* Line 1806 of yacc.c */ #line 730 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 153: /* Line 1806 of yacc.c */ #line 732 "parser.yy" { StatementNode *sw = new StatementNode( build_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 StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 154: /* Line 1806 of yacc.c */ #line 742 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 155: /* Line 1806 of yacc.c */ #line 744 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 156: /* Line 1806 of yacc.c */ #line 754 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 157: /* Line 1806 of yacc.c */ #line 756 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 159: /* Line 1806 of yacc.c */ #line 761 "parser.yy" { (yyval.sn) = new StatementNode( build_case( (yyvsp[(1) - (1)].en) ) ); } break; case 160: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_last( new StatementNode( build_case( (yyvsp[(3) - (3)].en) ) ) ) ); } break; case 161: /* Line 1806 of yacc.c */ #line 767 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 162: /* Line 1806 of yacc.c */ #line 768 "parser.yy" { (yyval.sn) = new StatementNode( build_default() ); } break; case 164: /* Line 1806 of yacc.c */ #line 774 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) )); } break; case 165: /* Line 1806 of yacc.c */ #line 778 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 166: /* Line 1806 of yacc.c */ #line 783 "parser.yy" { (yyval.sn) = 0; } break; case 168: /* Line 1806 of yacc.c */ #line 789 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 169: /* Line 1806 of yacc.c */ #line 791 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(3) - (3)].sn) ) ) ) ) ); } break; case 170: /* Line 1806 of yacc.c */ #line 796 "parser.yy" { (yyval.sn) = 0; } break; case 172: /* Line 1806 of yacc.c */ #line 802 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 173: /* Line 1806 of yacc.c */ #line 804 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(2) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 174: /* Line 1806 of yacc.c */ #line 806 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 175: /* Line 1806 of yacc.c */ #line 808 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_last( (yyvsp[(2) - (4)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(3) - (4)].sn)->set_last( (yyvsp[(4) - (4)].sn) ) ) ) ) ) ); } break; case 176: /* Line 1806 of yacc.c */ #line 813 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 178: /* Line 1806 of yacc.c */ #line 819 "parser.yy" { (yyval.sn) = 0; } break; case 179: /* Line 1806 of yacc.c */ #line 821 "parser.yy" { (yyval.sn) = 0; } break; case 180: /* Line 1806 of yacc.c */ #line 826 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 181: /* Line 1806 of yacc.c */ #line 828 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ) ); } break; case 182: /* Line 1806 of yacc.c */ #line 830 "parser.yy" { (yyval.sn) = new StatementNode( build_for( (yyvsp[(4) - (6)].fctl), (yyvsp[(6) - (6)].sn) ) ); } break; case 183: /* Line 1806 of yacc.c */ #line 835 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 184: /* Line 1806 of yacc.c */ #line 837 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 185: /* Line 1806 of yacc.c */ #line 842 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Goto ) ); } break; case 186: /* Line 1806 of yacc.c */ #line 846 "parser.yy" { (yyval.sn) = new StatementNode( build_computedgoto( (yyvsp[(3) - (4)].en) ) ); } break; case 187: /* Line 1806 of yacc.c */ #line 849 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Continue ) ); } break; case 188: /* Line 1806 of yacc.c */ #line 853 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Continue ) ); } break; case 189: /* Line 1806 of yacc.c */ #line 856 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 190: /* Line 1806 of yacc.c */ #line 860 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Break ) ); } break; case 191: /* Line 1806 of yacc.c */ #line 862 "parser.yy" { (yyval.sn) = new StatementNode( build_return( (yyvsp[(2) - (3)].en) ) ); } break; case 192: /* Line 1806 of yacc.c */ #line 864 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 193: /* Line 1806 of yacc.c */ #line 866 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 194: /* Line 1806 of yacc.c */ #line 868 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (5)].en) ) ); } break; case 195: /* Line 1806 of yacc.c */ #line 873 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), (yyvsp[(3) - (3)].sn), 0 ) ); } break; case 196: /* Line 1806 of yacc.c */ #line 875 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), 0, (yyvsp[(3) - (3)].sn) ) ); } break; case 197: /* Line 1806 of yacc.c */ #line 877 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (4)].sn), (yyvsp[(3) - (4)].sn), (yyvsp[(4) - (4)].sn) ) ); } break; case 199: /* Line 1806 of yacc.c */ #line 884 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 886 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 201: /* Line 1806 of yacc.c */ #line 888 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 202: /* Line 1806 of yacc.c */ #line 890 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 895 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 897 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 899 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 206: /* Line 1806 of yacc.c */ #line 901 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 906 "parser.yy" { (yyval.sn) = new StatementNode( build_finally( (yyvsp[(2) - (2)].sn) ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 919 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 210: /* Line 1806 of yacc.c */ #line 924 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 211: /* Line 1806 of yacc.c */ #line 926 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 213: /* Line 1806 of yacc.c */ #line 935 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ) ); } break; case 214: /* Line 1806 of yacc.c */ #line 937 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ) ); } break; case 215: /* Line 1806 of yacc.c */ #line 939 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ) ); } break; case 216: /* Line 1806 of yacc.c */ #line 941 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].en) ) ); } break; case 217: /* Line 1806 of yacc.c */ #line 943 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].en), (yyvsp[(12) - (14)].label) ) ); } break; case 218: /* Line 1806 of yacc.c */ #line 948 "parser.yy" { (yyval.flag) = false; } break; case 219: /* Line 1806 of yacc.c */ #line 950 "parser.yy" { (yyval.flag) = true; } break; case 220: /* Line 1806 of yacc.c */ #line 955 "parser.yy" { (yyval.en) = 0; } break; case 223: /* Line 1806 of yacc.c */ #line 962 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 224: /* Line 1806 of yacc.c */ #line 967 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ) ); } break; case 225: /* Line 1806 of yacc.c */ #line 969 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ) ); } break; case 226: /* Line 1806 of yacc.c */ #line 974 "parser.yy" { (yyval.en) = 0; } break; case 227: /* Line 1806 of yacc.c */ #line 976 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 228: /* Line 1806 of yacc.c */ #line 978 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( (yyvsp[(3) - (3)].constant) ) ); } break; case 229: /* Line 1806 of yacc.c */ #line 983 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->labels.push_back( *(yyvsp[(1) - (1)].tok) ); delete (yyvsp[(1) - (1)].tok); // allocated by lexer } break; case 230: /* Line 1806 of yacc.c */ #line 988 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->labels.push_back( *(yyvsp[(3) - (3)].tok) ); delete (yyvsp[(3) - (3)].tok); // allocated by lexer } break; case 231: /* Line 1806 of yacc.c */ #line 998 "parser.yy" { (yyval.decl) = 0; } break; case 234: /* Line 1806 of yacc.c */ #line 1005 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 235: /* Line 1806 of yacc.c */ #line 1010 "parser.yy" { (yyval.decl) = 0; } break; case 238: /* Line 1806 of yacc.c */ #line 1017 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 243: /* Line 1806 of yacc.c */ #line 1031 "parser.yy" {} break; case 244: /* Line 1806 of yacc.c */ #line 1032 "parser.yy" {} break; case 252: /* Line 1806 of yacc.c */ #line 1061 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 253: /* Line 1806 of yacc.c */ #line 1068 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 254: /* Line 1806 of yacc.c */ #line 1073 "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 255: /* Line 1806 of yacc.c */ #line 1083 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 256: /* Line 1806 of yacc.c */ #line 1088 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 257: /* Line 1806 of yacc.c */ #line 1093 "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 258: /* Line 1806 of yacc.c */ #line 1101 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 259: /* Line 1806 of yacc.c */ #line 1106 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1111 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 261: /* Line 1806 of yacc.c */ #line 1116 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1121 "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 263: /* Line 1806 of yacc.c */ #line 1129 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 264: /* Line 1806 of yacc.c */ #line 1152 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 265: /* Line 1806 of yacc.c */ #line 1156 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 266: /* Line 1806 of yacc.c */ #line 1163 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 267: /* Line 1806 of yacc.c */ #line 1167 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 268: /* Line 1806 of yacc.c */ #line 1172 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 269: /* Line 1806 of yacc.c */ #line 1177 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 270: /* Line 1806 of yacc.c */ #line 1182 "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 271: /* Line 1806 of yacc.c */ #line 1193 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 272: /* Line 1806 of yacc.c */ #line 1198 "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 273: /* Line 1806 of yacc.c */ #line 1203 "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 274: /* Line 1806 of yacc.c */ #line 1208 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 275: /* Line 1806 of yacc.c */ #line 1213 "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 276: /* Line 1806 of yacc.c */ #line 1222 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 277: /* Line 1806 of yacc.c */ #line 1227 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 282: /* Line 1806 of yacc.c */ #line 1244 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 283: /* Line 1806 of yacc.c */ #line 1249 "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 292: /* Line 1806 of yacc.c */ #line 1271 "parser.yy" { (yyval.decl) = 0; } break; case 295: /* Line 1806 of yacc.c */ #line 1283 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 298: /* Line 1806 of yacc.c */ #line 1294 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 299: /* Line 1806 of yacc.c */ #line 1296 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 300: /* Line 1806 of yacc.c */ #line 1298 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 301: /* Line 1806 of yacc.c */ #line 1300 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 302: /* Line 1806 of yacc.c */ #line 1302 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 303: /* Line 1806 of yacc.c */ #line 1304 "parser.yy" { typedefTable.enterScope(); } break; case 304: /* Line 1806 of yacc.c */ #line 1308 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 306: /* Line 1806 of yacc.c */ #line 1317 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 307: /* Line 1806 of yacc.c */ #line 1319 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 309: /* Line 1806 of yacc.c */ #line 1330 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 310: /* Line 1806 of yacc.c */ #line 1335 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 311: /* Line 1806 of yacc.c */ #line 1337 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 312: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 313: /* Line 1806 of yacc.c */ #line 1341 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 314: /* Line 1806 of yacc.c */ #line 1344 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isInline = true; } break; case 315: /* Line 1806 of yacc.c */ #line 1346 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 316: /* Line 1806 of yacc.c */ #line 1349 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isNoreturn = true; } break; case 317: /* Line 1806 of yacc.c */ #line 1351 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 318: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 319: /* Line 1806 of yacc.c */ #line 1358 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 320: /* Line 1806 of yacc.c */ #line 1360 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 321: /* Line 1806 of yacc.c */ #line 1362 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 322: /* Line 1806 of yacc.c */ #line 1364 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 323: /* Line 1806 of yacc.c */ #line 1366 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 324: /* Line 1806 of yacc.c */ #line 1368 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 325: /* Line 1806 of yacc.c */ #line 1370 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 326: /* Line 1806 of yacc.c */ #line 1372 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 327: /* Line 1806 of yacc.c */ #line 1374 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 328: /* Line 1806 of yacc.c */ #line 1376 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 329: /* Line 1806 of yacc.c */ #line 1378 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 330: /* Line 1806 of yacc.c */ #line 1380 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 332: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 333: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 334: /* 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 335: /* 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 337: /* 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 339: /* Line 1806 of yacc.c */ #line 1406 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1408 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1410 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1415 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 343: /* Line 1806 of yacc.c */ #line 1417 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1421 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1427 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1429 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 349: /* 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 351: /* Line 1806 of yacc.c */ #line 1437 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1439 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1445 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1447 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 356: /* 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 357: /* Line 1806 of yacc.c */ #line 1454 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1456 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 362: /* 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 363: /* 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 364: /* Line 1806 of yacc.c */ #line 1475 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 365: /* 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 366: /* 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 367: /* Line 1806 of yacc.c */ #line 1481 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 368: /* Line 1806 of yacc.c */ #line 1486 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 369: /* Line 1806 of yacc.c */ #line 1488 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 370: /* Line 1806 of yacc.c */ #line 1493 "parser.yy" { (yyval.decl) = 0; } break; case 371: /* 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 373: /* Line 1806 of yacc.c */ #line 1501 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 375: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 377: /* Line 1806 of yacc.c */ #line 1514 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 378: /* 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 379: /* Line 1806 of yacc.c */ #line 1518 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1523 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 381: /* 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 382: /* Line 1806 of yacc.c */ #line 1530 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 383: /* Line 1806 of yacc.c */ #line 1532 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1535 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1538 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 387: /* Line 1806 of yacc.c */ #line 1544 "parser.yy" { (yyval.en) = 0; } break; case 388: /* Line 1806 of yacc.c */ #line 1546 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 389: /* Line 1806 of yacc.c */ #line 1551 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 391: /* Line 1806 of yacc.c */ #line 1560 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 392: /* 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 393: /* Line 1806 of yacc.c */ #line 1567 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 394: /* Line 1806 of yacc.c */ #line 1569 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1574 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 396: /* 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 397: /* Line 1806 of yacc.c */ #line 1581 "parser.yy" { (yyval.en) = 0; } break; case 398: /* Line 1806 of yacc.c */ #line 1583 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 399: /* Line 1806 of yacc.c */ #line 1590 "parser.yy" { (yyval.decl) = 0; } break; case 403: /* Line 1806 of yacc.c */ #line 1598 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 404: /* Line 1806 of yacc.c */ #line 1600 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 405: /* Line 1806 of yacc.c */ #line 1602 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 407: /* Line 1806 of yacc.c */ #line 1610 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 408: /* Line 1806 of yacc.c */ #line 1612 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 409: /* 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 411: /* Line 1806 of yacc.c */ #line 1620 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1625 "parser.yy" { (yyval.decl) = 0; } break; case 415: /* Line 1806 of yacc.c */ #line 1632 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 418: /* Line 1806 of yacc.c */ #line 1639 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 419: /* Line 1806 of yacc.c */ #line 1641 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 421: /* Line 1806 of yacc.c */ #line 1650 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 422: /* Line 1806 of yacc.c */ #line 1653 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 423: /* 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 428: /* Line 1806 of yacc.c */ #line 1665 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 430: /* 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 431: /* 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 433: /* Line 1806 of yacc.c */ #line 1685 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1694 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 435: /* Line 1806 of yacc.c */ #line 1696 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 447: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 451: /* Line 1806 of yacc.c */ #line 1729 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 452: /* Line 1806 of yacc.c */ #line 1734 "parser.yy" { (yyval.in) = 0; } break; case 453: /* Line 1806 of yacc.c */ #line 1736 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 454: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 455: /* Line 1806 of yacc.c */ #line 1742 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 456: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 457: /* Line 1806 of yacc.c */ #line 1748 "parser.yy" { (yyval.in) = 0; } break; case 459: /* Line 1806 of yacc.c */ #line 1750 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1751 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); } break; case 461: /* Line 1806 of yacc.c */ #line 1753 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_last( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1769 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); } break; case 465: /* Line 1806 of yacc.c */ #line 1775 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_last( (yyvsp[(2) - (2)].en) ) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1781 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); } break; case 467: /* Line 1806 of yacc.c */ #line 1784 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 468: /* Line 1806 of yacc.c */ #line 1786 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 469: /* Line 1806 of yacc.c */ #line 1788 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); } break; case 470: /* Line 1806 of yacc.c */ #line 1790 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 472: /* Line 1806 of yacc.c */ #line 1814 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1816 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 474: /* Line 1806 of yacc.c */ #line 1818 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1824 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1826 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1831 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1837 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1842 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 482: /* Line 1806 of yacc.c */ #line 1844 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1850 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 485: /* Line 1806 of yacc.c */ #line 1852 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 486: /* Line 1806 of yacc.c */ #line 1854 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 487: /* Line 1806 of yacc.c */ #line 1859 "parser.yy" { (yyval.decl) = 0; } break; case 488: /* Line 1806 of yacc.c */ #line 1861 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 489: /* Line 1806 of yacc.c */ #line 1866 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 490: /* Line 1806 of yacc.c */ #line 1871 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 491: /* Line 1806 of yacc.c */ #line 1873 "parser.yy" { (yyval.decl) = 0; } break; case 492: /* Line 1806 of yacc.c */ #line 1878 "parser.yy" { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); } break; case 494: /* Line 1806 of yacc.c */ #line 1881 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); } break; case 495: /* Line 1806 of yacc.c */ #line 1883 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 496: /* Line 1806 of yacc.c */ #line 1888 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 497: /* Line 1806 of yacc.c */ #line 1890 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 498: /* Line 1806 of yacc.c */ #line 1892 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1899 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 501: /* Line 1806 of yacc.c */ #line 1904 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 502: /* Line 1806 of yacc.c */ #line 1909 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1917 "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 504: /* Line 1806 of yacc.c */ #line 1922 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 505: /* Line 1806 of yacc.c */ #line 1927 "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 507: /* Line 1806 of yacc.c */ #line 1937 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 510: /* Line 1806 of yacc.c */ #line 1947 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 511: /* Line 1806 of yacc.c */ #line 1952 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 512: /* Line 1806 of yacc.c */ #line 1957 "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 513: /* Line 1806 of yacc.c */ #line 1965 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1970 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 515: /* Line 1806 of yacc.c */ #line 1980 "parser.yy" {} break; case 516: /* Line 1806 of yacc.c */ #line 1982 "parser.yy" { parseTree = parseTree != nullptr ? parseTree->appendList( (yyvsp[(1) - (1)].decl) ) : (yyvsp[(1) - (1)].decl); } break; case 518: /* Line 1806 of yacc.c */ #line 1988 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl) != nullptr ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 519: /* Line 1806 of yacc.c */ #line 1993 "parser.yy" { (yyval.decl) = 0; } break; case 523: /* Line 1806 of yacc.c */ #line 2001 "parser.yy" {} break; case 524: /* Line 1806 of yacc.c */ #line 2003 "parser.yy" { linkageStack.push( linkage ); // handle nested extern "C"/"Cforall" linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 525: /* Line 1806 of yacc.c */ #line 2008 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 526: /* Line 1806 of yacc.c */ #line 2014 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 528: /* Line 1806 of yacc.c */ #line 2029 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 529: /* Line 1806 of yacc.c */ #line 2035 "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 530: /* Line 1806 of yacc.c */ #line 2044 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 531: /* Line 1806 of yacc.c */ #line 2050 "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 532: /* Line 1806 of yacc.c */ #line 2056 "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 533: /* Line 1806 of yacc.c */ #line 2062 "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 534: /* Line 1806 of yacc.c */ #line 2068 "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 535: /* Line 1806 of yacc.c */ #line 2076 "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 536: /* Line 1806 of yacc.c */ #line 2082 "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 537: /* Line 1806 of yacc.c */ #line 2090 "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 538: /* Line 1806 of yacc.c */ #line 2096 "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 542: /* Line 1806 of yacc.c */ #line 2111 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 544: /* Line 1806 of yacc.c */ #line 2116 "parser.yy" { delete (yyvsp[(3) - (5)].str); } break; case 545: /* Line 1806 of yacc.c */ #line 2121 "parser.yy" { (yyval.decl) = 0; } break; case 548: /* Line 1806 of yacc.c */ #line 2128 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 549: /* Line 1806 of yacc.c */ #line 2134 "parser.yy" { (yyval.decl) = 0; } break; case 554: /* Line 1806 of yacc.c */ #line 2145 "parser.yy" { delete (yyvsp[(3) - (4)].en); } break; case 555: /* Line 1806 of yacc.c */ #line 2149 "parser.yy" { delete (yyvsp[(1) - (1)].tok); } break; case 556: /* Line 1806 of yacc.c */ #line 2150 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 557: /* Line 1806 of yacc.c */ #line 2151 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 558: /* Line 1806 of yacc.c */ #line 2152 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 559: /* Line 1806 of yacc.c */ #line 2187 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 561: /* Line 1806 of yacc.c */ #line 2190 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 562: /* Line 1806 of yacc.c */ #line 2192 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 563: /* Line 1806 of yacc.c */ #line 2197 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 564: /* Line 1806 of yacc.c */ #line 2202 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 565: /* Line 1806 of yacc.c */ #line 2207 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2209 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2211 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 568: /* Line 1806 of yacc.c */ #line 2216 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2220 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2222 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 572: /* Line 1806 of yacc.c */ #line 2227 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2229 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 574: /* Line 1806 of yacc.c */ #line 2238 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2241 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2246 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2248 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2250 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 580: /* Line 1806 of yacc.c */ #line 2255 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2257 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2259 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 583: /* Line 1806 of yacc.c */ #line 2264 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2266 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2268 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 589: /* Line 1806 of yacc.c */ #line 2283 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2285 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2287 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 592: /* Line 1806 of yacc.c */ #line 2292 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2294 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2296 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 595: /* Line 1806 of yacc.c */ #line 2301 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2303 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2305 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 598: /* Line 1806 of yacc.c */ #line 2320 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2323 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2325 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 603: /* Line 1806 of yacc.c */ #line 2331 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 604: /* Line 1806 of yacc.c */ #line 2336 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2338 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2340 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 607: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2349 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2351 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 611: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2358 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2360 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 614: /* Line 1806 of yacc.c */ #line 2370 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2373 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2375 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2380 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2382 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2384 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 621: /* Line 1806 of yacc.c */ #line 2389 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2391 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2393 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2395 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 625: /* Line 1806 of yacc.c */ #line 2400 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2402 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2404 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 628: /* Line 1806 of yacc.c */ #line 2435 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2438 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2440 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2445 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2450 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2458 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2460 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2462 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 637: /* Line 1806 of yacc.c */ #line 2467 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2469 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2474 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2476 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2491 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2493 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2498 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 645: /* Line 1806 of yacc.c */ #line 2500 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2502 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2504 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2506 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 650: /* Line 1806 of yacc.c */ #line 2512 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2514 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2516 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 653: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 654: /* Line 1806 of yacc.c */ #line 2523 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2525 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 656: /* Line 1806 of yacc.c */ #line 2531 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 657: /* Line 1806 of yacc.c */ #line 2533 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2539 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 660: /* Line 1806 of yacc.c */ #line 2541 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 661: /* Line 1806 of yacc.c */ #line 2543 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 662: /* Line 1806 of yacc.c */ #line 2545 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2560 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2562 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2567 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 667: /* Line 1806 of yacc.c */ #line 2569 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2571 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2573 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2575 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 672: /* Line 1806 of yacc.c */ #line 2581 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2583 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2585 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 675: /* Line 1806 of yacc.c */ #line 2590 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 676: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2594 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 679: /* Line 1806 of yacc.c */ #line 2601 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 681: /* Line 1806 of yacc.c */ #line 2612 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 682: /* Line 1806 of yacc.c */ #line 2615 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 683: /* Line 1806 of yacc.c */ #line 2617 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 684: /* Line 1806 of yacc.c */ #line 2620 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 685: /* Line 1806 of yacc.c */ #line 2622 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 686: /* Line 1806 of yacc.c */ #line 2624 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 688: /* Line 1806 of yacc.c */ #line 2638 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2640 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 690: /* Line 1806 of yacc.c */ #line 2645 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 691: /* Line 1806 of yacc.c */ #line 2647 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2649 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2651 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2653 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 696: /* Line 1806 of yacc.c */ #line 2659 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2661 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2663 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 699: /* Line 1806 of yacc.c */ #line 2668 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2670 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 703: /* Line 1806 of yacc.c */ #line 2680 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2690 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 707: /* Line 1806 of yacc.c */ #line 2692 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2694 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 709: /* Line 1806 of yacc.c */ #line 2696 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2698 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2700 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2707 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2709 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2711 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2713 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2715 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2717 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2719 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 719: /* 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 720: /* 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 721: /* Line 1806 of yacc.c */ #line 2725 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2730 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2732 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 724: /* Line 1806 of yacc.c */ #line 2737 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 725: /* Line 1806 of yacc.c */ #line 2739 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 727: /* Line 1806 of yacc.c */ #line 2766 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 731: /* Line 1806 of yacc.c */ #line 2777 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 732: /* Line 1806 of yacc.c */ #line 2779 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 733: /* Line 1806 of yacc.c */ #line 2781 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 734: /* Line 1806 of yacc.c */ #line 2783 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2785 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2787 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2794 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2796 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2798 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2800 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2802 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2804 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2809 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2814 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 745: /* Line 1806 of yacc.c */ #line 2816 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 746: /* Line 1806 of yacc.c */ #line 2818 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 749: /* Line 1806 of yacc.c */ #line 2842 "parser.yy" { (yyval.en) = 0; } break; case 750: /* Line 1806 of yacc.c */ #line 2844 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9173 "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 2847 "parser.yy" // ----end of grammar---- extern char *yytext; 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: //