/* 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 45 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile extern char *yytext; #undef __GNUC_MINOR__ #include #include #include "TypedefTable.h" #include "lex.h" #include "ParseNode.h" #include "LinkageSpec.h" DeclarationNode *theTree = 0; // the resulting parse tree LinkageSpec::Type linkage = LinkageSpec::Cforall; std::stack< LinkageSpec::Type > linkageStack; TypedefTable typedefTable; /* Line 268 of yacc.c */ #line 92 "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, BOOL = 279, COMPLEX = 280, IMAGINARY = 281, TYPEOF = 282, LABEL = 283, ENUM = 284, STRUCT = 285, UNION = 286, TYPE = 287, FTYPE = 288, DTYPE = 289, CONTEXT = 290, SIZEOF = 291, ATTRIBUTE = 292, EXTENSION = 293, IF = 294, ELSE = 295, SWITCH = 296, CASE = 297, DEFAULT = 298, DO = 299, WHILE = 300, FOR = 301, BREAK = 302, CONTINUE = 303, GOTO = 304, RETURN = 305, CHOOSE = 306, FALLTHRU = 307, TRY = 308, CATCH = 309, FINALLY = 310, THROW = 311, ASM = 312, ALIGNAS = 313, ALIGNOF = 314, ATOMIC = 315, GENERIC = 316, NORETURN = 317, STATICASSERT = 318, THREADLOCAL = 319, IDENTIFIER = 320, QUOTED_IDENTIFIER = 321, TYPEDEFname = 322, TYPEGENname = 323, ATTR_IDENTIFIER = 324, ATTR_TYPEDEFname = 325, ATTR_TYPEGENname = 326, INTEGERconstant = 327, FLOATINGconstant = 328, CHARACTERconstant = 329, STRINGliteral = 330, ZERO = 331, ONE = 332, ARROW = 333, ICR = 334, DECR = 335, LS = 336, RS = 337, LE = 338, GE = 339, EQ = 340, NE = 341, ANDAND = 342, OROR = 343, ELLIPSIS = 344, MULTassign = 345, DIVassign = 346, MODassign = 347, PLUSassign = 348, MINUSassign = 349, LSassign = 350, RSassign = 351, ANDassign = 352, ERassign = 353, ORassign = 354, THEN = 355 }; #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 BOOL 279 #define COMPLEX 280 #define IMAGINARY 281 #define TYPEOF 282 #define LABEL 283 #define ENUM 284 #define STRUCT 285 #define UNION 286 #define TYPE 287 #define FTYPE 288 #define DTYPE 289 #define CONTEXT 290 #define SIZEOF 291 #define ATTRIBUTE 292 #define EXTENSION 293 #define IF 294 #define ELSE 295 #define SWITCH 296 #define CASE 297 #define DEFAULT 298 #define DO 299 #define WHILE 300 #define FOR 301 #define BREAK 302 #define CONTINUE 303 #define GOTO 304 #define RETURN 305 #define CHOOSE 306 #define FALLTHRU 307 #define TRY 308 #define CATCH 309 #define FINALLY 310 #define THROW 311 #define ASM 312 #define ALIGNAS 313 #define ALIGNOF 314 #define ATOMIC 315 #define GENERIC 316 #define NORETURN 317 #define STATICASSERT 318 #define THREADLOCAL 319 #define IDENTIFIER 320 #define QUOTED_IDENTIFIER 321 #define TYPEDEFname 322 #define TYPEGENname 323 #define ATTR_IDENTIFIER 324 #define ATTR_TYPEDEFname 325 #define ATTR_TYPEGENname 326 #define INTEGERconstant 327 #define FLOATINGconstant 328 #define CHARACTERconstant 329 #define STRINGliteral 330 #define ZERO 331 #define ONE 332 #define ARROW 333 #define ICR 334 #define DECR 335 #define LS 336 #define RS 337 #define LE 338 #define GE 339 #define EQ 340 #define NE 341 #define ANDAND 342 #define OROR 343 #define ELLIPSIS 344 #define MULTassign 345 #define DIVassign 346 #define MODassign 347 #define PLUSassign 348 #define MINUSassign 349 #define LSassign 350 #define RSassign 351 #define ANDassign 352 #define ERassign 353 #define ORassign 354 #define THEN 355 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 108 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantNode *constant; InitializerNode *in; /* Line 293 of yacc.c */ #line 342 "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 354 "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 240 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 12141 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 125 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 235 /* YYNRULES -- Number of rules. */ #define YYNRULES 735 /* YYNRULES -- Number of states. */ #define YYNSTATES 1552 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 355 #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, 110, 2, 2, 2, 117, 112, 2, 101, 102, 111, 113, 108, 114, 105, 116, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 109, 124, 118, 123, 119, 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, 103, 2, 104, 120, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 106, 121, 107, 115, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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 }; #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, 32, 34, 36, 38, 40, 44, 48, 50, 57, 62, 66, 74, 78, 86, 89, 92, 100, 102, 106, 107, 109, 113, 121, 131, 133, 137, 139, 143, 151, 155, 163, 165, 168, 171, 174, 177, 180, 183, 186, 191, 193, 198, 203, 206, 211, 214, 216, 218, 220, 222, 224, 229, 234, 236, 240, 244, 248, 250, 254, 258, 260, 264, 268, 270, 274, 278, 282, 286, 288, 292, 296, 298, 302, 304, 308, 310, 314, 316, 320, 322, 326, 328, 334, 339, 345, 347, 349, 353, 357, 360, 361, 363, 368, 374, 381, 389, 391, 395, 397, 399, 401, 403, 405, 407, 409, 411, 413, 415, 417, 421, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 445, 448, 456, 458, 462, 464, 467, 469, 472, 474, 477, 480, 486, 494, 500, 510, 516, 526, 528, 532, 534, 536, 540, 544, 547, 549, 552, 555, 556, 558, 561, 565, 566, 568, 571, 575, 579, 584, 585, 587, 589, 592, 598, 606, 613, 620, 625, 629, 634, 637, 641, 644, 648, 652, 656, 659, 663, 667, 672, 674, 680, 687, 697, 708, 711, 713, 716, 719, 722, 724, 731, 740, 751, 764, 765, 767, 769, 773, 778, 780, 784, 786, 788, 790, 794, 796, 798, 800, 804, 805, 807, 811, 816, 818, 822, 824, 826, 830, 834, 838, 842, 846, 849, 853, 860, 864, 868, 873, 875, 878, 881, 885, 891, 902, 913, 921, 929, 935, 945, 948, 951, 957, 961, 967, 972, 976, 981, 986, 994, 998, 1002, 1006, 1010, 1015, 1022, 1024, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1039, 1041, 1043, 1046, 1048, 1050, 1052, 1054, 1056, 1058, 1060, 1061, 1067, 1069, 1072, 1076, 1078, 1081, 1083, 1085, 1087, 1089, 1091, 1093, 1095, 1097, 1099, 1101, 1103, 1105, 1107, 1109, 1111, 1113, 1115, 1117, 1119, 1121, 1123, 1125, 1128, 1131, 1135, 1139, 1141, 1145, 1147, 1150, 1153, 1156, 1161, 1166, 1171, 1176, 1178, 1181, 1184, 1188, 1190, 1193, 1196, 1198, 1201, 1204, 1208, 1210, 1213, 1216, 1218, 1220, 1225, 1228, 1234, 1244, 1252, 1263, 1276, 1284, 1298, 1301, 1304, 1306, 1309, 1312, 1316, 1319, 1323, 1325, 1328, 1332, 1335, 1338, 1343, 1344, 1346, 1349, 1352, 1354, 1355, 1357, 1360, 1363, 1369, 1376, 1379, 1382, 1387, 1388, 1391, 1392, 1394, 1396, 1398, 1404, 1410, 1416, 1418, 1424, 1430, 1440, 1442, 1448, 1449, 1451, 1453, 1459, 1461, 1463, 1469, 1475, 1477, 1481, 1485, 1490, 1492, 1494, 1496, 1498, 1501, 1503, 1507, 1511, 1513, 1516, 1518, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1547, 1549, 1551, 1553, 1556, 1557, 1560, 1562, 1567, 1569, 1572, 1576, 1581, 1584, 1587, 1589, 1592, 1595, 1601, 1607, 1615, 1622, 1624, 1627, 1630, 1634, 1639, 1645, 1648, 1651, 1656, 1657, 1662, 1665, 1667, 1669, 1671, 1672, 1675, 1681, 1687, 1701, 1703, 1705, 1709, 1713, 1716, 1720, 1724, 1727, 1732, 1734, 1741, 1751, 1752, 1764, 1766, 1770, 1774, 1778, 1780, 1782, 1788, 1791, 1797, 1798, 1800, 1802, 1806, 1807, 1809, 1811, 1813, 1815, 1816, 1823, 1826, 1828, 1831, 1836, 1839, 1843, 1847, 1851, 1856, 1862, 1868, 1874, 1881, 1883, 1885, 1887, 1891, 1892, 1898, 1899, 1901, 1903, 1906, 1913, 1915, 1919, 1920, 1922, 1927, 1929, 1931, 1933, 1935, 1938, 1940, 1943, 1946, 1948, 1952, 1955, 1959, 1963, 1966, 1971, 1976, 1980, 1989, 1993, 1996, 1998, 2001, 2008, 2017, 2021, 2024, 2028, 2032, 2037, 2042, 2046, 2048, 2050, 2052, 2057, 2064, 2068, 2071, 2075, 2079, 2084, 2089, 2093, 2096, 2098, 2101, 2104, 2106, 2110, 2113, 2117, 2121, 2124, 2129, 2134, 2138, 2145, 2154, 2158, 2161, 2163, 2166, 2169, 2172, 2176, 2180, 2183, 2188, 2193, 2197, 2204, 2213, 2217, 2220, 2222, 2225, 2228, 2230, 2233, 2237, 2241, 2244, 2249, 2256, 2265, 2267, 2270, 2273, 2275, 2278, 2281, 2285, 2289, 2291, 2296, 2301, 2305, 2311, 2320, 2324, 2329, 2335, 2337, 2343, 2349, 2356, 2363, 2365, 2368, 2371, 2373, 2376, 2379, 2383, 2387, 2389, 2394, 2399, 2403, 2409, 2418, 2422, 2424, 2427, 2429, 2434, 2441, 2447, 2454, 2462, 2470, 2472, 2475, 2478, 2480, 2483, 2486, 2490, 2494, 2496, 2501, 2506, 2510, 2519, 2523, 2525, 2527, 2530, 2532, 2534, 2537, 2541, 2544, 2548, 2551, 2555, 2561, 2564, 2571, 2575, 2578, 2584, 2587, 2594, 2598, 2601, 2608, 2615, 2622, 2630, 2632, 2635, 2637, 2639, 2641, 2644, 2648, 2651, 2655, 2658, 2662, 2668, 2675, 2678, 2684, 2691, 2694, 2700, 2708, 2715, 2722, 2723, 2725, 2726 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 288, 0, -1, -1, -1, 72, -1, 73, -1, 74, -1, 65, -1, 69, -1, 132, -1, 65, -1, 69, -1, 65, -1, 76, -1, 77, -1, 75, -1, 133, 75, -1, 65, -1, 132, -1, 128, -1, 133, -1, 101, 160, 102, -1, 101, 164, 102, -1, 134, -1, 135, 103, 126, 155, 127, 104, -1, 135, 101, 136, 102, -1, 135, 105, 131, -1, 135, 105, 103, 126, 138, 127, 104, -1, 135, 78, 131, -1, 135, 78, 103, 126, 138, 127, 104, -1, 135, 79, -1, 135, 80, -1, 101, 262, 102, 106, 266, 358, 107, -1, 137, -1, 136, 108, 137, -1, -1, 155, -1, 131, 109, 155, -1, 103, 126, 155, 127, 104, 109, 155, -1, 103, 126, 155, 108, 158, 127, 104, 109, 155, -1, 139, -1, 138, 108, 139, -1, 131, -1, 131, 105, 139, -1, 131, 105, 103, 126, 138, 127, 104, -1, 131, 78, 139, -1, 131, 78, 103, 126, 138, 127, 104, -1, 135, -1, 79, 140, -1, 80, 140, -1, 38, 142, -1, 141, 142, -1, 110, 142, -1, 111, 142, -1, 36, 140, -1, 36, 101, 262, 102, -1, 69, -1, 69, 101, 263, 102, -1, 69, 101, 137, 102, -1, 59, 140, -1, 59, 101, 262, 102, -1, 87, 131, -1, 112, -1, 113, -1, 114, -1, 115, -1, 140, -1, 101, 262, 102, 142, -1, 101, 262, 102, 157, -1, 142, -1, 143, 111, 142, -1, 143, 116, 142, -1, 143, 117, 142, -1, 143, -1, 144, 113, 143, -1, 144, 114, 143, -1, 144, -1, 145, 81, 144, -1, 145, 82, 144, -1, 145, -1, 146, 118, 145, -1, 146, 119, 145, -1, 146, 83, 145, -1, 146, 84, 145, -1, 146, -1, 147, 85, 146, -1, 147, 86, 146, -1, 147, -1, 148, 112, 147, -1, 148, -1, 149, 120, 148, -1, 149, -1, 150, 121, 149, -1, 150, -1, 151, 87, 150, -1, 151, -1, 152, 88, 151, -1, 152, -1, 152, 122, 160, 109, 153, -1, 152, 122, 109, 153, -1, 152, 122, 160, 109, 157, -1, 153, -1, 153, -1, 140, 123, 155, -1, 140, 159, 155, -1, 157, 359, -1, -1, 155, -1, 103, 126, 127, 104, -1, 103, 126, 155, 127, 104, -1, 103, 126, 108, 158, 127, 104, -1, 103, 126, 155, 108, 158, 127, 104, -1, 156, -1, 158, 108, 156, -1, 90, -1, 91, -1, 92, -1, 93, -1, 94, -1, 95, -1, 96, -1, 97, -1, 98, -1, 99, -1, 155, -1, 160, 108, 155, -1, -1, 160, -1, 163, -1, 164, -1, 168, -1, 169, -1, 181, -1, 183, -1, 184, -1, 189, -1, 131, 109, 298, 162, -1, 106, 107, -1, 106, 126, 126, 198, 165, 127, 107, -1, 166, -1, 165, 126, 166, -1, 201, -1, 38, 201, -1, 294, -1, 162, 127, -1, 162, -1, 167, 162, -1, 161, 124, -1, 39, 101, 160, 102, 162, -1, 39, 101, 160, 102, 162, 40, 162, -1, 41, 101, 160, 102, 174, -1, 41, 101, 160, 102, 106, 126, 194, 175, 107, -1, 51, 101, 160, 102, 174, -1, 51, 101, 160, 102, 106, 126, 194, 177, 107, -1, 154, -1, 154, 89, 154, -1, 296, -1, 170, -1, 171, 108, 170, -1, 42, 171, 109, -1, 43, 109, -1, 172, -1, 173, 172, -1, 173, 162, -1, -1, 176, -1, 173, 167, -1, 176, 173, 167, -1, -1, 178, -1, 173, 180, -1, 173, 167, 179, -1, 178, 173, 180, -1, 178, 173, 167, 179, -1, -1, 180, -1, 52, -1, 52, 124, -1, 45, 101, 160, 102, 162, -1, 44, 162, 45, 101, 160, 102, 124, -1, 46, 101, 126, 182, 102, 162, -1, 161, 127, 124, 161, 124, 161, -1, 201, 161, 124, 161, -1, 49, 131, 124, -1, 49, 111, 160, 124, -1, 48, 124, -1, 48, 131, 124, -1, 47, 124, -1, 47, 131, 124, -1, 50, 161, 124, -1, 56, 155, 124, -1, 56, 124, -1, 53, 164, 185, -1, 53, 164, 187, -1, 53, 164, 185, 187, -1, 186, -1, 54, 101, 89, 102, 164, -1, 186, 54, 101, 89, 102, 164, -1, 54, 101, 126, 126, 188, 127, 102, 164, 127, -1, 186, 54, 101, 126, 126, 188, 127, 102, 164, 127, -1, 55, 164, -1, 214, -1, 214, 295, -1, 214, 343, -1, 352, 131, -1, 352, -1, 57, 215, 101, 154, 102, 124, -1, 57, 215, 101, 154, 109, 190, 102, 124, -1, 57, 215, 101, 154, 109, 190, 109, 190, 102, 124, -1, 57, 215, 101, 154, 109, 190, 109, 190, 109, 193, 102, 124, -1, -1, 191, -1, 192, -1, 191, 108, 192, -1, 75, 101, 154, 102, -1, 75, -1, 193, 108, 75, -1, 127, -1, 195, -1, 201, -1, 195, 126, 201, -1, 127, -1, 197, -1, 211, -1, 197, 126, 211, -1, -1, 199, -1, 28, 200, 124, -1, 199, 28, 200, 124, -1, 261, -1, 200, 108, 261, -1, 202, -1, 211, -1, 203, 127, 124, -1, 208, 127, 124, -1, 205, 127, 124, -1, 279, 127, 124, -1, 282, 127, 124, -1, 204, 264, -1, 220, 204, 264, -1, 203, 127, 108, 126, 259, 264, -1, 353, 259, 297, -1, 356, 259, 297, -1, 216, 356, 259, 297, -1, 206, -1, 216, 206, -1, 220, 206, -1, 220, 216, 206, -1, 205, 127, 108, 126, 259, -1, 103, 126, 127, 104, 129, 101, 126, 247, 127, 102, -1, 103, 126, 127, 104, 67, 101, 126, 247, 127, 102, -1, 356, 259, 101, 126, 247, 127, 102, -1, 207, 259, 101, 126, 247, 127, 102, -1, 103, 126, 249, 127, 104, -1, 103, 126, 249, 127, 108, 126, 250, 127, 104, -1, 3, 204, -1, 3, 206, -1, 208, 127, 108, 126, 131, -1, 3, 214, 295, -1, 209, 127, 108, 126, 295, -1, 216, 3, 214, 295, -1, 214, 3, 295, -1, 214, 3, 216, 295, -1, 3, 131, 123, 155, -1, 210, 127, 108, 126, 131, 123, 155, -1, 212, 127, 124, -1, 209, 127, 124, -1, 210, 127, 124, -1, 229, 127, 124, -1, 213, 295, 297, 264, -1, 212, 108, 298, 295, 297, 264, -1, 225, -1, 229, -1, 231, -1, 270, -1, 226, -1, 230, -1, 232, -1, 271, -1, -1, 216, -1, 217, -1, 216, 217, -1, 218, -1, 300, -1, 10, -1, 12, -1, 11, -1, 14, -1, 60, -1, -1, 13, 101, 219, 272, 102, -1, 221, -1, 216, 221, -1, 220, 216, 221, -1, 222, -1, 221, 222, -1, 223, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 62, -1, 64, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 24, -1, 25, -1, 26, -1, 226, -1, 220, 226, -1, 225, 222, -1, 225, 222, 216, -1, 225, 222, 226, -1, 227, -1, 215, 228, 215, -1, 224, -1, 216, 224, -1, 227, 217, -1, 227, 224, -1, 27, 101, 263, 102, -1, 27, 101, 160, 102, -1, 71, 101, 263, 102, -1, 71, 101, 160, 102, -1, 230, -1, 220, 230, -1, 229, 222, -1, 229, 222, 216, -1, 233, -1, 216, 233, -1, 230, 217, -1, 232, -1, 220, 232, -1, 231, 222, -1, 231, 222, 216, -1, 67, -1, 216, 67, -1, 232, 217, -1, 234, -1, 244, -1, 235, 106, 236, 107, -1, 235, 261, -1, 235, 261, 106, 236, 107, -1, 235, 101, 126, 272, 127, 102, 106, 236, 107, -1, 235, 101, 126, 272, 127, 102, 261, -1, 235, 101, 126, 272, 127, 102, 261, 106, 236, 107, -1, 235, 101, 126, 272, 127, 102, 101, 278, 102, 106, 236, 107, -1, 235, 101, 126, 278, 127, 102, 261, -1, 235, 101, 126, 272, 127, 102, 101, 278, 102, 261, 106, 236, 107, -1, 30, 298, -1, 31, 298, -1, 237, -1, 236, 237, -1, 238, 124, -1, 38, 238, 124, -1, 239, 124, -1, 38, 239, 124, -1, 352, -1, 352, 261, -1, 238, 108, 261, -1, 238, 108, -1, 214, 240, -1, 239, 108, 298, 240, -1, -1, 242, -1, 304, 241, -1, 317, 241, -1, 343, -1, -1, 242, -1, 109, 154, -1, 29, 298, -1, 243, 106, 245, 358, 107, -1, 243, 261, 106, 245, 358, 107, -1, 243, 261, -1, 261, 246, -1, 245, 108, 261, 246, -1, -1, 123, 154, -1, -1, 248, -1, 250, -1, 249, -1, 249, 127, 108, 126, 250, -1, 250, 127, 108, 126, 89, -1, 249, 127, 108, 126, 89, -1, 254, -1, 250, 127, 108, 126, 254, -1, 249, 127, 108, 126, 254, -1, 249, 127, 108, 126, 250, 127, 108, 126, 254, -1, 255, -1, 250, 127, 108, 126, 255, -1, -1, 252, -1, 253, -1, 253, 127, 108, 126, 89, -1, 257, -1, 256, -1, 253, 127, 108, 126, 257, -1, 253, 127, 108, 126, 256, -1, 256, -1, 348, 259, 359, -1, 356, 259, 359, -1, 216, 356, 259, 359, -1, 206, -1, 257, -1, 348, -1, 356, -1, 216, 356, -1, 357, -1, 213, 322, 359, -1, 213, 326, 359, -1, 213, -1, 213, 337, -1, 131, -1, 258, 108, 131, -1, 129, -1, 67, -1, 68, -1, 130, -1, 67, -1, 68, -1, 131, -1, 67, -1, 68, -1, 352, -1, 214, -1, 214, 343, -1, 352, -1, 357, -1, 214, -1, 214, 331, -1, -1, 123, 265, -1, 155, -1, 106, 266, 358, 107, -1, 265, -1, 267, 265, -1, 266, 108, 265, -1, 266, 108, 267, 265, -1, 268, 109, -1, 261, 109, -1, 269, -1, 268, 269, -1, 105, 261, -1, 103, 126, 155, 127, 104, -1, 103, 126, 296, 127, 104, -1, 103, 126, 154, 89, 154, 127, 104, -1, 105, 103, 126, 138, 127, 104, -1, 271, -1, 220, 271, -1, 270, 222, -1, 270, 222, 216, -1, 68, 101, 278, 102, -1, 216, 68, 101, 278, 102, -1, 271, 217, -1, 273, 359, -1, 272, 108, 273, 359, -1, -1, 275, 261, 274, 276, -1, 214, 322, -1, 32, -1, 34, -1, 33, -1, -1, 276, 277, -1, 121, 261, 101, 278, 102, -1, 121, 106, 126, 284, 107, -1, 121, 101, 126, 272, 127, 102, 106, 126, 284, 107, 101, 278, 102, -1, 263, -1, 155, -1, 278, 108, 263, -1, 278, 108, 155, -1, 32, 280, -1, 221, 32, 280, -1, 279, 108, 280, -1, 281, 276, -1, 281, 276, 123, 263, -1, 261, -1, 260, 101, 126, 272, 127, 102, -1, 35, 261, 101, 126, 272, 127, 102, 106, 107, -1, -1, 35, 261, 101, 126, 272, 127, 102, 106, 283, 284, 107, -1, 285, -1, 284, 126, 285, -1, 286, 127, 124, -1, 287, 127, 124, -1, 204, -1, 206, -1, 286, 127, 108, 126, 259, -1, 214, 295, -1, 287, 127, 108, 126, 295, -1, -1, 289, -1, 291, -1, 289, 126, 291, -1, -1, 289, -1, 201, -1, 293, -1, 189, -1, -1, 5, 75, 292, 106, 290, 107, -1, 38, 291, -1, 294, -1, 309, 164, -1, 313, 126, 196, 164, -1, 205, 164, -1, 213, 309, 164, -1, 216, 309, 164, -1, 220, 309, 164, -1, 220, 216, 309, 164, -1, 213, 313, 126, 196, 164, -1, 216, 313, 126, 196, 164, -1, 220, 313, 126, 196, 164, -1, 220, 216, 313, 126, 196, 164, -1, 304, -1, 309, -1, 317, -1, 154, 115, 154, -1, -1, 57, 101, 133, 102, 298, -1, -1, 299, -1, 300, -1, 299, 300, -1, 37, 101, 101, 301, 102, 102, -1, 302, -1, 301, 108, 302, -1, -1, 303, -1, 303, 101, 161, 102, -1, 259, -1, 223, -1, 224, -1, 217, -1, 305, 298, -1, 306, -1, 307, 298, -1, 308, 298, -1, 129, -1, 101, 305, 102, -1, 111, 304, -1, 111, 216, 304, -1, 101, 306, 102, -1, 305, 335, -1, 101, 306, 102, 335, -1, 101, 307, 102, 336, -1, 101, 307, 102, -1, 101, 306, 102, 101, 126, 251, 127, 102, -1, 101, 308, 102, -1, 310, 298, -1, 311, -1, 312, 298, -1, 305, 101, 126, 251, 127, 102, -1, 101, 311, 102, 101, 126, 251, 127, 102, -1, 101, 310, 102, -1, 111, 309, -1, 111, 216, 309, -1, 101, 311, 102, -1, 101, 311, 102, 335, -1, 101, 312, 102, 336, -1, 101, 312, 102, -1, 314, -1, 315, -1, 316, -1, 305, 101, 258, 102, -1, 101, 315, 102, 101, 258, 102, -1, 101, 314, 102, -1, 111, 313, -1, 111, 216, 313, -1, 101, 315, 102, -1, 101, 315, 102, 335, -1, 101, 316, 102, 336, -1, 101, 316, 102, -1, 318, 298, -1, 319, -1, 320, 298, -1, 321, 298, -1, 67, -1, 101, 318, 102, -1, 111, 317, -1, 111, 216, 317, -1, 101, 319, 102, -1, 318, 335, -1, 101, 319, 102, 335, -1, 101, 320, 102, 336, -1, 101, 320, 102, -1, 318, 101, 126, 251, 127, 102, -1, 101, 319, 102, 101, 126, 251, 127, 102, -1, 101, 321, 102, -1, 305, 298, -1, 323, -1, 324, 298, -1, 325, 298, -1, 111, 322, -1, 111, 216, 322, -1, 101, 323, 102, -1, 305, 341, -1, 101, 323, 102, 335, -1, 101, 324, 102, 336, -1, 101, 324, 102, -1, 305, 101, 126, 251, 127, 102, -1, 101, 323, 102, 101, 126, 251, 127, 102, -1, 101, 325, 102, -1, 327, 298, -1, 328, -1, 329, 298, -1, 330, 298, -1, 67, -1, 111, 326, -1, 111, 216, 326, -1, 101, 328, 102, -1, 327, 341, -1, 101, 328, 102, 341, -1, 327, 101, 126, 251, 127, 102, -1, 101, 328, 102, 101, 126, 251, 127, 102, -1, 332, -1, 333, 298, -1, 334, 298, -1, 111, -1, 111, 216, -1, 111, 331, -1, 111, 216, 331, -1, 101, 332, 102, -1, 335, -1, 101, 332, 102, 335, -1, 101, 333, 102, 336, -1, 101, 333, 102, -1, 101, 126, 251, 127, 102, -1, 101, 332, 102, 101, 126, 251, 127, 102, -1, 101, 334, 102, -1, 103, 126, 127, 104, -1, 103, 126, 127, 104, 336, -1, 336, -1, 103, 126, 155, 127, 104, -1, 103, 126, 111, 127, 104, -1, 336, 103, 126, 155, 127, 104, -1, 336, 103, 126, 111, 127, 104, -1, 338, -1, 339, 298, -1, 340, 298, -1, 111, -1, 111, 216, -1, 111, 337, -1, 111, 216, 337, -1, 101, 338, 102, -1, 341, -1, 101, 338, 102, 341, -1, 101, 339, 102, 336, -1, 101, 339, 102, -1, 101, 126, 251, 127, 102, -1, 101, 338, 102, 101, 126, 251, 127, 102, -1, 101, 340, 102, -1, 342, -1, 342, 336, -1, 336, -1, 103, 126, 127, 104, -1, 103, 126, 216, 111, 127, 104, -1, 103, 126, 216, 127, 104, -1, 103, 126, 216, 155, 127, 104, -1, 103, 126, 7, 215, 155, 127, 104, -1, 103, 126, 216, 7, 155, 127, 104, -1, 344, -1, 345, 298, -1, 346, 298, -1, 111, -1, 111, 216, -1, 111, 343, -1, 111, 216, 343, -1, 101, 344, 102, -1, 335, -1, 101, 344, 102, 335, -1, 101, 345, 102, 336, -1, 101, 345, 102, -1, 101, 344, 102, 101, 126, 251, 127, 102, -1, 101, 346, 102, -1, 348, -1, 356, -1, 216, 356, -1, 349, -1, 350, -1, 111, 214, -1, 216, 111, 214, -1, 111, 357, -1, 216, 111, 357, -1, 111, 347, -1, 216, 111, 347, -1, 103, 126, 127, 104, 214, -1, 351, 214, -1, 103, 126, 127, 104, 336, 214, -1, 351, 336, 214, -1, 336, 214, -1, 103, 126, 127, 104, 349, -1, 351, 349, -1, 103, 126, 127, 104, 336, 349, -1, 351, 336, 349, -1, 336, 349, -1, 103, 126, 216, 111, 127, 104, -1, 103, 126, 216, 155, 127, 104, -1, 103, 126, 220, 155, 127, 104, -1, 103, 126, 220, 216, 155, 127, 104, -1, 356, -1, 216, 356, -1, 353, -1, 354, -1, 355, -1, 111, 214, -1, 216, 111, 214, -1, 111, 357, -1, 216, 111, 357, -1, 111, 352, -1, 216, 111, 352, -1, 103, 126, 127, 104, 214, -1, 103, 126, 127, 104, 336, 214, -1, 336, 214, -1, 103, 126, 127, 104, 354, -1, 103, 126, 127, 104, 336, 354, -1, 336, 354, -1, 103, 126, 250, 127, 104, -1, 103, 126, 127, 104, 101, 247, 102, -1, 356, 101, 126, 247, 127, 102, -1, 207, 101, 126, 247, 127, 102, -1, -1, 108, -1, -1, 123, 155, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 282, 282, 288, 298, 299, 300, 304, 305, 306, 310, 311, 315, 319, 320, 324, 325, 331, 333, 335, 337, 339, 341, 346, 347, 353, 355, 357, 358, 360, 361, 363, 366, 371, 372, 378, 379, 380, 385, 387, 392, 393, 397, 399, 401, 403, 405, 410, 411, 413, 415, 417, 419, 421, 427, 429, 431, 433, 435, 437, 439, 441, 446, 447, 448, 449, 453, 454, 456, 461, 462, 464, 466, 471, 472, 474, 479, 480, 482, 487, 488, 490, 492, 494, 499, 500, 502, 507, 508, 513, 514, 519, 520, 525, 526, 531, 532, 537, 538, 540, 542, 547, 552, 553, 555, 557, 563, 564, 570, 572, 574, 576, 581, 582, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 600, 601, 607, 608, 614, 615, 616, 617, 618, 619, 620, 621, 625, 630, 632, 642, 643, 648, 650, 652, 654, 658, 659, 664, 669, 672, 674, 676, 682, 684, 692, 693, 695, 699, 700, 705, 706, 711, 712, 716, 721, 722, 726, 728, 734, 735, 739, 741, 743, 745, 751, 752, 756, 757, 761, 763, 765, 770, 772, 777, 779, 783, 787, 791, 795, 799, 801, 803, 808, 810, 812, 821, 824, 826, 831, 833, 838, 851, 852, 857, 859, 864, 868, 870, 872, 874, 878, 880, 884, 885, 889, 893, 894, 900, 902, 906, 907, 912, 914, 918, 919, 923, 925, 929, 930, 934, 935, 939, 940, 956, 957, 958, 959, 960, 964, 969, 976, 986, 991, 996, 1004, 1009, 1014, 1019, 1024, 1032, 1037, 1050, 1056, 1063, 1065, 1072, 1077, 1082, 1094, 1099, 1104, 1109, 1114, 1122, 1127, 1135, 1136, 1137, 1138, 1144, 1149, 1157, 1158, 1159, 1160, 1164, 1165, 1166, 1167, 1172, 1173, 1183, 1184, 1189, 1190, 1195, 1197, 1199, 1201, 1203, 1206, 1205, 1217, 1218, 1220, 1230, 1231, 1236, 1240, 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1259, 1261, 1263, 1265, 1267, 1269, 1271, 1273, 1275, 1277, 1279, 1281, 1287, 1288, 1290, 1292, 1294, 1299, 1300, 1306, 1307, 1309, 1311, 1316, 1318, 1320, 1322, 1327, 1328, 1330, 1332, 1337, 1338, 1340, 1345, 1346, 1348, 1350, 1355, 1357, 1359, 1364, 1365, 1369, 1371, 1373, 1375, 1377, 1379, 1381, 1383, 1386, 1391, 1393, 1398, 1400, 1405, 1406, 1408, 1409, 1414, 1415, 1417, 1419, 1424, 1426, 1432, 1433, 1435, 1438, 1441, 1446, 1447, 1452, 1457, 1461, 1463, 1465, 1470, 1472, 1478, 1479, 1487, 1488, 1492, 1493, 1494, 1496, 1498, 1506, 1507, 1509, 1511, 1516, 1517, 1523, 1524, 1528, 1529, 1534, 1535, 1536, 1538, 1547, 1548, 1550, 1553, 1555, 1559, 1560, 1561, 1563, 1565, 1569, 1574, 1582, 1583, 1592, 1594, 1599, 1600, 1601, 1605, 1606, 1607, 1611, 1612, 1613, 1617, 1618, 1619, 1624, 1625, 1626, 1627, 1633, 1634, 1638, 1639, 1643, 1644, 1645, 1646, 1661, 1662, 1667, 1668, 1672, 1674, 1678, 1680, 1682, 1706, 1707, 1709, 1711, 1716, 1718, 1720, 1725, 1726, 1732, 1731, 1735, 1739, 1741, 1743, 1749, 1750, 1755, 1760, 1762, 1767, 1769, 1770, 1772, 1777, 1779, 1781, 1786, 1788, 1793, 1798, 1806, 1812, 1811, 1825, 1826, 1831, 1832, 1836, 1841, 1846, 1854, 1859, 1870, 1871, 1882, 1883, 1889, 1890, 1894, 1895, 1896, 1899, 1898, 1909, 1914, 1921, 1927, 1936, 1942, 1948, 1954, 1960, 1968, 1974, 1982, 1988, 1997, 1998, 1999, 2003, 2007, 2009, 2012, 2014, 2018, 2019, 2023, 2027, 2028, 2031, 2033, 2034, 2038, 2039, 2040, 2041, 2076, 2077, 2078, 2079, 2083, 2088, 2093, 2095, 2097, 2102, 2104, 2106, 2108, 2113, 2115, 2125, 2126, 2127, 2131, 2133, 2135, 2140, 2142, 2144, 2149, 2151, 2153, 2162, 2163, 2164, 2168, 2170, 2172, 2177, 2179, 2181, 2186, 2188, 2190, 2205, 2206, 2207, 2208, 2212, 2217, 2222, 2224, 2226, 2231, 2233, 2235, 2237, 2242, 2244, 2246, 2256, 2257, 2258, 2259, 2263, 2265, 2267, 2272, 2274, 2276, 2278, 2283, 2285, 2287, 2318, 2319, 2320, 2321, 2325, 2333, 2335, 2337, 2342, 2344, 2349, 2351, 2365, 2366, 2367, 2371, 2373, 2375, 2377, 2379, 2384, 2385, 2387, 2389, 2394, 2396, 2398, 2404, 2406, 2408, 2412, 2414, 2416, 2418, 2432, 2433, 2434, 2438, 2440, 2442, 2444, 2446, 2451, 2452, 2454, 2456, 2461, 2463, 2465, 2471, 2472, 2474, 2484, 2487, 2489, 2492, 2494, 2496, 2509, 2510, 2511, 2515, 2517, 2519, 2521, 2523, 2528, 2529, 2531, 2533, 2538, 2540, 2548, 2549, 2550, 2555, 2556, 2560, 2562, 2564, 2566, 2568, 2570, 2577, 2579, 2581, 2583, 2585, 2587, 2589, 2591, 2593, 2595, 2600, 2602, 2604, 2609, 2635, 2636, 2638, 2642, 2643, 2647, 2649, 2651, 2653, 2655, 2657, 2664, 2666, 2668, 2670, 2672, 2674, 2679, 2684, 2686, 2688, 2708, 2710, 2715, 2716 }; #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", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "TYPE", "FTYPE", "DTYPE", "CONTEXT", "SIZEOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "FALLTHRU", "TRY", "CATCH", "FINALLY", "THROW", "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", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "':'", "'!'", "'*'", "'&'", "'+'", "'-'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "unary_expression", "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", "tuple", "tuple_expression_list", "assignment_operator", "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_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "label_declaration_opt", "label_declaration_list", "label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "storage_class_name", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "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", "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_typedef_name", "no_01_identifier_or_typedef_name", "no_attr_identifier_or_typedef_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "type_parameter_list", "type_parameter", "$@2", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "context_specifier", "$@3", "context_declaration_list", "context_declaration", "new_context_declaring_list", "context_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@4", "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", "typedef_redeclarator", "paren_typedef", "typedef_ptr", "typedef_array", "typedef_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "typedef_parameter_redeclarator", "typedef", "typedef_parameter_ptr", "typedef_parameter_array", "typedef_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, 40, 41, 91, 93, 46, 123, 125, 44, 58, 33, 42, 38, 43, 45, 126, 47, 37, 60, 62, 94, 124, 63, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 125, 126, 127, 128, 128, 128, 129, 129, 129, 130, 130, 131, 132, 132, 133, 133, 134, 134, 134, 134, 134, 134, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 136, 136, 137, 137, 137, 137, 137, 138, 138, 139, 139, 139, 139, 139, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 141, 141, 141, 141, 142, 142, 142, 143, 143, 143, 143, 144, 144, 144, 145, 145, 145, 146, 146, 146, 146, 146, 147, 147, 147, 148, 148, 149, 149, 150, 150, 151, 151, 152, 152, 153, 153, 153, 153, 154, 155, 155, 155, 155, 156, 156, 157, 157, 157, 157, 158, 158, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 160, 160, 161, 161, 162, 162, 162, 162, 162, 162, 162, 162, 163, 164, 164, 165, 165, 166, 166, 166, 166, 167, 167, 168, 169, 169, 169, 169, 169, 169, 170, 170, 170, 171, 171, 172, 172, 173, 173, 174, 175, 175, 176, 176, 177, 177, 178, 178, 178, 178, 179, 179, 180, 180, 181, 181, 181, 182, 182, 183, 183, 183, 183, 183, 183, 183, 183, 183, 184, 184, 184, 185, 185, 185, 186, 186, 187, 188, 188, 188, 188, 188, 189, 189, 189, 189, 190, 190, 191, 191, 192, 193, 193, 194, 194, 195, 195, 196, 196, 197, 197, 198, 198, 199, 199, 200, 200, 201, 201, 202, 202, 202, 202, 202, 203, 203, 203, 204, 204, 204, 205, 205, 205, 205, 205, 206, 206, 206, 206, 207, 207, 208, 208, 208, 209, 209, 209, 209, 209, 210, 210, 211, 211, 211, 211, 212, 212, 213, 213, 213, 213, 214, 214, 214, 214, 215, 215, 216, 216, 217, 217, 218, 218, 218, 218, 218, 219, 218, 220, 220, 220, 221, 221, 222, 223, 223, 223, 223, 223, 223, 223, 223, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 225, 225, 225, 225, 225, 226, 226, 227, 227, 227, 227, 228, 228, 228, 228, 229, 229, 229, 229, 230, 230, 230, 231, 231, 231, 231, 232, 232, 232, 233, 233, 234, 234, 234, 234, 234, 234, 234, 234, 234, 235, 235, 236, 236, 237, 237, 237, 237, 238, 238, 238, 238, 239, 239, 240, 240, 240, 240, 240, 241, 241, 242, 243, 244, 244, 244, 245, 245, 246, 246, 247, 247, 248, 248, 248, 248, 248, 249, 249, 249, 249, 250, 250, 251, 251, 252, 252, 253, 253, 253, 253, 254, 254, 254, 254, 254, 255, 255, 255, 255, 255, 256, 256, 257, 257, 258, 258, 259, 259, 259, 260, 260, 260, 261, 261, 261, 262, 262, 262, 263, 263, 263, 263, 264, 264, 265, 265, 266, 266, 266, 266, 267, 267, 268, 268, 269, 269, 269, 269, 269, 270, 270, 270, 270, 271, 271, 271, 272, 272, 274, 273, 273, 275, 275, 275, 276, 276, 277, 277, 277, 278, 278, 278, 278, 279, 279, 279, 280, 280, 281, 281, 282, 283, 282, 284, 284, 285, 285, 286, 286, 286, 287, 287, 288, 288, 289, 289, 290, 290, 291, 291, 291, 292, 291, 291, 293, 293, 293, 294, 294, 294, 294, 294, 294, 294, 294, 294, 295, 295, 295, 296, 297, 297, 298, 298, 299, 299, 300, 301, 301, 302, 302, 302, 303, 303, 303, 303, 304, 304, 304, 304, 305, 305, 306, 306, 306, 307, 307, 307, 307, 308, 308, 309, 309, 309, 310, 310, 310, 311, 311, 311, 312, 312, 312, 313, 313, 313, 314, 314, 314, 315, 315, 315, 316, 316, 316, 317, 317, 317, 317, 318, 318, 319, 319, 319, 320, 320, 320, 320, 321, 321, 321, 322, 322, 322, 322, 323, 323, 323, 324, 324, 324, 324, 325, 325, 325, 326, 326, 326, 326, 327, 328, 328, 328, 329, 329, 330, 330, 331, 331, 331, 332, 332, 332, 332, 332, 333, 333, 333, 333, 334, 334, 334, 335, 335, 335, 336, 336, 336, 336, 337, 337, 337, 338, 338, 338, 338, 338, 339, 339, 339, 339, 340, 340, 340, 341, 341, 341, 342, 342, 342, 342, 342, 342, 343, 343, 343, 344, 344, 344, 344, 344, 345, 345, 345, 345, 346, 346, 347, 347, 347, 348, 348, 349, 349, 349, 349, 349, 349, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 351, 351, 351, 351, 352, 352, 352, 353, 353, 354, 354, 354, 354, 354, 354, 355, 355, 355, 355, 355, 355, 356, 357, 357, 357, 358, 358, 359, 359 }; /* 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, 2, 1, 1, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 1, 3, 0, 1, 3, 7, 9, 1, 3, 1, 3, 7, 3, 7, 1, 2, 2, 2, 2, 2, 2, 2, 4, 1, 4, 4, 2, 4, 2, 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, 3, 2, 0, 1, 4, 5, 6, 7, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2, 3, 3, 4, 1, 5, 6, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 0, 1, 1, 3, 4, 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, 10, 10, 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, 5, 9, 7, 10, 12, 7, 13, 2, 2, 1, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 6, 2, 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, 1, 4, 1, 2, 3, 4, 2, 2, 1, 2, 2, 5, 5, 7, 6, 1, 2, 2, 3, 4, 5, 2, 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, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 4, 5, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 4, 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, 5, 2, 6, 3, 2, 5, 2, 6, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 5, 6, 2, 5, 6, 2, 5, 7, 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[] = { 279, 279, 300, 298, 301, 299, 302, 303, 285, 287, 286, 0, 288, 314, 306, 311, 309, 310, 308, 307, 312, 313, 315, 316, 317, 531, 531, 531, 0, 0, 0, 279, 279, 289, 304, 305, 7, 344, 0, 8, 13, 14, 0, 2, 279, 549, 9, 509, 507, 231, 3, 441, 3, 244, 0, 3, 3, 3, 232, 3, 0, 0, 0, 280, 281, 283, 279, 292, 295, 297, 325, 271, 318, 323, 272, 333, 273, 340, 337, 347, 0, 0, 348, 274, 458, 3, 3, 0, 2, 503, 508, 513, 284, 0, 0, 531, 561, 531, 2, 572, 573, 574, 279, 0, 714, 715, 0, 12, 279, 0, 255, 256, 0, 280, 275, 276, 277, 278, 510, 290, 380, 532, 533, 358, 359, 12, 432, 433, 11, 428, 431, 0, 487, 482, 473, 432, 433, 0, 0, 512, 0, 280, 279, 0, 0, 0, 0, 0, 0, 0, 0, 279, 2, 0, 716, 280, 566, 578, 720, 713, 711, 718, 0, 0, 238, 2, 0, 516, 426, 427, 425, 0, 0, 0, 0, 531, 0, 588, 0, 0, 529, 525, 531, 546, 531, 531, 526, 2, 527, 531, 585, 531, 531, 0, 0, 0, 279, 279, 298, 345, 0, 2, 279, 245, 282, 293, 326, 338, 0, 2, 0, 441, 246, 280, 319, 334, 341, 459, 0, 2, 0, 296, 320, 327, 328, 0, 335, 339, 342, 346, 2, 279, 350, 0, 383, 460, 464, 0, 0, 0, 1, 279, 2, 514, 560, 562, 279, 2, 724, 280, 727, 529, 529, 280, 0, 0, 0, 258, 531, 526, 2, 279, 0, 0, 279, 534, 2, 485, 2, 538, 0, 0, 0, 0, 17, 56, 4, 5, 6, 15, 0, 0, 0, 279, 2, 0, 279, 62, 63, 64, 65, 19, 18, 20, 23, 47, 66, 0, 69, 73, 76, 79, 84, 87, 89, 91, 93, 95, 97, 102, 479, 734, 439, 478, 0, 437, 438, 0, 550, 565, 568, 571, 577, 580, 583, 2, 279, 0, 3, 413, 0, 421, 280, 279, 292, 318, 272, 333, 340, 3, 3, 395, 399, 409, 414, 458, 279, 415, 689, 690, 279, 416, 418, 279, 2, 567, 579, 712, 2, 2, 233, 2, 0, 0, 443, 442, 137, 2, 2, 235, 2, 2, 234, 2, 266, 2, 267, 0, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 551, 590, 0, 441, 2, 545, 554, 643, 547, 548, 517, 279, 2, 584, 593, 586, 587, 0, 261, 279, 279, 324, 0, 280, 279, 279, 717, 721, 719, 518, 279, 529, 239, 247, 294, 0, 2, 519, 279, 483, 321, 322, 268, 336, 343, 279, 279, 2, 372, 279, 360, 0, 0, 366, 711, 279, 732, 386, 0, 461, 484, 236, 237, 504, 279, 423, 0, 279, 221, 0, 2, 223, 0, 280, 0, 241, 2, 242, 263, 0, 0, 2, 279, 529, 279, 470, 472, 471, 0, 0, 734, 0, 279, 0, 279, 474, 279, 544, 542, 543, 541, 0, 536, 539, 66, 101, 0, 279, 54, 50, 279, 59, 279, 279, 48, 49, 61, 2, 124, 0, 0, 435, 0, 434, 279, 52, 53, 16, 0, 30, 31, 35, 2, 0, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 2, 629, 440, 626, 531, 531, 634, 462, 279, 2, 569, 2, 570, 0, 581, 582, 279, 2, 279, 0, 691, 280, 695, 686, 687, 693, 279, 0, 618, 2, 2, 651, 531, 734, 601, 531, 531, 734, 531, 615, 531, 531, 665, 422, 648, 531, 531, 656, 663, 279, 417, 280, 0, 0, 279, 701, 280, 706, 734, 698, 279, 703, 734, 0, 279, 279, 0, 3, 17, 2, 0, 0, 445, 732, 0, 0, 451, 225, 0, 279, 0, 0, 0, 529, 553, 557, 559, 589, 592, 596, 599, 552, 591, 0, 269, 3, 0, 279, 262, 0, 0, 0, 0, 260, 0, 2, 0, 0, 243, 520, 279, 0, 439, 3, 3, 0, 0, 279, 0, 0, 675, 370, 373, 377, 531, 377, 680, 376, 672, 531, 531, 349, 361, 369, 362, 531, 364, 367, 279, 733, 0, 0, 384, 732, 280, 3, 402, 3, 406, 405, 575, 0, 515, 279, 3, 3, 279, 421, 280, 3, 415, 416, 2, 0, 0, 0, 469, 291, 279, 465, 467, 3, 2, 2, 0, 486, 3, 0, 538, 126, 0, 210, 0, 0, 2, 0, 0, 36, 0, 0, 279, 21, 0, 22, 0, 675, 436, 0, 106, 0, 3, 2, 28, 2, 0, 33, 0, 2, 26, 103, 104, 70, 71, 72, 74, 75, 77, 78, 82, 83, 80, 81, 85, 86, 88, 90, 92, 94, 96, 0, 0, 735, 279, 0, 0, 0, 630, 631, 627, 628, 481, 480, 279, 0, 0, 0, 280, 279, 279, 645, 688, 344, 0, 722, 279, 725, 644, 2, 279, 0, 0, 0, 0, 0, 0, 0, 0, 3, 652, 604, 619, 653, 2, 600, 607, 419, 602, 603, 420, 2, 614, 622, 616, 617, 649, 650, 664, 692, 696, 694, 734, 253, 2, 728, 2, 410, 700, 705, 411, 279, 3, 389, 3, 3, 3, 441, 0, 3, 3, 2, 453, 450, 733, 0, 446, 2, 449, 452, 0, 279, 226, 248, 3, 257, 259, 0, 441, 2, 555, 556, 2, 594, 595, 0, 3, 0, 521, 3, 330, 329, 332, 331, 463, 279, 0, 522, 0, 523, 2, 629, 0, 0, 363, 365, 2, 0, 0, 0, 0, 0, 379, 676, 677, 374, 378, 375, 673, 674, 368, 372, 351, 386, 381, 387, 0, 0, 0, 424, 224, 0, 0, 3, 2, 651, 417, 0, 511, 0, 734, 473, 0, 279, 279, 279, 0, 535, 537, 127, 0, 206, 0, 0, 211, 212, 55, 60, 279, 0, 58, 57, 0, 0, 125, 676, 0, 67, 68, 107, 112, 3, 108, 106, 0, 0, 3, 25, 35, 3, 0, 99, 0, 3, 633, 637, 640, 632, 3, 576, 108, 2, 279, 3, 3, 280, 0, 2, 2, 723, 726, 0, 3, 606, 610, 613, 621, 655, 659, 662, 279, 0, 3, 605, 620, 654, 279, 279, 412, 279, 279, 279, 0, 0, 0, 0, 240, 108, 0, 101, 0, 3, 3, 0, 447, 0, 444, 0, 0, 229, 279, 0, 0, 126, 0, 0, 0, 0, 0, 126, 0, 0, 0, 2, 0, 0, 3, 128, 129, 2, 139, 130, 131, 132, 133, 134, 135, 141, 143, 0, 0, 0, 270, 279, 279, 531, 641, 0, 0, 0, 524, 630, 0, 0, 279, 279, 679, 683, 685, 678, 371, 385, 382, 563, 2, 647, 646, 0, 652, 2, 466, 468, 488, 3, 496, 497, 0, 2, 492, 3, 3, 0, 0, 540, 0, 0, 210, 0, 3, 37, 108, 732, 106, 0, 3, 644, 42, 3, 40, 3, 34, 0, 3, 98, 100, 0, 2, 635, 636, 0, 697, 279, 702, 279, 0, 0, 0, 3, 279, 279, 279, 621, 0, 2, 608, 609, 2, 623, 2, 657, 658, 0, 666, 0, 3, 0, 3, 3, 3, 3, 397, 396, 400, 0, 731, 2, 2, 730, 109, 0, 0, 0, 0, 3, 448, 3, 0, 227, 142, 3, 280, 279, 0, 0, 0, 0, 2, 187, 0, 185, 0, 0, 0, 0, 0, 0, 191, 0, 279, 531, 147, 144, 279, 0, 0, 252, 264, 3, 3, 530, 642, 597, 279, 279, 279, 353, 356, 0, 2, 681, 682, 279, 251, 279, 0, 499, 476, 279, 0, 0, 475, 490, 0, 207, 0, 213, 106, 0, 0, 113, 110, 0, 0, 0, 0, 0, 0, 24, 0, 638, 279, 564, 699, 704, 707, 708, 709, 0, 3, 3, 660, 279, 279, 279, 3, 3, 0, 668, 0, 0, 0, 0, 729, 279, 279, 3, 528, 109, 455, 0, 0, 230, 280, 0, 0, 0, 0, 279, 188, 186, 0, 183, 189, 0, 0, 0, 192, 195, 193, 190, 0, 126, 140, 138, 228, 0, 0, 0, 279, 279, 108, 279, 404, 408, 407, 0, 493, 2, 494, 2, 495, 489, 279, 214, 0, 0, 3, 644, 32, 111, 2, 45, 2, 43, 41, 29, 109, 27, 3, 710, 0, 0, 3, 3, 3, 0, 0, 667, 669, 611, 624, 254, 2, 394, 3, 393, 0, 457, 454, 126, 0, 0, 126, 3, 0, 126, 184, 0, 2, 200, 194, 0, 108, 136, 558, 598, 0, 352, 279, 3, 2, 0, 0, 2, 208, 215, 0, 0, 0, 0, 0, 0, 250, 249, 0, 0, 0, 670, 671, 279, 0, 456, 148, 0, 0, 2, 161, 126, 150, 0, 178, 0, 126, 0, 2, 152, 0, 2, 2, 279, 0, 354, 0, 279, 498, 500, 491, 0, 0, 111, 38, 3, 3, 639, 612, 625, 661, 398, 126, 154, 157, 0, 156, 160, 3, 163, 162, 0, 126, 180, 126, 3, 0, 279, 0, 2, 279, 279, 684, 2, 209, 216, 0, 0, 0, 149, 0, 0, 159, 217, 164, 2, 219, 179, 0, 182, 168, 196, 3, 201, 205, 0, 279, 355, 279, 0, 39, 46, 44, 155, 158, 126, 0, 165, 279, 126, 126, 0, 169, 0, 0, 675, 202, 203, 204, 197, 3, 357, 279, 145, 166, 151, 126, 220, 181, 176, 174, 170, 153, 126, 0, 676, 0, 0, 146, 167, 177, 171, 175, 174, 172, 3, 0, 477, 173, 198, 3, 199 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 814, 456, 291, 45, 129, 130, 292, 293, 294, 295, 760, 742, 1131, 1132, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 1034, 506, 974, 311, 975, 533, 953, 1059, 1523, 1061, 1062, 1063, 1064, 1524, 1065, 1066, 1454, 1455, 1420, 1421, 1422, 1506, 1507, 1511, 1512, 1541, 1542, 1067, 1378, 1068, 1069, 1310, 1311, 1312, 1492, 1070, 957, 958, 959, 1400, 1484, 1485, 457, 458, 875, 876, 1042, 48, 49, 50, 51, 52, 329, 153, 55, 56, 57, 58, 59, 331, 61, 62, 253, 64, 65, 264, 333, 334, 68, 69, 70, 71, 114, 73, 196, 336, 115, 76, 116, 78, 79, 80, 437, 438, 439, 440, 677, 919, 678, 81, 82, 444, 698, 856, 857, 339, 340, 701, 702, 703, 341, 342, 343, 344, 454, 171, 131, 132, 510, 313, 164, 628, 629, 630, 631, 632, 83, 117, 477, 478, 945, 479, 267, 483, 314, 85, 133, 134, 86, 1336, 1111, 1112, 1113, 1114, 87, 88, 719, 89, 263, 90, 91, 180, 1036, 664, 393, 121, 92, 489, 490, 491, 181, 258, 183, 184, 185, 259, 95, 96, 97, 98, 99, 100, 101, 188, 189, 190, 191, 192, 825, 590, 591, 592, 593, 594, 595, 596, 597, 558, 559, 560, 561, 682, 102, 599, 600, 601, 602, 603, 604, 918, 684, 685, 686, 578, 347, 348, 349, 350, 441, 159, 104, 105, 351, 352, 696, 555 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1306 static const yytype_int16 yypact[] = { 6112, 10121, -1306, 45, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 27, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 94, 94, 94, 808, 829, 69, 7553, 431, -1306, -1306, -1306, -1306, -1306, 134, -1306, -1306, -1306, 1527, -1306, 4935, -1306, -1306, -1306, -1306, -1306, -1306, 26, 185, -1306, 1590, -1306, -1306, -1306, -1306, 194, 544, 310, 103, 4656, -1306, -1306, 9491, 1148, -1306, -1306, -1306, 779, 321, 3969, 180, 1184, 779, 1266, -1306, -1306, 614, 276, -1306, 779, 1398, 228, -1306, 350, 396, -1306, -1306, -1306, -1306, 244, 185, 94, -1306, 94, -1306, -1306, -1306, -1306, 10357, 1590, -1306, -1306, 1590, -1306, 10416, 306, -1306, -1306, 946, 10475, -1306, 431, 431, 431, -1306, -1306, -1306, 94, -1306, -1306, -1306, 360, 406, 415, -1306, -1306, -1306, 427, -1306, -1306, -1306, -1306, -1306, 436, 460, -1306, 463, 431, 8930, 3037, 712, 484, 502, 510, 513, 524, 541, 6995, -1306, 566, -1306, 9560, -1306, -1306, -1306, -1306, 571, -1306, 234, 4195, -1306, 344, 251, -1306, -1306, -1306, -1306, 601, 345, 349, 389, 94, 611, -1306, 544, 2525, 633, -1306, 129, -1306, 94, 94, 185, -1306, -1306, 222, -1306, 94, 94, 2900, 637, 644, 431, 11276, -1306, -1306, 661, -1306, 4935, -1306, -1306, 779, -1306, -1306, 185, -1306, 1590, 26, -1306, 7796, -1306, 431, 431, 431, 185, -1306, 808, -1306, 6454, -1306, -1306, 657, 431, -1306, 431, -1306, -1306, 10180, 647, 829, 671, 431, -1306, 808, 669, 673, -1306, 7553, 752, -1306, -1306, -1306, 9361, -1306, -1306, 5911, -1306, 633, 191, 10475, 5789, 946, 2900, -1306, 291, -1306, -1306, 10416, 1590, 704, 2725, -1306, -1306, 255, -1306, 11839, 11556, 11613, 11556, 11670, -1306, 734, -1306, -1306, -1306, -1306, 11727, 11727, 752, 8612, -1306, 11556, 9036, -1306, -1306, -1306, -1306, -1306, -1306, 770, -1306, 468, 1857, 11556, -1306, 446, 717, 853, 280, 793, 751, 737, 733, 795, 166, -1306, -1306, 778, 551, -1306, 298, -1306, -1306, 3037, -1306, -1306, 401, 802, -1306, 490, 802, -1306, 8718, 811, -1306, -1306, 1169, 608, 8252, 11276, 779, -1306, 779, 431, 431, -1306, -1306, -1306, -1306, -1306, -1306, 431, 10534, 1590, -1306, -1306, 10593, 1775, -1306, 6995, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 4717, 11556, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 946, -1306, 807, 826, 840, 846, 849, 855, 868, 875, 2525, -1306, -1306, 820, 26, -1306, -1306, -1306, 881, -1306, -1306, -1306, 9361, -1306, -1306, -1306, -1306, -1306, 2900, -1306, 8930, 8930, -1306, 946, 12073, 8930, 7904, -1306, -1306, -1306, -1306, 9361, 191, -1306, -1306, 779, 185, -1306, -1306, 9361, -1306, 6576, -1306, -1306, 431, 431, 8506, 10652, -1306, 1231, 3253, -1306, 400, 418, 829, -1306, 10180, 884, 864, 829, 431, -1306, -1306, -1306, -1306, 11012, -1306, 521, 8172, -1306, 185, 891, -1306, 946, 11914, 5969, -1306, -1306, -1306, -1306, 916, 2900, -1306, 8317, 633, 7444, -1306, -1306, -1306, 1642, 538, 778, 829, 2725, 700, 10416, -1306, 2725, -1306, -1306, -1306, -1306, 572, -1306, 901, -1306, -1306, 122, 8612, -1306, -1306, 8612, -1306, 8824, 8612, -1306, -1306, -1306, -1306, -1306, 581, 912, 557, 918, -1306, 6659, -1306, -1306, -1306, 100, -1306, -1306, 6125, -1306, 113, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 5789, 5789, -1306, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 11556, 4485, 5789, -1306, 551, 858, -1306, -1306, 94, 94, -1306, -1306, 8930, -1306, -1306, -1306, 881, 752, -1306, 881, 6659, -1306, 9142, 924, -1306, 10711, -1306, -1306, 571, -1306, 9696, 928, -1306, 1037, -1306, 2282, 292, 778, -1306, 94, 94, 778, 300, -1306, 94, 94, 881, -1306, -1306, 94, 94, -1306, 802, 10770, 1590, 12045, 172, 352, 10770, -1306, 10947, -1306, 778, -1306, 10534, -1306, 171, 931, 7969, 7969, 1590, 4778, 929, -1306, 372, 935, -1306, 956, 4195, 607, -1306, 1042, 1590, 7969, 752, 946, 752, 633, 763, 802, -1306, -1306, 797, 802, -1306, -1306, -1306, 997, -1306, 11499, 185, 11012, -1306, 589, 976, 605, 984, -1306, 626, -1306, 986, 185, -1306, -1306, 9361, 185, 1612, 980, 983, 435, 443, 7107, 1354, 11556, 2791, -1306, -1306, 987, 87, 987, -1306, -1306, -1306, 94, 94, -1306, -1306, 829, -1306, 94, -1306, -1306, 9764, 829, 996, 11556, -1306, 884, 12045, -1306, -1306, 1003, -1306, -1306, -1306, 752, -1306, 11980, 11556, -1306, 7969, 585, 8252, -1306, -1306, 571, 1001, 1002, 1642, 3314, -1306, -1306, 2725, -1306, -1306, 980, -1306, -1306, 1010, -1306, 980, 1013, 11839, 5789, 992, 1044, 1018, 1019, -1306, 1015, 1025, -1306, 1026, 1027, 6771, -1306, 5789, -1306, 557, 926, -1306, 5040, 5789, 1029, 1022, -1306, -1306, -1306, 629, -1306, 5789, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 446, 446, 717, 717, 853, 853, 853, 853, 280, 280, 793, 751, 737, 733, 795, 11556, 886, -1306, 11012, 1032, 1034, 1035, 858, -1306, -1306, -1306, -1306, -1306, 11012, 11499, 653, 1038, 7219, 9248, 6995, -1306, -1306, 1030, 1043, -1306, 10357, -1306, -1306, 1037, 11012, 923, 1045, 1048, 1049, 1056, 1057, 1058, 1060, 3551, 2282, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 881, -1306, -1306, -1306, 778, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 10239, -1306, -1306, 1061, 1062, -1306, 26, 1041, 1022, 4778, -1306, -1306, -1306, 4717, 1039, -1306, -1306, -1306, -1306, 829, 6270, 1111, -1306, -1306, -1306, -1306, 1047, 26, -1306, -1306, 881, -1306, -1306, 881, 347, 11556, 1063, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 6995, 899, -1306, 185, -1306, 1612, 2196, 1070, 1074, -1306, -1306, -1306, 1077, 953, 1076, 1086, 1087, -1306, 2791, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 1231, -1306, 864, -1306, -1306, 1083, 1089, 1084, -1306, -1306, 1095, 1107, -1306, 585, 1172, -1306, 375, -1306, 3314, 778, -1306, 1091, 2725, 10829, 8930, 1114, -1306, -1306, 1109, 1116, -1306, 1118, 295, 1112, -1306, 1117, 1117, 6659, 5789, -1306, -1306, 1117, 1120, -1306, 926, 4717, -1306, -1306, -1306, -1306, 1119, 5240, 5789, 1121, 752, 4778, -1306, 6125, -1306, 752, -1306, 5789, -1306, 828, 802, -1306, -1306, -1306, -1306, 9389, -1306, 8718, -1306, -1306, 7331, 1127, -1306, -1306, -1306, -1306, 1131, -1306, 852, 802, -1306, 870, 879, 802, -1306, 431, 1135, 5490, -1306, -1306, -1306, 11012, 11012, -1306, 8382, 8382, 7969, 1133, 1132, 1134, 1139, -1306, -1306, 1144, 596, 62, 1022, -1306, 752, -1306, 4195, -1306, 5789, 458, -1306, 6547, 1149, 1151, 11442, 1152, 1153, 52, 75, 37, 5789, 1158, 185, 4069, -1306, 1113, 1138, -1306, -1306, -1306, 1156, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 829, 1162, 5789, -1306, 11012, 11012, 94, 802, 1164, 1163, 1030, -1306, 2196, 819, 829, 6659, 10888, 887, 802, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 1179, 1172, -1306, -1306, 1165, -1306, 980, -1306, -1306, 946, 1167, -1306, -1306, -1306, 662, 1183, -1306, 11556, 1161, 1044, 1044, 1182, -1306, 9823, 956, 5789, 1189, 1119, 540, 74, 1186, -1306, 1182, -1306, 1191, 1186, -1306, -1306, 1195, -1306, -1306, 881, 1197, -1306, 10534, -1306, 6883, 1198, 1200, 1205, -1306, 10298, 7969, 7969, -1306, 1208, -1306, -1306, 881, -1306, -1306, -1306, -1306, 881, 5789, -1306, 5789, 11556, 1209, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 1213, -1306, -1306, -1306, -1306, -1306, 11556, 11556, 1212, 1214, 1186, -1306, -1306, 829, -1306, -1306, -1306, 3779, 10829, 5789, 5789, 1272, 5789, -1306, -1306, 1203, -1306, 1204, 5789, 1206, 1207, 5789, 1006, -1306, 1215, 6659, 94, -1306, -1306, 6270, 1222, 477, -1306, -1306, -1306, -1306, -1306, 881, -1306, 9628, 8930, 10180, 1216, -1306, 1229, -1306, -1306, 881, 11248, -1306, 8317, 1217, -1306, -1306, 10829, 486, 495, -1306, 1230, 1245, -1306, 308, -1306, 5789, 1244, 1242, -1306, -1306, 1248, 136, 146, 752, 1251, 1254, -1306, 1256, -1306, 11012, -1306, -1306, -1306, -1306, -1306, -1306, 1257, -1306, -1306, -1306, 11012, 11012, 11012, -1306, -1306, 1260, -1306, 1264, 1267, 1268, 646, -1306, 8036, 8144, -1306, -1306, 715, -1306, 1270, 1273, -1306, 8447, 690, 721, 1275, 725, 6425, -1306, -1306, 508, -1306, -1306, 730, 1277, 185, 1316, 1326, -1306, -1306, 1278, 11442, -1306, -1306, -1306, 1279, 1282, 740, 9885, 10180, 5774, 11012, -1306, -1306, -1306, 1281, -1306, -1306, -1306, -1306, -1306, -1306, 10829, -1306, 1261, 1315, 1119, 357, -1306, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 1283, -1306, -1306, -1306, 1289, 1293, -1306, -1306, -1306, 1295, 1296, -1306, -1306, -1306, -1306, -1306, -1306, -1306, 1302, -1306, 1301, -1306, -1306, 11442, 130, 5789, 11442, -1306, 1304, 5789, -1306, 155, 1328, -1306, -1306, 1314, 9458, -1306, -1306, -1306, 320, -1306, 9944, -1306, -1306, 1590, 946, 1311, -1306, -1306, 742, 1320, 5789, 752, 752, 1325, -1306, -1306, 1330, 1331, 1334, -1306, -1306, 8382, 1329, -1306, 1401, 11556, 1333, -1306, -1306, 11362, -1306, 745, -1306, 1319, 11442, 1324, -1306, -1306, 1336, -1306, 1355, 10180, 1343, -1306, 1352, 10829, -1306, -1306, -1306, 1332, 1387, 1358, -1306, 1186, 1186, -1306, -1306, -1306, -1306, -1306, 11442, 118, -1306, 954, -1306, -1306, 7662, -1306, -1306, 1339, 5789, -1306, 5789, 7662, 185, 10652, 1362, -1306, 10003, 10180, -1306, 1364, -1306, -1306, 5789, 1365, 1370, -1306, 11556, 11556, -1306, -1306, 1024, 101, -1306, -1306, 1356, -1306, 1024, -1306, -1306, 1567, 752, 185, 10652, -1306, 10062, 1375, -1306, -1306, -1306, -1306, -1306, 11362, 1372, 1024, 7731, 5789, 11282, 1377, 1024, 1380, 1567, 2919, -1306, -1306, -1306, -1306, -1306, -1306, 8930, -1306, 11127, -1306, 11362, -1306, -1306, 1361, 11046, -1306, -1306, 11282, 185, 2919, 1385, 747, -1306, 11127, -1306, -1306, -1306, 11046, -1306, -1306, 185, -1306, -1306, -1306, -1306, -1306 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1306, 4178, 3354, -1306, 1595, -1306, -1, 2, 839, -1306, -1306, -1306, -497, -915, -215, 4919, -1306, 975, 537, 542, 346, 554, 941, 943, 950, 945, 949, -1306, 17, -251, 5020, 377, -700, -894, -1306, -198, -684, -459, -1306, 77, -1306, 290, -1062, -1306, -1306, 40, -1306, -1305, -1076, 127, -1306, -1306, -1306, -1306, -21, -1283, -1306, -1306, -1306, -1306, -1306, -1306, 216, 31, 14, 408, -1306, 414, -1306, 76, -1306, -305, -1306, -1306, -1306, 467, -851, -1306, -1306, 8, -929, 10, 2660, -1306, -1306, -1306, -110, -1306, 299, 597, -29, 1428, 4046, -1306, -1306, 55, 49, 79, -229, 1809, -1306, 1752, -1306, -1306, 66, 2021, -1306, 2437, 1677, -1306, -1306, -412, -376, 1122, 1124, 625, 871, -270, -1306, -1306, 1105, 627, -558, -1306, -460, -395, 48, -1306, -1306, -855, -990, 470, 652, 990, -16, -1306, 727, -5, -244, -195, -127, 583, 692, -1306, 930, -1306, 2734, -373, 841, -1306, -1306, 619, -1306, -405, -1306, 85, -1306, -1306, -1306, -1245, 327, -1306, -1306, -1306, 1097, -1306, 28, -1306, -1306, -832, -104, -1279, -133, 2533, -1306, 3317, -1306, 836, -1306, -122, 1439, -163, -160, -157, 4, -41, -37, -36, 587, 42, 51, 90, -121, -155, -152, -151, -149, -294, -486, -446, -427, -545, -1306, -531, -1306, -1306, -525, -485, -484, -477, 1927, 4727, -549, -504, -503, -475, -461, -1306, -386, -662, -654, -649, -575, -248, -333, -1306, -1306, 226, 125, -50, -1306, 339, 169, -590, -241 }; /* 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 -507 static const yytype_int16 yytable[] = { 109, 145, 46, 140, 94, 146, 147, 660, 257, 110, 53, 111, 913, 613, 47, 380, 420, 617, 381, 494, 914, 382, 761, 383, 1071, 915, 384, 385, 670, 386, 844, 694, 793, 46, 1176, 94, 365, 589, 827, 869, 486, 53, 826, 1072, 46, 47, 46, 391, 156, 67, 683, 954, 250, 972, 819, 66, 46, 388, 389, 139, 669, 688, 46, 860, 186, 46, 74, 208, 46, 1136, 218, 789, 790, 203, 211, 715, 212, 878, 579, 791, 67, 820, 821, 1128, 148, 507, 66, 251, 913, 406, 252, 1397, 380, 149, 652, 381, 914, 74, 382, 816, 383, 915, 107, 384, 385, 46, 386, 727, 46, 930, 822, 732, 205, 663, 46, 1193, 1460, 107, 463, 465, 118, 667, 1187, 752, 30, 103, 103, 830, 119, 167, 194, 30, 150, 837, 388, 389, 459, 145, 1456, 817, 107, 146, 147, -218, -218, 46, 221, 156, 1205, 163, 222, 1183, 1256, 226, 937, 228, 103, 46, 818, 355, 858, 858, 235, 656, 658, 107, 30, 409, 1174, 1175, 138, 243, 1417, 1418, 195, 858, 1201, 1184, 107, 1257, 46, 46, 722, 156, 2, 198, 4, 5, 6, 7, 392, 103, 1473, 1192, 419, 46, 650, 1417, 1418, 1203, 1460, 107, 1456, 757, 46, 1460, 156, 1480, -218, 655, 657, 107, 46, 161, 145, 46, 763, 423, 146, 147, 148, 1460, 716, 421, 736, 859, 859, 1531, 1460, 149, 242, 737, 392, 1184, 816, 142, 1419, 725, 731, 1344, 859, 453, 34, 46, 35, 94, 471, 1176, 390, 1346, 1544, 53, 858, 488, 552, 47, 744, 46, 46, 30, 156, 1428, 422, 398, 46, 647, 648, 991, 150, 451, 158, 46, 464, 639, 817, 1019, 847, 161, 715, 1018, 848, 504, 1005, 853, 221, 417, 1138, 493, 553, 459, 67, 165, 464, 818, 554, 425, 66, 507, 1176, 60, 507, 654, 175, 507, -3, 427, 659, 74, 459, 820, 821, 316, 74, 193, 679, 681, 459, 859, 688, 46, 797, 355, 448, 400, -275, 392, 579, 816, 30, 30, 60, 614, 46, 46, 158, 618, 237, 30, 822, 106, 106, 107, 359, 135, 136, 242, 647, 648, 831, 46, 240, 715, 834, 46, 830, 786, 1340, 579, 360, 368, 508, 902, 579, 542, 543, 1071, 103, 817, 315, 1207, 106, 416, 1193, 851, 722, 369, 481, 854, 482, 46, 793, 205, 233, 160, 1072, 107, 818, 135, 136, 46, 827, 355, 469, 828, 392, 586, -502, 1119, 544, 545, 563, 835, 210, 586, 1120, 106, 564, 46, 1505, 920, 1338, 920, 46, 221, 1510, 226, 1060, 1339, 816, 789, 790, 844, 515, 1176, 916, 716, 1433, 791, 415, 254, 416, 1526, 1174, 1175, 820, 821, 1533, 107, 46, 135, 136, 8, 9, 10, 11, 12, 929, 160, 1530, 1079, 1379, 366, 262, 371, 109, 161, 849, 373, 817, -109, 850, -10, 46, 822, 1539, 74, 1402, 1177, 30, 372, 46, 1543, 355, 374, 46, 865, 94, 818, 46, 849, -109, 160, 53, 1103, 74, 1134, 47, 415, 1445, 1446, 738, 33, 74, 739, 357, 581, 745, 375, 716, 741, 665, 221, 565, 870, 392, 486, 882, -429, 689, 511, 205, 380, 158, 376, 381, 758, -430, 382, 741, 383, 764, 67, 384, 385, 690, 386, 691, 66, 266, 1193, 1017, 1093, 811, 880, 708, 1252, 1193, 268, 74, 683, 60, 160, 692, 689, 1115, 460, 516, 517, 518, 1161, 1163, 691, 210, 1019, 388, 389, 459, 535, 1451, 908, 991, 269, 536, 537, 270, 858, 1190, 909, 453, 519, 442, 520, 508, 521, 1107, 508, 316, 316, 508, 1193, 106, 316, 1191, 1093, 46, 1190, 319, 46, 1198, 46, 846, 569, 357, 392, 1331, 1272, 1273, 103, 112, 934, 160, 1318, 316, 1333, 320, 1022, 861, 1486, 46, 36, 1332, 177, 321, 39, 1486, 322, 748, 1377, 877, 1334, 40, 41, 442, 706, 46, 160, 323, 803, 1173, 707, 859, 157, 1380, 315, 315, 879, 46, 881, 315, 46, 723, 154, -109, 324, -109, 178, 724, 187, -109, 1017, 209, 316, 556, 219, 392, 179, 422, 1527, 750, 315, 392, 1146, 557, -109, -109, 580, 1030, 354, 751, 316, 46, 606, 358, 36, 733, 584, 46, 39, 46, 107, 734, 135, 136, 747, 40, 41, 938, 1076, 586, 748, 390, 894, 493, 858, 858, 1427, 939, 748, 460, 248, -102, 893, 370, 1104, -102, 154, 933, 896, 315, 585, 871, 586, 626, 748, 493, 230, 872, 460, 488, 587, 231, 511, 46, 46, 511, 460, 315, 511, 898, 892, 157, 981, 74, 316, 564, 378, 46, 982, 407, 312, 901, 1038, 356, 581, 903, 408, 160, 160, 579, 205, 1365, 160, 715, 443, 1366, 993, 137, 1060, 859, 859, 1004, 707, 412, 205, 1244, 107, 157, 135, 136, 713, 564, 60, 160, 442, 845, 74, 442, 446, 1488, 581, 1489, 430, 442, 2, 198, 4, 5, 6, 7, 157, 315, 1017, 1373, 449, 410, 647, 648, 450, 748, 414, 424, 728, 985, 679, 681, 811, 729, 232, 234, 717, 472, 106, 1267, 242, 318, 46, 1322, 107, -454, 1146, -454, 160, 1321, 1374, -454, 1528, 46, 1376, 436, 748, 538, 539, 1381, 748, 442, 500, 987, 442, 748, 160, 442, 34, 1390, 35, 1441, 515, 992, 1461, 564, 1547, 1442, 205, 913, 748, 550, 564, 1387, 549, 414, 803, 914, 476, 1006, 548, 883, 915, 392, 1246, 8, 9, 10, 11, 12, 125, 1058, 126, 127, 128, 546, 547, 509, 1033, 551, 154, 107, 53, 135, 136, 774, 775, 776, 777, 1368, 1146, 107, 30, 135, 136, 886, 716, 392, 554, 46, 160, 356, 567, 46, 46, 242, 318, 392, 1392, 1188, 580, 1416, 582, 806, 1424, 33, 46, 1227, 649, 704, 576, 67, 1228, 811, 46, 640, 1140, 66, 392, 1289, 1290, 540, 541, 8, 9, 10, 11, 12, 74, 641, 611, 580, 46, 688, 615, 642, 580, 400, 643, 392, 1157, 803, 392, 1108, 644, 1109, 556, 445, 392, 1459, 30, 36, 460, 1083, 1463, 39, 557, 645, 1160, 713, 586, 356, 40, 41, 646, 1130, 1084, 1162, 741, 586, 1130, 247, 1165, 33, 697, 1232, 716, 392, 1146, 695, 1479, 748, 986, 46, -222, 1297, 1298, 103, 1300, 735, 1137, 312, 312, 1239, 1304, 460, 312, 1307, 36, 717, 177, 749, 39, 688, 469, 318, 392, 753, 1470, 40, 41, 828, 318, 586, 750, 805, 392, 668, 436, 812, 442, 436, 855, 1130, 751, -12, 811, 436, 1345, 1347, 1348, 867, 713, 1058, 255, 422, 1202, 1204, 1206, 112, 940, 53, 318, 392, 256, 1033, 1498, 1308, 1309, 1481, 1482, 868, 1538, 1417, 1418, 1171, 1172, 874, 1538, 279, 103, 811, 770, 771, 476, 895, 312, 1538, 476, 772, 773, 1538, 717, 897, 46, 724, 627, 900, 564, 509, 67, 688, 509, 675, 312, 509, 1195, 778, 779, 36, 928, 705, -403, 39, 1517, -506, 942, 74, 949, 46, 40, 41, 951, 955, 1537, 316, 956, 960, 961, 688, 704, 963, 1221, 1222, 964, 965, 966, 977, 1001, 1209, 976, 988, 493, 989, 990, 813, 1073, 586, 606, 994, 803, 1002, 1031, 1040, 1007, 587, 1093, 1008, 1009, 2, 198, 4, 5, 6, 7, 1010, 1011, 1012, 312, 1013, -391, -390, 845, 1453, 1080, 693, 103, 1075, 576, 1086, 445, 60, 315, 1087, 1423, 1090, 809, 220, 1089, 8, 9, 10, 11, 12, -276, 1091, 1092, 1096, 1097, 1098, 1106, 8, 9, 10, 11, 12, 1099, 493, 493, 843, 211, 203, 212, 726, 576, 730, 30, 34, 1100, 35, 852, 106, 1058, 1116, 748, 1117, 1118, 1121, 30, 1213, 970, 1124, 1129, 53, 1126, 46, 1503, 1453, 1152, 33, 1155, 36, 1178, 168, 169, 39, 1166, 1179, 1181, 1180, 205, 33, 40, 41, 497, 1182, 1108, 1196, 1109, 1197, 1199, 1200, 1130, 1130, 1130, 704, 1208, 513, 514, 1214, -3, 1219, 67, 1225, 1226, 704, -277, 354, 66, 534, 938, 1240, 586, 8, 9, 10, 11, 12, 1236, 74, 939, 704, 1247, 481, 106, 160, 1245, 1250, 436, 1439, 1254, 1258, 1261, 36, 1263, 177, 1265, 39, 514, 1268, 30, 1269, 705, 421, 40, 41, 1270, 1274, 53, 1352, 1281, 1058, 1286, 1291, 1299, 1292, 1329, 103, 476, 1323, 1356, 1357, 1358, 33, 1302, 1303, 1317, 1305, 1306, 674, 1324, 392, 580, 811, 1335, 514, 1313, 675, 103, 676, 460, 1108, 422, 1109, 1337, 1341, 1342, 67, 380, 1343, 866, 381, 1349, 1195, 382, 1350, 383, 1351, 1353, 384, 385, 1361, 386, 103, 74, 1362, 1363, 1364, 1309, 1058, 1393, 1371, 1058, 1375, 1372, 1382, 1438, 1385, 1388, 1386, 106, 1389, 1398, 1383, 1394, 46, 1516, 1399, 1406, 1402, 388, 389, 1407, 316, 46, 46, 1411, 1412, -278, 1130, 1130, -392, 1415, 1426, 1003, 8, 9, 10, 11, 12, 647, 648, 1432, 924, 1430, 1440, 36, 1058, 177, 927, 39, 1443, 1058, 103, 1447, 63, 113, 40, 41, 1448, 1449, 493, 30, 1450, 1366, 1466, 93, 705, 1452, 1457, 1462, 1468, 1108, 713, 1109, 1464, 1471, 705, 1058, 809, 315, 1472, 674, 1474, 392, 33, 63, 141, 103, 1475, 1487, 1495, 676, 705, 1476, 53, 1501, 93, 1499, 155, 145, 1502, 53, 1522, 146, 147, 1525, 1509, 144, 1534, 93, 1532, 1540, 717, 1546, 889, 780, 704, 704, 781, 1518, 213, 46, 783, 493, 493, 182, 782, 784, 93, 1253, 1058, 93, 1316, 67, 1429, 1058, 767, 768, 769, 1195, 67, 60, 46, 46, 53, 156, 1195, 1504, 1548, 1058, 74, 1058, 1384, 1520, 1248, 1058, 249, 74, 1058, 210, 106, 1249, 713, 46, 1058, 355, 1218, 1490, 1058, 1491, 476, 1110, 312, 704, 704, 514, 1094, 699, 921, 1125, 1095, 106, 671, 67, 672, 800, 1039, 873, 103, 1195, 1105, 944, 160, 442, 1330, 718, 952, 317, 1519, 809, 74, 0, 717, 0, 0, 332, 106, 0, 93, 103, 0, 0, 0, 0, 0, 0, 103, 1144, 36, 843, 93, 627, 39, 0, 0, 0, 460, 1043, 0, 40, 41, 0, 0, 387, 0, 0, 0, 1545, 0, 0, 0, 0, 0, 379, 182, 0, 0, 405, 0, 1550, 141, 411, 0, 0, 42, 0, 155, 0, 36, 103, 177, 210, 39, 0, 143, 0, 106, 93, 0, 40, 41, 0, 0, 0, 0, 170, 428, 0, 93, 0, 431, 36, 432, 168, 169, 39, 0, 442, 442, 447, 0, 0, 40, 41, 1514, 63, 392, 0, 705, 705, 461, 106, 0, 36, 1515, 0, 93, 39, 0, 0, 468, 514, 809, 0, 40, 41, 0, 316, 411, 1494, 467, 0, 0, 627, 170, 0, 0, 170, 0, 0, 0, 1327, 0, 36, 0, 0, 0, 39, 0, 904, 0, 392, 0, 0, 40, 41, 0, 809, 1494, 905, 0, 0, 0, 0, 971, 705, 705, 442, 0, 0, 704, 0, 0, 0, 0, 0, 207, 0, 1266, 720, 0, 704, 704, 704, 315, 1144, 0, 0, 72, 721, 577, 0, 93, 460, 0, 0, 0, 607, 0, 0, 460, 0, 0, 0, 0, 0, 588, 0, 442, 0, 612, 0, 106, 0, 612, 0, 0, 332, 0, 72, 0, 0, 0, 0, 0, 0, 207, 0, 0, 0, 0, 704, 0, 106, 0, 0, 1043, 0, 0, 0, 106, 170, 442, 460, 0, 442, 442, 0, 0, 1229, 1230, 0, 0, 0, 214, 0, 0, 0, 0, 1144, 312, 436, 182, 461, 0, 0, 0, 0, 207, 0, 0, 442, 0, 442, 1110, 0, 36, 332, 168, 169, 39, 0, 461, 106, 0, 0, 0, 40, 41, 0, 461, 0, 0, 170, 0, 0, 0, 160, 0, 0, 170, 514, 0, 0, 0, 0, 0, 0, 206, 0, 0, 680, 358, 0, 0, 0, 700, 0, 224, 411, 0, 0, 0, 1328, 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, 714, 0, 63, 0, 0, 335, 0, 0, 0, 0, 411, 0, 0, 93, 411, 0, 0, 588, 705, 1295, 0, 436, 436, 1144, 206, 0, 0, 170, 207, 705, 705, 705, 207, 0, 0, 1110, 0, 0, 0, 0, 0, 0, 332, 0, 170, 0, 0, 0, 170, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 0, 0, 0, 0, 0, 0, 0, 206, 0, 0, 0, 0, 0, 0, 514, 0, 0, 429, 0, 0, 705, 0, 0, 532, 0, 0, 809, 0, 792, 0, 0, 0, 436, 0, 0, 0, 72, 0, 0, 0, 0, 72, 0, 802, 0, 577, 0, 0, 0, 0, 0, 0, 207, 249, 0, 0, 0, 0, 824, 0, 0, 0, 497, 0, 75, 206, 0, 815, 0, 588, 0, 0, 0, 436, 0, 0, 577, 1110, 0, 0, 0, 577, 0, 0, 0, 0, 0, 612, 0, 0, 0, 332, 332, 0, 0, 75, 0, 0, 0, 0, 0, 206, 0, 0, 0, 206, 332, 1493, 0, 0, 436, 436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487, 0, 0, 700, 0, 0, 0, 214, 0, 215, 207, 0, 0, 0, 0, 1493, 461, 436, 0, 0, 0, 0, 0, 714, 0, 0, 917, 335, 0, 588, 0, 394, 0, 0, 0, 912, 0, 680, 402, 1434, 0, 312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461, 207, 0, 332, 206, 0, 514, 0, 0, 0, 0, 0, 943, 0, 72, 411, 0, 0, 0, 0, 0, 0, 815, 588, 0, 0, 0, 0, 335, 0, 0, 0, 0, 72, 0, 337, 0, 714, 0, 0, 808, 72, 969, 0, 0, 0, 0, 0, 394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 0, 0, 335, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 700, 170, 0, 0, 206, 0, 335, 0, 72, 0, 700, 0, 0, 170, 0, 999, 802, 30, 0, 0, 0, 206, 249, 562, 0, 0, 700, 0, 0, 0, 0, 566, 0, 0, 570, 1016, 815, 0, 207, 0, 33, 0, 0, 0, 0, 36, 75, 588, 335, 39, 0, 75, 0, 0, 206, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249, 207, 0, 0, 0, 0, 207, 0, 0, 8, 9, 10, 11, 12, 904, 0, 392, 0, 0, 0, 63, 0, 0, 394, 905, 0, 0, 402, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 335, 0, 0, 802, 0, 170, 0, 0, 0, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 33, 815, 588, 0, 0, 36, 0, 584, 0, 39, 0, 0, 215, 0, 680, 0, 40, 41, 0, 0, 0, 0, 680, 0, 0, 1102, 0, 0, 0, 0, 335, 335, 337, 411, 113, 207, 0, 0, 0, 0, 588, 585, 0, 586, 206, 335, 0, 0, 332, 207, 0, 587, 394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249, 335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 0, 72, 0, 75, 206, 612, 0, 577, 335, 0, 0, 0, 0, 0, 0, 0, 0, 337, 0, 0, 77, 0, 75, 0, 0, 141, 0, 0, 0, 0, 75, 700, 700, 0, 332, 332, 332, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 335, 0, 0, 0, 77, 0, 0, 0, 1194, 337, 0, 0, 0, 0, 0, 207, 0, 0, 0, 562, 562, 0, 0, 0, 0, 0, 0, 337, 0, 75, 0, 808, 0, 0, 335, 0, 0, 0, 0, 216, 0, 700, 700, 0, 0, 206, 0, 0, 0, 0, 0, 0, 802, 249, 0, 0, 0, 0, 0, 206, 588, 0, 0, 0, 0, 0, 0, 0, 0, 337, 0, 8, 9, 10, 11, 12, 335, 0, 0, 487, 0, 0, 0, 0, 0, 0, 335, 0, 249, 0, 0, 214, 335, 0, 120, 123, 124, 0, 30, 0, 0, 0, 335, 884, 0, 0, 0, 887, 0, 612, 0, 714, 0, 0, 0, 0, 612, 332, 332, 0, 0, 33, 0, 0, 338, 808, 36, 0, 177, 337, 39, 562, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 394, 0, 0, 0, 206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1296, 0, 0, 178, 72, 244, 0, 245, 0, 0, 0, 0, 0, 179, 0, 0, 0, 332, 337, 337, 0, 63, 0, 0, 0, 0, 0, 0, 335, 0, 0, 612, 0, 337, 0, 0, 0, 54, 54, 0, 700, 0, 714, 0, 0, 0, 113, 0, 0, 0, 0, 337, 0, 207, 0, 77, 0, 0, 0, 0, 77, 0, 0, 0, 75, 0, 0, 0, 54, 700, 0, 337, 0, 0, 0, 0, 0, 0, 0, 0, 700, 700, 700, 0, 0, 377, 0, 0, 0, 0, 0, 335, 332, 332, 396, 397, 562, 0, 0, 401, 54, 403, 404, 54, 0, 0, 1194, 75, 0, 0, 337, 84, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 612, 700, 25, 26, 27, 473, 474, 475, 0, 0, 30, 0, 113, 84, 0, 337, 0, 0, 216, 0, 335, 335, 0, 335, 335, 335, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 338, 0, 37, 38, 0, 0, 72, 0, 0, 0, 217, 8, 9, 10, 11, 12, 0, 0, 206, 337, 0, 330, 0, 0, 249, 0, 0, 0, 0, 337, 0, 808, 0, 0, 215, 337, 0, 0, 30, 335, 335, 562, 562, 0, 0, 337, 77, 0, 0, 394, 335, 332, 0, 0, 0, 0, 0, 0, 0, 0, 338, 33, 0, 0, 0, 77, 36, 0, 177, 0, 39, 0, 0, 77, 0, 113, 0, 40, 41, 0, 0, 207, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345, 1194, 0, 0, 338, 0, 0, 674, 1194, 392, 0, 75, 0, 0, 335, 0, 54, 676, 0, 0, 335, 335, 338, 0, 77, 8, 9, 10, 11, 12, 1141, 0, 0, 0, 0, 337, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 1158, 0, 1194, 30, 0, 0, 0, 0, 0, 1535, 0, 0, 0, 214, 0, 338, 0, 0, 0, 467, 0, 0, 30, 0, 0, 0, 33, 0, 0, 0, 335, 36, 0, 177, 72, 39, 0, 0, 0, 207, 0, 84, 40, 41, 0, 33, 84, 808, 0, 337, 36, 0, 177, 335, 39, 335, 170, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 255, 0, 206, 0, 0, 0, 0, 0, 338, 0, 256, 562, 330, 0, 0, 335, 1233, 0, 0, 1514, 0, 392, 0, 0, 0, 0, 335, 335, 335, 1515, 0, 0, 0, 0, 0, 0, 0, 0, 335, 335, 337, 337, 0, 337, 337, 337, 8, 9, 10, 11, 12, 0, 72, 0, 0, 0, 338, 338, 0, 0, 0, 0, 0, 0, 75, 0, 217, 0, 0, 0, 0, 338, 330, 30, 0, 0, 335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345, 0, 0, 338, 0, 0, 794, 795, 0, 0, 33, 337, 337, 0, 0, 36, 77, 0, 206, 39, 0, 0, 337, 338, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 829, 0, 0, 832, 833, 0, 836, 0, 838, 839, 0, 54, 84, 840, 841, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 77, 345, 143, 338, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 335, 0, 0, 337, 0, 0, 0, 330, 0, 337, 337, 0, 0, 0, 0, 0, 0, 0, 338, 0, 0, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345, 0, 84, 0, 0, 0, 72, 0, 0, 0, 0, 0, 215, 72, 922, 923, 0, 0, 0, 0, 925, 338, 0, 0, 0, 0, 0, 0, 330, 337, 0, 338, 0, 75, 0, 0, 216, 338, 0, 0, 0, 0, 345, 0, 0, 0, 0, 338, 0, 0, 0, 0, 337, 0, 337, 0, 72, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 330, 330, 25, 26, 27, 337, 0, 0, 0, 0, 30, 434, 0, 0, 0, 330, 337, 337, 337, 0, 0, 0, 0, 0, 0, 0, 345, 0, 337, 337, 0, 0, 77, 33, 0, 0, 0, 0, 0, 0, 37, 38, 75, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 338, 0, 0, 0, 0, 0, 122, 122, 122, 0, 337, 0, 0, 0, 0, 30, 0, 0, 345, 345, 435, 0, 0, 0, 687, 0, 0, 0, 108, 0, 0, 0, 0, 345, 0, 0, 330, 0, 33, 0, 0, 0, 0, 36, 0, 0, 0, 39, 0, 0, 0, 345, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 338, 84, 0, 0, 0, 162, 0, 166, 345, 0, 172, 173, 174, 122, 176, 122, 720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 721, 0, 0, 225, 0, 0, 0, 0, 0, 337, 0, 0, 0, 265, 238, 239, 0, 0, 84, 0, 0, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338, 338, 0, 338, 338, 338, 0, 330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 345, 77, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 122, 0, 0, 0, 0, 0, 0, 122, 0, 122, 122, 0, 0, 327, 122, 0, 122, 122, 0, 0, 0, 0, 338, 338, 0, 0, 0, 0, 0, 0, 345, 0, 0, 338, 0, 0, 0, 75, 0, 0, 345, 0, 0, 54, 0, 217, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1014, 330, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 0, 0, 0, 0, 0, 0, 0, 0, 338, 0, 0, 271, 30, 272, 338, 338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 84, 273, 33, 1223, 0, 0, 0, 274, 0, 0, 0, 275, 0, 330, 276, 277, 278, 279, 40, 41, 0, 280, 281, 216, 345, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338, 0, 0, 283, 77, 361, 0, 0, 0, 0, 0, 0, 285, 890, 287, 288, 289, 290, 0, 0, 0, 0, 0, 338, 0, 338, 0, 0, 0, 0, 0, 575, 0, 583, 330, 330, 330, 0, 0, 0, 0, 0, 0, 0, 608, 609, 0, 345, 0, 0, 0, 0, 338, 0, 0, 54, 0, 0, 619, 0, 0, 0, 0, 338, 338, 338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338, 338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 1315, 0, 330, 0, 0, 0, 0, 0, 345, 345, 0, 345, 345, 345, 0, 0, 338, 0, 0, 0, 0, 662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 197, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 345, 345, 330, 330, 0, 30, 0, 0, 0, 0, 0, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 199, 200, 0, 0, 338, 0, 0, 0, 54, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 755, 0, 0, 0, 0, 0, 330, 0, 0, 0, 54, 122, 122, 0, 0, 345, 201, 0, 0, 0, 0, 345, 345, 0, 261, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 54, 77, 0, 0, 122, 0, 0, 122, 122, 0, 122, 0, 122, 122, 0, 0, 0, 122, 122, 0, 0, 0, 0, 0, 0, 801, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 345, 330, 330, 0, 84, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 345, 0, 345, 0, 0, 0, 0, 0, 862, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 54, 122, 345, 0, 0, 0, 122, 122, 0, 891, 30, 0, 122, 345, 345, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345, 345, 906, 907, 0, 0, 911, 0, 33, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 931, 0, 932, 0, 345, 0, 0, 0, 0, 935, 936, 0, 0, 0, 941, 0, 0, 0, 330, 0, 0, 0, 0, 0, 0, 0, 946, 0, 0, 0, 0, 950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 967, 0, 0, 0, 0, 271, 0, 272, 0, 204, 978, 0, 0, 0, 0, 0, 0, 0, 54, 223, 0, 227, 0, 229, 0, 54, 0, 0, 273, 0, 236, 0, 0, 0, 274, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 345, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 1000, 204, 0, 227, 229, 236, 0, 0, 0, 0, 54, 0, 283, 0, 361, 0, 0, 0, 0, 1015, 0, 285, 363, 287, 288, 289, 290, 0, 0, 204, 0, 0, 0, 0, 84, 1210, 0, 0, 0, 0, 0, 84, 0, 204, 0, 0, 0, 0, 0, 0, 0, 0, 1026, 0, 1027, 1028, 1029, 0, 0, 1032, 862, 0, 0, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271, 1074, 272, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 575, 0, 0, 1081, 0, 0, 0, 0, 0, 1082, 273, 0, 0, 0, 0, 204, 274, 227, 229, 236, 275, 0, 241, 276, 277, 278, 279, 40, 41, 0, 280, 281, 246, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 1101, 0, 0, 0, 204, 283, 0, 361, 204, 0, 362, 0, 0, 0, 285, 363, 287, 288, 289, 290, 0, 0, 0, 0, 485, 755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1127, 353, 0, 0, 0, 862, 0, 0, 1135, 0, 0, 0, 1139, 0, 367, 0, 0, 1143, 0, 0, 0, 1148, 1149, 1150, 0, 0, 0, 0, 0, 0, 0, 1156, 0, 0, 204, 0, 399, 0, 0, 0, 0, 1169, 0, 0, 0, 0, 0, 0, 0, 204, 413, 0, 0, 0, 227, 229, 0, 0, 418, 0, 1185, 1186, 236, 0, 0, 0, 0, 122, 426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433, 0, 0, 0, 0, 0, 1215, 0, 0, 1217, 0, 0, 452, 0, 0, 0, 0, 462, 0, 0, 0, 0, 0, 0, 0, 204, 0, 0, 0, 0, 470, 0, 0, 0, 1231, 0, 480, 0, 484, 0, 0, 0, 0, 204, 0, 0, 0, 0, 0, 204, 0, 0, 0, 1238, 512, 0, 0, 0, 0, 1242, 1243, 0, 0, 0, 0, 0, 204, 0, 1251, 204, 204, 0, 0, 0, 1255, 0, 0, 1259, 0, 1260, 0, 0, 1262, 0, 0, 204, 0, 0, 0, 0, 0, 0, 0, 862, 0, 572, 0, 1271, 0, 204, 0, 0, 0, 0, 0, 0, 204, 0, 0, 0, 0, 0, 0, 271, 1280, 272, 1282, 1283, 1284, 1285, 0, 0, 122, 0, 620, 0, 0, 0, 621, 622, 0, 623, 0, 1293, 0, 1294, 273, 633, 634, 166, 635, 636, 274, 637, 0, 638, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 1314, 0, 0, 0, 651, 0, 282, 0, 0, 1319, 1320, 0, 653, 0, 0, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 0, 0, 0, 785, 285, 363, 287, 288, 289, 290, 0, 666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 0, 0, 1354, 1355, 0, 0, 0, 0, 1359, 1360, 0, 0, 709, 0, 0, 0, 0, 0, 712, 1370, 0, 0, 0, 452, 0, 0, 0, 0, 0, 204, 0, 0, 0, 0, 204, 197, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 746, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 1401, 0, 0, 0, 762, 0, 0, 0, 0, 0, 0, 0, 1405, 0, 0, 0, 1408, 1409, 1410, 0, 0, 0, 33, 0, 34, 0, 35, 36, 1414, 199, 200, 39, 0, 0, 0, 0, 0, 1425, 40, 41, 788, 0, 0, 0, 0, 0, 0, 0, 0, 798, 0, 799, 204, 1436, 0, 0, 0, 804, 0, 271, 0, 272, 0, 42, 0, 201, 204, 0, 0, 0, 823, 0, 0, 202, 0, 0, 0, 0, 0, 0, 0, 0, 273, 0, 0, 0, 485, 0, 624, 0, 135, 136, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 1477, 1478, 0, 0, 864, 282, 0, 0, 0, 0, 0, 0, 0, 1483, 0, 271, 0, 272, 0, 283, 1483, 625, 0, 626, 362, 0, 0, 0, 285, 363, 287, 288, 289, 290, 0, 0, 0, 0, 273, 204, 899, 0, 0, 0, 274, 0, 0, 1513, 275, 204, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 204, 0, 0, 0, 1536, 0, 0, 0, 346, 283, 0, 361, 0, 0, 0, 0, 754, 0, 285, 363, 287, 288, 289, 290, 0, 0, 241, 0, 0, 1549, 0, 0, 0, 0, 1551, 0, 947, 948, 0, 395, 0, 0, 0, 0, 0, 0, 395, 0, 962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 979, 0, 980, 0, 0, 0, 984, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 204, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 395, 0, 0, 0, 204, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 37, 38, 39, 0, 1020, 0, 0, 0, 0, 40, 41, 1021, 0, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 42, 0, 152, 395, 0, 0, 0, 1037, 0, 204, 44, 395, 568, 1041, 395, 571, 0, 346, 0, 0, 0, 0, 598, 0, 0, 1077, 204, 0, 1078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271, 616, 272, 0, 346, 0, 788, 0, 0, 0, 0, 0, 1088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 0, 0, 0, 0, 0, 274, 395, 0, 0, 275, 395, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 204, 0, 0, 0, 0, 0, 0, 0, 0, 346, 283, 0, 361, 0, 0, 970, 0, 204, 0, 285, 363, 287, 288, 289, 290, 0, 0, 0, 0, 0, 0, 310, 395, 0, 0, 0, 0, 0, 0, 0, 328, 0, 1147, 0, 0, 0, 0, 0, 1153, 1154, 0, 0, 364, 0, 0, 0, 0, 0, 492, 496, 492, 499, 0, 395, 0, 0, 346, 0, 502, 503, 0, 0, 0, 492, 492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1212, 395, 0, 0, 346, 204, 1216, 0, 0, 0, 492, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -279, 0, 25, 26, 27, 0, 0, 466, 0, 1235, 30, 0, 0, 0, 1237, 492, 395, 395, 0, 0, 0, 0, 1241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 33, 346, 0, 0, 0, 0, 0, 37, 38, 810, 0, -279, 598, 0, 598, 598, 0, 0, 1264, 0, 0, 598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 842, 346, 0, 0, 1275, 0, 346, 1276, 0, 1277, 1025, 204, 567, 0, 0, 0, 346, 346, 0, 0, 108, 0, 0, 0, 0, 0, 1287, 1288, 0, 0, 0, 346, 0, 0, 0, 0, 395, 885, 0, 0, 395, 888, 328, 0, 0, 0, 0, 1301, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 395, 0, 0, 0, 0, 346, 395, 0, 395, 0, 0, 0, 395, 0, 0, 1325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 0, 0, 0, 0, 0, 0, 346, 598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 0, 346, 0, 0, 0, 395, 395, 0, 0, 0, 711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492, 0, 0, 0, 1167, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 1395, 0, 1396, 0, 0, 0, 0, 0, 0, 0, 395, 743, 0, 1403, 0, 1404, 0, 271, 30, 272, 0, 0, 346, 756, 0, 0, 0, 0, 0, 0, 743, 598, 0, 598, 0, 1413, 0, 0, 0, 0, 273, 33, 598, 765, 766, 0, 274, 0, 0, 0, 275, 1431, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 1437, 0, 787, 1241, 0, 282, 0, 0, 0, 204, 810, 0, 796, 0, 0, 0, 0, 0, 0, 283, 756, 361, 492, 0, 0, 1458, 0, 0, 285, 1168, 287, 288, 289, 290, 1465, 0, 0, 1467, 1469, 0, 0, 0, 0, 0, 492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 0, 0, 492, 0, 395, 395, 0, 0, 0, 0, 0, 0, 395, 0, 0, 0, 863, 395, 0, 0, 1496, 0, 0, 364, 1241, 395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1508, 0, 598, 598, 0, 0, 0, 0, 328, 492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 0, 0, 0, 328, 0, 0, 395, 0, 0, 0, 0, 0, 0, 810, 492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 395, 1142, 0, 0, 0, 0, 1145, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 395, 1159, 0, 598, 598, 1164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 756, 0, 968, 0, 0, 0, 0, 0, 973, 0, 0, 0, 0, 0, 0, 0, 983, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -279, 0, 25, 26, 27, 0, 1224, 0, 492, 0, 30, 395, 0, 0, 346, 810, 395, 1234, 328, 0, 0, 997, 998, 328, 271, 0, 272, 0, 598, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 328, 0, -279, 0, 0, 273, 0, 0, 810, 0, 0, 274, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 346, 1025, 282, 567, 0, 1145, 346, 346, 0, 0, 1035, 610, 0, 0, 364, 0, 283, 0, 361, 0, 0, 0, 0, 0, 0, 285, 363, 287, 288, 289, 290, 492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492, 0, 0, 0, 328, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 346, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 1145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492, 346, 0, 0, 0, 0, 310, 0, 33, 0, 0, 0, 0, 0, 0, 199, 200, 0, 0, 1122, 1123, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 973, 0, 0, 1133, 0, 743, 0, 0, 271, 0, 272, 0, 0, 0, 0, 0, 0, 346, 346, 0, 0, 0, 1151, 0, 0, 261, 0, 0, 0, 0, 0, 273, 0, 0, 0, 0, 0, 274, 0, 1170, 492, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 1145, 0, 0, 0, 0, 282, 0, 0, 364, 0, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 0, 1211, 0, 0, 285, 710, 287, 288, 289, 290, 0, 0, 492, 0, 0, 0, 0, 0, 0, 0, 1220, 0, 0, 0, 0, 0, 0, 492, 492, 0, 0, 0, 0, 756, 0, 0, 0, -501, 810, 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, 0, 346, 25, 26, 27, 28, 0, 973, 29, 0, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271, 0, 272, 0, 0, 0, 863, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 273, 1278, 0, 1279, 40, 41, 624, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 42, 0, 43, 0, 0, 0, 0, 395, 0, 0, 44, 0, 0, 283, 0, 759, 0, 0, 0, 756, 0, 0, 285, 363, 287, 288, 289, 290, 395, 395, 0, 0, 0, 0, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 395, 0, 0, 0, 0, 0, 0, 0, 973, 0, 0, 1, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 271, 30, 1044, 1045, 0, 1046, 0, 0, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 0, 1055, 0, 0, 1056, 32, 0, 273, 33, 0, 34, 0, 35, 624, 492, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 1057, 0, 0, 165, 0, 0, 0, 285, 286, 287, 288, 289, 290, 0, 0, 0, 0, 0, 0, 0, 0, -126, 0, 0, 0, 0, 492, 492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1444, 0, 0, 0, 0, 0, 1, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 271, 30, 272, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -279, 0, 0, 273, 33, 0, 34, 0, 35, 274, 30, 37, 38, 275, 0, 1500, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -279, 283, 0, 1057, 0, 0, 0, 0, 0, 0, 285, 286, 287, 288, 289, 290, 0, 310, 0, 0, 0, 0, 0, 0, -126, 1, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 271, 30, 272, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -280, 0, 0, 273, 33, 0, 34, 0, 35, 274, 30, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -280, 283, 0, 43, 0, 0, 0, 0, 0, 0, 285, 286, 287, 288, 289, 290, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 34, 0, 35, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 325, -3, 0, 0, 0, 754, 0, 285, 326, 287, 288, 289, 290, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 34, 0, 35, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 910, -3, 0, 0, 0, 754, 0, 285, 326, 287, 288, 289, 290, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 34, 0, 35, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 910, -3, 0, 0, 0, 754, 0, 285, 574, 287, 288, 289, 290, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 34, 0, 35, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 325, -3, 0, 0, 0, 0, 0, 285, 326, 287, 288, 289, 290, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 34, 0, 35, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 910, -3, 0, 0, 0, 0, 0, 285, 326, 287, 288, 289, 290, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 34, 0, 35, 274, 0, 199, 200, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 995, 0, 0, 0, 0, 0, 0, 285, 996, 287, 288, 289, 290, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 34, 0, 35, 274, 0, 199, 200, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 0, 0, 0, 0, 285, 363, 287, 288, 289, 290, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 43, 0, 0, 0, -505, 0, 0, 0, 44, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 43, 0, 0, 0, 0, 0, 0, 0, 44, 1, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -279, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, -279, 1, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 43, 29, 0, 30, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 43, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 199, 200, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 201, 0, 0, 0, 0, 0, 0, 0, 202, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 661, -3, 0, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, -388, 661, 30, 0, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 661, 0, 0, 0, 0, 0, 0, 0, 610, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 1369, 0, 0, 0, 107, 0, 37, 38, 0, 0, 0, 0, 0, 0, 661, 0, 0, 0, 0, 0, 0, 0, 610, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 199, 200, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 260, 0, 0, 0, 0, 0, 0, 0, 605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 573, 0, 0, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 661, 0, 0, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 199, 200, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 473, 474, 475, 0, 271, 30, 272, 0, 0, 0, 0, 0, 201, 0, 0, 0, 0, 0, 0, 0, 261, 0, 0, 0, 0, 0, 0, 273, 33, 0, 0, 0, 0, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 284, 0, 0, 0, 0, 0, 0, 285, 286, 287, 288, 289, 290, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 0, 0, 0, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 505, 0, 0, 165, 0, 0, 0, 285, 286, 287, 288, 289, 290, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 0, 0, 0, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 573, -3, 0, 0, 0, 0, 0, 285, 574, 287, 288, 289, 290, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 0, 0, 0, 624, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, -35, 740, 0, 0, 0, 0, 0, 0, 285, 286, 287, 288, 289, 290, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 0, 0, 0, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 284, 0, 0, 0, 0, 0, 0, 285, 286, 287, 288, 289, 290, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 0, 0, 0, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 152, 0, 0, 0, 0, 0, 0, 285, 286, 287, 288, 289, 290, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 0, 0, 0, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 573, 0, 0, 0, 0, 0, 0, 285, 574, 287, 288, 289, 290, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 271, 30, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 33, 0, 0, 0, 0, 274, 0, 37, 38, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 0, 0, 0, 0, 285, 363, 287, 288, 289, 290, 455, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -279, 0, 25, 26, 27, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 807, 38, 39, 0, -279, 0, 0, 0, 0, 40, 41, -3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -279, 0, 25, 26, 27, 1025, 0, 567, 0, 0, 30, 0, 0, 0, 0, 610, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 33, 0, 25, 26, 27, 36, 0, 807, 38, 39, 30, -279, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 37, 38, 39, 567, 0, 0, 0, 0, 0, 40, 41, 108, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 42, 0, 43, 0, 0, 30, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 199, 200, 39, 0, 0, 0, 0, 0, 0, 40, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 42, 0, 260, 0, 30, 0, 0, 0, 0, 0, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 807, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 1025, 0, 567, 0, 30, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 807, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 567, 0, 30, 434, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -279, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 435, 0, 0, 0, 926, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, -279, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 434, 0, 0, 567, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 434, 0, 0, 0, 0, 0, 435, 0, 0, 0, 1391, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 434, 0, 0, 0, 0, 0, 435, 0, 0, 0, 1435, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 434, 0, 0, 0, 0, 0, 435, 0, 0, 0, 1497, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 435, 0, 0, 0, 1521, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 107, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 434, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 435, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 1025, 0, 567, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 1025, 0, 567, 0, 0, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 152, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 199, 200, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 260, 0, 0, 0, 0, 0, 0, 0, 261, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 567, 0, 0, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 435, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 199, 200, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 260, 0, 0, 0, 0, 0, 0, 0, 605, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 573, 0, 0, 0, 0, 0, 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 567, 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 199, 200, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 271, 0, 272, 1045, 0, 1046, 0, 0, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1529, 1055, 0, 0, 1056, 32, 0, 273, 0, 0, 0, 0, 0, 624, 0, 0, -401, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 165, 0, 0, 0, 285, 363, 287, 288, 289, 290, 0, 271, 0, 272, 1045, 0, 1046, 0, -126, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 0, 1055, 0, 0, 1056, 32, 0, 273, 0, 0, 0, 0, 0, 624, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 165, 0, 0, 0, 285, 363, 287, 288, 289, 290, 0, 0, 0, 0, 0, 0, 0, 0, -126, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 271, 0, 272, 1045, 0, 1046, 1417, 1418, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1529, 1055, 33, 1326, 1056, 32, 0, 273, 0, 37, 38, 0, 0, 624, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 165, 0, 0, 0, 285, 363, 287, 288, 289, 290, 271, 0, 272, 1045, 0, 1046, 1417, 1418, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 0, 1055, 0, 0, 1056, 32, 0, 273, 0, 0, 0, 0, 0, 624, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 165, 0, 0, 0, 285, 363, 287, 288, 289, 290, 271, 0, 272, 1045, 0, 1046, 0, 0, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 0, 1055, 0, 0, 1056, 32, 0, 273, 0, 0, 0, 0, 0, 624, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 271, 0, 272, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 165, 0, 0, 0, 285, 363, 287, 288, 289, 290, 273, 0, 0, 0, 0, 0, 274, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 271, 0, 272, 0, 0, 0, 0, 0, 283, 0, 361, 0, 0, 0, 0, 0, 0, 285, 890, 287, 288, 289, 290, 273, 0, 0, 0, 0, 0, 274, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 271, 0, 272, 0, 0, 0, 0, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 285, 363, 287, 288, 289, 290, 273, 0, 0, 0, 0, 0, 274, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 271, 0, 272, 0, 0, 0, 0, 0, 495, 0, 0, 0, 0, 0, 0, 0, 0, 285, 363, 287, 288, 289, 290, 273, 0, 0, 0, 0, 0, 274, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 271, 0, 272, 0, 0, 0, 0, 0, 498, 0, 0, 0, 0, 0, 0, 0, 0, 285, 363, 287, 288, 289, 290, 273, 0, 0, 0, 0, 0, 274, 0, 0, 0, 275, 0, 0, 276, 277, 278, 279, 40, 41, 0, 280, 281, 0, 0, 0, 0, 0, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501, 0, 0, 0, 0, 0, 0, 0, 0, 285, 363, 287, 288, 289, 290, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 168, 169, 39, 0, 0, 0, 0, 0, 0, 40, 41, 197, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 199, 200, 455, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 198, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 33, 0, 34, 0, 35, 30, 0, 199, 200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 199, 200 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1306)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 1, 42, 0, 32, 0, 42, 42, 412, 112, 1, 0, 1, 674, 346, 0, 178, 211, 350, 178, 270, 674, 178, 519, 178, 875, 674, 178, 178, 433, 178, 605, 443, 557, 31, 1024, 31, 163, 331, 587, 629, 269, 31, 587, 875, 42, 31, 44, 180, 44, 0, 436, 735, 102, 753, 585, 0, 54, 179, 179, 31, 433, 437, 60, 621, 60, 63, 0, 63, 66, 984, 66, 556, 556, 63, 66, 470, 66, 635, 326, 556, 31, 585, 585, 977, 42, 283, 31, 103, 750, 193, 106, 1336, 255, 42, 399, 255, 750, 31, 255, 585, 255, 750, 65, 255, 255, 103, 255, 480, 106, 699, 585, 484, 63, 418, 112, 1044, 1421, 65, 251, 252, 75, 426, 1037, 509, 37, 0, 1, 588, 101, 52, 27, 37, 42, 594, 256, 256, 246, 178, 1417, 585, 65, 178, 178, 42, 43, 143, 67, 143, 111, 123, 71, 89, 78, 74, 712, 76, 31, 155, 585, 155, 620, 621, 83, 407, 408, 65, 37, 196, 1023, 1024, 101, 94, 42, 43, 71, 635, 124, 115, 65, 105, 178, 179, 476, 179, 4, 5, 6, 7, 8, 9, 103, 66, 1437, 1044, 210, 193, 391, 42, 43, 124, 1505, 65, 1481, 103, 202, 1510, 202, 89, 107, 407, 408, 65, 210, 44, 255, 213, 103, 213, 255, 255, 178, 1526, 470, 213, 102, 620, 621, 1510, 1533, 178, 101, 109, 103, 115, 720, 101, 106, 478, 482, 103, 635, 242, 62, 241, 64, 241, 262, 1237, 57, 103, 1533, 241, 712, 269, 88, 241, 500, 255, 256, 37, 256, 106, 213, 186, 262, 387, 387, 792, 178, 241, 44, 269, 101, 377, 720, 824, 104, 108, 673, 824, 108, 282, 813, 616, 205, 208, 986, 270, 122, 399, 241, 106, 101, 720, 123, 218, 241, 495, 1288, 0, 498, 405, 108, 501, 124, 220, 410, 241, 418, 813, 813, 142, 246, 3, 436, 436, 426, 712, 694, 317, 564, 317, 237, 101, 3, 103, 574, 813, 37, 37, 31, 347, 330, 331, 108, 351, 108, 37, 813, 0, 1, 65, 108, 67, 68, 101, 468, 468, 589, 347, 0, 746, 593, 351, 815, 553, 1250, 605, 124, 108, 283, 666, 610, 83, 84, 1216, 241, 813, 142, 1053, 31, 202, 1301, 614, 668, 124, 121, 618, 123, 377, 905, 332, 106, 44, 1216, 65, 813, 67, 68, 387, 939, 387, 101, 101, 103, 103, 0, 102, 118, 119, 102, 101, 63, 103, 109, 66, 108, 405, 1484, 679, 102, 681, 410, 334, 1490, 336, 875, 109, 904, 904, 904, 996, 75, 1413, 675, 673, 106, 904, 202, 123, 261, 1507, 1287, 1288, 938, 938, 1512, 65, 436, 67, 68, 10, 11, 12, 13, 14, 697, 108, 1510, 102, 1301, 107, 113, 108, 455, 286, 104, 108, 904, 102, 108, 101, 460, 938, 1526, 399, 109, 1025, 37, 124, 468, 1533, 468, 124, 472, 103, 472, 904, 476, 104, 123, 142, 472, 108, 418, 982, 472, 261, 1403, 1404, 495, 60, 426, 498, 155, 326, 501, 108, 746, 500, 423, 422, 101, 630, 103, 734, 639, 101, 108, 283, 461, 674, 286, 124, 674, 516, 101, 674, 519, 674, 521, 472, 674, 674, 124, 674, 108, 472, 101, 1458, 824, 917, 582, 637, 457, 1125, 1465, 101, 472, 925, 241, 202, 124, 108, 949, 246, 78, 79, 80, 1010, 1011, 108, 213, 1102, 676, 676, 666, 111, 1413, 124, 1085, 101, 116, 117, 101, 1025, 108, 124, 569, 101, 231, 103, 495, 105, 947, 498, 407, 408, 501, 1508, 241, 412, 124, 969, 582, 108, 102, 585, 1047, 587, 606, 101, 253, 103, 108, 1153, 1154, 472, 1, 709, 261, 124, 433, 108, 102, 846, 622, 1458, 606, 65, 124, 67, 102, 69, 1465, 102, 108, 1301, 634, 124, 76, 77, 283, 102, 622, 286, 102, 572, 1023, 108, 1025, 44, 124, 407, 408, 636, 634, 638, 412, 637, 102, 44, 102, 102, 104, 101, 108, 60, 108, 943, 63, 482, 101, 66, 103, 111, 607, 1508, 101, 433, 103, 994, 111, 123, 124, 326, 861, 101, 111, 500, 668, 332, 101, 65, 102, 67, 674, 69, 676, 65, 108, 67, 68, 102, 76, 77, 101, 882, 103, 108, 57, 102, 675, 1153, 1154, 1379, 111, 108, 399, 102, 104, 653, 101, 944, 108, 108, 707, 102, 482, 101, 103, 103, 105, 108, 697, 101, 109, 418, 734, 111, 106, 495, 720, 721, 498, 426, 500, 501, 102, 652, 143, 102, 666, 564, 108, 124, 734, 108, 101, 142, 663, 868, 155, 574, 667, 101, 407, 408, 996, 700, 104, 412, 1147, 106, 108, 102, 29, 1216, 1153, 1154, 810, 108, 101, 714, 102, 65, 179, 67, 68, 470, 108, 472, 433, 434, 605, 709, 437, 106, 1462, 610, 1464, 124, 443, 4, 5, 6, 7, 8, 9, 202, 564, 1085, 102, 124, 197, 917, 917, 124, 108, 202, 213, 101, 785, 925, 925, 855, 106, 80, 81, 470, 106, 472, 1145, 101, 102, 813, 1228, 65, 103, 1152, 105, 482, 1227, 102, 109, 1509, 824, 102, 231, 108, 113, 114, 102, 108, 495, 101, 788, 498, 108, 500, 501, 62, 102, 64, 102, 75, 798, 102, 108, 102, 108, 802, 1514, 108, 121, 108, 1315, 120, 261, 804, 1514, 264, 814, 112, 101, 1514, 103, 1118, 10, 11, 12, 13, 14, 65, 875, 67, 68, 69, 85, 86, 283, 864, 87, 286, 65, 875, 67, 68, 542, 543, 544, 545, 1287, 1226, 65, 37, 67, 68, 101, 1147, 103, 123, 900, 564, 317, 103, 904, 905, 101, 102, 103, 1323, 1039, 574, 1373, 104, 577, 1376, 60, 917, 101, 101, 452, 326, 875, 106, 976, 925, 102, 101, 875, 103, 1183, 1184, 81, 82, 10, 11, 12, 13, 14, 875, 102, 346, 605, 943, 1322, 350, 102, 610, 101, 102, 103, 101, 899, 103, 948, 102, 948, 101, 233, 103, 1421, 37, 65, 666, 67, 1426, 69, 111, 102, 101, 673, 103, 387, 76, 77, 102, 979, 902, 101, 982, 103, 984, 103, 1014, 60, 123, 101, 1237, 103, 1324, 108, 1452, 108, 109, 994, 106, 1196, 1197, 875, 1199, 101, 986, 407, 408, 1110, 1205, 709, 412, 1208, 65, 673, 67, 102, 69, 1392, 101, 102, 103, 102, 1433, 76, 77, 101, 102, 103, 101, 104, 103, 433, 434, 104, 694, 437, 104, 1037, 111, 109, 1089, 443, 1256, 1257, 1258, 109, 746, 1047, 101, 999, 1050, 1051, 1052, 455, 714, 1044, 102, 103, 111, 1041, 1471, 54, 55, 108, 109, 108, 1524, 42, 43, 1020, 1021, 28, 1530, 75, 948, 1124, 538, 539, 480, 102, 482, 1539, 484, 540, 541, 1543, 746, 102, 1085, 108, 362, 104, 108, 495, 1044, 1470, 498, 109, 500, 501, 1044, 546, 547, 65, 107, 452, 102, 69, 1493, 107, 107, 1044, 101, 1110, 76, 77, 102, 124, 1522, 949, 75, 102, 102, 1498, 653, 109, 1077, 1078, 102, 102, 102, 108, 101, 1055, 104, 102, 1118, 102, 102, 101, 28, 103, 802, 104, 1088, 101, 104, 107, 102, 111, 1535, 102, 102, 4, 5, 6, 7, 8, 9, 102, 102, 102, 564, 102, 102, 102, 996, 1417, 104, 441, 1044, 123, 574, 102, 446, 875, 949, 102, 1375, 102, 582, 32, 104, 10, 11, 12, 13, 14, 3, 102, 102, 107, 102, 108, 102, 10, 11, 12, 13, 14, 104, 1183, 1184, 605, 1195, 1194, 1195, 479, 610, 481, 37, 62, 104, 64, 616, 875, 1216, 102, 108, 102, 101, 108, 37, 109, 106, 104, 104, 1216, 108, 1226, 1480, 1481, 104, 60, 102, 65, 102, 67, 68, 69, 104, 108, 102, 108, 1194, 60, 76, 77, 272, 104, 1241, 101, 1241, 101, 101, 101, 1256, 1257, 1258, 788, 101, 285, 286, 124, 107, 102, 1216, 102, 104, 798, 3, 101, 1216, 297, 101, 107, 103, 10, 11, 12, 13, 14, 102, 1216, 111, 814, 124, 121, 948, 949, 106, 108, 694, 1396, 104, 108, 104, 65, 102, 67, 102, 69, 326, 104, 37, 104, 653, 1296, 76, 77, 104, 102, 1301, 1264, 104, 1315, 102, 104, 45, 104, 102, 1195, 724, 106, 1275, 1276, 1277, 60, 124, 124, 107, 124, 124, 101, 104, 103, 996, 1386, 107, 363, 124, 109, 1216, 111, 1044, 1336, 1296, 1336, 102, 104, 107, 1301, 1514, 104, 626, 1514, 104, 1301, 1514, 104, 1514, 104, 104, 1514, 1514, 104, 1514, 1241, 1301, 104, 102, 102, 55, 1373, 1325, 104, 1376, 101, 104, 101, 1395, 54, 102, 104, 1044, 102, 124, 1309, 106, 1386, 1493, 75, 102, 109, 1515, 1515, 102, 1227, 1395, 1396, 104, 104, 3, 1403, 1404, 102, 104, 102, 810, 10, 11, 12, 13, 14, 1535, 1535, 101, 689, 89, 107, 65, 1421, 67, 695, 69, 104, 1426, 1301, 102, 0, 1, 76, 77, 102, 102, 1417, 37, 102, 108, 102, 0, 788, 40, 109, 124, 89, 1437, 1147, 1437, 124, 106, 798, 1452, 855, 1227, 102, 101, 124, 103, 60, 31, 32, 1336, 75, 124, 102, 111, 814, 109, 1458, 104, 31, 107, 44, 1514, 104, 1465, 101, 1514, 1514, 107, 124, 42, 102, 44, 107, 124, 1147, 102, 649, 548, 1020, 1021, 549, 1494, 66, 1493, 551, 1480, 1481, 60, 550, 552, 63, 1126, 1505, 66, 1216, 1458, 1381, 1510, 535, 536, 537, 1458, 1465, 1216, 1514, 1515, 1508, 1515, 1465, 1481, 1543, 1524, 1458, 1526, 1310, 1496, 1120, 1530, 102, 1465, 1533, 1194, 1195, 1121, 1237, 1535, 1539, 1535, 1073, 1465, 1543, 1466, 947, 948, 949, 1077, 1078, 574, 925, 446, 681, 970, 927, 1216, 434, 1508, 434, 569, 868, 631, 1437, 1508, 945, 724, 1227, 1228, 1241, 472, 734, 143, 1495, 976, 1508, -1, 1237, -1, -1, 151, 1241, -1, 143, 1458, -1, -1, -1, -1, -1, -1, 1465, 994, 65, 996, 155, 868, 69, -1, -1, -1, 1301, 874, -1, 76, 77, -1, -1, 179, -1, -1, -1, 1534, -1, -1, -1, -1, -1, 178, 179, -1, -1, 193, -1, 1546, 196, 197, -1, -1, 101, -1, 202, -1, 65, 1508, 67, 1296, 69, -1, 111, -1, 1301, 202, -1, 76, 77, -1, -1, -1, -1, 54, 222, -1, 213, -1, 226, 65, 228, 67, 68, 69, -1, 1322, 1323, 235, -1, -1, 76, 77, 101, 241, 103, -1, 1020, 1021, 246, 1336, -1, 65, 111, -1, 241, 69, -1, -1, 256, 710, 1089, -1, 76, 77, -1, 1522, 264, 1467, 255, -1, -1, 970, 103, -1, -1, 106, -1, -1, -1, 1235, -1, 65, -1, -1, -1, 69, -1, 101, -1, 103, -1, -1, 76, 77, -1, 1124, 1496, 111, -1, -1, -1, -1, 753, 1077, 1078, 1392, -1, -1, 1264, -1, -1, -1, -1, -1, 63, -1, 1145, 101, -1, 1275, 1276, 1277, 1522, 1152, -1, -1, 0, 111, 326, -1, 317, 1458, -1, -1, -1, 333, -1, -1, 1465, -1, -1, -1, -1, -1, 331, -1, 1433, -1, 346, -1, 1437, -1, 350, -1, -1, 353, -1, 31, -1, -1, -1, -1, -1, -1, 113, -1, -1, -1, -1, 1325, -1, 1458, -1, -1, 1073, -1, -1, -1, 1465, 210, 1467, 1508, -1, 1470, 1471, -1, -1, 1086, 1087, -1, -1, -1, 66, -1, -1, -1, -1, 1226, 1227, 1228, 387, 399, -1, -1, -1, -1, 155, -1, -1, 1496, -1, 1498, 1241, -1, 65, 413, 67, 68, 69, -1, 418, 1508, -1, -1, -1, 76, 77, -1, 426, -1, -1, 262, -1, -1, -1, 1522, -1, -1, 269, 890, -1, -1, -1, -1, -1, -1, 63, -1, -1, 436, 101, -1, -1, -1, 452, -1, 73, 455, -1, -1, -1, 1235, -1, -1, 213, -1, -1, -1, -1, -1, -1, -1, 470, -1, 472, -1, -1, 151, -1, -1, -1, -1, 480, -1, -1, 472, 484, -1, -1, 476, 1264, 1190, -1, 1322, 1323, 1324, 113, -1, -1, 330, 249, 1275, 1276, 1277, 253, -1, -1, 1336, -1, -1, -1, -1, -1, -1, 512, -1, 347, -1, -1, -1, 351, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, -1, -1, -1, -1, -1, -1, -1, 155, -1, -1, -1, -1, -1, -1, 996, -1, -1, 222, -1, -1, 1325, -1, -1, 123, -1, -1, 1386, -1, 557, -1, -1, -1, 1392, -1, -1, -1, 241, -1, -1, -1, -1, 246, -1, 572, -1, 574, -1, -1, -1, -1, -1, -1, 332, 582, -1, -1, -1, -1, 587, -1, -1, -1, 1044, -1, 0, 213, -1, 585, -1, 587, -1, -1, -1, 1433, -1, -1, 605, 1437, -1, -1, -1, 610, -1, -1, -1, -1, -1, 616, -1, -1, -1, 620, 621, -1, -1, 31, -1, -1, -1, -1, -1, 249, -1, -1, -1, 253, 635, 1467, -1, -1, 1470, 1471, -1, -1, -1, -1, -1, -1, -1, -1, -1, 269, -1, -1, 653, -1, -1, -1, 333, -1, 66, 411, -1, -1, -1, -1, 1496, 666, 1498, -1, -1, -1, -1, -1, 673, -1, -1, 676, 353, -1, 668, -1, 182, -1, -1, -1, 674, -1, 676, 189, 1390, -1, 1522, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 709, 461, -1, 712, 332, -1, 1168, -1, -1, -1, -1, -1, 721, -1, 399, 724, -1, -1, -1, -1, -1, -1, 720, 721, -1, -1, -1, -1, 413, -1, -1, -1, -1, 418, -1, 151, -1, 746, -1, -1, 582, 426, 751, -1, -1, -1, -1, -1, 258, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 606, -1, -1, 452, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 788, 622, -1, -1, 411, -1, 470, -1, 472, -1, 798, -1, -1, 634, -1, 803, 804, 37, -1, -1, -1, 428, 810, 312, -1, -1, 814, -1, -1, -1, -1, 320, -1, -1, 323, 823, 813, -1, 577, -1, 60, -1, -1, -1, -1, 65, 241, 824, 512, 69, -1, 246, -1, -1, 461, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, 855, 607, -1, -1, -1, -1, 612, -1, -1, 10, 11, 12, 13, 14, 101, -1, 103, -1, -1, -1, 875, -1, -1, 379, 111, -1, -1, 383, -1, -1, -1, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 572, -1, -1, 899, -1, 734, -1, -1, -1, 905, -1, -1, -1, -1, -1, -1, -1, -1, 60, 904, 905, -1, -1, 65, -1, 67, -1, 69, -1, -1, 333, -1, 917, -1, 76, 77, -1, -1, -1, -1, 925, -1, -1, 939, -1, -1, -1, -1, 620, 621, 353, 947, 948, 700, -1, -1, -1, -1, 943, 101, -1, 103, 577, 635, -1, -1, 962, 714, -1, 111, 467, -1, -1, -1, -1, -1, -1, -1, -1, -1, 976, 653, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 607, -1, 666, -1, 399, 612, 994, -1, 996, 673, -1, -1, -1, -1, -1, -1, -1, -1, 413, -1, -1, 0, -1, 418, -1, -1, 1014, -1, -1, -1, -1, 426, 1020, 1021, -1, 1023, 1024, 1025, -1, -1, -1, -1, -1, -1, -1, 709, -1, -1, 712, -1, -1, -1, 31, -1, -1, -1, 1044, 452, -1, -1, -1, -1, -1, 802, -1, -1, -1, 556, 557, -1, -1, -1, -1, -1, -1, 470, -1, 472, -1, 900, -1, -1, 746, -1, -1, -1, -1, 66, -1, 1077, 1078, -1, -1, 700, -1, -1, -1, -1, -1, -1, 1088, 1089, -1, -1, -1, -1, -1, 714, 1085, -1, -1, -1, -1, -1, -1, -1, -1, 512, -1, 10, 11, 12, 13, 14, 788, -1, -1, 734, -1, -1, -1, -1, -1, -1, 798, -1, 1124, -1, -1, 803, 804, -1, 25, 26, 27, -1, 37, -1, -1, -1, 814, 640, -1, -1, -1, 644, -1, 1145, -1, 1147, -1, -1, -1, -1, 1152, 1153, 1154, -1, -1, 60, -1, -1, 151, 994, 65, -1, 67, 572, 69, 668, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, 680, -1, -1, -1, 802, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1195, -1, -1, 101, 875, 95, -1, 97, -1, -1, -1, -1, -1, 111, -1, -1, -1, 1212, 620, 621, -1, 1216, -1, -1, -1, -1, -1, -1, 899, -1, -1, 1226, -1, 635, -1, -1, -1, 0, 1, -1, 1235, -1, 1237, -1, -1, -1, 1241, -1, -1, -1, -1, 653, -1, 999, -1, 241, -1, -1, -1, -1, 246, -1, -1, -1, 666, -1, -1, -1, 31, 1264, -1, 673, -1, -1, -1, -1, -1, -1, -1, -1, 1275, 1276, 1277, -1, -1, 175, -1, -1, -1, -1, -1, 962, 1287, 1288, 184, 185, 792, -1, -1, 189, 63, 191, 192, 66, -1, -1, 1301, 709, -1, -1, 712, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1324, 1325, 29, 30, 31, 32, 33, 34, -1, -1, 37, -1, 1336, 31, -1, 746, -1, -1, 333, -1, 1020, 1021, -1, 1023, 1024, 1025, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 353, -1, 67, 68, -1, -1, 1044, -1, -1, -1, 66, 10, 11, 12, 13, 14, -1, -1, 999, 788, -1, 151, -1, -1, 1386, -1, -1, -1, -1, 798, -1, 1226, -1, -1, 803, 804, -1, -1, 37, 1077, 1078, 904, 905, -1, -1, 814, 399, -1, -1, 912, 1088, 1413, -1, -1, -1, -1, -1, -1, -1, -1, 413, 60, -1, -1, -1, 418, 65, -1, 67, -1, 69, -1, -1, 426, -1, 1437, -1, 76, 77, -1, -1, 1194, -1, 213, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 151, 1458, -1, -1, 452, -1, -1, 101, 1465, 103, -1, 875, -1, -1, 1147, -1, 241, 111, -1, -1, 1153, 1154, 470, -1, 472, 10, 11, 12, 13, 14, 988, -1, -1, -1, -1, 899, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 1007, -1, 1508, 37, -1, -1, -1, -1, -1, 1515, -1, -1, -1, 1195, -1, 512, -1, -1, -1, 1514, -1, -1, 37, -1, -1, -1, 60, -1, -1, -1, 1212, 65, -1, 67, 1216, 69, -1, -1, -1, 1296, -1, 241, 76, 77, -1, 60, 246, 1386, -1, 962, 65, -1, 67, 1235, 69, 1237, 1395, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, 101, -1, 1194, -1, -1, -1, -1, -1, 572, -1, 111, 1085, 353, -1, -1, 1264, 1090, -1, -1, 101, -1, 103, -1, -1, -1, -1, 1275, 1276, 1277, 111, -1, -1, -1, -1, -1, -1, -1, -1, 1287, 1288, 1020, 1021, -1, 1023, 1024, 1025, 10, 11, 12, 13, 14, -1, 1301, -1, -1, -1, 620, 621, -1, -1, -1, -1, -1, -1, 1044, -1, 333, -1, -1, -1, -1, 635, 413, 37, -1, -1, 1325, -1, -1, -1, -1, -1, -1, -1, -1, -1, 353, -1, -1, 653, -1, -1, 560, 561, -1, -1, 60, 1077, 1078, -1, -1, 65, 666, -1, 1296, 69, -1, -1, 1088, 673, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, 588, -1, -1, 591, 592, -1, 594, -1, 596, 597, -1, 472, 399, 601, 602, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, 709, 413, 111, 712, -1, -1, 418, -1, -1, -1, -1, -1, -1, -1, 426, -1, -1, -1, -1, 1413, -1, -1, 1147, -1, -1, -1, 512, -1, 1153, 1154, -1, -1, -1, -1, -1, -1, -1, 746, -1, -1, 452, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 470, -1, 472, -1, -1, -1, 1458, -1, -1, -1, -1, -1, 1195, 1465, 685, 686, -1, -1, -1, -1, 691, 788, -1, -1, -1, -1, -1, -1, 572, 1212, -1, 798, -1, 1216, -1, -1, 803, 804, -1, -1, -1, -1, 512, -1, -1, -1, -1, 814, -1, -1, -1, -1, 1235, -1, 1237, -1, 1508, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 620, 621, 29, 30, 31, 1264, -1, -1, -1, -1, 37, 38, -1, -1, -1, 635, 1275, 1276, 1277, -1, -1, -1, -1, -1, -1, -1, 572, -1, 1287, 1288, -1, -1, 875, 60, -1, -1, -1, -1, -1, -1, 67, 68, 1301, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, 899, -1, -1, -1, -1, -1, 25, 26, 27, -1, 1325, -1, -1, -1, -1, 37, -1, -1, 620, 621, 103, -1, -1, -1, 107, -1, -1, -1, 111, -1, -1, -1, -1, 635, -1, -1, 712, -1, 60, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, -1, 653, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, 962, 666, -1, -1, -1, 50, -1, 52, 673, -1, 55, 56, 57, 95, 59, 97, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, 74, -1, -1, -1, -1, -1, 1413, -1, -1, -1, 121, 85, 86, -1, -1, 709, -1, -1, 712, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1020, 1021, -1, 1023, 1024, 1025, -1, 804, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1458, 746, 1044, -1, -1, -1, -1, 1465, -1, -1, -1, -1, -1, 175, -1, -1, -1, -1, -1, -1, 182, -1, 184, 185, -1, -1, 151, 189, -1, 191, 192, -1, -1, -1, -1, 1077, 1078, -1, -1, -1, -1, -1, -1, 788, -1, -1, 1088, -1, -1, -1, 1508, -1, -1, 798, -1, -1, 875, -1, 803, 804, -1, -1, -1, -1, -1, -1, -1, -1, -1, 814, -1, -1, -1, -1, -1, -1, -1, -1, -1, 7, 899, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, 258, -1, -1, -1, -1, -1, -1, -1, -1, 1147, -1, -1, 36, 37, 38, 1153, 1154, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 948, 875, 59, 60, 1079, -1, -1, -1, 65, -1, -1, -1, 69, -1, 962, 72, 73, 74, 75, 76, 77, -1, 79, 80, 1195, 899, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1212, -1, -1, 101, 1216, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, 1235, -1, 1237, -1, -1, -1, -1, -1, 326, -1, 328, 1023, 1024, 1025, -1, -1, -1, -1, -1, -1, -1, 339, 340, -1, 962, -1, -1, -1, -1, 1264, -1, -1, 1044, -1, -1, 353, -1, -1, -1, -1, 1275, 1276, 1277, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1287, 1288, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1301, -1, -1, -1, -1, -1, -1, -1, 1213, -1, 1088, -1, -1, -1, -1, -1, 1020, 1021, -1, 1023, 1024, 1025, -1, -1, 1325, -1, -1, -1, -1, 413, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1044, -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, -1, -1, 29, 30, 31, 1077, 1078, 1153, 1154, -1, 37, -1, -1, -1, -1, -1, 1088, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, -1, 1413, -1, -1, -1, 1194, 1195, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 512, -1, -1, -1, -1, -1, 1212, -1, -1, -1, 1216, 560, 561, -1, -1, 1147, 103, -1, -1, -1, -1, 1153, 1154, -1, 111, -1, -1, -1, -1, 1458, -1, -1, -1, -1, -1, 1241, 1465, -1, -1, 588, -1, -1, 591, 592, -1, 594, -1, 596, 597, -1, -1, -1, 601, 602, -1, -1, -1, -1, -1, -1, 572, -1, -1, 1195, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1508, 1212, 1287, 1288, -1, 1216, -1, -1, -1, -1, -1, 1296, -1, -1, -1, -1, 1301, -1, -1, -1, -1, -1, -1, -1, 1235, -1, 1237, -1, -1, -1, -1, -1, 623, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1336, 680, 1264, -1, -1, -1, 685, 686, -1, 651, 37, -1, 691, 1275, 1276, 1277, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1287, 1288, 669, 670, -1, -1, 673, -1, 60, -1, -1, -1, -1, -1, 1301, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 701, -1, 703, -1, 1325, -1, -1, -1, -1, 710, 711, -1, -1, -1, 715, -1, -1, -1, 1413, -1, -1, -1, -1, -1, -1, -1, 727, -1, -1, -1, -1, 732, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1437, -1, -1, 746, -1, -1, -1, -1, 36, -1, 38, -1, 63, 756, -1, -1, -1, -1, -1, -1, -1, 1458, 73, -1, 75, -1, 77, -1, 1465, -1, -1, 59, -1, 84, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, 1413, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, 804, 113, -1, 115, 116, 117, -1, -1, -1, -1, 1508, -1, 101, -1, 103, -1, -1, -1, -1, 823, -1, 110, 111, 112, 113, 114, 115, -1, -1, 141, -1, -1, -1, -1, 1458, 124, -1, -1, -1, -1, -1, 1465, -1, 155, -1, -1, -1, -1, -1, -1, -1, -1, 856, -1, 858, 859, 860, -1, -1, 863, 864, -1, -1, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 878, 38, -1, -1, -1, -1, -1, -1, -1, -1, 1508, -1, 890, -1, -1, 893, -1, -1, -1, -1, -1, 899, 59, -1, -1, -1, -1, 213, 65, 215, 216, 217, 69, -1, 88, 72, 73, 74, 75, 76, 77, -1, 79, 80, 98, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, 937, -1, -1, -1, 249, 101, -1, 103, 253, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, 269, 962, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 975, 152, -1, -1, -1, 980, -1, -1, 983, -1, -1, -1, 987, -1, 165, -1, -1, 992, -1, -1, -1, 996, 997, 998, -1, -1, -1, -1, -1, -1, -1, 1006, -1, -1, 317, -1, 187, -1, -1, -1, -1, 1016, -1, -1, -1, -1, -1, -1, -1, 332, 201, -1, -1, -1, 337, 338, -1, -1, 209, -1, 1035, 1036, 345, -1, -1, -1, -1, 1079, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 230, -1, -1, -1, -1, -1, 1060, -1, -1, 1063, -1, -1, 242, -1, -1, -1, -1, 247, -1, -1, -1, -1, -1, -1, -1, 387, -1, -1, -1, -1, 260, -1, -1, -1, 1088, -1, 266, -1, 268, -1, -1, -1, -1, 405, -1, -1, -1, -1, -1, 411, -1, -1, -1, 1107, 284, -1, -1, -1, -1, 1113, 1114, -1, -1, -1, -1, -1, 428, -1, 1122, 431, 432, -1, -1, -1, 1128, -1, -1, 1131, -1, 1133, -1, -1, 1136, -1, -1, 447, -1, -1, -1, -1, -1, -1, -1, 1147, -1, 325, -1, 1151, -1, 461, -1, -1, -1, -1, -1, -1, 468, -1, -1, -1, -1, -1, -1, 36, 1168, 38, 1170, 1171, 1172, 1173, -1, -1, 1213, -1, 354, -1, -1, -1, 358, 359, -1, 361, -1, 1187, -1, 1189, 59, 367, 368, 1193, 370, 371, 65, 373, -1, 375, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, 1212, -1, -1, -1, 392, -1, 87, -1, -1, 1221, 1222, -1, 400, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, 109, 110, 111, 112, 113, 114, 115, -1, 424, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 435, -1, -1, -1, -1, -1, -1, -1, -1, -1, 577, -1, -1, 1272, 1273, -1, -1, -1, -1, 1278, 1279, -1, -1, 458, -1, -1, -1, -1, -1, 464, 1289, -1, -1, -1, 469, -1, -1, -1, -1, -1, 607, -1, -1, -1, -1, 612, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 505, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 1340, -1, -1, -1, 520, -1, -1, -1, -1, -1, -1, -1, 1352, -1, -1, -1, 1356, 1357, 1358, -1, -1, -1, 60, -1, 62, -1, 64, 65, 1368, 67, 68, 69, -1, -1, -1, -1, -1, 1377, 76, 77, 556, -1, -1, -1, -1, -1, -1, -1, -1, 565, -1, 567, 700, 1393, -1, -1, -1, 573, -1, 36, -1, 38, -1, 101, -1, 103, 714, -1, -1, -1, 586, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, 59, -1, -1, -1, 734, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, 1445, 1446, -1, -1, 625, 87, -1, -1, -1, -1, -1, -1, -1, 1458, -1, 36, -1, 38, -1, 101, 1465, 103, -1, 105, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, 59, 792, 661, -1, -1, -1, 65, -1, -1, 1492, 69, 802, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, 824, -1, -1, -1, 1520, -1, -1, -1, 151, 101, -1, 103, -1, -1, -1, -1, 108, -1, 110, 111, 112, 113, 114, 115, -1, -1, 718, -1, -1, 1545, -1, -1, -1, -1, 1550, -1, 728, 729, -1, 182, -1, -1, -1, -1, -1, -1, 189, -1, 740, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 757, -1, 759, -1, -1, -1, 763, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 917, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 258, -1, -1, -1, 943, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, 828, -1, -1, -1, -1, 76, 77, 835, -1, 969, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 848, -1, 850, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 312, -1, -1, -1, 865, -1, 999, 111, 320, 321, 871, 323, 324, -1, 326, -1, -1, -1, -1, 331, -1, -1, 883, 1016, -1, 886, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 350, 38, -1, 353, -1, 904, -1, -1, -1, -1, -1, 910, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, -1, -1, -1, -1, -1, 65, 379, -1, -1, 69, 383, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, 1085, -1, -1, -1, -1, -1, -1, -1, -1, 413, 101, -1, 103, -1, -1, 106, -1, 1102, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, 142, 436, -1, -1, -1, -1, -1, -1, -1, 151, -1, 995, -1, -1, -1, -1, -1, 1001, 1002, -1, -1, 163, -1, -1, -1, -1, -1, 270, 271, 272, 273, -1, 467, -1, -1, 470, -1, 280, 281, -1, -1, -1, 285, 286, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 297, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1057, 509, -1, -1, 512, 1194, 1063, -1, -1, -1, 326, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, 254, -1, 1098, 37, -1, -1, -1, 1103, 363, 556, 557, -1, -1, -1, -1, 1111, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, 60, 574, -1, -1, -1, -1, -1, 67, 68, 582, -1, 71, 585, -1, 587, 588, -1, -1, 1140, -1, -1, 594, -1, -1, -1, -1, -1, -1, -1, -1, -1, 604, 605, -1, -1, 1157, -1, 610, 1160, -1, 1162, 101, 1296, 103, -1, -1, -1, 620, 621, -1, -1, 111, -1, -1, -1, -1, -1, 1179, 1180, -1, -1, -1, 635, -1, -1, -1, -1, 640, 641, -1, -1, 644, 645, 353, -1, -1, -1, -1, 1200, -1, -1, -1, 362, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 668, -1, -1, -1, -1, 673, 674, -1, 676, -1, -1, -1, 680, -1, -1, 1232, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 412, -1, -1, -1, -1, -1, -1, 712, 713, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 433, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, -1, 746, -1, -1, -1, 750, 751, -1, -1, -1, 462, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 574, -1, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 1331, -1, 1333, -1, -1, -1, -1, -1, -1, -1, 792, 500, -1, 1344, -1, 1346, -1, 36, 37, 38, -1, -1, 804, 512, -1, -1, -1, -1, -1, -1, 519, 813, -1, 815, -1, 1366, -1, -1, -1, -1, 59, 60, 824, 532, 533, -1, 65, -1, -1, -1, 69, 1382, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, 1394, -1, 554, 1397, -1, 87, -1, -1, -1, 1535, 855, -1, 564, -1, -1, -1, -1, -1, -1, 101, 572, 103, 675, -1, -1, 1419, -1, -1, 110, 111, 112, 113, 114, 115, 1428, -1, -1, 1431, 1432, -1, -1, -1, -1, -1, 697, -1, -1, -1, -1, -1, -1, -1, -1, -1, 899, -1, -1, 710, -1, 904, 905, -1, -1, -1, -1, -1, -1, 912, -1, -1, -1, 623, 917, -1, -1, 1469, -1, -1, 630, 1473, 925, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1485, -1, 938, 939, -1, -1, -1, -1, 651, 753, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 962, -1, -1, -1, 673, -1, -1, 969, -1, -1, -1, -1, -1, -1, 976, 785, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 988, 989, -1, -1, -1, -1, 994, -1, 996, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1007, 1008, -1, 1010, 1011, 1012, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1023, 1024, 1025, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 746, -1, 748, -1, -1, -1, -1, -1, 754, -1, -1, -1, -1, -1, -1, -1, 762, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, 1080, -1, 890, -1, 37, 1085, -1, -1, 1088, 1089, 1090, 1091, 799, -1, -1, 802, 803, 804, 36, -1, 38, -1, 1102, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 823, -1, 71, -1, -1, 59, -1, -1, 1124, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, 1147, 101, 87, 103, -1, 1152, 1153, 1154, -1, -1, 864, 111, -1, -1, 868, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 986, -1, -1, -1, -1, -1, -1, -1, -1, -1, 996, -1, -1, -1, 899, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 1212, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 1226, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1044, 1237, -1, -1, -1, -1, 949, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, -1, -1, 962, 963, -1, -1, -1, -1, -1, -1, 970, -1, -1, -1, -1, -1, -1, 977, -1, -1, 980, -1, 982, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, -1, 1287, 1288, -1, -1, -1, 999, -1, -1, 111, -1, -1, -1, -1, -1, 59, -1, -1, -1, -1, -1, 65, -1, 1016, 1118, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, 1324, -1, -1, -1, -1, 87, -1, -1, 1039, -1, 1041, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, 1056, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, 1168, -1, -1, -1, -1, -1, -1, -1, 1075, -1, -1, -1, -1, -1, -1, 1183, 1184, -1, -1, -1, -1, 1088, -1, -1, -1, 0, 1386, -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, -1, 1413, 29, 30, 31, 32, -1, 1126, 35, -1, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, 1147, -1, 57, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 59, 1165, -1, 1167, 76, 77, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, 101, -1, 103, -1, -1, -1, -1, 1493, -1, -1, 111, -1, -1, 101, -1, 103, -1, -1, -1, 1212, -1, -1, 110, 111, 112, 113, 114, 115, 1514, 1515, -1, -1, -1, -1, 1227, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1535, -1, -1, -1, -1, -1, -1, -1, 1250, -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, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 39, -1, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 56, 57, -1, 59, 60, -1, 62, -1, 64, 65, 1417, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, -1, -1, 124, -1, -1, -1, -1, 1480, 1481, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1402, -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, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 59, 60, -1, 62, -1, 64, 65, 37, 67, 68, 69, -1, 1476, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, 1522, -1, -1, -1, -1, -1, -1, 124, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 59, 60, -1, 62, -1, 64, 65, 37, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 104, -1, -1, -1, 108, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 104, -1, -1, -1, 108, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 104, -1, -1, -1, 108, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 104, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 104, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 57, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 57, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, 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, 29, 30, 31, 32, -1, -1, 35, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, -1, 71, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, 103, 35, -1, 37, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, 104, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 102, 103, 37, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 60, -1, 62, -1, 64, 37, -1, 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 89, -1, -1, -1, 65, -1, 67, 68, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, 33, 34, -1, 36, 37, 38, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 104, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, 102, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, 60, -1, 62, -1, 64, 37, -1, 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, 71, -1, -1, -1, -1, 76, 77, 106, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, 101, -1, 103, -1, -1, 37, -1, -1, -1, -1, 111, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 60, -1, 29, 30, 31, 65, -1, 67, 68, 69, 37, 71, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, 103, -1, -1, -1, -1, -1, 76, 77, 111, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 101, -1, 103, -1, -1, 37, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 101, -1, 103, -1, 37, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 101, -1, 103, -1, 37, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 103, -1, 37, 38, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, -1, -1, 71, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, -1, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, -1, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, -1, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, 36, -1, 38, 39, -1, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, 59, -1, -1, -1, -1, -1, 65, -1, -1, 102, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, 36, -1, 38, 39, -1, 41, -1, 124, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 56, 57, -1, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, -1, -1, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 60, -1, 62, -1, 64, 37, -1, 67, 68, -1, 36, -1, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 60, 89, 56, 57, -1, 59, -1, 67, 68, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, 36, -1, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 56, 57, -1, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, 36, -1, 38, 39, -1, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 56, 57, -1, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 60, -1, 62, -1, 64, 37, -1, 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68 }; /* 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, 29, 30, 31, 32, 35, 37, 38, 57, 60, 62, 64, 65, 67, 68, 69, 76, 77, 101, 103, 111, 129, 132, 189, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 224, 225, 226, 227, 229, 230, 231, 232, 233, 234, 235, 243, 244, 270, 271, 279, 282, 288, 289, 291, 293, 294, 300, 305, 309, 310, 311, 312, 313, 314, 315, 316, 336, 353, 354, 355, 356, 65, 111, 131, 204, 206, 214, 216, 226, 230, 232, 271, 75, 101, 298, 299, 300, 298, 298, 65, 67, 68, 69, 130, 131, 260, 261, 280, 281, 67, 68, 261, 101, 291, 215, 216, 101, 111, 305, 310, 311, 312, 314, 315, 316, 126, 103, 207, 214, 216, 309, 313, 352, 353, 356, 357, 127, 123, 264, 106, 127, 164, 67, 68, 129, 259, 127, 127, 127, 108, 127, 67, 101, 111, 295, 304, 305, 306, 307, 308, 309, 313, 317, 318, 319, 320, 321, 3, 27, 71, 228, 3, 5, 67, 68, 103, 111, 206, 217, 221, 224, 233, 309, 313, 356, 204, 206, 216, 226, 230, 232, 271, 309, 313, 32, 222, 222, 217, 224, 127, 222, 217, 222, 217, 101, 106, 261, 106, 261, 222, 217, 108, 127, 127, 0, 126, 101, 164, 298, 298, 126, 103, 214, 216, 354, 259, 259, 216, 123, 101, 111, 295, 305, 309, 103, 111, 356, 292, 219, 300, 101, 276, 101, 101, 101, 36, 38, 59, 65, 69, 72, 73, 74, 75, 79, 80, 87, 101, 103, 110, 111, 112, 113, 114, 115, 128, 132, 133, 134, 135, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 157, 214, 263, 278, 352, 357, 216, 102, 102, 102, 102, 102, 102, 102, 103, 111, 127, 155, 206, 207, 213, 216, 220, 221, 226, 229, 230, 232, 249, 250, 254, 255, 256, 257, 271, 336, 348, 349, 350, 351, 356, 357, 126, 101, 309, 313, 356, 101, 108, 124, 103, 106, 111, 155, 265, 107, 126, 108, 124, 101, 108, 124, 108, 124, 108, 124, 298, 124, 305, 306, 307, 308, 318, 319, 320, 321, 216, 304, 317, 57, 297, 103, 298, 335, 336, 298, 298, 164, 126, 101, 298, 335, 298, 298, 216, 295, 101, 101, 215, 214, 216, 101, 126, 214, 352, 357, 164, 126, 259, 264, 206, 221, 309, 313, 164, 126, 280, 216, 226, 124, 216, 216, 126, 38, 103, 214, 236, 237, 238, 239, 352, 356, 106, 245, 261, 106, 216, 280, 124, 124, 291, 126, 131, 258, 3, 127, 196, 197, 211, 213, 216, 126, 297, 101, 297, 155, 305, 216, 101, 126, 259, 106, 32, 33, 34, 214, 272, 273, 275, 126, 121, 123, 277, 126, 217, 223, 224, 259, 301, 302, 303, 140, 153, 154, 101, 140, 142, 101, 140, 101, 101, 140, 140, 131, 103, 155, 160, 164, 214, 262, 352, 126, 142, 142, 75, 78, 79, 80, 101, 103, 105, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 123, 159, 142, 111, 116, 117, 113, 114, 81, 82, 83, 84, 118, 119, 85, 86, 112, 120, 121, 87, 88, 122, 123, 359, 101, 111, 331, 332, 333, 334, 335, 102, 108, 101, 335, 103, 336, 101, 335, 336, 126, 103, 111, 127, 214, 216, 347, 348, 356, 357, 104, 127, 67, 101, 103, 111, 305, 322, 323, 324, 325, 326, 327, 328, 329, 330, 336, 337, 338, 339, 340, 341, 342, 111, 356, 216, 127, 127, 111, 214, 216, 349, 259, 214, 336, 349, 259, 127, 126, 126, 126, 126, 65, 103, 105, 261, 265, 266, 267, 268, 269, 126, 126, 126, 126, 126, 126, 295, 102, 102, 102, 102, 102, 102, 102, 304, 317, 101, 264, 126, 196, 126, 295, 160, 263, 160, 263, 295, 278, 103, 127, 196, 297, 164, 126, 196, 214, 272, 278, 238, 239, 126, 101, 109, 111, 240, 242, 304, 305, 317, 335, 343, 344, 345, 346, 107, 237, 108, 124, 108, 124, 261, 236, 108, 358, 123, 246, 245, 216, 251, 252, 253, 256, 257, 102, 108, 164, 126, 111, 155, 126, 213, 216, 250, 348, 356, 289, 290, 101, 111, 322, 102, 108, 359, 261, 272, 101, 106, 261, 263, 272, 102, 108, 101, 102, 109, 262, 262, 103, 131, 137, 155, 263, 262, 126, 102, 108, 102, 101, 111, 343, 102, 108, 127, 155, 103, 131, 103, 136, 137, 126, 103, 131, 155, 155, 142, 142, 142, 143, 143, 144, 144, 145, 145, 145, 145, 146, 146, 147, 148, 149, 150, 151, 109, 160, 155, 126, 332, 333, 334, 216, 331, 298, 298, 155, 263, 126, 126, 258, 127, 216, 220, 126, 104, 356, 67, 129, 214, 336, 354, 104, 101, 126, 305, 323, 324, 325, 328, 338, 339, 340, 126, 216, 322, 326, 337, 101, 298, 341, 359, 298, 298, 359, 101, 298, 341, 298, 298, 298, 298, 336, 214, 347, 357, 259, 104, 108, 104, 108, 359, 214, 349, 359, 104, 247, 248, 249, 250, 247, 259, 127, 155, 126, 103, 261, 109, 108, 358, 265, 103, 109, 269, 28, 198, 199, 259, 247, 131, 295, 131, 297, 101, 335, 336, 101, 335, 336, 133, 111, 127, 164, 251, 102, 102, 102, 102, 102, 126, 104, 164, 196, 164, 101, 111, 127, 127, 124, 124, 103, 127, 305, 344, 345, 346, 154, 216, 343, 241, 242, 241, 298, 298, 261, 298, 107, 261, 107, 154, 358, 127, 127, 131, 211, 127, 127, 247, 101, 111, 356, 127, 107, 216, 273, 274, 127, 126, 126, 101, 127, 102, 302, 160, 161, 124, 75, 190, 191, 192, 102, 102, 126, 109, 102, 102, 102, 127, 155, 216, 106, 142, 157, 155, 156, 158, 104, 108, 127, 126, 126, 102, 108, 155, 126, 153, 109, 251, 102, 102, 102, 331, 251, 102, 104, 103, 111, 155, 155, 216, 127, 101, 101, 214, 354, 328, 251, 102, 102, 102, 102, 102, 102, 102, 7, 127, 216, 322, 326, 337, 126, 126, 359, 126, 126, 101, 127, 127, 127, 127, 264, 104, 127, 153, 154, 155, 296, 126, 265, 267, 107, 126, 200, 261, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 51, 53, 56, 103, 131, 161, 162, 163, 164, 165, 166, 168, 169, 181, 183, 184, 189, 201, 294, 28, 127, 123, 264, 126, 126, 102, 104, 127, 127, 67, 164, 216, 102, 102, 126, 104, 102, 102, 102, 343, 240, 246, 107, 102, 108, 104, 104, 127, 216, 108, 359, 276, 102, 272, 204, 206, 214, 284, 285, 286, 287, 278, 102, 102, 101, 102, 109, 108, 155, 155, 104, 266, 108, 127, 158, 104, 131, 138, 139, 155, 137, 127, 138, 153, 157, 127, 101, 335, 336, 127, 214, 336, 349, 126, 127, 127, 127, 155, 104, 126, 126, 102, 127, 101, 335, 336, 101, 341, 101, 341, 336, 215, 104, 7, 111, 127, 155, 251, 251, 250, 254, 254, 255, 247, 102, 108, 108, 102, 104, 89, 115, 127, 127, 138, 265, 155, 108, 124, 201, 205, 216, 220, 101, 101, 162, 101, 101, 124, 131, 124, 131, 111, 131, 161, 101, 164, 124, 155, 126, 109, 124, 127, 126, 127, 200, 102, 155, 251, 251, 298, 336, 102, 104, 101, 106, 261, 261, 127, 101, 335, 336, 126, 102, 126, 127, 295, 107, 126, 127, 127, 102, 106, 154, 124, 190, 192, 108, 127, 358, 156, 104, 127, 78, 105, 108, 127, 127, 104, 127, 102, 126, 102, 214, 349, 104, 104, 104, 127, 247, 247, 102, 126, 126, 126, 155, 155, 127, 104, 127, 127, 127, 127, 102, 126, 126, 154, 154, 104, 104, 127, 127, 261, 216, 160, 160, 45, 160, 126, 124, 124, 160, 124, 124, 160, 54, 55, 185, 186, 187, 124, 127, 298, 166, 107, 124, 127, 127, 278, 236, 106, 104, 126, 89, 256, 257, 102, 285, 108, 124, 108, 124, 107, 283, 102, 102, 109, 158, 104, 107, 104, 103, 139, 103, 139, 139, 104, 104, 104, 251, 104, 127, 127, 251, 251, 251, 127, 127, 104, 104, 102, 102, 104, 108, 89, 250, 89, 127, 104, 104, 102, 102, 101, 102, 161, 182, 201, 124, 102, 101, 164, 187, 54, 104, 162, 102, 102, 102, 107, 236, 251, 106, 126, 126, 284, 124, 75, 193, 127, 109, 126, 126, 127, 102, 102, 127, 127, 127, 104, 104, 126, 127, 104, 162, 42, 43, 106, 172, 173, 174, 160, 162, 127, 102, 161, 106, 174, 89, 126, 101, 106, 261, 107, 127, 126, 259, 295, 107, 102, 108, 104, 155, 138, 138, 102, 102, 102, 102, 254, 40, 154, 170, 171, 296, 109, 126, 162, 172, 102, 124, 162, 124, 126, 102, 126, 89, 126, 236, 106, 102, 284, 124, 75, 109, 127, 127, 162, 89, 108, 109, 127, 194, 195, 201, 124, 161, 161, 194, 164, 188, 214, 352, 102, 126, 107, 236, 107, 155, 104, 104, 154, 170, 173, 175, 176, 126, 124, 173, 177, 178, 127, 101, 111, 295, 343, 131, 164, 188, 107, 101, 162, 167, 107, 173, 201, 161, 52, 167, 180, 107, 173, 102, 216, 127, 278, 162, 167, 124, 179, 180, 167, 180, 164, 102, 102, 179, 127, 164, 127 }; #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 282 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 288 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 298 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 299 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 300 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); } break; case 15: /* Line 1806 of yacc.c */ #line 324 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 325 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 332 "parser.yy" { (yyval.en) = new VarRefNode((yyvsp[(1) - (1)].tok)); } break; case 18: /* Line 1806 of yacc.c */ #line 334 "parser.yy" { (yyval.en) = new VarRefNode((yyvsp[(1) - (1)].tok)); } break; case 19: /* Line 1806 of yacc.c */ #line 336 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 20: /* Line 1806 of yacc.c */ #line 338 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 21: /* Line 1806 of yacc.c */ #line 340 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 22: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { (yyval.en) = new ValofExprNode((yyvsp[(2) - (3)].sn)); } break; case 24: /* Line 1806 of yacc.c */ #line 352 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Index), (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en)); } break; case 25: /* Line 1806 of yacc.c */ #line 354 "parser.yy" { (yyval.en) = new CompositeExprNode((yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en)); } break; case 26: /* Line 1806 of yacc.c */ #line 356 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::FieldSel), (yyvsp[(1) - (3)].en), new VarRefNode((yyvsp[(3) - (3)].tok))); } break; case 28: /* Line 1806 of yacc.c */ #line 359 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::PFieldSel), (yyvsp[(1) - (3)].en), new VarRefNode((yyvsp[(3) - (3)].tok))); } break; case 30: /* Line 1806 of yacc.c */ #line 362 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::IncrPost), (yyvsp[(1) - (2)].en)); } break; case 31: /* Line 1806 of yacc.c */ #line 364 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::DecrPost), (yyvsp[(1) - (2)].en)); } break; case 32: /* Line 1806 of yacc.c */ #line 367 "parser.yy" { (yyval.en) = 0; } break; case 34: /* Line 1806 of yacc.c */ #line 373 "parser.yy" { (yyval.en) = (ExpressionNode *)((yyvsp[(1) - (3)].en)->set_link((yyvsp[(3) - (3)].en))); } break; case 35: /* Line 1806 of yacc.c */ #line 378 "parser.yy" { (yyval.en) = 0; } break; case 37: /* Line 1806 of yacc.c */ #line 381 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_asArgName((yyvsp[(1) - (3)].tok)); } break; case 38: /* Line 1806 of yacc.c */ #line 386 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_asArgName((yyvsp[(3) - (7)].en)); } break; case 39: /* Line 1806 of yacc.c */ #line 388 "parser.yy" { (yyval.en) = (yyvsp[(9) - (9)].en)->set_asArgName( new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (9)].en)->set_link( flattenCommas( (yyvsp[(5) - (9)].en) )))); } break; case 41: /* Line 1806 of yacc.c */ #line 393 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 42: /* Line 1806 of yacc.c */ #line 398 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 43: /* Line 1806 of yacc.c */ #line 400 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::FieldSel), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en)); } break; case 44: /* Line 1806 of yacc.c */ #line 402 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::FieldSel), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en)); } break; case 45: /* Line 1806 of yacc.c */ #line 404 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::PFieldSel), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en)); } break; case 46: /* Line 1806 of yacc.c */ #line 406 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::PFieldSel), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en)); } break; case 48: /* Line 1806 of yacc.c */ #line 412 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Incr), (yyvsp[(2) - (2)].en)); } break; case 49: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Decr), (yyvsp[(2) - (2)].en)); } break; case 50: /* Line 1806 of yacc.c */ #line 416 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 51: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new CompositeExprNode((yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en)); } break; case 52: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Neg), (yyvsp[(2) - (2)].en)); } break; case 53: /* Line 1806 of yacc.c */ #line 422 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::PointTo), (yyvsp[(2) - (2)].en)); } break; case 54: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::SizeOf), (yyvsp[(2) - (2)].en)); } break; case 55: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::SizeOf), new TypeValueNode((yyvsp[(3) - (4)].decl))); } break; case 56: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Attr), new VarRefNode((yyvsp[(1) - (1)].tok))); } break; case 57: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Attr), new VarRefNode((yyvsp[(1) - (4)].tok)), new TypeValueNode((yyvsp[(3) - (4)].decl))); } break; case 58: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Attr), new VarRefNode((yyvsp[(1) - (4)].tok)), (yyvsp[(3) - (4)].en)); } break; case 59: /* Line 1806 of yacc.c */ #line 438 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::AlignOf), (yyvsp[(2) - (2)].en)); } break; case 60: /* Line 1806 of yacc.c */ #line 440 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::AlignOf), new TypeValueNode((yyvsp[(3) - (4)].decl))); } break; case 61: /* Line 1806 of yacc.c */ #line 442 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::LabelAddress), new VarRefNode((yyvsp[(2) - (2)].tok), true)); } break; case 62: /* Line 1806 of yacc.c */ #line 446 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::AddressOf); } break; case 63: /* Line 1806 of yacc.c */ #line 447 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::UnPlus); } break; case 64: /* Line 1806 of yacc.c */ #line 448 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::UnMinus); } break; case 65: /* Line 1806 of yacc.c */ #line 449 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::BitNeg); } break; case 67: /* Line 1806 of yacc.c */ #line 455 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Cast), new TypeValueNode((yyvsp[(2) - (4)].decl)), (yyvsp[(4) - (4)].en)); } break; case 68: /* Line 1806 of yacc.c */ #line 457 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Cast), new TypeValueNode((yyvsp[(2) - (4)].decl)), (yyvsp[(4) - (4)].en)); } break; case 70: /* Line 1806 of yacc.c */ #line 463 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Mul),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 71: /* Line 1806 of yacc.c */ #line 465 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Div),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 72: /* Line 1806 of yacc.c */ #line 467 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Mod),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 74: /* Line 1806 of yacc.c */ #line 473 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Plus),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 75: /* Line 1806 of yacc.c */ #line 475 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Minus),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 77: /* Line 1806 of yacc.c */ #line 481 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::LShift),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 78: /* Line 1806 of yacc.c */ #line 483 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::RShift),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 80: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::LThan),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 81: /* Line 1806 of yacc.c */ #line 491 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::GThan),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 82: /* Line 1806 of yacc.c */ #line 493 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::LEThan),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 83: /* Line 1806 of yacc.c */ #line 495 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::GEThan),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 85: /* Line 1806 of yacc.c */ #line 501 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Eq), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 86: /* Line 1806 of yacc.c */ #line 503 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Neq), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 88: /* Line 1806 of yacc.c */ #line 509 "parser.yy" { (yyval.en) =new CompositeExprNode(new OperatorNode(OperatorNode::BitAnd), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 90: /* Line 1806 of yacc.c */ #line 515 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Xor), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 92: /* Line 1806 of yacc.c */ #line 521 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::BitOr), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 94: /* Line 1806 of yacc.c */ #line 527 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::And), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 96: /* Line 1806 of yacc.c */ #line 533 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Or), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 98: /* Line 1806 of yacc.c */ #line 539 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode(OperatorNode::Cond), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en)) ) ); } break; case 99: /* Line 1806 of yacc.c */ #line 541 "parser.yy" { (yyval.en)=new CompositeExprNode(new OperatorNode(OperatorNode::NCond),(yyvsp[(1) - (4)].en),(yyvsp[(4) - (4)].en)); } break; case 100: /* Line 1806 of yacc.c */ #line 543 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode(OperatorNode::Cond), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en)) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 554 "parser.yy" { (yyval.en) =new CompositeExprNode(new OperatorNode(OperatorNode::Assign), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 104: /* Line 1806 of yacc.c */ #line 556 "parser.yy" { (yyval.en) =new CompositeExprNode((yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 105: /* Line 1806 of yacc.c */ #line 558 "parser.yy" { (yyval.en) = ((yyvsp[(2) - (2)].en) == 0) ? (yyvsp[(1) - (2)].en) : new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 106: /* Line 1806 of yacc.c */ #line 563 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 108: /* Line 1806 of yacc.c */ #line 571 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 109: /* Line 1806 of yacc.c */ #line 573 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 110: /* Line 1806 of yacc.c */ #line 575 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); } break; case 111: /* Line 1806 of yacc.c */ #line 577 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); } break; case 113: /* Line 1806 of yacc.c */ #line 583 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 114: /* Line 1806 of yacc.c */ #line 587 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::MulAssn); } break; case 115: /* Line 1806 of yacc.c */ #line 588 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::DivAssn); } break; case 116: /* Line 1806 of yacc.c */ #line 589 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::ModAssn); } break; case 117: /* Line 1806 of yacc.c */ #line 590 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::PlusAssn); } break; case 118: /* Line 1806 of yacc.c */ #line 591 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::MinusAssn); } break; case 119: /* Line 1806 of yacc.c */ #line 592 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::LSAssn); } break; case 120: /* Line 1806 of yacc.c */ #line 593 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::RSAssn); } break; case 121: /* Line 1806 of yacc.c */ #line 594 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::AndAssn); } break; case 122: /* Line 1806 of yacc.c */ #line 595 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::ERAssn); } break; case 123: /* Line 1806 of yacc.c */ #line 596 "parser.yy" { (yyval.en) = new OperatorNode(OperatorNode::OrAssn); } break; case 125: /* Line 1806 of yacc.c */ #line 602 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Comma),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 126: /* Line 1806 of yacc.c */ #line 607 "parser.yy" { (yyval.en) = 0; } break; case 130: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 136: /* Line 1806 of yacc.c */ #line 626 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label((yyvsp[(1) - (4)].tok));} break; case 137: /* Line 1806 of yacc.c */ #line 631 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 138: /* Line 1806 of yacc.c */ #line 638 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 140: /* Line 1806 of yacc.c */ #line 644 "parser.yy" { if ((yyvsp[(1) - (3)].sn) != 0) { (yyvsp[(1) - (3)].sn)->set_link((yyvsp[(3) - (3)].sn)); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 141: /* Line 1806 of yacc.c */ #line 649 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 142: /* Line 1806 of yacc.c */ #line 651 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 143: /* Line 1806 of yacc.c */ #line 653 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 660 "parser.yy" { if ((yyvsp[(1) - (2)].sn) != 0) { (yyvsp[(1) - (2)].sn)->set_link((yyvsp[(2) - (2)].sn)); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 147: /* Line 1806 of yacc.c */ #line 665 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Exp, (yyvsp[(1) - (2)].en), 0); } break; case 148: /* Line 1806 of yacc.c */ #line 671 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn)); } break; case 149: /* Line 1806 of yacc.c */ #line 673 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn))) ); } break; case 150: /* Line 1806 of yacc.c */ #line 675 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn)); } break; case 151: /* Line 1806 of yacc.c */ #line 677 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn)); /* xxx */ } break; case 152: /* Line 1806 of yacc.c */ #line 683 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Choose, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn)); } break; case 153: /* Line 1806 of yacc.c */ #line 685 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Choose, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn)); } break; case 154: /* Line 1806 of yacc.c */ #line 692 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 155: /* Line 1806 of yacc.c */ #line 694 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Range),(yyvsp[(1) - (3)].en),(yyvsp[(3) - (3)].en)); } break; case 158: /* Line 1806 of yacc.c */ #line 701 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(tupleContents((yyvsp[(1) - (3)].en)))->set_link((yyvsp[(3) - (3)].en)) ); } break; case 159: /* Line 1806 of yacc.c */ #line 705 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Case, (yyvsp[(2) - (3)].en), 0); } break; case 160: /* Line 1806 of yacc.c */ #line 706 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Default); } break; case 162: /* Line 1806 of yacc.c */ #line 712 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (2)].sn)->set_link((yyvsp[(2) - (2)].sn))); } break; case 163: /* Line 1806 of yacc.c */ #line 716 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case((yyvsp[(2) - (2)].sn)); } break; case 164: /* Line 1806 of yacc.c */ #line 721 "parser.yy" { (yyval.sn) = 0; } break; case 166: /* Line 1806 of yacc.c */ #line 727 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case((yyvsp[(2) - (2)].sn)); } break; case 167: /* Line 1806 of yacc.c */ #line 729 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_link((yyvsp[(2) - (3)].sn)->append_last_case((yyvsp[(3) - (3)].sn)))); } break; case 168: /* Line 1806 of yacc.c */ #line 734 "parser.yy" { (yyval.sn) = 0; } break; case 170: /* Line 1806 of yacc.c */ #line 740 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case((yyvsp[(2) - (2)].sn)); } break; case 171: /* Line 1806 of yacc.c */ #line 742 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].sn)))); } break; case 172: /* Line 1806 of yacc.c */ #line 744 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_link((yyvsp[(2) - (3)].sn)->append_last_case((yyvsp[(3) - (3)].sn)))); } break; case 173: /* Line 1806 of yacc.c */ #line 746 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (4)].sn)->set_link((yyvsp[(2) - (4)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(3) - (4)].sn),*(yyvsp[(4) - (4)].sn)))))); } break; case 174: /* Line 1806 of yacc.c */ #line 751 "parser.yy" { (yyval.sn) = 0; } break; case 176: /* Line 1806 of yacc.c */ #line 756 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Fallthru, 0, 0); } break; case 177: /* Line 1806 of yacc.c */ #line 757 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Fallthru, 0, 0); } break; case 178: /* Line 1806 of yacc.c */ #line 762 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn)); } break; case 179: /* Line 1806 of yacc.c */ #line 764 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn)); } break; case 180: /* Line 1806 of yacc.c */ #line 766 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn)); } break; case 181: /* Line 1806 of yacc.c */ #line 771 "parser.yy" { (yyval.en) = new ForCtlExprNode((yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en)); } break; case 182: /* Line 1806 of yacc.c */ #line 773 "parser.yy" { (yyval.en) = new ForCtlExprNode((yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en)); } break; case 183: /* Line 1806 of yacc.c */ #line 778 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Goto, (yyvsp[(2) - (3)].tok)); } break; case 184: /* Line 1806 of yacc.c */ #line 782 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Goto, (yyvsp[(3) - (4)].en)); } break; case 185: /* Line 1806 of yacc.c */ #line 786 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Continue, 0, 0); } break; case 186: /* Line 1806 of yacc.c */ #line 790 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Continue, (yyvsp[(2) - (3)].tok)); } break; case 187: /* Line 1806 of yacc.c */ #line 794 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Break, 0, 0); } break; case 188: /* Line 1806 of yacc.c */ #line 798 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 189: /* Line 1806 of yacc.c */ #line 800 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Return, (yyvsp[(2) - (3)].en), 0); } break; case 190: /* Line 1806 of yacc.c */ #line 802 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Throw, (yyvsp[(2) - (3)].en), 0); } break; case 191: /* Line 1806 of yacc.c */ #line 804 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Throw, 0, 0); } break; case 192: /* Line 1806 of yacc.c */ #line 809 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn))))); } break; case 193: /* Line 1806 of yacc.c */ #line 811 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn))))); } break; case 194: /* Line 1806 of yacc.c */ #line 813 "parser.yy" { (yyvsp[(3) - (4)].pn)->set_link((yyvsp[(4) - (4)].pn)); (yyval.sn) = new StatementNode(StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (4)].sn),*(yyvsp[(3) - (4)].pn))))); } break; case 196: /* Line 1806 of yacc.c */ #line 825 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 197: /* Line 1806 of yacc.c */ #line 827 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 198: /* Line 1806 of yacc.c */ #line 832 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt((yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn)); } break; case 199: /* Line 1806 of yacc.c */ #line 834 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt((yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn)) ); } break; case 200: /* Line 1806 of yacc.c */ #line 839 "parser.yy" { (yyval.pn) = new StatementNode(StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn)); std::cout << "Just created a finally node" << std::endl; } break; case 202: /* Line 1806 of yacc.c */ #line 853 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 203: /* Line 1806 of yacc.c */ #line 858 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 204: /* Line 1806 of yacc.c */ #line 860 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 206: /* Line 1806 of yacc.c */ #line 869 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Asm, 0, 0); } break; case 207: /* Line 1806 of yacc.c */ #line 871 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Asm, 0, 0); } break; case 208: /* Line 1806 of yacc.c */ #line 873 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Asm, 0, 0); } break; case 209: /* Line 1806 of yacc.c */ #line 875 "parser.yy" { (yyval.sn) = new StatementNode(StatementNode::Asm, 0, 0); } break; case 214: /* Line 1806 of yacc.c */ #line 889 "parser.yy" {} break; case 215: /* Line 1806 of yacc.c */ #line 893 "parser.yy" {} break; case 217: /* Line 1806 of yacc.c */ #line 901 "parser.yy" { (yyval.decl) = 0; } break; case 220: /* Line 1806 of yacc.c */ #line 908 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 221: /* Line 1806 of yacc.c */ #line 913 "parser.yy" { (yyval.decl) = 0; } break; case 224: /* Line 1806 of yacc.c */ #line 920 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 229: /* Line 1806 of yacc.c */ #line 934 "parser.yy" {} break; case 230: /* Line 1806 of yacc.c */ #line 935 "parser.yy" {} break; case 238: /* Line 1806 of yacc.c */ #line 965 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl); } break; case 239: /* Line 1806 of yacc.c */ #line 972 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 240: /* Line 1806 of yacc.c */ #line 977 "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) ) ); } break; case 241: /* Line 1806 of yacc.c */ #line 987 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 242: /* Line 1806 of yacc.c */ #line 992 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 243: /* Line 1806 of yacc.c */ #line 997 "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 244: /* Line 1806 of yacc.c */ #line 1005 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 245: /* Line 1806 of yacc.c */ #line 1010 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 246: /* Line 1806 of yacc.c */ #line 1015 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 247: /* Line 1806 of yacc.c */ #line 1020 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 248: /* Line 1806 of yacc.c */ #line 1025 "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 249: /* Line 1806 of yacc.c */ #line 1033 "parser.yy" { typedefTable.setNextIdentifier( *((yyvsp[(5) - (10)].tok)) ); (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(5) - (10)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(8) - (10)].decl), 0, true ); } break; case 250: /* Line 1806 of yacc.c */ #line 1038 "parser.yy" { typedefTable.setNextIdentifier( *((yyvsp[(5) - (10)].tok)) ); (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(5) - (10)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(8) - (10)].decl), 0, true ); } break; case 251: /* Line 1806 of yacc.c */ #line 1053 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 252: /* Line 1806 of yacc.c */ #line 1057 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 253: /* Line 1806 of yacc.c */ #line 1064 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 254: /* Line 1806 of yacc.c */ #line 1068 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 255: /* Line 1806 of yacc.c */ #line 1073 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 256: /* Line 1806 of yacc.c */ #line 1078 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 257: /* Line 1806 of yacc.c */ #line 1083 "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 258: /* Line 1806 of yacc.c */ #line 1095 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 259: /* Line 1806 of yacc.c */ #line 1100 "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 260: /* Line 1806 of yacc.c */ #line 1105 "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 261: /* Line 1806 of yacc.c */ #line 1110 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 262: /* Line 1806 of yacc.c */ #line 1115 "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 263: /* Line 1806 of yacc.c */ #line 1123 "parser.yy" { typedefTable.addToEnclosingScope(*((yyvsp[(2) - (4)].tok)), TypedefTable::TD); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 264: /* Line 1806 of yacc.c */ #line 1128 "parser.yy" { typedefTable.addToEnclosingScope(*((yyvsp[(5) - (7)].tok)), TypedefTable::TD); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 269: /* Line 1806 of yacc.c */ #line 1145 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ((yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer((yyvsp[(4) - (4)].in)); } break; case 270: /* Line 1806 of yacc.c */ #line 1150 "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 279: /* Line 1806 of yacc.c */ #line 1172 "parser.yy" { (yyval.decl) = 0; } break; case 282: /* Line 1806 of yacc.c */ #line 1185 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 284: /* Line 1806 of yacc.c */ #line 1191 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Attribute ); } break; case 285: /* Line 1806 of yacc.c */ #line 1196 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 286: /* Line 1806 of yacc.c */ #line 1198 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 287: /* Line 1806 of yacc.c */ #line 1200 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 288: /* Line 1806 of yacc.c */ #line 1202 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 289: /* Line 1806 of yacc.c */ #line 1204 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 290: /* Line 1806 of yacc.c */ #line 1206 "parser.yy" { typedefTable.enterScope(); } break; case 291: /* Line 1806 of yacc.c */ #line 1210 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 293: /* Line 1806 of yacc.c */ #line 1219 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 294: /* Line 1806 of yacc.c */ #line 1221 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 296: /* Line 1806 of yacc.c */ #line 1232 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 298: /* Line 1806 of yacc.c */ #line 1241 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 299: /* Line 1806 of yacc.c */ #line 1243 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 300: /* Line 1806 of yacc.c */ #line 1245 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 301: /* Line 1806 of yacc.c */ #line 1247 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 302: /* Line 1806 of yacc.c */ #line 1249 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 303: /* Line 1806 of yacc.c */ #line 1251 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 304: /* Line 1806 of yacc.c */ #line 1253 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 305: /* Line 1806 of yacc.c */ #line 1255 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 306: /* Line 1806 of yacc.c */ #line 1260 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 307: /* Line 1806 of yacc.c */ #line 1262 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 308: /* Line 1806 of yacc.c */ #line 1264 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 309: /* Line 1806 of yacc.c */ #line 1266 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 310: /* Line 1806 of yacc.c */ #line 1268 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 311: /* Line 1806 of yacc.c */ #line 1270 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 312: /* Line 1806 of yacc.c */ #line 1272 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 313: /* Line 1806 of yacc.c */ #line 1274 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 314: /* Line 1806 of yacc.c */ #line 1276 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 315: /* Line 1806 of yacc.c */ #line 1278 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 316: /* Line 1806 of yacc.c */ #line 1280 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 317: /* Line 1806 of yacc.c */ #line 1282 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 319: /* Line 1806 of yacc.c */ #line 1289 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 320: /* Line 1806 of yacc.c */ #line 1291 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 321: /* Line 1806 of yacc.c */ #line 1293 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 322: /* Line 1806 of yacc.c */ #line 1295 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 324: /* Line 1806 of yacc.c */ #line 1301 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 326: /* Line 1806 of yacc.c */ #line 1308 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 327: /* Line 1806 of yacc.c */ #line 1310 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 328: /* Line 1806 of yacc.c */ #line 1312 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 329: /* Line 1806 of yacc.c */ #line 1317 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 330: /* Line 1806 of yacc.c */ #line 1319 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 331: /* Line 1806 of yacc.c */ #line 1321 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 332: /* Line 1806 of yacc.c */ #line 1323 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 334: /* Line 1806 of yacc.c */ #line 1329 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 335: /* Line 1806 of yacc.c */ #line 1331 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 336: /* Line 1806 of yacc.c */ #line 1333 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 339: /* Line 1806 of yacc.c */ #line 1341 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1347 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1349 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1351 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1358 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 346: /* Line 1806 of yacc.c */ #line 1360 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1370 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, 0, (yyvsp[(3) - (4)].decl) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1372 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0, 0 ); } break; case 351: /* Line 1806 of yacc.c */ #line 1374 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (5)].aggKey), (yyvsp[(2) - (5)].tok), 0, 0, (yyvsp[(4) - (5)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1376 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (9)].aggKey), 0, (yyvsp[(4) - (9)].decl), 0, (yyvsp[(8) - (9)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1378 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), (yyvsp[(7) - (7)].tok), (yyvsp[(4) - (7)].decl), 0, 0 ); } break; case 354: /* Line 1806 of yacc.c */ #line 1380 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (10)].aggKey), (yyvsp[(7) - (10)].tok), (yyvsp[(4) - (10)].decl), 0, (yyvsp[(9) - (10)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1382 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (12)].aggKey), 0, (yyvsp[(4) - (12)].decl), (yyvsp[(8) - (12)].en), (yyvsp[(11) - (12)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1385 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), (yyvsp[(7) - (7)].tok), 0, (yyvsp[(4) - (7)].en), 0 ); } break; case 357: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (13)].aggKey), (yyvsp[(10) - (13)].tok), (yyvsp[(4) - (13)].decl), (yyvsp[(8) - (13)].en), (yyvsp[(12) - (13)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1392 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 359: /* Line 1806 of yacc.c */ #line 1394 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 360: /* Line 1806 of yacc.c */ #line 1399 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 361: /* Line 1806 of yacc.c */ #line 1401 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 365: /* Line 1806 of yacc.c */ #line 1410 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 367: /* Line 1806 of yacc.c */ #line 1416 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 368: /* Line 1806 of yacc.c */ #line 1418 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 369: /* Line 1806 of yacc.c */ #line 1420 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 370: /* Line 1806 of yacc.c */ #line 1425 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 371: /* Line 1806 of yacc.c */ #line 1427 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 372: /* Line 1806 of yacc.c */ #line 1432 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 373: /* Line 1806 of yacc.c */ #line 1434 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 374: /* Line 1806 of yacc.c */ #line 1437 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 375: /* Line 1806 of yacc.c */ #line 1440 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 377: /* Line 1806 of yacc.c */ #line 1446 "parser.yy" { (yyval.en) = 0; } break; case 378: /* Line 1806 of yacc.c */ #line 1448 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 379: /* Line 1806 of yacc.c */ #line 1453 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 381: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1464 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1466 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 384: /* Line 1806 of yacc.c */ #line 1471 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1473 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1478 "parser.yy" { (yyval.en) = 0; } break; case 387: /* Line 1806 of yacc.c */ #line 1480 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 388: /* Line 1806 of yacc.c */ #line 1487 "parser.yy" { (yyval.decl) = 0; } break; case 392: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 393: /* Line 1806 of yacc.c */ #line 1497 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 394: /* Line 1806 of yacc.c */ #line 1499 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 396: /* Line 1806 of yacc.c */ #line 1508 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 397: /* Line 1806 of yacc.c */ #line 1510 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 398: /* Line 1806 of yacc.c */ #line 1512 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1518 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 401: /* Line 1806 of yacc.c */ #line 1523 "parser.yy" { (yyval.decl) = 0; } break; case 404: /* Line 1806 of yacc.c */ #line 1530 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 407: /* Line 1806 of yacc.c */ #line 1537 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 408: /* Line 1806 of yacc.c */ #line 1539 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 410: /* Line 1806 of yacc.c */ #line 1549 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 411: /* Line 1806 of yacc.c */ #line 1552 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1554 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 417: /* Line 1806 of yacc.c */ #line 1564 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 419: /* Line 1806 of yacc.c */ #line 1570 "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 420: /* Line 1806 of yacc.c */ #line 1575 "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 422: /* Line 1806 of yacc.c */ #line 1584 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 423: /* Line 1806 of yacc.c */ #line 1593 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 424: /* Line 1806 of yacc.c */ #line 1595 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 436: /* Line 1806 of yacc.c */ #line 1620 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 440: /* Line 1806 of yacc.c */ #line 1628 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 441: /* Line 1806 of yacc.c */ #line 1633 "parser.yy" { (yyval.in) = 0; } break; case 442: /* Line 1806 of yacc.c */ #line 1634 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 443: /* Line 1806 of yacc.c */ #line 1638 "parser.yy" { (yyval.in) = new InitializerNode((yyvsp[(1) - (1)].en)); } break; case 444: /* Line 1806 of yacc.c */ #line 1639 "parser.yy" { (yyval.in) = new InitializerNode((yyvsp[(2) - (4)].in), true); } break; case 446: /* Line 1806 of yacc.c */ #line 1644 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 447: /* Line 1806 of yacc.c */ #line 1645 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link((yyvsp[(3) - (3)].in)) ); } break; case 448: /* Line 1806 of yacc.c */ #line 1647 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators((yyvsp[(3) - (4)].en)) ) ); } break; case 450: /* Line 1806 of yacc.c */ #line 1663 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 452: /* Line 1806 of yacc.c */ #line 1668 "parser.yy" { (yyval.en) = (ExpressionNode *)((yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 453: /* Line 1806 of yacc.c */ #line 1673 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(2) - (2)].tok) ); } break; case 454: /* Line 1806 of yacc.c */ #line 1677 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 455: /* Line 1806 of yacc.c */ #line 1679 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 456: /* Line 1806 of yacc.c */ #line 1681 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Range), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en)); } break; case 457: /* Line 1806 of yacc.c */ #line 1683 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 459: /* Line 1806 of yacc.c */ #line 1708 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1710 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 461: /* Line 1806 of yacc.c */ #line 1712 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 462: /* Line 1806 of yacc.c */ #line 1717 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1719 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1727 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 467: /* Line 1806 of yacc.c */ #line 1732 "parser.yy" { typedefTable.addToEnclosingScope(*((yyvsp[(2) - (2)].tok)), TypedefTable::TD); } break; case 468: /* Line 1806 of yacc.c */ #line 1734 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 470: /* Line 1806 of yacc.c */ #line 1740 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 471: /* Line 1806 of yacc.c */ #line 1742 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 472: /* Line 1806 of yacc.c */ #line 1744 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 473: /* Line 1806 of yacc.c */ #line 1749 "parser.yy" { (yyval.decl) = 0; } break; case 474: /* Line 1806 of yacc.c */ #line 1751 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 475: /* Line 1806 of yacc.c */ #line 1756 "parser.yy" { typedefTable.openContext( *((yyvsp[(2) - (5)].tok)) ); (yyval.decl) = DeclarationNode::newContextUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1761 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 477: /* Line 1806 of yacc.c */ #line 1763 "parser.yy" { (yyval.decl) = 0; } break; case 478: /* Line 1806 of yacc.c */ #line 1768 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1771 "parser.yy" { (yyval.en) = (ExpressionNode *)((yyvsp[(1) - (3)].en)->set_link(new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 481: /* Line 1806 of yacc.c */ #line 1773 "parser.yy" { (yyval.en) = (ExpressionNode *)((yyvsp[(1) - (3)].en)->set_link((yyvsp[(3) - (3)].en))); } break; case 482: /* Line 1806 of yacc.c */ #line 1778 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 483: /* Line 1806 of yacc.c */ #line 1780 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1782 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1787 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 486: /* Line 1806 of yacc.c */ #line 1789 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 487: /* Line 1806 of yacc.c */ #line 1794 "parser.yy" { typedefTable.addToEnclosingScope(*((yyvsp[(1) - (1)].tok)), TypedefTable::TD); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 488: /* Line 1806 of yacc.c */ #line 1799 "parser.yy" { typedefTable.addToEnclosingScope(*((yyvsp[(1) - (6)].tok)), TypedefTable::TG); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1807 "parser.yy" { typedefTable.addToEnclosingScope(*((yyvsp[(2) - (9)].tok)), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 490: /* Line 1806 of yacc.c */ #line 1812 "parser.yy" { typedefTable.enterContext( *((yyvsp[(2) - (8)].tok)) ); typedefTable.enterScope(); } break; case 491: /* Line 1806 of yacc.c */ #line 1817 "parser.yy" { typedefTable.leaveContext(); typedefTable.addToEnclosingScope(*((yyvsp[(2) - (11)].tok)), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 493: /* Line 1806 of yacc.c */ #line 1827 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 496: /* Line 1806 of yacc.c */ #line 1837 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 497: /* Line 1806 of yacc.c */ #line 1842 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 498: /* Line 1806 of yacc.c */ #line 1847 "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 499: /* Line 1806 of yacc.c */ #line 1855 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1860 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 501: /* Line 1806 of yacc.c */ #line 1870 "parser.yy" {} break; case 502: /* Line 1806 of yacc.c */ #line 1872 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 504: /* Line 1806 of yacc.c */ #line 1884 "parser.yy" { (yyval.decl) = ((yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 505: /* Line 1806 of yacc.c */ #line 1889 "parser.yy" { (yyval.decl) = 0; } break; case 509: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" {} break; case 510: /* Line 1806 of yacc.c */ #line 1899 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 511: /* Line 1806 of yacc.c */ #line 1904 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 512: /* Line 1806 of yacc.c */ #line 1910 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 514: /* Line 1806 of yacc.c */ #line 1922 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 515: /* Line 1806 of yacc.c */ #line 1928 "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 516: /* Line 1806 of yacc.c */ #line 1937 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 517: /* Line 1806 of yacc.c */ #line 1943 "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 518: /* Line 1806 of yacc.c */ #line 1949 "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 519: /* Line 1806 of yacc.c */ #line 1955 "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 520: /* Line 1806 of yacc.c */ #line 1961 "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 521: /* Line 1806 of yacc.c */ #line 1969 "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 522: /* Line 1806 of yacc.c */ #line 1975 "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 523: /* Line 1806 of yacc.c */ #line 1983 "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 524: /* Line 1806 of yacc.c */ #line 1989 "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 528: /* Line 1806 of yacc.c */ #line 2004 "parser.yy" { (yyval.en) = new CompositeExprNode(new OperatorNode(OperatorNode::Range), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en)); } break; case 541: /* Line 1806 of yacc.c */ #line 2038 "parser.yy" {} break; case 542: /* Line 1806 of yacc.c */ #line 2039 "parser.yy" {} break; case 543: /* Line 1806 of yacc.c */ #line 2040 "parser.yy" {} break; case 544: /* Line 1806 of yacc.c */ #line 2041 "parser.yy" {} break; case 549: /* Line 1806 of yacc.c */ #line 2084 "parser.yy" { typedefTable.setNextIdentifier( *((yyvsp[(1) - (1)].tok)) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 550: /* Line 1806 of yacc.c */ #line 2089 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 551: /* Line 1806 of yacc.c */ #line 2094 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 552: /* Line 1806 of yacc.c */ #line 2096 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 553: /* Line 1806 of yacc.c */ #line 2098 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 554: /* Line 1806 of yacc.c */ #line 2103 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 555: /* Line 1806 of yacc.c */ #line 2105 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 556: /* Line 1806 of yacc.c */ #line 2107 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 557: /* Line 1806 of yacc.c */ #line 2109 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 558: /* Line 1806 of yacc.c */ #line 2114 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 559: /* Line 1806 of yacc.c */ #line 2116 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 563: /* Line 1806 of yacc.c */ #line 2132 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 564: /* Line 1806 of yacc.c */ #line 2134 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 565: /* Line 1806 of yacc.c */ #line 2136 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 566: /* Line 1806 of yacc.c */ #line 2141 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2143 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2145 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 569: /* Line 1806 of yacc.c */ #line 2150 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2152 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2154 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 575: /* Line 1806 of yacc.c */ #line 2169 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2171 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2173 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 578: /* Line 1806 of yacc.c */ #line 2178 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2180 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2182 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 581: /* Line 1806 of yacc.c */ #line 2187 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2189 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2191 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 588: /* Line 1806 of yacc.c */ #line 2213 "parser.yy" { typedefTable.setNextIdentifier( *((yyvsp[(1) - (1)].tok)) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 590: /* Line 1806 of yacc.c */ #line 2223 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2225 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 592: /* Line 1806 of yacc.c */ #line 2227 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 593: /* Line 1806 of yacc.c */ #line 2232 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2234 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2236 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2238 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 597: /* Line 1806 of yacc.c */ #line 2243 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2245 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2247 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 604: /* Line 1806 of yacc.c */ #line 2264 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2266 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2268 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 607: /* Line 1806 of yacc.c */ #line 2273 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2275 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2277 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2279 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 611: /* Line 1806 of yacc.c */ #line 2284 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2286 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2288 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 618: /* Line 1806 of yacc.c */ #line 2326 "parser.yy" { typedefTable.setNextIdentifier( *((yyvsp[(1) - (1)].tok)) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2334 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2336 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2338 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 622: /* Line 1806 of yacc.c */ #line 2343 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2350 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2352 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2372 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 630: /* Line 1806 of yacc.c */ #line 2374 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2376 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2378 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2380 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 635: /* Line 1806 of yacc.c */ #line 2386 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2388 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2390 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 638: /* Line 1806 of yacc.c */ #line 2395 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 639: /* Line 1806 of yacc.c */ #line 2397 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2399 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 641: /* Line 1806 of yacc.c */ #line 2405 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 642: /* Line 1806 of yacc.c */ #line 2407 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(5) - (5)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2413 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 645: /* Line 1806 of yacc.c */ #line 2415 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 646: /* Line 1806 of yacc.c */ #line 2417 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2419 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2439 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 652: /* Line 1806 of yacc.c */ #line 2441 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 653: /* Line 1806 of yacc.c */ #line 2443 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 654: /* Line 1806 of yacc.c */ #line 2445 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2447 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 657: /* Line 1806 of yacc.c */ #line 2453 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 658: /* Line 1806 of yacc.c */ #line 2455 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2457 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 660: /* Line 1806 of yacc.c */ #line 2462 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 661: /* Line 1806 of yacc.c */ #line 2464 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 662: /* Line 1806 of yacc.c */ #line 2466 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 664: /* Line 1806 of yacc.c */ #line 2473 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2485 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 667: /* Line 1806 of yacc.c */ #line 2488 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2490 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 669: /* Line 1806 of yacc.c */ #line 2493 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 670: /* Line 1806 of yacc.c */ #line 2495 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 671: /* Line 1806 of yacc.c */ #line 2497 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 675: /* Line 1806 of yacc.c */ #line 2516 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 676: /* Line 1806 of yacc.c */ #line 2518 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2520 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2522 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 679: /* Line 1806 of yacc.c */ #line 2524 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 681: /* Line 1806 of yacc.c */ #line 2530 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2532 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 683: /* Line 1806 of yacc.c */ #line 2534 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 684: /* Line 1806 of yacc.c */ #line 2539 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 685: /* Line 1806 of yacc.c */ #line 2541 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 688: /* Line 1806 of yacc.c */ #line 2551 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 691: /* Line 1806 of yacc.c */ #line 2561 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2563 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2565 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2567 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 695: /* Line 1806 of yacc.c */ #line 2569 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2571 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2578 "parser.yy" { (yyval.decl) = (yyvsp[(5) - (5)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2580 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2582 "parser.yy" { (yyval.decl) = (yyvsp[(6) - (6)].decl)->addNewArray( (yyvsp[(5) - (6)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2584 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2586 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2588 "parser.yy" { (yyval.decl) = (yyvsp[(5) - (5)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 703: /* Line 1806 of yacc.c */ #line 2590 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 704: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = (yyvsp[(6) - (6)].decl)->addNewArray( (yyvsp[(5) - (6)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 705: /* Line 1806 of yacc.c */ #line 2594 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2596 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 707: /* Line 1806 of yacc.c */ #line 2601 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2603 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 709: /* Line 1806 of yacc.c */ #line 2608 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 710: /* Line 1806 of yacc.c */ #line 2610 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 712: /* Line 1806 of yacc.c */ #line 2637 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2648 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2650 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2652 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2654 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2656 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2658 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2665 "parser.yy" { (yyval.decl) = (yyvsp[(5) - (5)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2667 "parser.yy" { (yyval.decl) = (yyvsp[(6) - (6)].decl)->addNewArray( (yyvsp[(5) - (6)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2671 "parser.yy" { (yyval.decl) = (yyvsp[(5) - (5)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2673 "parser.yy" { (yyval.decl) = (yyvsp[(6) - (6)].decl)->addNewArray( (yyvsp[(5) - (6)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2675 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 728: /* Line 1806 of yacc.c */ #line 2680 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 729: /* Line 1806 of yacc.c */ #line 2685 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (7)].decl), 0 ); } break; case 730: /* Line 1806 of yacc.c */ #line 2687 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 731: /* Line 1806 of yacc.c */ #line 2689 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 734: /* Line 1806 of yacc.c */ #line 2715 "parser.yy" { (yyval.en) = 0; } break; case 735: /* Line 1806 of yacc.c */ #line 2717 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9064 "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 2720 "parser.yy" // ----end of grammar---- void yyerror( const char * ) { std::cout << "Error "; if ( yyfilename ) { std::cout << "in file " << yyfilename << " "; } // if std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl; } // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //