/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 42 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile extern char *yytext; #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" DeclarationNode *theTree = 0; // the resulting parse tree LinkageSpec::Type linkage = LinkageSpec::Cforall; std::stack< LinkageSpec::Type > linkageStack; TypedefTable typedefTable; /* Line 268 of yacc.c */ #line 94 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, VALIST = 279, BOOL = 280, COMPLEX = 281, IMAGINARY = 282, TYPEOF = 283, LABEL = 284, ENUM = 285, STRUCT = 286, UNION = 287, OTYPE = 288, FTYPE = 289, DTYPE = 290, TRAIT = 291, SIZEOF = 292, OFFSETOF = 293, ATTRIBUTE = 294, EXTENSION = 295, IF = 296, ELSE = 297, SWITCH = 298, CASE = 299, DEFAULT = 300, DO = 301, WHILE = 302, FOR = 303, BREAK = 304, CONTINUE = 305, GOTO = 306, RETURN = 307, CHOOSE = 308, DISABLE = 309, ENABLE = 310, FALLTHRU = 311, TRY = 312, CATCH = 313, CATCHRESUME = 314, FINALLY = 315, THROW = 316, THROWRESUME = 317, AT = 318, ASM = 319, ALIGNAS = 320, ALIGNOF = 321, ATOMIC = 322, GENERIC = 323, NORETURN = 324, STATICASSERT = 325, THREADLOCAL = 326, IDENTIFIER = 327, QUOTED_IDENTIFIER = 328, TYPEDEFname = 329, TYPEGENname = 330, ATTR_IDENTIFIER = 331, ATTR_TYPEDEFname = 332, ATTR_TYPEGENname = 333, INTEGERconstant = 334, FLOATINGconstant = 335, CHARACTERconstant = 336, STRINGliteral = 337, ZERO = 338, ONE = 339, ARROW = 340, ICR = 341, DECR = 342, LS = 343, RS = 344, LE = 345, GE = 346, EQ = 347, NE = 348, ANDAND = 349, OROR = 350, ELLIPSIS = 351, MULTassign = 352, DIVassign = 353, MODassign = 354, PLUSassign = 355, MINUSassign = 356, LSassign = 357, RSassign = 358, ANDassign = 359, ERassign = 360, ORassign = 361, ATassign = 362, THEN = 363 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define VALIST 279 #define BOOL 280 #define COMPLEX 281 #define IMAGINARY 282 #define TYPEOF 283 #define LABEL 284 #define ENUM 285 #define STRUCT 286 #define UNION 287 #define OTYPE 288 #define FTYPE 289 #define DTYPE 290 #define TRAIT 291 #define SIZEOF 292 #define OFFSETOF 293 #define ATTRIBUTE 294 #define EXTENSION 295 #define IF 296 #define ELSE 297 #define SWITCH 298 #define CASE 299 #define DEFAULT 300 #define DO 301 #define WHILE 302 #define FOR 303 #define BREAK 304 #define CONTINUE 305 #define GOTO 306 #define RETURN 307 #define CHOOSE 308 #define DISABLE 309 #define ENABLE 310 #define FALLTHRU 311 #define TRY 312 #define CATCH 313 #define CATCHRESUME 314 #define FINALLY 315 #define THROW 316 #define THROWRESUME 317 #define AT 318 #define ASM 319 #define ALIGNAS 320 #define ALIGNOF 321 #define ATOMIC 322 #define GENERIC 323 #define NORETURN 324 #define STATICASSERT 325 #define THREADLOCAL 326 #define IDENTIFIER 327 #define QUOTED_IDENTIFIER 328 #define TYPEDEFname 329 #define TYPEGENname 330 #define ATTR_IDENTIFIER 331 #define ATTR_TYPEDEFname 332 #define ATTR_TYPEGENname 333 #define INTEGERconstant 334 #define FLOATINGconstant 335 #define CHARACTERconstant 336 #define STRINGliteral 337 #define ZERO 338 #define ONE 339 #define ARROW 340 #define ICR 341 #define DECR 342 #define LS 343 #define RS 344 #define LE 345 #define GE 346 #define EQ 347 #define NE 348 #define ANDAND 349 #define OROR 350 #define ELLIPSIS 351 #define MULTassign 352 #define DIVassign 353 #define MODassign 354 #define PLUSassign 355 #define MINUSassign 356 #define LSassign 357 #define RSassign 358 #define ANDassign 359 #define ERassign 360 #define ORassign 361 #define ATassign 362 #define THEN 363 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 110 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantNode *constant; LabelNode *label; InitializerNode *in; OperatorNode::Type op; bool flag; /* Line 293 of yacc.c */ #line 363 "Parser/parser.cc" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif /* Copy the second part of user declarations. */ /* Line 343 of yacc.c */ #line 375 "Parser/parser.cc" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 252 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 12080 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 241 /* YYNRULES -- Number of rules. */ #define YYNRULES 755 /* YYNRULES -- Number of states. */ #define YYNSTATES 1579 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 363 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 122, 2, 2, 2, 125, 119, 2, 109, 110, 118, 120, 116, 121, 113, 124, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 117, 132, 126, 131, 127, 130, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 111, 2, 112, 128, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 114, 129, 115, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 34, 36, 38, 42, 46, 48, 55, 60, 64, 72, 76, 84, 87, 90, 98, 103, 105, 109, 110, 112, 116, 124, 134, 136, 140, 142, 146, 154, 158, 166, 168, 170, 172, 175, 178, 181, 184, 187, 190, 195, 202, 204, 209, 214, 217, 222, 224, 226, 228, 230, 232, 234, 236, 238, 243, 248, 250, 254, 258, 262, 264, 268, 272, 274, 278, 282, 284, 288, 292, 296, 300, 302, 306, 310, 312, 316, 318, 322, 324, 328, 330, 334, 336, 340, 342, 348, 353, 359, 361, 363, 367, 371, 374, 375, 377, 380, 386, 393, 401, 403, 407, 409, 411, 413, 415, 417, 419, 421, 423, 425, 427, 429, 433, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 459, 464, 467, 475, 477, 481, 483, 486, 488, 491, 493, 496, 499, 505, 513, 519, 529, 535, 545, 547, 551, 553, 555, 559, 563, 566, 568, 571, 574, 575, 577, 580, 584, 585, 587, 590, 594, 598, 603, 604, 606, 608, 611, 617, 625, 632, 639, 644, 648, 653, 656, 660, 663, 667, 671, 675, 679, 685, 689, 693, 698, 700, 706, 713, 719, 726, 736, 747, 757, 768, 771, 773, 776, 779, 782, 784, 791, 800, 811, 824, 839, 840, 842, 843, 845, 847, 851, 856, 864, 865, 867, 871, 873, 877, 879, 881, 883, 887, 889, 891, 893, 897, 898, 900, 904, 909, 911, 915, 917, 919, 923, 927, 931, 935, 939, 942, 946, 953, 957, 961, 966, 968, 971, 974, 978, 984, 993, 1001, 1009, 1015, 1025, 1028, 1031, 1037, 1041, 1047, 1052, 1056, 1061, 1066, 1074, 1078, 1082, 1086, 1090, 1095, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1119, 1121, 1123, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1141, 1147, 1149, 1152, 1156, 1158, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1183, 1185, 1187, 1189, 1191, 1193, 1195, 1197, 1199, 1201, 1203, 1205, 1207, 1210, 1213, 1217, 1221, 1223, 1227, 1229, 1232, 1235, 1238, 1243, 1248, 1253, 1258, 1260, 1263, 1266, 1270, 1272, 1275, 1278, 1280, 1283, 1286, 1290, 1292, 1295, 1298, 1300, 1302, 1307, 1310, 1311, 1318, 1326, 1329, 1332, 1335, 1336, 1339, 1342, 1346, 1349, 1353, 1355, 1358, 1362, 1365, 1368, 1373, 1374, 1376, 1379, 1382, 1384, 1385, 1387, 1390, 1393, 1399, 1402, 1403, 1411, 1414, 1419, 1420, 1423, 1424, 1426, 1428, 1430, 1436, 1442, 1448, 1450, 1456, 1462, 1472, 1474, 1480, 1481, 1483, 1485, 1491, 1493, 1495, 1501, 1507, 1509, 1513, 1517, 1522, 1524, 1526, 1528, 1530, 1533, 1535, 1539, 1543, 1545, 1548, 1550, 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1579, 1581, 1583, 1585, 1588, 1589, 1592, 1595, 1597, 1602, 1603, 1605, 1608, 1612, 1617, 1620, 1623, 1625, 1628, 1630, 1633, 1639, 1645, 1653, 1660, 1662, 1665, 1668, 1672, 1674, 1677, 1680, 1685, 1688, 1693, 1694, 1699, 1702, 1704, 1706, 1708, 1709, 1712, 1718, 1724, 1738, 1740, 1742, 1746, 1750, 1753, 1757, 1761, 1764, 1769, 1771, 1778, 1788, 1789, 1801, 1803, 1807, 1811, 1815, 1817, 1819, 1825, 1828, 1834, 1835, 1837, 1839, 1843, 1844, 1846, 1848, 1850, 1852, 1853, 1860, 1863, 1865, 1868, 1873, 1876, 1880, 1884, 1888, 1893, 1899, 1905, 1911, 1918, 1920, 1922, 1924, 1928, 1929, 1935, 1936, 1938, 1940, 1943, 1950, 1952, 1956, 1957, 1959, 1964, 1966, 1968, 1970, 1972, 1975, 1977, 1980, 1983, 1985, 1989, 1992, 1996, 2000, 2003, 2008, 2013, 2017, 2026, 2030, 2033, 2035, 2038, 2045, 2054, 2058, 2061, 2065, 2069, 2074, 2079, 2083, 2085, 2087, 2089, 2094, 2101, 2105, 2108, 2112, 2116, 2121, 2126, 2130, 2133, 2135, 2138, 2141, 2143, 2147, 2150, 2154, 2158, 2161, 2166, 2171, 2175, 2182, 2191, 2195, 2198, 2200, 2203, 2206, 2209, 2213, 2217, 2220, 2225, 2230, 2234, 2241, 2250, 2254, 2257, 2259, 2262, 2265, 2267, 2269, 2272, 2276, 2280, 2283, 2288, 2295, 2304, 2306, 2309, 2312, 2314, 2317, 2320, 2324, 2328, 2330, 2335, 2340, 2344, 2350, 2359, 2363, 2366, 2370, 2372, 2378, 2384, 2391, 2398, 2400, 2403, 2406, 2408, 2411, 2414, 2418, 2422, 2424, 2429, 2434, 2438, 2444, 2453, 2457, 2459, 2462, 2464, 2467, 2474, 2480, 2487, 2495, 2503, 2505, 2508, 2511, 2513, 2516, 2519, 2523, 2527, 2529, 2534, 2539, 2543, 2552, 2556, 2558, 2560, 2563, 2565, 2567, 2570, 2574, 2577, 2581, 2584, 2588, 2592, 2595, 2600, 2604, 2607, 2611, 2614, 2619, 2623, 2626, 2633, 2640, 2647, 2655, 2657, 2660, 2662, 2664, 2666, 2669, 2673, 2676, 2680, 2683, 2687, 2691, 2696, 2699, 2703, 2708, 2711, 2717, 2723, 2730, 2737, 2738, 2740, 2741 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 302, 0, -1, -1, -1, 79, -1, 80, -1, 81, -1, 72, -1, 76, -1, 140, -1, 72, -1, 76, -1, 72, -1, 140, -1, 83, -1, 84, -1, 82, -1, 141, 82, -1, 72, -1, 140, -1, 109, 169, 110, -1, 109, 173, 110, -1, 142, -1, 143, 111, 134, 164, 135, 112, -1, 143, 109, 144, 110, -1, 143, 113, 139, -1, 143, 113, 111, 134, 146, 135, 112, -1, 143, 85, 139, -1, 143, 85, 111, 134, 146, 135, 112, -1, 143, 86, -1, 143, 87, -1, 109, 275, 110, 114, 279, 372, 115, -1, 143, 114, 144, 115, -1, 145, -1, 144, 116, 145, -1, -1, 164, -1, 139, 117, 164, -1, 111, 134, 164, 135, 112, 117, 164, -1, 111, 134, 164, 116, 167, 135, 112, 117, 164, -1, 147, -1, 146, 116, 147, -1, 139, -1, 139, 113, 147, -1, 139, 113, 111, 134, 146, 135, 112, -1, 139, 85, 147, -1, 139, 85, 111, 134, 146, 135, 112, -1, 143, -1, 136, -1, 141, -1, 40, 151, -1, 149, 151, -1, 150, 151, -1, 86, 148, -1, 87, 148, -1, 37, 148, -1, 37, 109, 275, 110, -1, 38, 109, 275, 116, 139, 110, -1, 76, -1, 76, 109, 276, 110, -1, 76, 109, 145, 110, -1, 66, 148, -1, 66, 109, 275, 110, -1, 118, -1, 119, -1, 94, -1, 120, -1, 121, -1, 122, -1, 123, -1, 148, -1, 109, 275, 110, 151, -1, 109, 275, 110, 166, -1, 151, -1, 152, 118, 151, -1, 152, 124, 151, -1, 152, 125, 151, -1, 152, -1, 153, 120, 152, -1, 153, 121, 152, -1, 153, -1, 154, 88, 153, -1, 154, 89, 153, -1, 154, -1, 155, 126, 154, -1, 155, 127, 154, -1, 155, 90, 154, -1, 155, 91, 154, -1, 155, -1, 156, 92, 155, -1, 156, 93, 155, -1, 156, -1, 157, 119, 156, -1, 157, -1, 158, 128, 157, -1, 158, -1, 159, 129, 158, -1, 159, -1, 160, 94, 159, -1, 160, -1, 161, 95, 160, -1, 161, -1, 161, 130, 169, 117, 162, -1, 161, 130, 117, 162, -1, 161, 130, 169, 117, 166, -1, 162, -1, 162, -1, 148, 131, 164, -1, 148, 168, 164, -1, 166, 373, -1, -1, 164, -1, 111, 112, -1, 111, 134, 164, 135, 112, -1, 111, 134, 116, 167, 135, 112, -1, 111, 134, 164, 116, 167, 135, 112, -1, 165, -1, 167, 116, 165, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 164, -1, 169, 116, 164, -1, -1, 169, -1, 172, -1, 173, -1, 177, -1, 178, -1, 190, -1, 192, -1, 193, -1, 198, -1, 128, 143, 114, 144, 115, 132, -1, 72, 117, 312, 171, -1, 114, 115, -1, 114, 134, 134, 209, 174, 135, 115, -1, 175, -1, 174, 134, 175, -1, 212, -1, 40, 212, -1, 308, -1, 171, 135, -1, 171, -1, 176, 171, -1, 170, 132, -1, 41, 109, 169, 110, 171, -1, 41, 109, 169, 110, 171, 42, 171, -1, 43, 109, 169, 110, 183, -1, 43, 109, 169, 110, 114, 134, 205, 184, 115, -1, 53, 109, 169, 110, 183, -1, 53, 109, 169, 110, 114, 134, 205, 186, 115, -1, 163, -1, 163, 96, 163, -1, 310, -1, 179, -1, 180, 116, 179, -1, 44, 180, 117, -1, 45, 117, -1, 181, -1, 182, 181, -1, 182, 171, -1, -1, 185, -1, 182, 176, -1, 185, 182, 176, -1, -1, 187, -1, 182, 189, -1, 182, 176, 188, -1, 187, 182, 189, -1, 187, 182, 176, 188, -1, -1, 189, -1, 56, -1, 56, 132, -1, 47, 109, 169, 110, 171, -1, 46, 171, 47, 109, 169, 110, 132, -1, 48, 109, 134, 191, 110, 171, -1, 170, 135, 132, 170, 132, 170, -1, 212, 170, 132, 170, -1, 51, 72, 132, -1, 51, 118, 169, 132, -1, 50, 132, -1, 50, 72, 132, -1, 49, 132, -1, 49, 72, 132, -1, 52, 170, 132, -1, 61, 165, 132, -1, 62, 165, 132, -1, 62, 165, 63, 164, 132, -1, 57, 173, 194, -1, 57, 173, 196, -1, 57, 173, 194, 196, -1, 195, -1, 58, 109, 96, 110, 173, -1, 195, 58, 109, 96, 110, 173, -1, 59, 109, 96, 110, 173, -1, 195, 59, 109, 96, 110, 173, -1, 58, 109, 134, 134, 197, 135, 110, 173, 135, -1, 195, 58, 109, 134, 134, 197, 135, 110, 173, 135, -1, 59, 109, 134, 134, 197, 135, 110, 173, 135, -1, 195, 59, 109, 134, 134, 197, 135, 110, 173, 135, -1, 60, 173, -1, 225, -1, 225, 309, -1, 225, 357, -1, 366, 139, -1, 366, -1, 64, 199, 109, 141, 110, 132, -1, 64, 199, 109, 141, 117, 200, 110, 132, -1, 64, 199, 109, 141, 117, 200, 117, 200, 110, 132, -1, 64, 199, 109, 141, 117, 200, 117, 200, 117, 203, 110, 132, -1, 64, 199, 51, 109, 141, 117, 117, 200, 117, 203, 117, 204, 110, 132, -1, -1, 11, -1, -1, 201, -1, 202, -1, 201, 116, 202, -1, 141, 109, 163, 110, -1, 111, 163, 112, 141, 109, 163, 110, -1, -1, 141, -1, 203, 116, 141, -1, 139, -1, 204, 116, 139, -1, 135, -1, 206, -1, 212, -1, 206, 134, 212, -1, 135, -1, 208, -1, 222, -1, 208, 134, 222, -1, -1, 210, -1, 29, 211, 132, -1, 210, 29, 211, 132, -1, 274, -1, 211, 116, 274, -1, 213, -1, 222, -1, 214, 135, 132, -1, 219, 135, 132, -1, 216, 135, 132, -1, 293, 135, 132, -1, 296, 135, 132, -1, 215, 277, -1, 231, 215, 277, -1, 214, 135, 116, 134, 272, 277, -1, 367, 272, 311, -1, 370, 272, 311, -1, 227, 370, 272, 311, -1, 217, -1, 227, 217, -1, 231, 217, -1, 231, 227, 217, -1, 216, 135, 116, 134, 272, -1, 111, 112, 272, 109, 134, 260, 135, 110, -1, 370, 272, 109, 134, 260, 135, 110, -1, 218, 272, 109, 134, 260, 135, 110, -1, 111, 134, 262, 135, 112, -1, 111, 134, 262, 135, 116, 134, 263, 135, 112, -1, 3, 215, -1, 3, 217, -1, 219, 135, 116, 134, 139, -1, 3, 225, 309, -1, 220, 135, 116, 134, 309, -1, 227, 3, 225, 309, -1, 225, 3, 309, -1, 225, 3, 227, 309, -1, 3, 139, 131, 164, -1, 221, 135, 116, 134, 139, 131, 164, -1, 223, 135, 132, -1, 220, 135, 132, -1, 221, 135, 132, -1, 240, 135, 132, -1, 224, 309, 311, 277, -1, 223, 116, 312, 309, 311, 277, -1, 236, -1, 240, -1, 242, -1, 283, -1, 237, -1, 241, -1, 243, -1, 284, -1, -1, 227, -1, 228, -1, 227, 228, -1, 229, -1, 314, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 109, 230, 286, 110, -1, 232, -1, 227, 232, -1, 231, 227, 232, -1, 233, -1, 232, 233, -1, 234, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 69, -1, 71, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 25, -1, 26, -1, 27, -1, 24, -1, 237, -1, 231, 237, -1, 236, 233, -1, 236, 233, 227, -1, 236, 233, 237, -1, 238, -1, 226, 239, 226, -1, 235, -1, 227, 235, -1, 238, 228, -1, 238, 235, -1, 28, 109, 276, 110, -1, 28, 109, 169, 110, -1, 78, 109, 276, 110, -1, 78, 109, 169, 110, -1, 241, -1, 231, 241, -1, 240, 233, -1, 240, 233, 227, -1, 244, -1, 227, 244, -1, 241, 228, -1, 243, -1, 231, 243, -1, 242, 233, -1, 242, 233, 227, -1, 74, -1, 227, 74, -1, 243, 228, -1, 245, -1, 256, -1, 247, 114, 248, 115, -1, 247, 274, -1, -1, 247, 274, 246, 114, 248, 115, -1, 247, 109, 292, 110, 114, 248, 115, -1, 247, 285, -1, 31, 312, -1, 32, 312, -1, -1, 248, 249, -1, 250, 132, -1, 40, 250, 132, -1, 251, 132, -1, 40, 251, 132, -1, 366, -1, 366, 274, -1, 250, 116, 274, -1, 250, 116, -1, 225, 252, -1, 251, 116, 312, 252, -1, -1, 254, -1, 318, 253, -1, 331, 253, -1, 357, -1, -1, 254, -1, 117, 163, -1, 30, 312, -1, 255, 114, 258, 372, 115, -1, 255, 274, -1, -1, 255, 274, 257, 114, 258, 372, 115, -1, 274, 259, -1, 258, 116, 274, 259, -1, -1, 131, 163, -1, -1, 261, -1, 263, -1, 262, -1, 262, 135, 116, 134, 263, -1, 263, 135, 116, 134, 96, -1, 262, 135, 116, 134, 96, -1, 267, -1, 263, 135, 116, 134, 267, -1, 262, 135, 116, 134, 267, -1, 262, 135, 116, 134, 263, 135, 116, 134, 267, -1, 268, -1, 263, 135, 116, 134, 268, -1, -1, 265, -1, 266, -1, 266, 135, 116, 134, 96, -1, 270, -1, 269, -1, 266, 135, 116, 134, 270, -1, 266, 135, 116, 134, 269, -1, 269, -1, 362, 272, 373, -1, 370, 272, 373, -1, 227, 370, 272, 373, -1, 217, -1, 270, -1, 362, -1, 370, -1, 227, 370, -1, 371, -1, 224, 336, 373, -1, 224, 340, 373, -1, 224, -1, 224, 351, -1, 139, -1, 271, 116, 139, -1, 137, -1, 74, -1, 75, -1, 138, -1, 74, -1, 75, -1, 139, -1, 74, -1, 75, -1, 366, -1, 225, -1, 225, 357, -1, 366, -1, 371, -1, 225, -1, 225, 345, -1, -1, 131, 278, -1, 107, 278, -1, 164, -1, 114, 279, 372, 115, -1, -1, 278, -1, 280, 278, -1, 279, 116, 278, -1, 279, 116, 280, 278, -1, 281, 117, -1, 274, 117, -1, 282, -1, 281, 282, -1, 80, -1, 113, 274, -1, 111, 134, 164, 135, 112, -1, 111, 134, 310, 135, 112, -1, 111, 134, 163, 96, 163, 135, 112, -1, 113, 111, 134, 146, 135, 112, -1, 284, -1, 231, 284, -1, 283, 233, -1, 283, 233, 227, -1, 285, -1, 227, 285, -1, 284, 228, -1, 75, 109, 292, 110, -1, 287, 373, -1, 286, 116, 287, 373, -1, -1, 289, 274, 288, 290, -1, 225, 336, -1, 33, -1, 35, -1, 34, -1, -1, 290, 291, -1, 129, 274, 109, 292, 110, -1, 129, 114, 134, 298, 115, -1, 129, 109, 134, 286, 135, 110, 114, 134, 298, 115, 109, 292, 110, -1, 276, -1, 164, -1, 292, 116, 276, -1, 292, 116, 164, -1, 33, 294, -1, 232, 33, 294, -1, 293, 116, 294, -1, 295, 290, -1, 295, 290, 131, 276, -1, 274, -1, 273, 109, 134, 286, 135, 110, -1, 36, 274, 109, 134, 286, 135, 110, 114, 115, -1, -1, 36, 274, 109, 134, 286, 135, 110, 114, 297, 298, 115, -1, 299, -1, 298, 134, 299, -1, 300, 135, 132, -1, 301, 135, 132, -1, 215, -1, 217, -1, 300, 135, 116, 134, 272, -1, 225, 309, -1, 301, 135, 116, 134, 309, -1, -1, 303, -1, 305, -1, 303, 134, 305, -1, -1, 303, -1, 212, -1, 307, -1, 198, -1, -1, 5, 82, 306, 114, 304, 115, -1, 40, 305, -1, 308, -1, 323, 173, -1, 327, 134, 207, 173, -1, 216, 173, -1, 224, 323, 173, -1, 227, 323, 173, -1, 231, 323, 173, -1, 231, 227, 323, 173, -1, 224, 327, 134, 207, 173, -1, 227, 327, 134, 207, 173, -1, 231, 327, 134, 207, 173, -1, 231, 227, 327, 134, 207, 173, -1, 318, -1, 331, -1, 323, -1, 163, 123, 163, -1, -1, 64, 109, 141, 110, 312, -1, -1, 313, -1, 314, -1, 313, 314, -1, 39, 109, 109, 315, 110, 110, -1, 316, -1, 315, 116, 316, -1, -1, 317, -1, 317, 109, 170, 110, -1, 272, -1, 234, -1, 235, -1, 228, -1, 319, 312, -1, 320, -1, 321, 312, -1, 322, 312, -1, 137, -1, 109, 319, 110, -1, 149, 318, -1, 149, 227, 318, -1, 109, 320, 110, -1, 319, 349, -1, 109, 320, 110, 349, -1, 109, 321, 110, 350, -1, 109, 321, 110, -1, 109, 320, 110, 109, 134, 264, 135, 110, -1, 109, 322, 110, -1, 324, 312, -1, 325, -1, 326, 312, -1, 319, 109, 134, 264, 135, 110, -1, 109, 325, 110, 109, 134, 264, 135, 110, -1, 109, 324, 110, -1, 149, 323, -1, 149, 227, 323, -1, 109, 325, 110, -1, 109, 325, 110, 349, -1, 109, 326, 110, 350, -1, 109, 326, 110, -1, 328, -1, 329, -1, 330, -1, 319, 109, 271, 110, -1, 109, 329, 110, 109, 271, 110, -1, 109, 328, 110, -1, 149, 327, -1, 149, 227, 327, -1, 109, 329, 110, -1, 109, 329, 110, 349, -1, 109, 330, 110, 350, -1, 109, 330, 110, -1, 332, 312, -1, 333, -1, 334, 312, -1, 335, 312, -1, 341, -1, 109, 332, 110, -1, 149, 331, -1, 149, 227, 331, -1, 109, 333, 110, -1, 332, 349, -1, 109, 333, 110, 349, -1, 109, 334, 110, 350, -1, 109, 334, 110, -1, 332, 109, 134, 264, 135, 110, -1, 109, 333, 110, 109, 134, 264, 135, 110, -1, 109, 335, 110, -1, 319, 312, -1, 337, -1, 338, 312, -1, 339, 312, -1, 149, 336, -1, 149, 227, 336, -1, 109, 337, 110, -1, 319, 355, -1, 109, 337, 110, 349, -1, 109, 338, 110, 350, -1, 109, 338, 110, -1, 319, 109, 134, 264, 135, 110, -1, 109, 337, 110, 109, 134, 264, 135, 110, -1, 109, 339, 110, -1, 341, 312, -1, 342, -1, 343, 312, -1, 344, 312, -1, 74, -1, 75, -1, 149, 340, -1, 149, 227, 340, -1, 109, 342, 110, -1, 341, 355, -1, 109, 342, 110, 355, -1, 341, 109, 134, 264, 135, 110, -1, 109, 342, 110, 109, 134, 264, 135, 110, -1, 346, -1, 347, 312, -1, 348, 312, -1, 149, -1, 149, 227, -1, 149, 345, -1, 149, 227, 345, -1, 109, 346, 110, -1, 349, -1, 109, 346, 110, 349, -1, 109, 347, 110, 350, -1, 109, 347, 110, -1, 109, 134, 264, 135, 110, -1, 109, 346, 110, 109, 134, 264, 135, 110, -1, 109, 348, 110, -1, 111, 112, -1, 111, 112, 350, -1, 350, -1, 111, 134, 164, 135, 112, -1, 111, 134, 118, 135, 112, -1, 350, 111, 134, 164, 135, 112, -1, 350, 111, 134, 118, 135, 112, -1, 352, -1, 353, 312, -1, 354, 312, -1, 149, -1, 149, 227, -1, 149, 351, -1, 149, 227, 351, -1, 109, 352, 110, -1, 355, -1, 109, 352, 110, 355, -1, 109, 353, 110, 350, -1, 109, 353, 110, -1, 109, 134, 264, 135, 110, -1, 109, 352, 110, 109, 134, 264, 135, 110, -1, 109, 354, 110, -1, 356, -1, 356, 350, -1, 350, -1, 111, 112, -1, 111, 134, 227, 118, 135, 112, -1, 111, 134, 227, 135, 112, -1, 111, 134, 227, 164, 135, 112, -1, 111, 134, 7, 226, 164, 135, 112, -1, 111, 134, 227, 7, 164, 135, 112, -1, 358, -1, 359, 312, -1, 360, 312, -1, 149, -1, 149, 227, -1, 149, 357, -1, 149, 227, 357, -1, 109, 358, 110, -1, 349, -1, 109, 358, 110, 349, -1, 109, 359, 110, 350, -1, 109, 359, 110, -1, 109, 358, 110, 109, 134, 264, 135, 110, -1, 109, 360, 110, -1, 362, -1, 370, -1, 227, 370, -1, 363, -1, 364, -1, 149, 225, -1, 227, 149, 225, -1, 149, 371, -1, 227, 149, 371, -1, 149, 361, -1, 227, 149, 361, -1, 111, 112, 225, -1, 365, 225, -1, 111, 112, 350, 225, -1, 365, 350, 225, -1, 350, 225, -1, 111, 112, 363, -1, 365, 363, -1, 111, 112, 350, 363, -1, 365, 350, 363, -1, 350, 363, -1, 111, 134, 227, 118, 135, 112, -1, 111, 134, 227, 164, 135, 112, -1, 111, 134, 231, 164, 135, 112, -1, 111, 134, 231, 227, 164, 135, 112, -1, 370, -1, 227, 370, -1, 367, -1, 368, -1, 369, -1, 149, 225, -1, 227, 149, 225, -1, 149, 371, -1, 227, 149, 371, -1, 149, 366, -1, 227, 149, 366, -1, 111, 112, 225, -1, 111, 112, 350, 225, -1, 350, 225, -1, 111, 112, 368, -1, 111, 112, 350, 368, -1, 350, 368, -1, 111, 134, 263, 135, 112, -1, 111, 112, 109, 260, 110, -1, 370, 109, 134, 260, 135, 110, -1, 218, 109, 134, 260, 135, 110, -1, -1, 116, -1, -1, 131, 164, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 292, 292, 298, 307, 308, 309, 313, 314, 315, 319, 320, 324, 325, 329, 330, 334, 335, 341, 343, 345, 347, 352, 353, 359, 363, 365, 366, 368, 369, 371, 373, 375, 383, 384, 390, 391, 392, 397, 399, 404, 405, 409, 413, 415, 417, 419, 424, 427, 429, 431, 436, 439, 441, 443, 445, 447, 449, 451, 453, 455, 457, 459, 466, 467, 469, 473, 474, 475, 476, 480, 481, 483, 488, 489, 491, 493, 498, 499, 501, 506, 507, 509, 514, 515, 517, 519, 521, 526, 527, 529, 534, 535, 540, 541, 546, 547, 552, 553, 558, 559, 564, 565, 568, 570, 575, 580, 581, 583, 585, 591, 592, 598, 600, 602, 604, 609, 610, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 628, 629, 636, 637, 643, 644, 645, 646, 647, 648, 649, 650, 651, 661, 668, 670, 680, 681, 686, 688, 694, 696, 700, 701, 706, 711, 714, 716, 718, 728, 730, 741, 742, 744, 748, 750, 754, 755, 760, 761, 765, 770, 771, 775, 777, 783, 784, 788, 790, 792, 794, 800, 801, 805, 807, 812, 814, 816, 821, 823, 828, 830, 834, 837, 841, 844, 848, 850, 854, 856, 863, 865, 867, 876, 878, 880, 882, 884, 889, 891, 893, 895, 900, 913, 914, 919, 921, 926, 930, 932, 934, 936, 938, 944, 945, 951, 952, 956, 957, 962, 964, 970, 971, 973, 978, 980, 987, 989, 993, 994, 999, 1001, 1005, 1006, 1010, 1012, 1016, 1017, 1021, 1022, 1026, 1027, 1042, 1043, 1044, 1045, 1046, 1050, 1055, 1062, 1072, 1077, 1082, 1090, 1095, 1100, 1105, 1110, 1118, 1140, 1145, 1152, 1154, 1161, 1166, 1171, 1182, 1187, 1192, 1197, 1202, 1211, 1216, 1224, 1225, 1226, 1227, 1233, 1238, 1246, 1247, 1248, 1249, 1253, 1254, 1255, 1256, 1261, 1262, 1271, 1272, 1277, 1278, 1283, 1285, 1287, 1289, 1291, 1294, 1293, 1305, 1306, 1308, 1318, 1319, 1324, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 1361, 1363, 1365, 1367, 1369, 1371, 1377, 1378, 1380, 1382, 1384, 1389, 1390, 1396, 1397, 1399, 1401, 1406, 1408, 1410, 1412, 1417, 1418, 1420, 1422, 1427, 1428, 1430, 1435, 1436, 1438, 1440, 1445, 1447, 1449, 1454, 1455, 1459, 1461, 1467, 1466, 1470, 1472, 1477, 1479, 1485, 1486, 1491, 1492, 1494, 1495, 1504, 1505, 1507, 1509, 1514, 1516, 1522, 1523, 1525, 1528, 1531, 1536, 1537, 1542, 1547, 1551, 1553, 1559, 1558, 1565, 1567, 1573, 1574, 1582, 1583, 1587, 1588, 1589, 1591, 1593, 1600, 1601, 1603, 1605, 1610, 1611, 1617, 1618, 1622, 1623, 1628, 1629, 1630, 1632, 1640, 1641, 1643, 1646, 1648, 1652, 1653, 1654, 1656, 1658, 1662, 1667, 1675, 1676, 1685, 1687, 1692, 1693, 1694, 1698, 1699, 1700, 1704, 1705, 1706, 1710, 1711, 1712, 1717, 1718, 1719, 1720, 1726, 1727, 1729, 1734, 1735, 1740, 1741, 1742, 1743, 1744, 1759, 1760, 1765, 1766, 1774, 1776, 1778, 1781, 1783, 1785, 1808, 1809, 1811, 1813, 1818, 1819, 1821, 1826, 1831, 1832, 1838, 1837, 1841, 1845, 1847, 1849, 1855, 1856, 1861, 1866, 1868, 1873, 1875, 1876, 1878, 1883, 1885, 1887, 1892, 1894, 1899, 1904, 1912, 1918, 1917, 1931, 1932, 1937, 1938, 1942, 1947, 1952, 1960, 1965, 1976, 1977, 1988, 1989, 1995, 1996, 2000, 2001, 2002, 2005, 2004, 2015, 2024, 2030, 2036, 2045, 2051, 2057, 2063, 2069, 2077, 2083, 2091, 2097, 2106, 2107, 2108, 2112, 2116, 2118, 2123, 2124, 2128, 2129, 2134, 2140, 2141, 2144, 2146, 2147, 2151, 2152, 2153, 2154, 2188, 2190, 2191, 2193, 2198, 2203, 2208, 2210, 2212, 2217, 2219, 2221, 2223, 2228, 2230, 2239, 2241, 2242, 2247, 2249, 2251, 2256, 2258, 2260, 2265, 2267, 2269, 2278, 2279, 2280, 2284, 2286, 2288, 2293, 2295, 2297, 2302, 2304, 2306, 2321, 2323, 2324, 2326, 2331, 2332, 2337, 2339, 2341, 2346, 2348, 2350, 2352, 2357, 2359, 2361, 2371, 2373, 2374, 2376, 2381, 2383, 2385, 2390, 2392, 2394, 2396, 2401, 2403, 2405, 2436, 2438, 2439, 2441, 2446, 2451, 2459, 2461, 2463, 2468, 2470, 2475, 2477, 2491, 2492, 2494, 2499, 2501, 2503, 2505, 2507, 2512, 2513, 2515, 2517, 2522, 2524, 2526, 2532, 2534, 2536, 2540, 2542, 2544, 2546, 2560, 2561, 2563, 2568, 2570, 2572, 2574, 2576, 2581, 2582, 2584, 2586, 2591, 2593, 2595, 2601, 2602, 2604, 2613, 2616, 2618, 2621, 2623, 2625, 2638, 2639, 2641, 2646, 2648, 2650, 2652, 2654, 2659, 2660, 2662, 2664, 2669, 2671, 2679, 2680, 2681, 2686, 2687, 2691, 2693, 2695, 2697, 2699, 2701, 2708, 2710, 2712, 2714, 2716, 2718, 2720, 2722, 2724, 2726, 2731, 2733, 2735, 2740, 2766, 2767, 2769, 2773, 2774, 2778, 2780, 2782, 2784, 2786, 2788, 2795, 2797, 2799, 2801, 2803, 2805, 2810, 2815, 2817, 2819, 2837, 2839, 2844, 2845 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TRAIT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "FLOATINGconstant", "CHARACTERconstant", "STRINGliteral", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "':'", "'*'", "'&'", "'+'", "'-'", "'!'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "unary_expression", "ptrref_operator", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "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_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "storage_class_name", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "$@2", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "$@3", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@4", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "trait_specifier", "$@5", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@6", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "variable_type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 40, 41, 91, 93, 46, 123, 125, 44, 58, 42, 38, 43, 45, 33, 126, 47, 37, 60, 62, 94, 124, 63, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 133, 134, 135, 136, 136, 136, 137, 137, 137, 138, 138, 139, 139, 140, 140, 141, 141, 142, 142, 142, 142, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 144, 144, 145, 145, 145, 145, 145, 146, 146, 147, 147, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, 149, 150, 150, 150, 150, 151, 151, 151, 152, 152, 152, 152, 153, 153, 153, 154, 154, 154, 155, 155, 155, 155, 155, 156, 156, 156, 157, 157, 158, 158, 159, 159, 160, 160, 161, 161, 162, 162, 162, 162, 163, 164, 164, 164, 164, 165, 165, 166, 166, 166, 166, 167, 167, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 169, 169, 170, 170, 171, 171, 171, 171, 171, 171, 171, 171, 171, 172, 173, 173, 174, 174, 175, 175, 175, 175, 176, 176, 177, 178, 178, 178, 178, 178, 178, 179, 179, 179, 180, 180, 181, 181, 182, 182, 183, 184, 184, 185, 185, 186, 186, 187, 187, 187, 187, 188, 188, 189, 189, 190, 190, 190, 191, 191, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 193, 193, 193, 194, 194, 194, 194, 194, 195, 195, 195, 195, 196, 197, 197, 197, 197, 197, 198, 198, 198, 198, 198, 199, 199, 200, 200, 201, 201, 202, 202, 203, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 213, 213, 213, 213, 213, 214, 214, 214, 215, 215, 215, 216, 216, 216, 216, 216, 217, 217, 217, 218, 218, 219, 219, 219, 220, 220, 220, 220, 220, 221, 221, 222, 222, 222, 222, 223, 223, 224, 224, 224, 224, 225, 225, 225, 225, 226, 226, 227, 227, 228, 228, 229, 229, 229, 229, 229, 230, 229, 231, 231, 231, 232, 232, 233, 234, 234, 234, 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 236, 236, 236, 236, 236, 237, 237, 238, 238, 238, 238, 239, 239, 239, 239, 240, 240, 240, 240, 241, 241, 241, 242, 242, 242, 242, 243, 243, 243, 244, 244, 245, 245, 246, 245, 245, 245, 247, 247, 248, 248, 249, 249, 249, 249, 250, 250, 250, 250, 251, 251, 252, 252, 252, 252, 252, 253, 253, 254, 255, 256, 256, 257, 256, 258, 258, 259, 259, 260, 260, 261, 261, 261, 261, 261, 262, 262, 262, 262, 263, 263, 264, 264, 265, 265, 266, 266, 266, 266, 267, 267, 267, 267, 267, 268, 268, 268, 268, 268, 269, 269, 270, 270, 271, 271, 272, 272, 272, 273, 273, 273, 274, 274, 274, 275, 275, 275, 276, 276, 276, 276, 277, 277, 277, 278, 278, 279, 279, 279, 279, 279, 280, 280, 281, 281, 282, 282, 282, 282, 282, 282, 283, 283, 283, 283, 284, 284, 284, 285, 286, 286, 288, 287, 287, 289, 289, 289, 290, 290, 291, 291, 291, 292, 292, 292, 292, 293, 293, 293, 294, 294, 295, 295, 296, 297, 296, 298, 298, 299, 299, 300, 300, 300, 301, 301, 302, 302, 303, 303, 304, 304, 305, 305, 305, 306, 305, 305, 307, 307, 307, 308, 308, 308, 308, 308, 308, 308, 308, 308, 309, 309, 309, 310, 311, 311, 312, 312, 313, 313, 314, 315, 315, 316, 316, 316, 317, 317, 317, 317, 318, 318, 318, 318, 319, 319, 320, 320, 320, 321, 321, 321, 321, 322, 322, 323, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 327, 327, 327, 328, 328, 328, 329, 329, 329, 330, 330, 330, 331, 331, 331, 331, 332, 332, 333, 333, 333, 334, 334, 334, 334, 335, 335, 335, 336, 336, 336, 336, 337, 337, 337, 338, 338, 338, 338, 339, 339, 339, 340, 340, 340, 340, 341, 341, 342, 342, 342, 343, 343, 344, 344, 345, 345, 345, 346, 346, 346, 346, 346, 347, 347, 347, 347, 348, 348, 348, 349, 349, 349, 350, 350, 350, 350, 351, 351, 351, 352, 352, 352, 352, 352, 353, 353, 353, 353, 354, 354, 354, 355, 355, 355, 356, 356, 356, 356, 356, 356, 357, 357, 357, 358, 358, 358, 358, 358, 359, 359, 359, 359, 360, 360, 361, 361, 361, 362, 362, 363, 363, 363, 363, 363, 363, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 365, 365, 365, 365, 366, 366, 366, 367, 367, 368, 368, 368, 368, 368, 368, 369, 369, 369, 369, 369, 369, 370, 371, 371, 371, 372, 372, 373, 373 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 3, 7, 9, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 6, 1, 4, 4, 2, 4, 1, 1, 1, 1, 1, 1, 1, 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, 2, 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, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 0, 6, 7, 2, 2, 2, 0, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 2, 0, 7, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 1, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 5, 6, 6, 0, 1, 0, 2 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 295, 295, 316, 314, 317, 315, 318, 319, 301, 303, 302, 0, 304, 330, 322, 327, 325, 326, 324, 323, 328, 329, 334, 331, 332, 333, 550, 550, 550, 0, 0, 0, 295, 221, 305, 320, 321, 7, 361, 0, 8, 14, 15, 65, 0, 2, 63, 64, 568, 9, 295, 528, 526, 248, 3, 456, 3, 261, 0, 3, 3, 3, 249, 3, 0, 0, 0, 296, 297, 299, 295, 308, 311, 313, 342, 287, 335, 340, 288, 350, 289, 357, 354, 364, 0, 0, 365, 290, 476, 480, 3, 3, 0, 2, 522, 527, 532, 300, 0, 0, 550, 580, 550, 2, 591, 592, 593, 295, 0, 734, 735, 0, 12, 0, 13, 295, 271, 272, 0, 296, 291, 292, 293, 294, 529, 306, 394, 551, 552, 372, 373, 12, 447, 448, 11, 443, 446, 0, 506, 501, 492, 447, 448, 0, 0, 531, 222, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 295, 295, 2, 0, 736, 296, 585, 597, 740, 733, 731, 738, 0, 0, 0, 255, 2, 0, 535, 441, 442, 440, 0, 0, 0, 0, 550, 0, 637, 638, 0, 0, 548, 544, 550, 565, 550, 550, 546, 2, 545, 550, 604, 550, 550, 607, 0, 0, 0, 295, 295, 314, 362, 2, 295, 262, 298, 309, 343, 355, 481, 0, 2, 0, 456, 263, 296, 336, 351, 358, 477, 0, 2, 0, 312, 337, 344, 345, 0, 352, 356, 359, 363, 448, 295, 374, 367, 371, 0, 396, 478, 482, 0, 0, 0, 1, 295, 2, 533, 579, 581, 295, 2, 744, 296, 747, 548, 548, 0, 296, 0, 0, 274, 550, 546, 2, 295, 0, 0, 295, 553, 2, 504, 2, 557, 0, 0, 0, 0, 0, 0, 18, 58, 4, 5, 6, 16, 0, 0, 295, 2, 66, 67, 68, 69, 48, 19, 49, 22, 47, 70, 295, 0, 73, 77, 80, 83, 88, 91, 93, 95, 97, 99, 101, 106, 498, 754, 454, 497, 0, 452, 453, 0, 569, 584, 587, 590, 596, 599, 602, 361, 0, 2, 742, 0, 295, 745, 2, 63, 295, 3, 428, 0, 436, 296, 295, 308, 335, 288, 350, 357, 3, 3, 410, 414, 424, 429, 476, 295, 430, 709, 710, 295, 431, 433, 295, 2, 586, 598, 732, 2, 2, 250, 2, 461, 0, 459, 458, 457, 142, 2, 2, 252, 2, 2, 251, 2, 282, 2, 283, 0, 281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 570, 609, 0, 456, 2, 564, 573, 663, 566, 567, 536, 295, 2, 603, 612, 605, 606, 0, 277, 295, 295, 341, 296, 0, 296, 0, 295, 737, 741, 739, 537, 295, 548, 256, 264, 310, 0, 2, 538, 295, 502, 338, 339, 284, 353, 360, 0, 295, 0, 752, 401, 0, 479, 503, 253, 254, 523, 295, 438, 0, 295, 238, 0, 2, 240, 0, 296, 0, 258, 2, 259, 279, 0, 0, 2, 295, 548, 295, 489, 491, 490, 0, 0, 754, 0, 295, 0, 295, 493, 295, 563, 561, 562, 560, 0, 555, 558, 0, 0, 295, 55, 295, 70, 50, 295, 61, 295, 295, 53, 54, 2, 128, 0, 0, 450, 0, 449, 731, 112, 295, 17, 0, 29, 30, 35, 2, 0, 35, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 0, 0, 51, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109, 2, 649, 455, 646, 550, 550, 654, 483, 295, 2, 588, 589, 0, 600, 601, 0, 2, 743, 746, 112, 295, 0, 2, 711, 296, 715, 706, 707, 713, 0, 2, 2, 671, 550, 754, 620, 550, 550, 754, 550, 634, 550, 550, 685, 437, 668, 550, 550, 676, 683, 295, 432, 296, 0, 0, 295, 721, 296, 726, 754, 718, 295, 723, 754, 295, 295, 295, 0, 112, 0, 18, 5, 2, 0, 19, 0, 462, 752, 0, 0, 468, 242, 0, 295, 0, 0, 0, 548, 572, 576, 578, 608, 611, 615, 618, 571, 610, 0, 285, 661, 0, 295, 278, 0, 0, 0, 0, 276, 2, 0, 260, 539, 295, 0, 0, 295, 2, 366, 386, 375, 0, 0, 380, 374, 753, 0, 0, 399, 0, 296, 3, 417, 3, 421, 420, 594, 0, 534, 295, 63, 3, 295, 436, 296, 3, 430, 431, 2, 0, 0, 0, 488, 307, 295, 484, 486, 3, 2, 2, 0, 505, 3, 0, 557, 130, 0, 0, 223, 0, 0, 0, 2, 0, 0, 36, 0, 0, 112, 295, 20, 0, 21, 0, 695, 700, 451, 692, 550, 550, 0, 110, 3, 2, 27, 2, 0, 33, 0, 2, 25, 0, 107, 108, 74, 75, 76, 78, 79, 81, 82, 86, 87, 84, 85, 89, 90, 92, 94, 96, 98, 100, 0, 0, 755, 295, 0, 0, 0, 650, 651, 647, 648, 500, 499, 295, 0, 295, 717, 295, 722, 296, 295, 665, 295, 295, 708, 664, 2, 295, 0, 0, 0, 0, 0, 0, 0, 0, 686, 0, 672, 623, 639, 673, 2, 619, 626, 434, 621, 622, 435, 2, 633, 642, 635, 636, 669, 670, 684, 712, 716, 714, 754, 269, 2, 748, 2, 425, 720, 725, 426, 0, 404, 3, 3, 3, 3, 456, 3, 0, 2, 471, 467, 753, 0, 463, 470, 2, 466, 469, 0, 295, 243, 265, 3, 273, 275, 0, 456, 2, 574, 575, 2, 613, 614, 0, 662, 540, 3, 347, 346, 349, 348, 295, 541, 0, 542, 374, 0, 0, 295, 295, 0, 0, 695, 384, 387, 391, 550, 391, 390, 383, 376, 550, 378, 381, 295, 401, 395, 105, 402, 752, 0, 0, 439, 241, 0, 0, 3, 2, 671, 432, 0, 530, 0, 754, 492, 0, 295, 295, 295, 0, 554, 556, 131, 0, 0, 216, 0, 0, 0, 224, 225, 56, 0, 62, 295, 0, 60, 59, 0, 2, 129, 0, 0, 0, 696, 697, 693, 694, 461, 71, 72, 111, 116, 3, 110, 0, 0, 0, 24, 35, 3, 0, 32, 103, 0, 3, 653, 657, 660, 652, 3, 595, 3, 719, 724, 2, 63, 295, 3, 3, 296, 0, 3, 625, 629, 632, 641, 675, 679, 682, 295, 3, 624, 640, 674, 295, 295, 427, 295, 295, 749, 0, 0, 0, 0, 257, 0, 105, 0, 3, 3, 0, 464, 0, 460, 0, 0, 246, 295, 0, 0, 130, 0, 0, 0, 0, 0, 130, 0, 0, 110, 110, 18, 2, 0, 0, 3, 132, 133, 2, 144, 134, 135, 136, 137, 138, 139, 146, 148, 0, 0, 0, 286, 295, 295, 550, 0, 543, 295, 377, 379, 0, 393, 696, 388, 392, 389, 382, 386, 369, 400, 0, 582, 2, 667, 666, 0, 672, 2, 485, 487, 507, 3, 515, 516, 0, 2, 511, 3, 3, 0, 0, 559, 223, 0, 0, 0, 223, 0, 0, 3, 37, 112, 699, 703, 705, 698, 752, 110, 0, 3, 664, 42, 3, 40, 3, 34, 0, 3, 102, 104, 0, 2, 655, 656, 0, 0, 295, 0, 0, 0, 3, 641, 0, 2, 627, 628, 2, 643, 2, 677, 678, 0, 0, 63, 0, 3, 3, 3, 3, 412, 411, 415, 2, 2, 751, 750, 113, 0, 0, 0, 0, 3, 465, 3, 0, 244, 147, 3, 296, 295, 0, 0, 0, 0, 2, 0, 192, 0, 190, 0, 0, 0, 0, 0, 0, 0, 550, 112, 0, 152, 149, 295, 0, 0, 268, 280, 3, 3, 549, 616, 370, 385, 398, 295, 267, 295, 0, 518, 495, 295, 0, 0, 494, 509, 0, 0, 0, 217, 0, 226, 57, 110, 0, 2, 701, 702, 0, 117, 114, 0, 0, 0, 0, 0, 0, 23, 0, 658, 295, 583, 266, 727, 728, 729, 0, 680, 295, 295, 295, 3, 3, 0, 688, 0, 0, 0, 0, 295, 295, 3, 547, 472, 473, 0, 0, 247, 296, 0, 0, 0, 0, 295, 193, 191, 188, 0, 194, 0, 0, 0, 0, 198, 201, 199, 195, 0, 196, 130, 35, 145, 143, 245, 0, 0, 419, 423, 422, 0, 512, 2, 513, 2, 514, 508, 295, 229, 0, 227, 0, 229, 3, 664, 295, 31, 115, 2, 45, 2, 43, 41, 28, 113, 26, 3, 730, 3, 3, 3, 0, 0, 687, 689, 630, 644, 270, 2, 409, 3, 408, 0, 475, 472, 130, 0, 0, 130, 3, 0, 130, 189, 0, 2, 2, 210, 200, 0, 0, 0, 141, 0, 577, 617, 2, 0, 0, 2, 230, 0, 0, 218, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 690, 691, 295, 0, 474, 153, 0, 0, 2, 166, 130, 155, 0, 183, 0, 130, 0, 2, 157, 0, 2, 0, 2, 2, 2, 197, 32, 295, 517, 519, 510, 0, 0, 0, 0, 115, 38, 0, 3, 3, 659, 631, 645, 681, 413, 130, 159, 162, 0, 161, 165, 3, 168, 167, 0, 130, 185, 130, 3, 0, 295, 0, 295, 0, 2, 0, 2, 140, 2, 231, 232, 0, 228, 219, 0, 704, 0, 0, 154, 0, 0, 164, 234, 169, 2, 236, 184, 0, 187, 173, 202, 3, 211, 215, 204, 3, 0, 295, 0, 295, 0, 0, 0, 39, 46, 44, 160, 163, 130, 0, 170, 295, 130, 130, 0, 174, 0, 0, 695, 212, 213, 214, 0, 203, 3, 205, 3, 295, 220, 233, 150, 171, 156, 130, 237, 186, 181, 179, 175, 158, 130, 0, 696, 0, 0, 0, 0, 151, 172, 182, 176, 180, 179, 177, 3, 3, 0, 0, 496, 178, 206, 208, 3, 3, 207, 209 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 819, 469, 302, 48, 135, 136, 303, 304, 305, 306, 766, 767, 1145, 1146, 307, 382, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 1040, 519, 984, 323, 985, 547, 954, 1067, 1543, 1069, 1070, 1071, 1072, 1544, 1073, 1074, 1460, 1461, 1422, 1423, 1424, 1522, 1523, 1527, 1528, 1563, 1564, 1075, 1380, 1076, 1077, 1314, 1315, 1316, 1504, 1078, 147, 960, 961, 962, 1400, 1484, 1496, 1497, 470, 471, 881, 882, 1048, 52, 53, 54, 55, 56, 348, 160, 59, 60, 61, 62, 63, 350, 65, 66, 266, 68, 69, 276, 352, 353, 72, 73, 74, 75, 120, 77, 206, 355, 121, 80, 122, 82, 83, 456, 84, 455, 690, 691, 692, 915, 1096, 916, 85, 86, 459, 457, 698, 861, 862, 358, 359, 701, 702, 703, 360, 361, 362, 363, 467, 341, 137, 138, 523, 325, 172, 647, 648, 649, 650, 651, 87, 123, 89, 490, 491, 946, 492, 279, 496, 326, 90, 139, 140, 91, 1337, 1118, 1119, 1120, 1121, 92, 93, 719, 94, 275, 95, 96, 189, 1042, 681, 413, 127, 97, 502, 503, 504, 190, 270, 192, 193, 194, 271, 100, 101, 102, 103, 104, 105, 106, 197, 198, 199, 200, 201, 831, 606, 607, 608, 609, 202, 611, 612, 613, 573, 574, 575, 576, 755, 107, 615, 616, 617, 618, 619, 620, 977, 757, 758, 759, 596, 366, 367, 368, 369, 327, 166, 109, 110, 111, 371, 696, 570 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1414 static const yytype_int16 yypact[] = { 4857, 9883, -1414, 35, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 142, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 98, 98, 98, 1334, 684, 153, 7496, 290, -1414, -1414, -1414, -1414, -1414, 204, -1414, -1414, -1414, -1414, 901, 229, -1414, -1414, -1414, -1414, 9565, -1414, -1414, -1414, -1414, -15, 301, -1414, 1624, -1414, -1414, -1414, -1414, 302, 1806, 471, 143, 7613, -1414, -1414, 9603, 1367, -1414, -1414, -1414, 1721, 510, 3394, 1032, 1137, 1721, 1303, -1414, -1414, 1174, 1520, -1414, 1721, 1532, -1414, 385, -1414, 421, 523, -1414, -1414, -1414, -1414, 460, 301, 98, -1414, 98, -1414, -1414, -1414, -1414, 10414, 1624, -1414, -1414, 1624, -1414, 447, -1414, 10444, -1414, -1414, 2082, 10554, -1414, 399, 399, 399, -1414, -1414, -1414, 98, -1414, -1414, -1414, 544, 555, 575, -1414, -1414, -1414, 617, -1414, -1414, -1414, -1414, -1414, 621, 629, -1414, -1414, 11, 9069, 3253, 578, 492, 499, 631, 635, 642, 647, 9853, 7015, 649, 656, -1414, 9713, -1414, -1414, -1414, -1414, 661, -1414, 193, 3453, 3453, -1414, 667, 251, -1414, -1414, -1414, -1414, 692, 327, 346, 368, 98, 673, -1414, -1414, 1806, 3136, 748, -1414, 12, -1414, 98, 98, 301, -1414, -1414, 75, -1414, 98, 98, -1414, 3167, 711, 722, 399, 6806, -1414, -1414, 726, 9565, -1414, -1414, 1721, -1414, -1414, -1414, 301, -1414, 1624, -15, -1414, 7963, -1414, 399, 399, 399, 301, -1414, 1334, -1414, 5769, -1414, -1414, 709, 399, -1414, 399, -1414, 204, 9069, -1414, 763, -1414, 684, 765, 399, -1414, 1334, 750, 766, -1414, 7496, 705, -1414, -1414, -1414, 9532, -1414, -1414, 10864, -1414, 748, 63, 6244, 10554, 2082, 3167, -1414, 85, -1414, -1414, 10444, 1624, 804, 7644, -1414, -1414, 319, -1414, 11778, 782, 851, 4657, 828, 4994, 11639, -1414, 839, -1414, -1414, -1414, -1414, 11658, 11658, 8841, 844, -1414, -1414, -1414, -1414, -1414, -1414, 869, -1414, 759, 2440, 9183, 4994, -1414, 593, 571, 645, 313, 861, 842, 858, 843, 911, -20, -1414, -1414, 876, 326, -1414, 83, -1414, -1414, 3253, -1414, -1414, 139, 900, -1414, 422, 900, 905, 204, -1414, -1414, 909, 10414, -1414, 912, 917, 9297, -1414, -1414, 1382, 2358, 8427, 6806, 1721, -1414, 1721, 399, 399, -1414, -1414, -1414, -1414, -1414, -1414, 399, 10414, 1624, -1414, -1414, 10584, 1776, -1414, 10304, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 936, 11446, 4994, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 2082, -1414, 836, 947, 962, 963, 923, 965, 970, 972, 3136, -1414, -1414, 959, -15, 975, -1414, -1414, 978, -1414, -1414, -1414, 9532, -1414, -1414, -1414, -1414, -1414, 3167, -1414, 9069, 9069, -1414, 399, 2082, 6926, 1624, 8543, -1414, -1414, -1414, -1414, 9532, 63, -1414, -1414, 1721, 301, -1414, -1414, 9532, -1414, 6689, -1414, -1414, 399, 399, 271, 10023, 907, 977, 960, 988, 399, -1414, -1414, -1414, -1414, 10980, -1414, 500, 6556, -1414, 301, 990, -1414, 2082, 11860, 11504, -1414, -1414, -1414, -1414, 935, 3167, -1414, 8659, 748, 6228, -1414, -1414, -1414, 1482, 550, 876, 684, 7644, 1180, 10444, -1414, 7644, -1414, -1414, -1414, -1414, 561, -1414, 997, 851, -13, 8841, -1414, 10694, -1414, -1414, 8841, -1414, 8955, 8841, -1414, -1414, 996, -1414, 585, 1003, 455, 1017, -1414, -1414, 9993, 6037, -1414, 419, -1414, -1414, 11562, -1414, 469, 11562, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 6244, 6244, -1414, -1414, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 4994, 3735, 6244, -1414, 326, 1049, -1414, -1414, 98, 98, -1414, -1414, 9069, -1414, -1414, 978, 705, -1414, 978, 11581, -1414, -1414, -1414, 3645, 6037, 1016, 1018, -1414, 10554, -1414, -1414, 661, -1414, 1020, 1157, 1025, 2611, 95, 876, -1414, 98, 98, 876, 134, -1414, 98, 98, 978, -1414, -1414, 98, 98, -1414, 900, 10724, 1624, 12005, 69, 227, 10724, -1414, 10864, -1414, 876, -1414, 10414, -1414, 218, 8079, 8079, 8079, 1624, -1414, 5555, 1012, 260, 936, 778, 1021, 1024, -1414, 1026, 3453, 343, -1414, 1115, 1624, 8079, 705, 2082, 705, 748, 534, 900, -1414, -1414, 596, 900, -1414, -1414, -1414, 851, -1414, 900, 301, 10980, -1414, 687, 1042, 700, 1043, -1414, 1044, 301, -1414, -1414, 9532, 301, 1041, 10694, 1045, -1414, 2066, -1414, 408, 416, 684, -1414, 684, 1047, 4994, -1414, 684, 12005, -1414, -1414, 1053, -1414, -1414, -1414, 705, -1414, 11933, 917, -1414, 8079, 489, 8427, -1414, -1414, 661, 1055, 1056, 1482, 3284, -1414, -1414, 7644, -1414, -1414, 1038, -1414, -1414, 1064, -1414, 1038, 1070, 11778, 6244, 93, 1051, 138, 1074, 1058, 1075, 844, 1069, 1077, -1414, 1079, 1081, 10133, 6775, -1414, 6244, -1414, 455, 1974, -1414, -1414, -1414, 98, 98, 6104, 6244, 1076, -1414, -1414, 936, 707, -1414, 6244, -1414, -1414, 677, -1414, -1414, -1414, -1414, -1414, 593, 593, 571, 571, 645, 645, 645, 645, 313, 313, 861, 842, 858, 843, 911, 4994, 847, -1414, 10980, 1083, 1084, 1088, 1049, -1414, -1414, -1414, -1414, -1414, 10980, 717, 8079, -1414, 10414, -1414, 7135, 9411, -1414, 10304, 7015, -1414, -1414, 1157, 10980, 945, 1089, 1090, 1095, 1096, 1099, 1100, 1105, -1414, 4392, 2611, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 978, -1414, -1414, -1414, 876, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 1112, -1414, 1113, 1118, -1414, -1414, -15, 1076, 5555, -1414, -1414, -1414, 11446, 1116, -1414, -1414, -1414, -1414, -1414, 684, 6369, 1201, -1414, -1414, -1414, -1414, 1103, -15, -1414, -1414, 978, -1414, -1414, 978, 126, 978, -1414, -1414, -1414, -1414, -1414, -1414, 9743, -1414, 301, -1414, -1414, 438, 452, 10584, 7255, 2372, 4994, 2870, -1414, -1414, 1127, 39, 1127, -1414, 684, -1414, 98, -1414, -1414, 10163, 960, -1414, -1414, -1414, 977, 1143, 1131, -1414, -1414, 1150, 1153, -1414, 489, 1995, -1414, 363, -1414, 3284, 876, -1414, 1160, 7644, 10834, 9069, 1161, -1414, -1414, 1151, 1162, 1156, -1414, 4994, 120, 279, 1163, -1414, 1166, 705, 1166, 6037, 6244, -1414, -1414, 1166, 1165, -1414, 1176, 1182, 1185, 1974, -1414, -1414, -1414, 11446, -1414, -1414, -1414, -1414, 1168, 6244, 1188, 705, 5555, -1414, 11562, -1414, 705, -1414, -1414, 6244, -1414, 614, 900, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 936, 917, 9297, -1414, -1414, 7375, 1187, -1414, 758, 900, -1414, 785, 797, 900, -1414, 399, 5912, -1414, -1414, -1414, 10980, 10980, -1414, 8543, 8543, -1414, 1186, 1189, 1191, 1199, -1414, 1206, 439, 119, 1076, -1414, 705, -1414, 3453, -1414, 6244, 480, -1414, 6655, 1211, 1212, 11388, 1213, 1217, -6, 58, 117, 6244, 1221, 301, 6244, 6244, 1215, 1222, 610, 1203, -1414, -1414, -1414, 1218, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 684, 1226, 6244, -1414, 10980, 10980, 98, 1228, -1414, 10273, -1414, -1414, 864, -1414, 2870, -1414, -1414, -1414, -1414, 2066, -1414, -1414, 1230, -1414, -1414, -1414, -1414, 1231, 1995, -1414, -1414, 1223, -1414, 1038, -1414, -1414, 2082, 1235, -1414, -1414, -1414, 744, 1237, -1414, 138, 1245, 4994, 1232, 138, 138, 1250, 1246, -1414, 9993, 825, 900, -1414, -1414, 1026, 6244, 1251, 1168, 536, 161, 1261, -1414, 1246, -1414, 1254, 1261, -1414, -1414, 1257, -1414, -1414, 978, 1270, 1271, 6895, 1272, 1275, 1280, -1414, -1414, 1283, -1414, -1414, 978, -1414, -1414, -1414, -1414, 978, 6244, 6244, 917, 1282, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 4994, 4994, 1284, 1286, 1261, -1414, -1414, 684, -1414, -1414, -1414, 5291, 10834, 6244, 6244, 1335, 6244, -1414, 1263, -1414, 1267, -1414, 1281, 6244, 1288, 6244, 1039, 1290, 28, 98, 5165, 856, -1414, -1414, 6369, 1287, 488, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 11206, -1414, 8659, 1304, -1414, -1414, 10834, 490, 498, -1414, 1301, 1306, 851, 1317, -1414, 418, -1414, -1414, 6244, 1316, -1414, -1414, 978, 1314, -1414, -1414, 1318, 589, 691, 705, 1320, 1322, -1414, 1329, -1414, 10980, -1414, -1414, -1414, -1414, -1414, 1330, -1414, 10980, 10980, 10980, -1414, -1414, 1332, -1414, 1333, 1336, 1339, 517, 8195, 8311, -1414, -1414, 123, -1414, 1343, 1348, -1414, 8775, 755, 768, 1342, 770, 6525, -1414, -1414, -1414, 508, -1414, 777, 1352, 1353, 301, 1403, 933, -1414, -1414, 6244, -1414, 11388, 11562, -1414, -1414, -1414, 1359, 1364, -1414, -1414, -1414, 1363, -1414, -1414, -1414, -1414, -1414, -1414, 10834, 851, 273, -1414, 1347, 851, 1168, 268, 10980, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 1365, -1414, -1414, -1414, -1414, -1414, -1414, 1368, 1371, -1414, -1414, -1414, -1414, -1414, -1414, -1414, 1375, -1414, 1374, -1414, -1414, 11388, 91, 6244, 11388, -1414, 1385, 6244, -1414, 288, 1402, 1405, -1414, -1414, 1390, 1393, 1376, -1414, 882, -1414, -1414, -1414, 1624, 2082, 1388, 869, 884, 4994, -1414, 803, 1394, 6244, -1414, 705, 705, 1399, 1406, 1407, 1409, -1414, -1414, 8543, 1397, -1414, 1473, 4994, 1404, -1414, -1414, 11299, -1414, 811, -1414, 1395, 11388, 1401, -1414, -1414, 1410, -1414, 1412, -1414, 1433, 1441, -1414, 1415, 10834, -1414, -1414, -1414, 851, 705, 1429, 1417, 1436, -1414, 1446, 1261, 1261, -1414, -1414, -1414, -1414, -1414, 11388, 278, -1414, 910, -1414, -1414, 7730, -1414, -1414, 1435, 6244, -1414, 6244, 7730, 301, 10694, 301, 10694, 1462, -1414, 1463, -1414, -1414, 1460, 869, -1414, 812, -1414, -1414, 6244, -1414, 1465, 1466, -1414, 4994, 4994, -1414, -1414, 1007, 37, -1414, -1414, 1447, -1414, 1007, -1414, -1414, 2485, 705, -1414, -1414, 301, 10694, 301, 10694, 1472, 1450, 705, -1414, -1414, -1414, -1414, -1414, 11299, 1468, 1007, 7847, 6244, 11210, 1475, 1007, 1477, 2485, 2994, -1414, -1414, -1414, 1495, -1414, -1414, -1414, -1414, 9069, -1414, -1414, -1414, 11077, -1414, 11299, -1414, -1414, 1476, 10984, -1414, -1414, 11210, 301, 2994, 301, 1502, 1506, 813, -1414, 11077, -1414, -1414, -1414, 10984, -1414, -1414, -1414, 301, 301, -1414, -1414, -1414, -1414, -1414, -1414, -1414, -1414 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1414, 4377, 3077, -1414, 1645, -1414, 305, 958, -11, -1414, 552, -530, -487, -944, -142, 3604, 0, -1414, 1277, 511, 529, 298, 549, 1057, 1060, 1054, 1062, 1065, -1414, -211, -327, 5116, -961, -725, -952, -1414, -200, -594, 572, -1414, 1379, -1414, 397, -1413, -1414, -1414, 129, -1414, -1160, -935, 246, -1414, -1414, -1414, -1414, 68, -1131, -1414, -1414, -1414, -1414, -1414, -1414, 321, -1152, 33, -1414, -696, -1414, 506, 296, -1414, 169, -1414, -339, -1414, -1414, -1414, 558, -728, -1414, -1414, 19, -974, 177, 2303, -1414, -1414, -1414, -91, -1414, 166, 269, -194, 1705, 3615, -1414, -1414, 36, 224, 628, -235, 1694, -1414, 1557, -1414, -1414, 200, 2163, -1414, 2278, 185, -1414, -1414, -1414, -607, -1414, 956, 957, 545, 725, -320, -1414, -1414, -1414, 950, 719, -493, -1414, -472, -355, 1296, -1414, -1414, -899, -946, 440, 524, 1067, 168, -1414, 1040, 317, -281, -198, -141, 672, 781, -1414, 1005, -1414, 2834, 55, -450, 932, -1414, -1414, 712, -1414, -228, -1414, 104, -1414, -1414, -1414, -1285, 420, -1414, -1414, -1414, 1178, -1414, 31, -1414, -1414, -862, -94, -1364, -152, 1641, -1414, 3733, -1414, 927, -1414, -170, 493, -184, -183, -181, 7, -42, -36, -33, 1610, 4, 10, 14, -143, -177, -172, -162, -161, -319, -513, -508, -498, -547, -310, -528, -1414, -1414, -511, 1101, 1102, 1110, 1575, 4802, -565, -560, -559, -541, -551, -1414, -506, -744, -736, -732, -593, -267, -227, -1414, -1414, 624, 294, -85, -1414, 3753, 44, -634, -173 }; /* 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 -526 static const yytype_int16 yytable[] = { 50, 115, 151, 400, 401, 771, 402, 99, 152, 973, 403, 153, 429, 454, 874, 404, 756, 974, 408, 1080, 116, 975, 262, 441, 269, 405, 406, 744, 850, 384, 385, 605, 50, 51, 1142, 982, 70, 411, 833, 99, 610, 825, 826, 727, 149, 409, 499, 732, 154, 1150, 50, 31, 1398, 836, 155, 1462, 832, 163, 156, 843, 827, 800, 282, 145, 188, 51, 1208, 211, 70, 528, 50, 195, 343, 824, 218, 567, 1200, 228, 31, 597, 671, -235, -235, 400, 401, 1184, 402, 926, 821, 221, 403, 1318, 170, 822, 168, 404, 520, 737, 408, 1194, 680, 1217, 1218, 823, 738, 405, 406, 115, 684, 426, 568, 476, 478, 1550, 31, 115, 171, 124, 268, 273, 283, 254, 217, 412, 31, 409, 1209, 410, 715, 1462, 1210, 1182, 1183, 1561, 31, 1419, 1420, 31, 629, 244, 1565, 955, 633, 865, 866, 151, 675, 677, 308, 149, 412, 152, -235, 1079, 153, 1481, 163, 115, 346, 168, 1319, 884, 211, 863, 863, 863, 64, 472, 973, 374, 722, 204, 477, 31, 217, 528, 974, 57, 117, 1260, 975, 853, 863, 920, 420, 854, 412, 188, 188, 1212, 1211, 154, 328, 578, 482, 163, 412, 155, 64, 579, 78, 156, 528, 268, 834, 1421, 602, 821, 528, 57, 956, 50, 822, 669, 731, 1190, 716, 217, 163, 938, 293, 205, 823, 211, 71, 151, 179, 674, 676, 1127, 444, 152, 78, 746, 153, 1213, 1087, 666, -113, -113, 863, 308, 1191, 841, 212, 602, 1263, 222, 580, 958, 412, 125, 216, 50, -113, 437, 71, 589, 825, 826, 99, 273, 144, 1466, 667, 1026, 273, 268, 268, 836, 118, 1152, 506, 115, 1264, 163, 263, 827, 217, 264, 864, 864, 864, 1025, 464, 328, 51, 343, 1001, 70, 1013, 214, 1184, 610, 108, 108, 308, 1103, 804, 864, 1090, 146, 1343, 658, 216, 821, 113, 520, 308, 378, 822, 666, 520, 148, 1004, 520, 217, 437, 725, 161, 823, 217, 1199, 1508, 572, 379, 108, 477, 472, 149, 1200, 673, 1419, 1420, 448, 863, 374, 678, 667, 855, -470, 157, 115, 856, 905, 1184, 346, 216, 472, 569, 603, 621, 168, 461, 597, 528, 472, 864, 1537, 597, 1539, 1466, 1080, 810, 108, 626, 1466, 388, 793, 626, 930, -470, 115, -470, 1492, 833, 260, -470, -113, 825, 826, 685, 1401, 389, 161, 1405, 1466, 579, 440, 1128, 599, 1182, 1183, 1466, 715, 1551, 1129, 268, 827, -113, 442, 1191, 1430, 557, 558, 859, 217, 188, 216, 8, 9, 10, 11, 12, 374, 173, 850, 324, 183, 64, 43, 252, 1566, 876, 473, 268, 340, 308, 308, 1247, 57, 268, 837, 1251, 626, 571, 840, 412, 31, 559, 560, 343, 484, 391, 46, 47, 216, 443, 494, 501, 495, 216, 864, 78, 877, 115, 644, 857, 78, 392, 878, 860, 393, 1451, 1452, 1214, 34, 1170, 1172, 1184, 1138, 328, 328, 268, 203, 855, 431, 71, 394, 1110, 435, 268, 716, 626, 395, 50, 929, 217, 374, 721, 1200, 112, 99, 98, 736, 115, 1079, 1200, 1114, 499, 396, 249, 41, 42, 1148, 1259, 888, 308, 875, 115, 324, 1024, 308, -291, 308, 308, 1457, 179, 51, 917, 610, 70, 754, -521, 921, 98, 115, 346, 1341, 217, 763, 583, 923, 412, 630, 1342, 216, 150, 634, 328, 922, 112, 435, 98, 1026, 489, 919, 108, 924, 43, 1200, -106, 41, 42, 921, -106, 715, 191, 328, 466, 98, 1521, 886, 98, 753, 522, 412, 1526, 923, 254, 1091, 572, 572, 46, 47, 214, 1381, 161, 265, 308, 769, 995, 1006, 43, 1092, 473, 1094, 810, 1546, 1138, 626, 346, 472, 1553, 920, 621, 1197, 1097, 939, 1097, 602, 603, 331, 603, 1197, 473, 1332, 46, 47, 332, 706, 588, 1198, 473, 1334, 594, 707, 216, 935, 78, 1324, 626, 1333, 328, 751, 1024, 626, 812, 621, 1367, 1335, 1126, 626, 1368, 627, 626, 626, 626, 631, 78, 1382, 340, 98, 889, 716, 412, -113, 78, -113, 713, 217, 64, -113, -10, 626, 98, 268, 895, 1039, 216, 723, 112, 57, 343, -444, 851, 724, -113, -113, 1037, 599, 733, 41, 42, 165, 1181, 810, 734, 217, 1029, 399, 191, 288, 217, -445, 78, 115, 254, 330, 914, 1084, 553, 554, 41, 42, 750, 324, 324, 214, 231, 1348, 751, 929, 232, 98, 892, 236, 412, 238, 71, 1379, 550, 626, 940, 621, 247, 98, 551, 552, 515, 721, 721, 1122, 1154, 689, 412, 278, 959, 400, 401, 280, 402, 1044, 555, 556, 403, 1498, 118, 281, 165, 404, 333, 597, 1498, 408, 334, 98, 929, 115, 346, 405, 406, 335, 754, 754, 217, 112, 336, 141, 142, 480, 372, 489, 112, 324, 373, 489, 41, 42, 217, 377, 409, 1111, 113, 41, 42, 522, 112, 522, 108, 216, 522, 386, 324, 522, 1151, 973, 1429, 41, 42, 852, 1392, 994, 991, 974, 340, 1547, 899, 975, 572, 1249, 390, 1350, 751, 715, 398, 867, 626, 216, 626, 901, 1009, 410, 216, 626, 346, 751, 990, 603, 743, 427, 883, 98, 991, 739, 343, 740, 1003, 1174, 741, 603, 428, 747, 707, 764, 436, 1039, 743, 433, 770, 743, 451, 231, 604, 529, 530, 531, 443, 324, 473, 112, 812, 141, 142, 1245, 781, 782, 783, 784, 808, 579, 41, 42, 1292, 1293, 1375, 217, 1166, 532, 412, 533, 751, 534, 535, 1500, 473, 1501, -368, 1376, -397, 1378, 308, 462, 78, 751, 216, 751, 1383, 466, 870, 849, 505, 716, 751, 1169, 594, 602, 436, 463, 216, 191, 858, 501, 626, 1195, 704, 1171, 810, 602, 78, 115, 346, 914, 1447, 914, 713, 929, 70, 485, 1444, 524, 1467, 1514, 1571, 214, 666, 115, 751, 1515, 579, 917, 1548, 165, 293, 1256, 1370, 412, 509, 214, 940, 940, 529, 530, 531, 721, 254, 330, 412, 514, 115, 308, 528, 667, 561, 562, 689, 526, 919, 49, 114, 885, 563, 887, 751, 996, 532, 346, 533, 1115, 534, 1321, 716, 565, 37, 330, 412, 754, 40, 98, 929, 929, 231, 604, 236, 41, 42, 564, 114, 114, 705, 49, 1388, 1389, 489, 328, 43, 216, 1439, 991, 1533, 1444, 1445, 49, 1300, 1301, 566, 1303, 569, 49, 346, 44, 339, 934, 1308, -441, 1310, 49, 340, 587, 46, 47, 694, 49, 1240, 590, 49, 1493, 1494, 49, -3, 626, 626, 420, 662, 412, 214, 2, 208, 4, 5, 6, 7, 114, 114, 482, 330, 412, 64, 639, 1138, 308, 1419, 1420, 851, 834, 330, 602, 659, 57, 8, 9, 10, 11, 12, 777, 778, 49, 217, 668, 49, 143, 231, 660, 661, 1446, 663, 49, 713, 1005, 693, 664, 78, 665, 808, 779, 780, 1202, 670, 31, 259, 115, 697, 1459, 695, 820, 914, 604, 1311, 1312, 1313, 914, 35, 699, 36, -239, 71, 735, 49, 748, 940, 785, 786, 704, 752, 959, 49, 34, 268, 959, 959, 49, 1349, 1351, 1352, 243, 246, 1116, 760, 813, -12, 814, 524, 817, 524, 626, 343, 524, 828, -13, 524, -292, 872, 873, 43, 880, 49, 49, 8, 9, 10, 11, 12, 900, 902, 724, 907, 903, 910, 571, 346, 412, 49, 928, -418, -3, 1519, 1459, 46, 47, 49, -525, 943, 808, 950, 964, 108, 31, 1425, 49, 340, 952, 49, 918, 957, 963, 965, 967, 968, 114, 969, 929, 970, 986, 998, 999, 689, 705, 216, 1000, 1015, 1016, 273, 115, 114, 34, 1017, 1018, 114, 929, 1019, 1020, 49, 114, 820, 604, 1021, 473, 489, 1117, 324, 115, 221, 1032, -406, 308, 49, 49, 57, -405, 37, 1081, 1046, 49, 40, 1083, 704, 443, 1339, 626, 49, 41, 42, 115, 108, 913, 704, 112, 1105, 141, 240, 78, 43, 112, 1104, 141, 142, 217, 41, 42, 704, 70, 1115, 1106, 41, 42, 1107, 818, 751, 602, 1131, 1113, 1123, 1124, 1125, 71, 46, 47, 1134, 849, 1130, 980, 929, 929, 241, 1140, 458, 1135, 49, 242, 728, 626, 626, 1136, 1144, 729, 1137, 743, 1164, 1144, 273, 1143, 1187, 1185, 1442, 308, 1186, -293, 49, 49, 1188, 693, 820, 1559, 8, 9, 10, 11, 12, 1189, 705, 1203, 1204, 1206, 604, 49, 713, 1207, 1399, 49, 705, 1215, 1399, 1219, -3, 1220, 1222, 1227, 115, 1232, 645, 1202, 1237, 31, 705, 108, 1235, 400, 401, 1144, 402, 1241, 1246, 494, 403, 217, 49, 1115, 1248, 404, 689, 1253, 408, 1254, 1261, 1250, 49, 1268, 1270, 405, 406, 34, 2, 208, 4, 5, 6, 7, 1265, 212, 222, 1272, 1273, 1302, 49, 1274, 666, 216, 1275, 409, 49, 64, 49, 1276, 1278, 1285, 1305, 1294, 268, 1295, 1306, 230, 57, 1323, 808, 713, 1093, 131, 918, 132, 133, 134, 1532, 667, 1307, 1330, 626, 1336, 41, 42, 1116, 1309, 646, 1317, 1338, 78, 214, 114, 1340, 1344, 1346, 1347, 49, 1353, 1482, 1354, 175, 35, 604, 36, 49, 115, 1355, 1357, 49, 1363, 1364, 1365, 49, 71, 1366, 114, 1377, 114, 1068, 37, 1373, 176, 177, 40, 1115, 1374, 1384, 1385, 1313, 115, 41, 42, 704, 704, 1393, 473, 115, 645, 115, 1394, 115, 442, 1395, 255, 1402, 1413, 57, 1405, 1414, 216, -407, 1417, 114, 151, 340, 645, 373, 114, 645, 152, 1428, 108, 153, 1432, 1436, 1202, 1434, 1437, 1443, 78, 1531, 1448, 1202, 1438, 1453, 115, 1117, 115, 1368, 1116, 1458, 1454, 1455, 108, 1456, 1472, 1463, 1474, 443, 115, 704, 704, 1468, 71, 1476, 1531, 1531, 726, 1470, 730, -294, 108, 1478, 163, 1485, 308, 114, 8, 9, 10, 11, 12, 1480, 49, 1486, 693, 705, 705, 1487, 37, 1531, 1488, 76, 40, 49, 1202, 49, 374, 511, 1441, 41, 42, 1499, 1144, 1144, 1144, 31, 1509, 1511, 418, 1513, 43, 1517, 1518, 1525, 49, 1540, 1541, 1545, 328, 548, 549, 1554, 918, 76, 1552, 720, 112, 918, 141, 142, 49, 438, 108, 34, 46, 47, 114, 41, 42, 1556, 1117, 446, 1562, 705, 705, 49, 1569, 114, 49, 114, 1570, 1116, 1221, 789, 787, 1322, 1520, 548, 788, 1205, 743, 224, 790, 1431, 473, 108, 791, 1572, 245, 1387, 1252, 473, 1403, 1226, 1502, 57, 908, 909, 1098, 1234, 1102, 49, 57, 931, 806, 114, 1139, 114, 1045, 879, 945, 114, 1112, 548, 164, 953, 1331, 718, 78, 114, 0, 126, 129, 130, 0, 78, 796, 797, 196, 521, 1328, 219, 49, 49, 229, 798, 0, 0, 871, 0, 0, 0, 71, 0, 473, 0, 49, 0, 0, 71, 37, 0, 176, 177, 40, 57, 0, 178, 0, 67, 119, 41, 42, 1117, 0, 704, 1144, 1144, 693, 354, 0, 0, 0, 704, 704, 704, 0, 0, 78, 2, 208, 4, 5, 6, 7, 0, 0, 925, 108, 927, 0, 67, 0, 458, 0, 256, 1505, 257, 1505, 0, 0, 0, 71, 0, 1483, 0, 0, 178, 0, 162, 178, 0, 108, 164, 1329, 215, 0, 0, 0, 108, 414, 0, 0, 0, 0, 234, 375, 422, 0, 223, 49, 0, 0, 1505, 0, 1505, 0, 0, 0, 704, 0, 0, 49, 450, 35, 0, 36, 0, 0, 705, 1068, 0, 164, 0, 0, 0, 178, 705, 705, 705, 0, 0, 0, 324, 76, 1534, 261, 215, 0, 76, 0, 0, 108, 0, 1542, 164, 0, 682, 397, 0, 0, 774, 775, 776, 0, 645, 0, 445, 416, 417, 0, 0, 114, 421, 0, 423, 424, 0, 0, 414, 0, 0, 37, 708, 176, 177, 40, 0, 329, 0, 215, 0, 0, 41, 42, 49, 261, 351, 0, 178, 0, 0, 0, 705, 49, 0, 49, 0, 0, 0, 0, 0, 37, 114, 185, 186, 40, 0, 0, 377, 521, 0, 0, 41, 42, 521, 1391, 407, 521, 0, 0, 0, 0, 577, 43, 0, 49, 0, 0, 0, 0, 581, 425, 224, 584, 430, 432, 646, 0, 187, 162, 215, 0, 178, 1049, 0, 114, 0, 46, 47, 178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449, 645, 375, 0, 452, 0, 453, 0, 0, 114, 1418, 0, 645, 1426, 114, 460, 0, 0, 215, 0, 0, 67, 0, 215, 1099, 0, 474, 0, 0, 0, 0, 898, 0, 0, 0, 0, 481, 414, 500, 76, 0, 422, 0, 0, 432, 0, 0, 8, 9, 10, 11, 12, 0, 0, 354, 0, 0, 178, 1465, 76, 0, 0, 0, 1469, 114, 0, 0, 76, 8, 9, 10, 11, 12, 0, 178, 0, 31, 0, 178, 0, 375, 0, 0, 646, 0, 354, 480, 0, 0, 0, 0, 0, 0, 1491, 0, 0, 0, 31, 0, 0, 981, 0, 114, 354, 34, 76, 0, 0, 215, 0, 261, 0, 0, 897, 595, 0, 49, 0, 414, 0, 623, 49, 904, 0, 0, 34, 906, 0, 0, 0, 0, 43, 0, 628, 0, 0, 0, 628, 49, 0, 261, 178, 0, 0, 0, 0, 753, 354, 412, 0, 0, 0, 43, 0, 997, 46, 47, 0, 0, 0, 1506, 0, 1506, 0, 1002, 0, 0, 939, 0, 602, 0, 0, 0, 0, 0, 0, 46, 47, 1014, 1560, 0, 0, 0, 0, 1049, 1560, 0, 474, 0, 215, 0, 0, 0, 0, 0, 0, 1560, 1506, 0, 1506, 1560, 37, 351, 185, 186, 40, 215, 474, 0, 577, 577, 354, 41, 42, 0, 474, 0, 37, 114, 185, 186, 40, 0, 43, 0, 0, 79, 0, 41, 42, 0, 215, 0, 700, 0, 0, 432, 0, 912, 43, 412, 49, 0, 0, 0, 0, 913, 46, 47, 0, 0, 714, 0, 67, 267, 354, 354, 354, 79, 0, 0, 432, 0, 46, 47, 432, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 801, 802, 0, 0, 0, 114, 114, 114, 0, 0, 0, 0, 0, 354, 0, 261, 351, 225, 890, 178, 0, 1298, 893, 0, 76, 0, 0, 0, 0, 835, 0, 0, 838, 839, 0, 842, 0, 844, 845, 0, 0, 0, 846, 847, 0, 0, 0, 0, 0, 0, 76, 178, 0, 354, 0, 0, 0, 0, 0, 0, 0, 799, 81, 645, 0, 0, 0, 178, 1089, 0, 548, 0, 0, 215, 0, 0, 0, 0, 0, 628, 811, 0, 178, 0, 0, 0, 0, 58, 58, 0, 354, 0, 830, 0, 81, 0, 0, 0, 0, 0, 0, 215, 0, 0, 0, 356, 215, 1179, 1180, 0, 595, 511, 0, 0, 0, 595, 0, 0, 0, 58, 0, 628, 0, 0, 351, 351, 351, 0, 0, 0, 0, 0, 226, 0, 0, 0, 354, 0, 49, 49, 0, 0, 0, 351, 0, 0, 354, 0, 354, 114, 114, 0, 0, 224, 58, 0, 354, 58, 577, 0, 354, 700, 0, 178, 0, 1229, 1230, 0, 0, 0, 0, 0, 474, 0, 0, 0, 0, 0, 215, 0, 0, 0, 0, 978, 979, 0, 0, 114, 0, 0, 0, 0, 215, 0, 0, 0, 0, 0, 474, 0, 79, 351, 0, 0, 0, 79, 0, 0, 0, 0, 944, 0, 500, 432, 37, 0, 185, 186, 40, 0, 357, 0, 76, 0, 1216, 41, 42, 0, 37, 0, 185, 186, 40, 0, 0, 0, 43, 261, 714, 41, 42, 0, 0, 976, 0, 349, 0, 49, 114, 0, 43, 601, 354, 602, 0, 0, 0, 114, 0, 0, 46, 47, 0, 0, 0, 912, 0, 412, 0, 0, 0, 0, 49, 49, 46, 47, 0, 414, 0, 0, 0, 0, 0, 0, 700, 0, 0, 0, 0, 215, 0, 0, 0, 0, 700, 0, 351, 49, 628, 225, 0, 1012, 0, 628, 811, 0, 0, 354, 700, 0, 58, 0, 0, 0, 0, 81, 0, 0, 1023, 0, 81, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 0, 178, 0, 0, 0, 0, 0, 0, 0, 58, 37, 0, 185, 186, 40, 0, 0, 1100, 0, 0, 1356, 41, 42, 0, 546, 0, 1155, 0, 1358, 1359, 1360, 0, 43, 0, 0, 79, 0, 354, 354, 67, 354, 354, 0, 1167, 0, 0, 0, 1530, 0, 412, 356, 0, 0, 0, 0, 79, 46, 47, 0, 0, 76, 628, 0, 79, 0, 0, 0, 0, 261, 714, 0, 0, 1095, 0, 8, 9, 10, 11, 12, 0, 0, 356, 0, 226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1406, 354, 354, 0, 1109, 356, 0, 79, 0, 31, 0, 0, 432, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 0, 0, 351, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 185, 186, 40, 0, 0, 356, 0, 1386, 0, 41, 42, 0, 81, 0, 0, 0, 0, 0, 0, 0, 43, 215, 0, 0, 0, 1257, 0, 357, 0, 595, 0, 354, 81, 0, 0, 601, 0, 602, 0, 0, 81, 0, 430, 1231, 46, 47, 0, 700, 700, 0, 351, 351, 349, 0, 0, 0, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 1201, 0, 0, 0, 224, 0, 357, 0, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 58, 0, 700, 700, 0, 354, 0, 354, 0, 0, 356, 356, 356, 0, 0, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 349, 0, 0, 0, 88, 356, 354, 354, 354, 628, 0, 0, 0, 0, 0, 0, 79, 354, 354, 0, 0, 1503, 0, 1507, 0, 0, 0, 0, 0, 0, 1320, 76, 0, 0, 714, 178, 88, 0, 0, 357, 0, 0, 79, 0, 0, 356, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 1536, 0, 1538, 0, 0, 0, 349, 215, 0, 0, 0, 0, 0, 0, 354, 0, 227, 0, 0, 1299, 0, 31, 0, 0, 356, 357, 357, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, 0, 0, 0, 67, 0, 0, 357, 1567, 0, 1568, 0, 34, 349, 349, 349, 700, 37, 714, 185, 186, 40, 119, 1575, 1576, 357, 0, 0, 41, 42, 0, 0, 349, 356, 0, 0, 81, 0, 0, 43, 0, 0, 0, 356, 0, 356, 0, 354, 0, 0, 225, 700, 0, 356, 912, 0, 412, 356, 0, 700, 700, 700, 81, 46, 47, 357, 0, 364, 215, 0, 351, 351, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 1201, 0, 0, 0, 0, 0, 349, 0, 0, 0, 0, 0, 76, 0, 0, 0, 0, 0, 357, 76, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 178, 119, 0, 79, 0, 0, 0, 0, 0, 700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 185, 186, 40, 0, 0, 357, 356, 0, 0, 41, 42, 0, 0, 76, 0, 357, 0, 357, 0, 88, 43, 0, 226, 0, 88, 357, 0, 0, 0, 357, 0, 0, 0, 0, 0, 1530, 0, 412, 0, 0, 0, 0, 349, 0, 46, 47, 0, 0, 0, 0, 349, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 169, 0, 174, 0, 0, 180, 181, 182, 0, 184, 0, 0, 0, 0, 119, 8, 9, 10, 11, 12, 0, 0, 0, 0, 235, 0, 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 250, 251, 1201, 0, 0, 0, 0, 0, 31, 1201, 8, 9, 10, 11, 12, 0, 0, 58, 0, 227, 0, 0, 357, 356, 356, 0, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 31, 0, 37, 0, 185, 186, 40, 79, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 1201, 43, 0, 0, 0, 34, 0, 1555, 0, 0, 37, 0, 185, 186, 40, 357, 187, 0, 0, 356, 356, 41, 42, 58, 88, 46, 47, 0, 0, 0, 0, 0, 43, 0, 8, 9, 10, 11, 12, 364, 349, 0, 0, 0, 88, 0, 0, 267, 0, 0, 0, 0, 88, 0, 0, 0, 46, 47, 0, 0, 0, 0, 0, 31, 0, 8, 9, 10, 11, 12, 364, 0, 0, 0, 0, 0, 357, 357, 0, 357, 357, 0, 0, 0, 0, 0, 0, 0, 364, 0, 88, 34, 0, 356, 31, 0, 37, 0, 0, 81, 40, 0, 0, 0, 349, 349, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 34, 0, 58, 0, 0, 37, 0, 0, 0, 40, 364, 44, 357, 357, 225, 0, 41, 42, 0, 0, 46, 47, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 720, 0, 0, 0, 0, 0, 356, 0, 356, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 592, 0, 600, 364, 0, 0, 0, 0, 0, 0, 0, 31, 356, 624, 625, 357, 0, 0, 0, 0, 356, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 356, 356, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 79, 0, 364, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 226, 0, 0, 0, 0, 0, 0, 0, 364, 0, 284, 285, 0, 286, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 58, 58, 364, 0, 356, 0, 0, 0, 0, 0, 357, 0, 357, 88, 0, 287, 0, 0, 0, 0, 0, 288, 0, 58, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 88, 0, 58, 364, 43, 0, 357, 0, 0, 0, 0, 0, 0, 0, 357, 357, 357, 0, 0, 296, 0, 380, 0, 0, 381, 357, 357, 0, 46, 47, 298, 299, 300, 301, 0, 356, 0, 0, 0, 81, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349, 349, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 0, 0, 0, 79, 0, 364, 0, 0, 0, 0, 79, 0, 0, 0, 0, 364, 58, 364, 0, 0, 0, 0, 227, 0, 0, 364, 0, 0, 0, 364, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 0, 26, 27, 28, 0, 0, 0, 0, 213, 0, 31, 0, 0, 79, 0, 0, 0, 0, 233, 357, 237, 0, 239, 0, 0, 0, 0, 0, 0, 248, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 88, 0, 37, 349, 337, 338, 40, 0, -295, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 213, 0, 237, 239, 248, 43, 0, 0, 81, 58, 0, 364, 0, 0, 0, 81, 0, 0, 0, 0, 635, 0, 339, 0, 0, 128, 128, 128, 0, 46, 47, 0, 0, 58, 0, 0, 0, 0, 284, 285, 58, 286, 0, 213, 932, 0, 933, 0, 0, 0, 0, 0, 0, 936, 937, 0, 0, 0, 942, 0, 0, 0, 0, 0, 0, 0, 364, 287, 81, 167, 947, 0, 0, 288, 0, 951, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 220, 294, 295, 0, 0, 0, 0, 58, 0, 43, 0, 0, 0, 128, 0, 128, 0, 0, 213, 987, 237, 239, 248, 0, 296, 0, 380, 0, 0, 0, 0, 0, 792, 46, 47, 298, 299, 300, 301, 0, 277, 364, 364, 0, 364, 364, 0, 0, 167, 0, 0, 0, 274, 0, 0, 0, 213, 0, 0, 0, 0, 213, 0, 0, 88, 0, 0, 0, 508, 0, 510, 513, 0, 0, 0, 0, 498, 0, 516, 517, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370, 510, 510, 0, 376, 128, 0, 0, 364, 364, 0, 0, 0, 128, 0, 128, 128, 0, 0, 0, 128, 0, 128, 128, 0, 0, 0, 0, 0, 1033, 1034, 1035, 1036, 213, 1038, 0, 0, 0, 0, 510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1082, 0, 0, 167, 0, 213, 0, 0, 0, 0, 237, 239, 0, 0, 1088, 220, 0, 0, 248, 0, 0, 0, 0, 0, 0, 510, 0, 0, 0, 0, 0, 0, 364, 167, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1108, 0, 0, 0, 376, 0, 0, 213, 0, 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, 0, 0, 0, 213, 0, 0, 0, 0, 213, 0, 213, 0, 525, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 167, 1141, 0, 213, 0, 0, 213, 213, 1149, 364, 0, 364, 0, 1153, 213, 0, 0, 0, 1157, 0, 1158, 0, 0, 0, 1160, 0, 1161, 1162, 213, 0, 1165, 0, 0, 0, 0, 213, 0, 0, 598, 1177, 0, 0, 0, 622, 364, 0, 0, 0, 0, 0, 0, 0, 364, 364, 364, 0, 0, 1192, 1193, 0, 0, 0, 0, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, 1223, 0, 0, 1225, 0, 0, 0, 0, 0, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 510, 0, 0, 0, 0, 0, 0, 0, 364, 167, 167, 0, 0, 0, 0, 0, 370, 0, 0, 0, 1239, 0, 0, 0, 0, 0, 1243, 1244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 525, 1255, 213, 0, 0, 0, 0, 0, 0, 0, 0, 1262, 0, 0, 1266, 0, 1267, 0, 0, 1269, 0, 0, 0, 0, 0, 0, 0, 0, 717, 0, 213, 0, 1277, 0, 0, 213, 0, 0, 0, 0, 167, 364, 0, 0, 0, 1284, 0, 1286, 1287, 1288, 1289, 0, 525, 0, 525, 0, 0, 525, 0, 167, 525, 0, 0, 1296, 0, 1297, 0, 0, 0, 174, 0, 0, 370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 510, 0, 0, 0, 88, 1325, 1326, 128, 128, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 0, 0, 167, 0, 0, 0, 0, 128, 0, 0, 128, 128, 0, 128, 370, 128, 128, 0, 816, 498, 128, 128, 0, 0, 0, 0, 0, 0, 88, 1361, 1362, 0, 0, 0, 510, 0, 0, 0, 0, 1372, 0, 0, 0, 0, 598, 0, 0, 0, 0, 598, 0, 0, 0, 0, 0, 0, 0, 0, 370, 370, 370, 0, 0, 0, 0, 0, 510, 0, 0, 1022, 0, 0, 8, 9, 10, 11, 12, 370, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 1404, 0, 158, 0, 0, 0, 213, 0, 0, 284, 285, 31, 286, 1409, 0, 1410, 1411, 1412, 0, 525, 0, 0, 0, 0, 0, 213, 0, 1416, 0, 0, 0, 0, 0, 0, 0, 0, 1427, 0, 287, 34, 0, 0, 0, 0, 288, 370, 0, 941, 289, 0, 253, 290, 291, 292, 293, 41, 42, 0, 294, 295, 258, 0, 0, 1450, 0, 0, 43, 0, 0, 0, 0, 128, 128, 0, 0, 0, 0, 0, 0, 0, 0, 296, 717, 380, 0, 0, 0, 0, 0, 0, 345, 47, 298, 299, 300, 301, 0, 510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1489, 1490, 0, 0, 0, 0, 0, 0, 158, 0, 0, 0, 0, 1495, 0, 0, 0, 0, 0, 0, 1495, 0, 387, 0, 0, 0, 0, 0, 0, 0, 0, 213, 370, 0, 510, 0, 622, 0, 0, 0, 370, 0, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 1529, 0, 0, 0, 1535, 0, 434, 0, 0, 0, 213, 0, 0, 0, 0, 439, 0, 0, 0, 510, 0, 0, 0, 0, 0, 447, 0, 0, 0, 0, 0, 0, 510, 1557, 0, 1558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 465, 0, 0, 0, 0, 475, 0, 213, 0, 0, 0, 0, 0, 1573, 1574, 0, 0, 0, 483, 0, 128, 1577, 1578, 510, 493, 128, 497, 0, 0, 0, 0, 0, 0, 717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 527, 0, 0, 0, 0, 525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 285, 0, 286, 0, 0, 0, 0, 0, 167, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 586, 0, 0, 370, 0, 591, 0, 287, 213, 0, 0, 0, 0, 288, 0, 510, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 636, 43, 0, 0, 637, 638, 0, 640, 0, 0, 0, 0, 598, 0, 652, 653, 507, 654, 655, 0, 656, 0, 657, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 370, 370, 0, 0, 0, 0, 586, 0, 0, 0, 0, 510, 510, 0, 672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 128, 0, 683, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 525, 0, 0, 0, 0, 709, 0, 0, 0, 0, 0, 712, 0, 0, -520, 0, 465, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 749, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 768, 0, 717, 0, 213, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 795, 0, 0, 43, 128, 0, 220, 0, 0, 805, 0, 342, 365, 0, 0, 0, 807, 0, 44, 0, 45, 0, 815, 0, 0, 0, 0, 46, 47, 0, 0, 829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 717, 0, 415, 0, 0, 0, 0, 0, 0, 415, 0, 0, 0, 0, 510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 869, 0, 0, 510, 0, 0, 0, 0, 0, 0, 0, 284, 285, 0, 286, 0, 0, 0, 0, 0, 0, 0, 0, 370, 370, 0, 0, 0, 0, 0, 0, 0, 220, 0, 0, 0, 815, 0, 0, 0, 287, 0, 0, 0, 911, 0, 288, 0, 0, 0, 289, 0, 415, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 253, 510, 510, 0, 0, 0, 0, 0, 296, 0, 948, 949, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 966, 0, 0, 0, 0, 0, 0, 415, 0, 0, 0, 0, 0, 0, 0, 415, 582, 0, 415, 585, 0, 988, 0, 989, 0, 0, 0, 993, 0, 365, 0, 0, 0, 614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370, 0, 213, 632, 0, 0, 342, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 0, 26, 27, 28, 0, 0, 0, 415, 0, 0, 31, 415, 0, 0, 0, 0, 0, 1027, 0, 0, 0, 0, 0, 0, 1028, 0, 0, 0, 0, 0, 0, 0, 525, 0, 525, 0, 0, 1030, 34, 1031, 0, 0, 365, 37, 0, 337, 338, 40, 0, -295, 0, 0, 0, 1043, 41, 42, 0, 0, 0, 0, 1047, 0, 0, 0, 0, 43, 0, 0, 0, 525, 322, 525, 1085, 0, 0, 1086, 0, 0, 0, 0, 347, 0, 339, 0, 0, 0, 0, 0, 415, 46, 47, 365, 383, 383, 0, 0, 0, 0, 0, 167, 207, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 415, 0, 0, 0, 342, 365, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 591, 0, 0, 0, 0, 0, 0, 0, 0, 322, 34, 0, 35, 0, 36, 0, 0, 209, 39, 0, 0, 0, 0, 0, 0, 415, 415, 0, 0, 0, 0, 0, 0, 479, 0, 0, 1159, 43, 0, 0, 0, 0, 0, 0, 809, 365, 0, 0, 0, 0, 0, 0, 0, 0, 210, 614, 0, 614, 614, 0, 0, 46, 47, 0, 614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 848, 365, 0, 0, 0, 0, 365, 0, 0, 0, 0, 0, 0, 0, 0, 365, 365, 365, 0, 0, 527, 0, 0, 0, 0, 0, 1224, 0, 0, 0, 0, 0, 0, 0, 365, 0, 0, 0, 0, 415, 891, 0, 0, 415, 894, 0, 0, 0, 0, 0, 896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1236, 0, 0, 0, 0, 1238, 0, 0, 0, 415, 0, 0, 0, 1242, 0, 383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365, 614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1279, 0, 0, 1280, 0, 1281, 0, 342, 365, 0, 0, 0, 415, 415, 0, 0, 0, 0, 0, 1290, 1291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1304, 0, 0, 0, 0, 0, 0, 711, 284, 285, 0, 286, 0, 0, 0, 0, 0, 415, 0, 0, 0, 0, 0, 0, 0, 365, 0, 0, 0, 0, 0, 0, 809, 365, 0, 0, 614, 287, 614, 0, 0, 0, 0, 288, 0, 0, 745, 289, 614, 1345, 290, 291, 292, 293, 41, 42, 0, 294, 295, 762, 0, 0, 0, 0, 745, 43, 0, 745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 772, 773, 296, 0, 380, 0, 0, 0, 0, 761, 0, 46, 47, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 803, 0, 0, 0, 0, 0, 0, 347, 0, 0, 809, 0, 762, 0, 1396, 0, 1397, 342, 365, 415, 0, 415, 0, 0, 0, 415, 0, 0, 0, 0, 1407, 0, 1408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 614, 614, 0, 0, 1415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 868, 0, 0, 0, 0, 1433, 1435, 0, 0, 383, 0, 0, 365, 0, 0, 0, 1440, 0, 0, 1242, 0, 0, 415, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 1464, 0, 415, 1156, 0, 0, 0, 0, 0, 1471, 31, 0, 1473, 365, 1475, 1477, 1479, 0, 0, 415, 1168, 0, 614, 614, 1173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365, 365, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -295, 0, 0, 0, 0, 0, 0, 1510, 0, 1512, 0, 1242, 0, 0, 0, 0, 0, 0, 762, 0, 972, 0, 0, 0, 0, 0, 0, 1524, 0, 0, 983, 0, 0, 0, 0, 0, 0, 992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415, 0, 415, 0, 0, 0, 0, 415, 0, 0, 0, 0, 0, 0, 0, 0, 614, 0, 0, 0, 0, 0, 0, 0, 1175, 0, 0, 8, 9, 10, 11, 12, 1010, 1011, 0, 0, 347, 0, 0, 0, 0, 809, 415, 1258, 0, 0, 0, 0, 0, 0, 347, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 0, 0, 0, 288, 1041, 0, 0, 289, 383, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 342, 380, 0, 0, 0, 347, 0, 0, 1176, 47, 298, 299, 300, 301, 0, 0, 0, 0, 365, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 322, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 1132, 1133, 0, 0, 0, 0, 0, 0, 0, 0, 365, 365, 0, 0, 383, 0, 0, 0, 0, 0, 983, 287, 34, 1147, 35, 745, 36, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 1163, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 1178, 0, 284, 285, 0, 286, 0, 296, 0, 344, 0, 0, 0, 0, 761, 0, 345, 47, 298, 299, 300, 301, 383, 0, 1196, 0, 0, 0, 0, 0, 0, 287, 0, 0, 0, 0, 0, 288, 0, 983, 983, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 1228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 365, 980, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 983, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 868, 0, 0, 0, 0, 0, 284, 285, 0, 286, 0, 0, 0, 0, 0, 1282, 1283, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 415, 0, 0, 287, 41, 42, 0, 0, 0, 288, 0, 0, 0, 289, 0, 43, 290, 291, 292, 293, 41, 42, 0, 294, 295, 415, 415, 0, 0, 0, 44, 43, 45, 0, 0, 0, -524, 0, 0, 46, 47, 0, 0, 0, 0, 0, 296, 0, 380, 0, 415, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 983, 0, 1, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 284, 285, 31, 1050, 1051, 0, 1052, 0, 0, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 0, 0, 0, 1061, 0, 0, 0, 1062, 1063, 0, 33, 1390, 287, 34, 745, 35, 0, 36, 1064, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 1065, 0, 0, 173, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 0, 0, 1066, 0, 0, 0, -130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1449, 0, 0, 0, 0, 0, 0, 1, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 284, 285, 31, 286, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 287, 34, 0, 35, 31, 36, 288, 0, 38, 39, 289, 0, 1516, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 34, 0, 0, 0, 0, 112, 0, 38, 39, 0, 0, 296, 0, 1065, 0, 0, 41, 42, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 322, -130, 1, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 284, 285, 31, 286, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 0, 0, 287, 34, 0, 35, 0, 36, 288, 31, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 296, 0, 45, -296, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 287, 34, 0, 35, 31, 36, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 296, 0, 971, 0, 0, 0, 0, 761, 0, 345, 47, 298, 299, 300, 301, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 287, 34, 0, 35, 31, 36, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 209, 39, 0, 0, 296, 0, 971, 0, 0, 0, 0, 761, 0, 46, 47, 298, 299, 300, 301, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 35, 0, 36, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 344, 0, 0, 0, 0, 0, 0, 345, 47, 298, 299, 300, 301, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 35, 0, 36, 288, 0, 209, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 1007, 0, 0, 0, 0, 0, 0, 1008, 47, 298, 299, 300, 301, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 35, 0, 36, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 971, 0, 0, 0, 0, 0, 0, 345, 47, 298, 299, 300, 301, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 35, 0, 36, 288, 0, 209, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 45, 0, 0, 0, 0, 0, 0, 46, 47, 207, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 486, 487, 488, 34, 0, 35, 31, 36, 37, 0, 209, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 44, 0, 210, 0, 0, 0, 0, 0, 0, 46, 47, 1, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 46, 47, 1, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 209, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 210, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -403, 679, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 1369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 679, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 1371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 679, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 209, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 679, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 593, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 209, 39, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 43, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 46, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 0, 0, 0, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 518, 0, 0, 173, 0, 0, 0, 46, 47, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 0, 0, 0, 641, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, -35, 742, 0, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 0, 0, 0, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 297, 0, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 0, 0, 0, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 159, 0, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 0, 0, 0, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 593, 0, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 284, 285, 31, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 34, 0, 0, 0, 0, 288, 0, 38, 39, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 468, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 0, 38, 39, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 37, 0, 38, 39, 40, 31, 0, 0, 0, -3, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 44, 37, 159, 38, 39, 40, 0, 0, 0, 46, 47, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 45, 0, 0, 0, 0, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 37, 0, 209, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 34, 0, 0, 0, 0, 37, 0, 337, 338, 40, 0, 0, 44, 0, 272, 0, 41, 42, 0, 0, 0, 46, 47, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 635, 0, 339, 0, 0, 0, 0, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 37, 0, 337, 338, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 34, 0, 0, 0, 0, 112, 0, 38, 39, 0, 0, 0, 0, 0, 339, 0, 41, 42, 0, 0, 0, 46, 47, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 686, 0, 0, 0, 38, 39, 0, 0, -295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 635, 0, 339, 0, 0, 0, 0, 0, 0, 46, 47, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 0, 0, 0, 688, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 686, 0, 0, 0, 38, 39, 0, 0, -295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 339, 0, 0, 0, 0, 0, 0, 46, 47, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 0, 0, 0, 1101, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 686, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 34, 0, 0, 31, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 687, 0, 0, 0, 1233, 0, 0, 46, 47, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 635, 0, 339, 0, 0, 0, 0, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 0, 46, 47, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 0, 0, 0, 0, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 209, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 272, 0, 0, 0, 0, 0, 0, 46, 47, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 0, 0, 0, 0, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 687, 0, 0, 0, 0, 0, 0, 46, 47, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 593, 0, 0, 0, 0, 0, 0, 46, 47, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 34, 0, 0, 0, 0, 0, 0, 209, 39, 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 46, 47, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 47, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 284, 285, 0, 286, 1051, 0, 1052, 0, 0, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 0, 0, 1549, 1061, 0, 0, 0, 1062, 1063, 34, 33, 35, 287, 36, 0, 0, 38, 39, 1064, 0, 0, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -416, 0, 0, 296, 0, 380, 0, 0, 173, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 0, 0, 1066, 0, 284, 285, -130, 286, 1051, 0, 1052, 0, 0, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 0, 0, 0, 1061, 0, 0, 0, 1062, 1063, 0, 33, 0, 287, 0, 0, 0, 0, 0, 1064, 0, 0, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 173, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 0, 0, 1066, 0, 0, 0, -130, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 284, 285, 0, 286, 1051, 0, 1052, 1419, 1420, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 0, 0, 1549, 1061, 0, 0, 0, 1062, 1063, 34, 33, 35, 287, 36, 0, 0, 38, 39, 1064, 0, 0, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 1327, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 173, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 284, 285, 1066, 286, 1051, 0, 1052, 1419, 1420, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 0, 0, 0, 1061, 0, 0, 0, 1062, 1063, 0, 33, 0, 287, 0, 0, 0, 0, 0, 1064, 0, 0, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 173, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 284, 285, 1066, 286, 1051, 0, 1052, 0, 0, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 0, 0, 0, 1061, 0, 0, 0, 1062, 1063, 0, 33, 0, 287, 0, 0, 0, 0, 0, 1064, 0, 0, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 284, 285, 0, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 173, 0, 0, 0, 46, 47, 298, 299, 300, 301, 287, 0, 0, 0, 1066, 0, 641, 0, 141, 142, 289, 0, 0, 290, 642, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 284, 285, 0, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 643, 0, 644, 381, 0, 0, 0, 46, 47, 298, 299, 300, 301, 287, 0, 0, 0, 0, 0, 288, 0, 0, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 0, 0, 0, 0, 43, 284, 285, 0, 286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 284, 285, 0, 286, 710, 47, 298, 299, 300, 301, 287, 0, 0, 0, 0, 0, 641, 0, 0, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 287, 294, 295, 0, 0, 0, 288, 0, 0, 43, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 296, 0, 765, 0, 43, 284, 285, 0, 286, 46, 47, 298, 299, 300, 301, 0, 0, 0, 0, 296, 0, 380, 0, 0, 284, 285, 0, 286, 345, 47, 298, 299, 300, 301, 287, 0, 0, 0, 0, 0, 288, 0, 0, 0, 289, 0, 0, 290, 291, 292, 293, 41, 42, 287, 294, 295, 0, 0, 0, 288, 0, 0, 43, 289, 0, 0, 290, 291, 292, 293, 41, 42, 0, 294, 295, 0, 0, 512, 0, 0, 0, 43, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 0, 0, 0, 0, 515, 0, 0, 0, 0, 0, 0, 0, 0, 46, 47, 298, 299, 300, 301, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 176, 177, 40, 0, 0, 0, 0, 0, 0, 41, 42, 207, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 209, 39, 468, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 208, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 209, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1414)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 44, 187, 187, 535, 187, 0, 44, 753, 187, 44, 206, 241, 648, 187, 522, 753, 188, 881, 1, 753, 107, 221, 118, 187, 187, 514, 621, 170, 171, 350, 32, 0, 986, 760, 0, 189, 603, 32, 350, 601, 601, 493, 44, 188, 281, 497, 44, 993, 50, 39, 1337, 604, 44, 1419, 603, 50, 44, 610, 601, 572, 51, 32, 64, 32, 72, 67, 32, 82, 70, 64, 157, 601, 67, 95, 1050, 70, 39, 346, 419, 44, 45, 267, 267, 1031, 267, 694, 601, 70, 267, 63, 107, 601, 50, 267, 296, 110, 268, 1043, 439, 1062, 1063, 601, 117, 267, 267, 107, 447, 203, 130, 263, 264, 1526, 39, 115, 131, 82, 118, 119, 109, 109, 67, 111, 39, 268, 132, 64, 483, 1493, 72, 1030, 1031, 1546, 39, 44, 45, 39, 365, 84, 1553, 735, 369, 636, 637, 187, 427, 428, 148, 149, 111, 187, 115, 881, 187, 1440, 149, 157, 158, 115, 132, 654, 162, 635, 636, 637, 0, 258, 912, 162, 489, 28, 109, 39, 119, 82, 912, 0, 1, 1140, 912, 112, 654, 689, 109, 116, 111, 187, 188, 72, 132, 187, 148, 110, 109, 188, 111, 187, 32, 116, 0, 187, 82, 203, 109, 114, 111, 720, 82, 32, 117, 211, 720, 411, 495, 96, 483, 162, 211, 712, 82, 78, 720, 223, 0, 267, 58, 427, 428, 109, 223, 267, 32, 514, 267, 118, 110, 407, 115, 116, 712, 241, 123, 109, 67, 111, 85, 70, 109, 111, 111, 109, 67, 253, 131, 211, 32, 342, 818, 818, 253, 261, 109, 1423, 407, 830, 266, 267, 268, 820, 1, 996, 283, 273, 113, 268, 108, 818, 223, 111, 635, 636, 637, 830, 253, 241, 253, 372, 799, 253, 818, 67, 1238, 603, 0, 1, 296, 931, 579, 654, 907, 11, 1254, 397, 119, 818, 1, 507, 308, 116, 818, 481, 512, 109, 807, 515, 261, 273, 491, 50, 818, 266, 1050, 1475, 324, 132, 32, 109, 419, 329, 1304, 425, 44, 45, 230, 807, 329, 431, 481, 112, 80, 112, 342, 116, 683, 1291, 346, 162, 439, 131, 350, 351, 308, 249, 621, 82, 447, 712, 1510, 626, 1512, 1521, 1224, 590, 70, 365, 1526, 116, 568, 369, 697, 111, 372, 113, 96, 940, 107, 117, 110, 939, 939, 110, 109, 132, 115, 117, 1546, 116, 220, 110, 346, 1290, 1291, 1553, 749, 1526, 117, 397, 939, 131, 223, 123, 114, 90, 91, 632, 351, 407, 223, 10, 11, 12, 13, 14, 407, 114, 1009, 148, 116, 253, 94, 0, 1553, 80, 258, 425, 157, 427, 428, 1125, 253, 431, 605, 1129, 434, 109, 609, 111, 39, 126, 127, 526, 274, 116, 118, 119, 261, 223, 129, 281, 131, 266, 807, 253, 111, 455, 113, 630, 258, 132, 117, 634, 116, 1407, 1408, 1059, 67, 1018, 1019, 1415, 976, 427, 428, 473, 3, 112, 207, 253, 132, 116, 211, 481, 749, 483, 116, 485, 697, 432, 481, 489, 1464, 72, 485, 0, 505, 495, 1224, 1471, 948, 734, 132, 116, 83, 84, 991, 1139, 658, 507, 649, 509, 241, 830, 512, 3, 514, 515, 1415, 349, 485, 689, 830, 485, 522, 0, 116, 32, 526, 527, 110, 474, 111, 109, 116, 111, 366, 117, 351, 44, 370, 495, 132, 72, 273, 50, 1109, 276, 689, 253, 132, 94, 1524, 112, 83, 84, 116, 116, 911, 64, 514, 254, 67, 1496, 656, 70, 109, 296, 111, 1502, 116, 109, 132, 571, 572, 118, 119, 351, 1304, 308, 131, 579, 111, 792, 809, 94, 132, 419, 913, 814, 1523, 1095, 590, 591, 683, 1528, 1100, 595, 116, 917, 109, 919, 111, 601, 110, 603, 116, 439, 116, 118, 119, 110, 110, 342, 132, 447, 116, 346, 116, 432, 709, 419, 132, 621, 132, 579, 116, 944, 626, 591, 628, 112, 132, 958, 632, 116, 365, 635, 636, 637, 369, 439, 132, 372, 149, 109, 911, 111, 110, 447, 112, 483, 595, 485, 116, 109, 654, 162, 656, 668, 869, 474, 110, 72, 485, 748, 109, 621, 116, 131, 132, 867, 626, 110, 83, 84, 50, 1030, 903, 116, 623, 852, 187, 188, 72, 628, 109, 485, 686, 109, 110, 689, 888, 120, 121, 83, 84, 110, 427, 428, 474, 71, 111, 116, 913, 75, 211, 109, 78, 111, 80, 485, 1304, 118, 712, 713, 714, 87, 223, 124, 125, 109, 720, 721, 950, 109, 455, 111, 109, 738, 912, 912, 109, 912, 873, 88, 89, 912, 1464, 468, 109, 115, 912, 110, 1009, 1471, 914, 110, 253, 958, 748, 749, 912, 912, 110, 753, 754, 700, 72, 110, 74, 75, 267, 112, 493, 72, 495, 109, 497, 83, 84, 714, 109, 914, 945, 468, 83, 84, 507, 72, 509, 485, 595, 512, 115, 514, 515, 996, 1530, 1381, 83, 84, 622, 1321, 115, 116, 1530, 526, 1524, 110, 1530, 799, 1127, 109, 111, 116, 1159, 132, 638, 807, 623, 809, 110, 811, 64, 628, 814, 815, 116, 110, 818, 514, 109, 653, 329, 116, 507, 910, 509, 110, 1022, 512, 830, 109, 515, 116, 529, 211, 1047, 532, 112, 534, 535, 132, 214, 350, 85, 86, 87, 623, 579, 683, 72, 815, 74, 75, 110, 557, 558, 559, 560, 590, 116, 83, 84, 1190, 1191, 110, 811, 109, 109, 111, 111, 116, 113, 114, 1468, 709, 1470, 114, 110, 114, 110, 881, 132, 683, 116, 700, 116, 110, 583, 111, 621, 109, 1159, 116, 109, 626, 111, 273, 132, 714, 407, 632, 734, 903, 1045, 465, 109, 1134, 111, 709, 910, 911, 912, 110, 914, 749, 1127, 881, 114, 116, 296, 110, 110, 110, 700, 1095, 926, 116, 116, 116, 1100, 1525, 308, 82, 109, 1290, 111, 109, 714, 939, 940, 85, 86, 87, 944, 109, 110, 111, 109, 949, 950, 82, 1095, 92, 93, 686, 112, 1100, 0, 1, 655, 119, 657, 116, 117, 109, 966, 111, 949, 113, 114, 1238, 129, 72, 110, 111, 976, 76, 485, 1190, 1191, 353, 489, 355, 83, 84, 128, 29, 30, 465, 32, 58, 59, 724, 950, 94, 811, 115, 116, 1505, 116, 117, 44, 1203, 1204, 94, 1206, 131, 50, 1009, 109, 111, 707, 1213, 109, 1215, 58, 748, 109, 118, 119, 114, 64, 1117, 112, 67, 116, 117, 70, 112, 1030, 1031, 109, 110, 111, 811, 4, 5, 6, 7, 8, 9, 84, 85, 109, 110, 111, 881, 112, 1555, 1050, 44, 45, 1009, 109, 110, 111, 110, 881, 10, 11, 12, 13, 14, 553, 554, 108, 1012, 109, 111, 30, 443, 110, 110, 1401, 110, 118, 911, 809, 455, 110, 881, 110, 814, 555, 556, 1050, 112, 39, 111, 1090, 131, 1419, 116, 601, 1095, 603, 58, 59, 60, 1100, 69, 114, 71, 114, 881, 109, 149, 112, 1109, 561, 562, 672, 110, 1125, 157, 67, 1117, 1129, 1130, 162, 1263, 1264, 1265, 84, 85, 949, 110, 112, 117, 112, 507, 112, 509, 1134, 1220, 512, 112, 117, 515, 3, 117, 116, 94, 29, 187, 188, 10, 11, 12, 13, 14, 110, 110, 116, 114, 112, 112, 109, 1159, 111, 203, 115, 110, 132, 1492, 1493, 118, 119, 211, 115, 115, 903, 109, 116, 881, 39, 1377, 220, 910, 110, 223, 689, 132, 110, 110, 117, 110, 230, 110, 1401, 110, 116, 110, 110, 926, 672, 1012, 110, 110, 110, 1201, 1202, 245, 67, 110, 110, 249, 1419, 110, 110, 253, 254, 720, 721, 110, 1050, 948, 949, 950, 1220, 1202, 110, 110, 1224, 267, 268, 1050, 110, 72, 29, 115, 274, 76, 131, 795, 1012, 1248, 1238, 281, 83, 84, 1242, 949, 117, 805, 72, 116, 74, 75, 1050, 94, 72, 110, 74, 75, 1201, 83, 84, 819, 1224, 1242, 112, 83, 84, 112, 109, 116, 111, 964, 110, 110, 110, 117, 1050, 118, 119, 112, 1009, 116, 114, 1492, 1493, 109, 116, 245, 110, 329, 114, 109, 1290, 1291, 110, 988, 114, 110, 991, 110, 993, 1299, 112, 110, 116, 1397, 1304, 116, 3, 349, 350, 110, 686, 818, 1540, 10, 11, 12, 13, 14, 112, 795, 109, 109, 109, 830, 366, 1159, 109, 1338, 370, 805, 109, 1342, 117, 115, 112, 132, 110, 1337, 110, 381, 1304, 110, 39, 819, 1050, 115, 1530, 1530, 1043, 1530, 115, 114, 129, 1530, 1299, 397, 1337, 112, 1530, 1090, 110, 1531, 116, 112, 132, 407, 112, 110, 1530, 1530, 67, 4, 5, 6, 7, 8, 9, 116, 1201, 1202, 110, 110, 47, 425, 112, 1555, 1201, 112, 1531, 431, 1224, 433, 112, 110, 112, 132, 112, 1397, 112, 132, 33, 1224, 115, 1134, 1238, 912, 72, 914, 74, 75, 76, 1505, 1555, 132, 110, 1415, 115, 83, 84, 1242, 132, 381, 132, 117, 1224, 1201, 468, 110, 112, 115, 112, 473, 112, 1444, 112, 56, 69, 944, 71, 481, 1440, 112, 112, 485, 112, 112, 110, 489, 1224, 110, 492, 109, 494, 881, 72, 112, 74, 75, 76, 1440, 112, 109, 109, 60, 1464, 83, 84, 1027, 1028, 110, 1304, 1471, 514, 1473, 110, 1475, 1299, 114, 99, 132, 112, 1304, 117, 112, 1299, 110, 112, 529, 1530, 1220, 532, 109, 534, 535, 1530, 110, 1202, 1530, 96, 109, 1464, 96, 109, 115, 1304, 1505, 112, 1471, 132, 110, 1510, 1242, 1512, 116, 1337, 42, 110, 110, 1224, 110, 110, 117, 110, 1299, 1524, 1085, 1086, 132, 1304, 96, 1530, 1531, 492, 132, 494, 3, 1242, 96, 1531, 110, 1540, 583, 10, 11, 12, 13, 14, 132, 590, 132, 926, 1027, 1028, 117, 72, 1555, 110, 0, 76, 601, 1524, 603, 1555, 286, 1396, 83, 84, 132, 1263, 1264, 1265, 39, 110, 110, 195, 115, 94, 112, 112, 132, 622, 109, 132, 115, 1540, 308, 309, 110, 1095, 32, 115, 109, 72, 1100, 74, 75, 638, 218, 1304, 67, 118, 119, 644, 83, 84, 110, 1337, 228, 132, 1085, 1086, 653, 110, 655, 656, 657, 110, 1440, 1066, 565, 563, 1224, 1493, 346, 564, 1053, 1321, 70, 566, 1383, 1464, 1337, 567, 1565, 114, 1314, 1130, 1471, 1342, 1081, 1471, 1464, 686, 686, 919, 1100, 927, 689, 1471, 699, 583, 693, 980, 695, 873, 650, 724, 699, 946, 382, 50, 734, 1242, 485, 1464, 707, -1, 26, 27, 28, -1, 1471, 571, 571, 64, 296, 1236, 67, 720, 721, 70, 571, -1, -1, 644, -1, -1, -1, 1464, -1, 1524, -1, 734, -1, -1, 1471, 72, -1, 74, 75, 76, 1524, -1, 58, -1, 0, 1, 83, 84, 1440, -1, 1271, 1407, 1408, 1090, 158, -1, -1, -1, 1279, 1280, 1281, -1, -1, 1524, 4, 5, 6, 7, 8, 9, -1, -1, 693, 1440, 695, -1, 32, -1, 699, -1, 100, 1473, 102, 1475, -1, -1, -1, 1524, -1, 1445, -1, -1, 108, -1, 50, 111, -1, 1464, 149, 1236, 67, -1, -1, -1, 1471, 191, -1, -1, -1, -1, 77, 162, 198, -1, 70, 818, -1, -1, 1510, -1, 1512, -1, -1, -1, 1345, -1, -1, 830, 232, 69, -1, 71, -1, -1, 1271, 1224, -1, 188, -1, -1, -1, 157, 1279, 1280, 1281, -1, -1, -1, 1540, 253, 1506, 107, 119, -1, 258, -1, -1, 1524, -1, 1515, 211, -1, 444, 183, -1, -1, 550, 551, 552, -1, 873, -1, 223, 193, 194, -1, -1, 880, 198, -1, 200, 201, -1, -1, 270, -1, -1, 72, 470, 74, 75, 76, -1, 149, -1, 162, -1, -1, 83, 84, 903, 157, 158, -1, 220, -1, -1, -1, 1345, 912, -1, 914, -1, -1, -1, -1, -1, 72, 921, 74, 75, 76, -1, -1, 109, 507, -1, -1, 83, 84, 512, 1320, 188, 515, -1, -1, -1, -1, 324, 94, -1, 944, -1, -1, -1, -1, 332, 203, 352, 335, 206, 207, 873, -1, 109, 211, 223, -1, 274, 880, -1, 964, -1, 118, 119, 281, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 232, 980, 329, -1, 236, -1, 238, -1, -1, 988, 1375, -1, 991, 1378, 993, 247, -1, -1, 261, -1, -1, 253, -1, 266, 921, -1, 258, -1, -1, -1, -1, 672, -1, -1, -1, -1, 268, 399, 281, 419, -1, 403, -1, -1, 276, -1, -1, 10, 11, 12, 13, 14, -1, -1, 434, -1, -1, 349, 1423, 439, -1, -1, -1, 1428, 1043, -1, -1, 447, 10, 11, 12, 13, 14, -1, 366, -1, 39, -1, 370, -1, 407, -1, -1, 980, -1, 465, 1530, -1, -1, -1, -1, -1, -1, 1458, -1, -1, -1, 39, -1, -1, 760, -1, 1081, 483, 67, 485, -1, -1, 351, -1, 342, -1, -1, 671, 346, -1, 1095, -1, 480, -1, 352, 1100, 680, -1, -1, 67, 684, -1, -1, -1, -1, 94, -1, 365, -1, -1, -1, 369, 1117, -1, 372, 433, -1, -1, -1, -1, 109, 527, 111, -1, -1, -1, 94, -1, 795, 118, 119, -1, -1, -1, 1473, -1, 1475, -1, 805, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 819, 1544, -1, -1, -1, -1, 1081, 1550, -1, 419, -1, 432, -1, -1, -1, -1, -1, -1, 1561, 1510, -1, 1512, 1565, 72, 434, 74, 75, 76, 449, 439, -1, 571, 572, 591, 83, 84, -1, 447, -1, 72, 1197, 74, 75, 76, -1, 94, -1, -1, 0, -1, 83, 84, -1, 474, -1, 465, -1, -1, 468, -1, 109, 94, 111, 1220, -1, -1, -1, -1, 117, 118, 119, -1, -1, 483, -1, 485, 109, 635, 636, 637, 32, -1, -1, 493, -1, 118, 119, 497, -1, -1, -1, -1, -1, -1, -1, -1, 654, -1, -1, -1, -1, 575, 576, -1, -1, -1, 1263, 1264, 1265, -1, -1, -1, -1, -1, 672, -1, 526, 527, 70, 659, 590, -1, 1197, 663, -1, 683, -1, -1, -1, -1, 604, -1, -1, 607, 608, -1, 610, -1, 612, 613, -1, -1, -1, 617, 618, -1, -1, -1, -1, -1, -1, 709, 622, -1, 712, -1, -1, -1, -1, -1, -1, -1, 572, 0, 1321, -1, -1, -1, 638, 905, -1, 1009, -1, -1, 595, -1, -1, -1, -1, -1, 590, 591, -1, 653, -1, -1, -1, -1, 0, 1, -1, 749, -1, 603, -1, 32, -1, -1, -1, -1, -1, -1, 623, -1, -1, -1, 158, 628, 1027, 1028, -1, 621, 1050, -1, -1, -1, 626, -1, -1, -1, 32, -1, 632, -1, -1, 635, 636, 637, -1, -1, -1, -1, -1, 70, -1, -1, -1, 795, -1, 1396, 1397, -1, -1, -1, 654, -1, -1, 805, -1, 807, 1407, 1408, -1, -1, 812, 67, -1, 815, 70, 799, -1, 819, 672, -1, 734, -1, 1085, 1086, -1, -1, -1, -1, -1, 683, -1, -1, -1, -1, -1, 700, -1, -1, -1, -1, 758, 759, -1, -1, 1445, -1, -1, -1, -1, 714, -1, -1, -1, -1, -1, 709, -1, 253, 712, -1, -1, -1, 258, -1, -1, -1, -1, 721, -1, 734, 724, 72, -1, 74, 75, 76, -1, 158, -1, 881, -1, 1061, 83, 84, -1, 72, -1, 74, 75, 76, -1, -1, -1, 94, 748, 749, 83, 84, -1, -1, 754, -1, 158, -1, 1505, 1506, -1, 94, 109, 911, 111, -1, -1, -1, 1515, -1, -1, 118, 119, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 1530, 1531, 118, 119, -1, 918, -1, -1, -1, -1, -1, -1, 795, -1, -1, -1, -1, 811, -1, -1, -1, -1, 805, -1, 807, 1555, 809, 352, -1, 812, -1, 814, 815, -1, -1, 966, 819, -1, 223, -1, -1, -1, -1, 253, -1, -1, 829, -1, 258, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, 903, -1, -1, -1, -1, -1, -1, -1, 253, 72, -1, 74, 75, 76, -1, -1, 923, -1, -1, 1271, 83, 84, -1, 131, -1, 998, -1, 1279, 1280, 1281, -1, 94, -1, -1, 419, -1, 1027, 1028, 881, 1030, 1031, -1, 1015, -1, -1, -1, 109, -1, 111, 434, -1, -1, -1, -1, 439, 118, 119, -1, -1, 1050, 903, -1, 447, -1, -1, -1, -1, 910, 911, -1, -1, 914, -1, 10, 11, 12, 13, 14, -1, -1, 465, -1, 352, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1345, 1085, 1086, -1, 940, 483, -1, 485, -1, 39, -1, -1, 948, 949, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1093, -1, -1, 966, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 527, -1, 1313, -1, 83, 84, -1, 419, -1, -1, -1, -1, -1, -1, -1, 94, 1012, -1, -1, -1, 1135, -1, 434, -1, 1009, -1, 1159, 439, -1, -1, 109, -1, 111, -1, -1, 447, -1, 1022, 1087, 118, 119, -1, 1027, 1028, -1, 1030, 1031, 434, -1, -1, -1, -1, -1, 465, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 591, 1050, -1, -1, -1, 1202, -1, 483, -1, 485, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1224, -1, -1, -1, -1, -1, -1, 485, -1, 1085, 1086, -1, 1236, -1, 1238, -1, -1, 635, 636, 637, -1, -1, -1, -1, 527, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 654, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1271, -1, 527, -1, -1, -1, 0, 672, 1279, 1280, 1281, 1134, -1, -1, -1, -1, -1, -1, 683, 1290, 1291, -1, -1, 1472, -1, 1474, -1, -1, -1, -1, -1, -1, 1219, 1304, -1, -1, 1159, 1220, 32, -1, -1, 591, -1, -1, 709, -1, -1, 712, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 1509, -1, 1511, -1, -1, -1, 591, 1201, -1, -1, -1, -1, -1, -1, 1345, -1, 70, -1, -1, 1202, -1, 39, -1, -1, 749, 635, 636, 637, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1220, -1, -1, -1, 1224, -1, -1, 654, 1554, -1, 1556, -1, 67, 635, 636, 637, 1236, 72, 1238, 74, 75, 76, 1242, 1569, 1570, 672, -1, -1, 83, 84, -1, -1, 654, 795, -1, -1, 683, -1, -1, 94, -1, -1, -1, 805, -1, 807, -1, 1415, -1, -1, 812, 1271, -1, 815, 109, -1, 111, 819, -1, 1279, 1280, 1281, 709, 118, 119, 712, -1, 158, 1299, -1, 1290, 1291, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 1304, -1, -1, -1, -1, -1, 712, -1, -1, -1, -1, -1, 1464, -1, -1, -1, -1, -1, 749, 1471, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, 1396, 1337, -1, 881, -1, -1, -1, -1, -1, 1345, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 795, 911, -1, -1, 83, 84, -1, -1, 1524, -1, 805, -1, 807, -1, 253, 94, -1, 812, -1, 258, 815, -1, -1, -1, 819, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 807, -1, 118, 119, -1, -1, -1, -1, 815, -1, 1415, -1, -1, -1, -1, -1, -1, -1, -1, 966, -1, 54, -1, 56, -1, -1, 59, 60, 61, -1, 63, -1, -1, -1, -1, 1440, 10, 11, 12, 13, 14, -1, -1, -1, -1, 78, -1, -1, -1, 881, -1, -1, -1, -1, -1, -1, -1, 90, 91, 1464, -1, -1, -1, -1, -1, 39, 1471, 10, 11, 12, 13, 14, -1, -1, 881, -1, 352, -1, -1, 911, 1027, 1028, -1, 1030, 1031, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, 1050, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, 1524, 94, -1, -1, -1, 67, -1, 1531, -1, -1, 72, -1, 74, 75, 76, 966, 109, -1, -1, 1085, 1086, 83, 84, 949, 419, 118, 119, -1, -1, -1, -1, -1, 94, -1, 10, 11, 12, 13, 14, 434, 966, -1, -1, -1, 439, -1, -1, 109, -1, -1, -1, -1, 447, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, 39, -1, 10, 11, 12, 13, 14, 465, -1, -1, -1, -1, -1, 1027, 1028, -1, 1030, 1031, -1, -1, -1, -1, -1, -1, -1, 483, -1, 485, 67, -1, 1159, 39, -1, 72, -1, -1, 1050, 76, -1, -1, -1, 1030, 1031, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, 1050, -1, -1, 72, -1, -1, -1, 76, 527, 109, 1085, 1086, 1202, -1, 83, 84, -1, -1, 118, 119, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, 1224, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, 1236, -1, 1238, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 345, -1, 347, 591, -1, -1, -1, -1, -1, -1, -1, 39, 1271, 358, 359, 1159, -1, -1, -1, -1, 1279, 1280, 1281, -1, -1, -1, -1, -1, -1, -1, -1, 1290, 1291, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 1304, -1, 635, 636, 637, -1, -1, -1, -1, -1, -1, -1, -1, 1202, -1, -1, -1, -1, -1, -1, -1, 654, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, 1224, -1, 1201, 1202, 672, -1, 1345, -1, -1, -1, -1, -1, 1236, -1, 1238, 683, -1, 66, -1, -1, -1, -1, -1, 72, -1, 1224, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 709, -1, 1242, 712, 94, -1, 1271, -1, -1, -1, -1, -1, -1, -1, 1279, 1280, 1281, -1, -1, 109, -1, 111, -1, -1, 114, 1290, 1291, -1, 118, 119, 120, 121, 122, 123, -1, 1415, -1, -1, -1, 1304, 749, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1290, 1291, -1, -1, -1, -1, -1, -1, -1, 1299, -1, -1, -1, -1, 1304, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1345, -1, -1, -1, 1464, -1, 795, -1, -1, -1, -1, 1471, -1, -1, -1, -1, 805, 1337, 807, -1, -1, -1, -1, 812, -1, -1, 815, -1, -1, -1, 819, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 1524, -1, -1, -1, -1, 77, 1415, 79, -1, 81, -1, -1, -1, -1, -1, -1, 88, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, 881, -1, 72, 1415, 74, 75, 76, -1, 78, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, 119, -1, 121, 122, 123, 94, -1, -1, 1464, 1440, -1, 911, -1, -1, -1, 1471, -1, -1, -1, -1, 109, -1, 111, -1, -1, 26, 27, 28, -1, 118, 119, -1, -1, 1464, -1, -1, -1, -1, 37, 38, 1471, 40, -1, 162, 701, -1, 703, -1, -1, -1, -1, -1, -1, 710, 711, -1, -1, -1, 715, -1, -1, -1, -1, -1, -1, -1, 966, 66, 1524, 50, 727, -1, -1, 72, -1, 732, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 67, 86, 87, -1, -1, -1, -1, 1524, -1, 94, -1, -1, -1, 100, -1, 102, -1, -1, 223, 762, 225, 226, 227, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 123, -1, 127, 1027, 1028, -1, 1030, 1031, -1, -1, 115, -1, -1, -1, 119, -1, -1, -1, 261, -1, -1, -1, -1, 266, -1, -1, 1050, -1, -1, -1, 284, -1, 286, 287, -1, -1, -1, -1, 281, -1, 294, 295, -1, 148, -1, -1, -1, -1, -1, -1, -1, -1, -1, 158, 308, 309, -1, 162, 183, -1, -1, 1085, 1086, -1, -1, -1, 191, -1, 193, 194, -1, -1, -1, 198, -1, 200, 201, -1, -1, -1, -1, -1, 863, 864, 865, 866, 329, 868, -1, -1, -1, -1, 346, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 884, -1, -1, 211, -1, 351, -1, -1, -1, -1, 356, 357, -1, -1, 898, 223, -1, -1, 364, -1, -1, -1, -1, -1, -1, 382, -1, -1, -1, -1, -1, -1, 1159, 241, -1, -1, -1, -1, -1, -1, -1, -1, 270, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 938, -1, -1, -1, 266, -1, -1, 407, -1, -1, -1, 273, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1202, -1, -1, -1, 425, -1, -1, -1, -1, 430, -1, 432, -1, 296, -1, -1, -1, -1, -1, -1, -1, -1, 1224, -1, -1, 308, 985, -1, 449, -1, -1, 452, 453, 992, 1236, -1, 1238, -1, 997, 460, -1, -1, -1, 1002, -1, 1004, -1, -1, -1, 1008, -1, 1010, 1011, 474, -1, 1014, -1, -1, -1, -1, 481, -1, -1, 346, 1023, -1, -1, -1, 351, 1271, -1, -1, -1, -1, -1, -1, -1, 1279, 1280, 1281, -1, -1, 1041, 1042, -1, -1, -1, -1, 1290, 1291, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1304, -1, -1, -1, -1, -1, -1, 1068, -1, -1, 1071, -1, -1, -1, -1, -1, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, -1, -1, -1, -1, -1, -1, -1, 1345, 427, 428, -1, -1, -1, -1, -1, 434, -1, -1, -1, 1114, -1, -1, -1, -1, -1, 1120, 1121, -1, -1, -1, -1, -1, -1, -1, -1, -1, 455, 1132, 595, -1, -1, -1, -1, -1, -1, -1, -1, 1142, -1, -1, 1145, -1, 1147, -1, -1, 1150, -1, -1, -1, -1, -1, -1, -1, -1, 483, -1, 623, -1, 1163, -1, -1, 628, -1, -1, -1, -1, 495, 1415, -1, -1, -1, 1176, -1, 1178, 1179, 1180, 1181, -1, 507, -1, 509, -1, -1, 512, -1, 514, 515, -1, -1, 1194, -1, 1196, -1, -1, -1, 1200, -1, -1, 527, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1464, -1, -1, 697, -1, -1, -1, 1471, 1229, 1230, 575, 576, -1, -1, -1, -1, -1, 700, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 714, -1, -1, 579, -1, -1, -1, -1, 604, -1, -1, 607, 608, -1, 610, 591, 612, 613, -1, 595, 734, 617, 618, -1, -1, -1, -1, -1, -1, 1524, 1282, 1283, -1, -1, -1, 760, -1, -1, -1, -1, 1292, -1, -1, -1, -1, 621, -1, -1, -1, -1, 626, -1, -1, -1, -1, -1, -1, -1, -1, 635, 636, 637, -1, -1, -1, -1, -1, 792, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, 654, -1, -1, -1, -1, -1, -1, 799, -1, -1, -1, -1, -1, 1343, -1, 45, -1, -1, -1, 811, -1, -1, 37, 38, 39, 40, 1356, -1, 1358, 1359, 1360, -1, 686, -1, -1, -1, -1, -1, 830, -1, 1370, -1, -1, -1, -1, -1, -1, -1, -1, 1379, -1, 66, 67, -1, -1, -1, -1, 72, 712, -1, 714, 76, -1, 93, 79, 80, 81, 82, 83, 84, -1, 86, 87, 103, -1, -1, 1406, -1, -1, 94, -1, -1, -1, -1, 758, 759, -1, -1, -1, -1, -1, -1, -1, -1, 109, 749, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, 913, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1451, 1452, -1, -1, -1, -1, -1, -1, 159, -1, -1, -1, -1, 1464, -1, -1, -1, -1, -1, -1, 1471, -1, 173, -1, -1, -1, -1, -1, -1, -1, -1, 944, 807, -1, 958, -1, 811, -1, -1, -1, 815, -1, -1, -1, -1, 196, -1, -1, -1, -1, -1, -1, -1, 1504, -1, -1, -1, 1508, -1, 210, -1, -1, -1, 976, -1, -1, -1, -1, 219, -1, -1, -1, 996, -1, -1, -1, -1, -1, 229, -1, -1, -1, -1, -1, -1, 1009, 1537, -1, 1539, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1012, -1, -1, -1, 254, -1, -1, -1, -1, 259, -1, 1023, -1, -1, -1, -1, -1, 1567, 1568, -1, -1, -1, 272, -1, 918, 1575, 1576, 1050, 278, 923, 280, -1, -1, -1, -1, -1, -1, 911, -1, -1, -1, -1, -1, -1, -1, -1, -1, 297, -1, -1, -1, -1, 926, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, 950, -1, -1, -1, -1, -1, -1, 1095, -1, -1, -1, -1, -1, 339, -1, -1, 966, -1, 344, -1, 66, 1109, -1, -1, -1, -1, 72, -1, 1127, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, 373, 94, -1, -1, 377, 378, -1, 380, -1, -1, -1, -1, 1009, -1, 387, 388, 109, 390, 391, -1, 393, -1, 395, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 1030, 1031, -1, -1, -1, -1, 412, -1, -1, -1, -1, 1190, 1191, -1, 420, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1201, -1, -1, -1, 1087, -1, 445, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1090, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, 477, -1, -1, 0, -1, 482, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, 518, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 533, -1, 1159, -1, 1299, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, 571, -1, -1, 94, 1219, -1, 1201, -1, -1, 580, -1, 157, 158, -1, -1, -1, 587, -1, 109, -1, 111, -1, 593, -1, -1, -1, -1, 118, 119, -1, -1, 602, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1238, -1, 191, -1, -1, -1, -1, -1, -1, 198, -1, -1, -1, -1, 1401, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 643, -1, -1, 1419, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, 1290, 1291, -1, -1, -1, -1, -1, -1, -1, 1299, -1, -1, -1, 679, -1, -1, -1, 66, -1, -1, -1, 687, -1, 72, -1, -1, -1, 76, -1, 270, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, 718, 1492, 1493, -1, -1, -1, -1, -1, 109, -1, 728, 729, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, 742, -1, -1, -1, -1, -1, -1, 324, -1, -1, -1, -1, -1, -1, -1, 332, 333, -1, 335, 336, -1, 763, -1, 765, -1, -1, -1, 769, -1, 346, -1, -1, -1, 350, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1415, -1, 1555, 369, -1, -1, 372, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, 399, -1, -1, 39, 403, -1, -1, -1, -1, -1, 834, -1, -1, -1, -1, -1, -1, 841, -1, -1, -1, -1, -1, -1, -1, 1473, -1, 1475, -1, -1, 854, 67, 856, -1, -1, 434, 72, -1, 74, 75, 76, -1, 78, -1, -1, -1, 870, 83, 84, -1, -1, -1, -1, 877, -1, -1, -1, -1, 94, -1, -1, -1, 1510, 148, 1512, 889, -1, -1, 892, -1, -1, -1, -1, 158, -1, 111, -1, -1, -1, -1, -1, 480, 118, 119, 483, 170, 171, -1, -1, -1, -1, -1, 1540, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 522, -1, -1, -1, 526, 527, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 971, -1, -1, -1, -1, -1, -1, -1, -1, 241, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, 571, 572, -1, -1, -1, -1, -1, -1, 265, -1, -1, 1007, 94, -1, -1, -1, -1, -1, -1, 590, 591, -1, -1, -1, -1, -1, -1, -1, -1, 111, 601, -1, 603, 604, -1, -1, 118, 119, -1, 610, -1, -1, -1, -1, -1, -1, -1, -1, -1, 620, 621, -1, -1, -1, -1, 626, -1, -1, -1, -1, -1, -1, -1, -1, 635, 636, 637, -1, -1, 1065, -1, -1, -1, -1, -1, 1071, -1, -1, -1, -1, -1, -1, -1, 654, -1, -1, -1, -1, 659, 660, -1, -1, 663, 664, -1, -1, -1, -1, -1, 670, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1105, -1, -1, -1, -1, 1110, -1, -1, -1, 689, -1, -1, -1, 1118, -1, 381, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 712, 713, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1154, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1166, -1, -1, 1169, -1, 1171, -1, 748, 749, -1, -1, -1, 753, 754, -1, -1, -1, -1, -1, 1185, 1186, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1207, -1, -1, -1, -1, -1, -1, 475, 37, 38, -1, 40, -1, -1, -1, -1, -1, 799, -1, -1, -1, -1, -1, -1, -1, 807, -1, -1, -1, -1, -1, -1, 814, 815, -1, -1, 818, 66, 820, -1, -1, -1, -1, 72, -1, -1, 514, 76, 830, 1256, 79, 80, 81, 82, 83, 84, -1, 86, 87, 527, -1, -1, -1, -1, 532, 94, -1, 535, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 546, 547, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, 569, -1, -1, -1, -1, -1, -1, -1, -1, -1, 579, -1, -1, -1, -1, -1, -1, 586, -1, -1, 903, -1, 591, -1, 1332, -1, 1334, 910, 911, 912, -1, 914, -1, -1, -1, 918, -1, -1, -1, -1, 1348, -1, 1350, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 939, 940, -1, -1, 1368, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 640, -1, -1, -1, -1, 1384, 1385, -1, -1, 649, -1, -1, 966, -1, -1, -1, 1395, -1, -1, 1398, -1, -1, 976, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1421, -1, 998, 999, -1, -1, -1, -1, -1, 1430, 39, -1, 1433, 1009, 1435, 1436, 1437, -1, -1, 1015, 1016, -1, 1018, 1019, 1020, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1030, 1031, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, 1477, -1, 1479, -1, 1481, -1, -1, -1, -1, -1, -1, 749, -1, 751, -1, -1, -1, -1, -1, -1, 1497, -1, -1, 761, -1, -1, -1, -1, -1, -1, 768, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1093, -1, 1095, -1, -1, -1, -1, 1100, -1, -1, -1, -1, -1, -1, -1, -1, 1109, -1, -1, -1, -1, -1, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, 811, 812, -1, -1, 815, -1, -1, -1, -1, 1134, 1135, 1136, -1, -1, -1, -1, -1, -1, 829, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, 1159, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 869, -1, -1, 76, 873, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 1220, 111, -1, -1, -1, 911, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 1238, 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, 950, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 966, 967, -1, -1, -1, -1, -1, -1, -1, -1, 1290, 1291, -1, -1, 980, -1, -1, -1, -1, -1, 986, 66, 67, 989, 69, 991, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 1012, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, 1023, -1, 37, 38, -1, 40, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 1045, -1, 1047, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, -1, 1062, 1063, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, 1083, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, 1415, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1140, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, 1159, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, 1174, 1175, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 1505, -1, -1, 66, 83, 84, -1, -1, -1, 72, -1, -1, -1, 76, -1, 94, 79, 80, 81, 82, 83, 84, -1, 86, 87, 1530, 1531, -1, -1, -1, 109, 94, 111, -1, -1, -1, 115, -1, -1, 118, 119, -1, -1, -1, -1, -1, 109, -1, 111, -1, 1555, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 1254, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, 1318, 66, 67, 1321, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, -1, -1, 132, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1405, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, 1487, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, 1540, 132, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, 39, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 78, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, 34, 35, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 94, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, -1, 74, 75, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, -1, -1, 114, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, 72, 111, 74, 75, 76, -1, -1, -1, 118, 119, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 109, -1, 111, -1, 83, 84, -1, -1, -1, 118, 119, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, 83, 84, -1, -1, -1, 118, 119, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, 40, -1, -1, -1, 74, 75, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, 115, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, 40, -1, -1, -1, 74, 75, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, 115, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, 67, -1, -1, 39, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 111, -1, -1, -1, 115, -1, -1, 118, 119, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 118, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, 37, 38, 132, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, -1, -1, 132, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 96, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 37, 38, 128, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 37, 38, 128, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, 128, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, 113, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, 111, -1, 94, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, 111, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, 94, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 36, 39, 40, 64, 67, 69, 71, 72, 74, 75, 76, 83, 84, 94, 109, 111, 118, 119, 137, 140, 149, 198, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 232, 233, 234, 235, 236, 237, 238, 240, 241, 242, 243, 244, 245, 247, 255, 256, 283, 284, 285, 293, 296, 302, 303, 305, 307, 308, 314, 319, 323, 324, 325, 326, 327, 328, 329, 330, 350, 367, 368, 369, 370, 72, 139, 140, 149, 215, 217, 225, 227, 237, 241, 243, 284, 82, 109, 312, 313, 314, 312, 312, 72, 74, 75, 76, 138, 139, 273, 274, 294, 295, 74, 75, 274, 109, 305, 11, 199, 109, 149, 319, 324, 325, 326, 328, 329, 330, 112, 134, 111, 218, 225, 227, 323, 327, 366, 367, 370, 371, 135, 107, 131, 277, 114, 135, 173, 74, 75, 137, 272, 135, 135, 135, 116, 135, 74, 75, 109, 149, 309, 318, 319, 320, 321, 322, 323, 327, 331, 332, 333, 334, 335, 341, 3, 28, 78, 239, 3, 5, 74, 111, 149, 217, 228, 232, 235, 244, 285, 323, 327, 370, 215, 217, 227, 237, 241, 243, 284, 323, 327, 33, 233, 233, 228, 235, 135, 233, 228, 233, 228, 75, 109, 114, 274, 285, 114, 274, 233, 228, 116, 135, 135, 0, 134, 109, 173, 312, 312, 134, 111, 225, 227, 368, 272, 272, 131, 227, 109, 149, 309, 319, 323, 111, 149, 370, 306, 230, 314, 109, 290, 109, 109, 51, 109, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 109, 111, 120, 121, 122, 123, 136, 140, 141, 142, 143, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 166, 225, 276, 292, 366, 371, 227, 110, 110, 110, 110, 110, 110, 110, 74, 75, 111, 225, 272, 350, 368, 111, 118, 149, 164, 217, 218, 224, 227, 231, 232, 237, 240, 241, 243, 262, 263, 267, 268, 269, 270, 284, 350, 362, 363, 364, 365, 370, 371, 112, 109, 323, 327, 370, 109, 116, 132, 111, 114, 149, 164, 278, 278, 115, 134, 116, 132, 109, 116, 132, 116, 132, 116, 132, 312, 132, 319, 320, 321, 322, 332, 333, 334, 335, 227, 318, 331, 64, 311, 111, 312, 349, 350, 312, 312, 173, 134, 109, 312, 349, 312, 312, 227, 309, 109, 109, 226, 227, 225, 227, 112, 134, 225, 366, 371, 173, 134, 272, 277, 217, 232, 323, 327, 173, 134, 294, 227, 237, 132, 227, 227, 292, 248, 246, 258, 274, 257, 227, 294, 132, 132, 305, 134, 139, 271, 3, 135, 207, 208, 222, 224, 227, 134, 311, 109, 311, 164, 319, 227, 109, 134, 272, 114, 33, 34, 35, 225, 286, 287, 289, 134, 129, 131, 291, 134, 228, 234, 235, 272, 315, 316, 317, 109, 141, 109, 148, 109, 148, 151, 109, 148, 109, 109, 148, 148, 111, 164, 169, 173, 225, 275, 366, 370, 112, 134, 82, 85, 86, 87, 109, 111, 113, 114, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 131, 168, 151, 151, 118, 124, 125, 120, 121, 88, 89, 90, 91, 126, 127, 92, 93, 119, 128, 129, 94, 95, 130, 131, 373, 109, 149, 345, 346, 347, 348, 349, 110, 116, 109, 349, 350, 109, 349, 350, 134, 109, 225, 368, 112, 134, 135, 111, 225, 227, 361, 362, 370, 371, 135, 109, 111, 149, 319, 336, 337, 338, 339, 340, 341, 342, 343, 344, 350, 351, 352, 353, 354, 355, 356, 149, 370, 227, 135, 135, 149, 225, 227, 363, 272, 225, 350, 363, 272, 109, 134, 134, 134, 112, 134, 72, 80, 111, 113, 140, 274, 278, 279, 280, 281, 282, 134, 134, 134, 134, 134, 134, 309, 110, 110, 110, 110, 110, 110, 110, 318, 331, 109, 277, 112, 207, 134, 309, 169, 276, 169, 276, 309, 111, 207, 311, 173, 134, 207, 110, 40, 111, 115, 225, 249, 250, 251, 366, 114, 116, 372, 131, 259, 114, 227, 264, 265, 266, 269, 270, 110, 116, 173, 134, 118, 164, 134, 224, 227, 263, 362, 370, 303, 304, 109, 149, 336, 110, 116, 373, 274, 286, 109, 114, 274, 276, 286, 110, 116, 109, 141, 110, 117, 275, 275, 275, 111, 139, 145, 164, 276, 275, 112, 134, 110, 116, 110, 109, 149, 349, 357, 358, 359, 360, 110, 116, 164, 111, 139, 111, 144, 145, 134, 111, 139, 144, 164, 164, 151, 151, 151, 152, 152, 153, 153, 154, 154, 154, 154, 155, 155, 156, 157, 158, 159, 160, 117, 169, 164, 134, 346, 347, 348, 227, 345, 312, 312, 164, 276, 134, 271, 134, 225, 350, 363, 227, 231, 112, 112, 134, 370, 112, 109, 134, 319, 337, 338, 339, 342, 352, 353, 354, 112, 134, 227, 336, 340, 351, 109, 312, 355, 373, 312, 312, 373, 109, 312, 355, 312, 312, 312, 312, 350, 225, 361, 371, 272, 112, 116, 112, 116, 373, 225, 363, 373, 260, 261, 262, 263, 260, 260, 272, 164, 134, 111, 274, 117, 116, 372, 278, 80, 111, 117, 282, 29, 209, 210, 272, 260, 139, 309, 139, 311, 109, 349, 350, 109, 349, 350, 141, 350, 173, 264, 110, 110, 110, 110, 112, 173, 207, 173, 114, 250, 251, 112, 134, 109, 117, 149, 252, 254, 318, 319, 331, 357, 116, 132, 116, 132, 274, 248, 274, 115, 162, 163, 258, 135, 135, 139, 222, 135, 135, 260, 109, 149, 370, 135, 115, 227, 287, 288, 135, 134, 134, 109, 135, 110, 316, 169, 170, 117, 132, 111, 141, 200, 201, 202, 110, 116, 110, 134, 117, 110, 110, 110, 111, 164, 358, 359, 360, 227, 357, 312, 312, 114, 151, 166, 164, 165, 167, 116, 135, 134, 134, 110, 116, 164, 134, 115, 162, 117, 264, 110, 110, 110, 345, 264, 110, 260, 225, 363, 111, 118, 149, 164, 164, 227, 342, 264, 110, 110, 110, 110, 110, 110, 110, 7, 227, 336, 340, 351, 134, 134, 373, 134, 134, 110, 135, 135, 135, 135, 277, 135, 162, 163, 164, 310, 134, 278, 280, 115, 134, 211, 274, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 72, 111, 128, 170, 171, 172, 173, 174, 175, 177, 178, 190, 192, 193, 198, 212, 308, 29, 135, 131, 277, 134, 134, 110, 135, 173, 248, 132, 132, 319, 163, 227, 253, 254, 253, 274, 312, 115, 259, 372, 110, 116, 112, 112, 135, 227, 116, 373, 290, 110, 286, 215, 217, 225, 298, 299, 300, 301, 292, 110, 110, 117, 163, 109, 110, 117, 116, 139, 164, 164, 112, 110, 110, 110, 357, 279, 116, 135, 167, 112, 139, 146, 147, 164, 145, 135, 146, 162, 166, 135, 109, 349, 350, 135, 135, 134, 135, 135, 135, 164, 110, 135, 109, 349, 350, 109, 355, 109, 355, 350, 226, 7, 118, 135, 164, 264, 264, 263, 267, 267, 268, 116, 116, 110, 110, 112, 96, 123, 135, 135, 146, 278, 164, 116, 132, 212, 216, 227, 231, 109, 109, 171, 109, 109, 72, 132, 72, 132, 72, 118, 170, 109, 173, 165, 165, 117, 112, 143, 132, 135, 134, 135, 211, 110, 164, 264, 264, 312, 110, 115, 252, 115, 134, 110, 134, 135, 309, 115, 134, 135, 135, 110, 114, 200, 112, 163, 132, 200, 202, 110, 116, 135, 109, 349, 350, 372, 165, 112, 135, 85, 113, 116, 135, 135, 112, 135, 110, 134, 110, 110, 112, 112, 112, 135, 110, 134, 134, 134, 164, 164, 135, 112, 135, 135, 135, 135, 134, 134, 163, 163, 112, 112, 135, 135, 274, 227, 169, 169, 47, 169, 134, 132, 132, 132, 169, 132, 169, 58, 59, 60, 194, 195, 196, 132, 63, 132, 312, 114, 175, 115, 132, 135, 135, 96, 269, 270, 110, 299, 116, 132, 116, 132, 115, 297, 117, 141, 110, 110, 117, 167, 112, 134, 115, 112, 111, 147, 111, 147, 147, 112, 112, 112, 264, 112, 264, 264, 264, 135, 135, 112, 112, 110, 110, 112, 116, 96, 263, 96, 135, 112, 112, 110, 110, 109, 110, 170, 191, 212, 132, 110, 109, 109, 173, 196, 58, 59, 164, 171, 144, 110, 110, 114, 134, 134, 298, 141, 203, 109, 132, 203, 135, 117, 264, 134, 134, 135, 135, 135, 135, 112, 112, 134, 135, 112, 171, 44, 45, 114, 181, 182, 183, 169, 171, 135, 110, 170, 114, 183, 96, 134, 96, 134, 109, 109, 132, 115, 134, 272, 309, 115, 116, 117, 163, 110, 112, 164, 135, 146, 146, 110, 110, 110, 110, 267, 42, 163, 179, 180, 310, 117, 134, 171, 181, 110, 132, 171, 132, 134, 110, 134, 110, 134, 96, 134, 96, 134, 132, 298, 141, 139, 204, 110, 132, 117, 110, 135, 135, 171, 96, 116, 117, 135, 205, 206, 212, 132, 170, 170, 205, 173, 197, 225, 366, 173, 197, 110, 134, 110, 134, 115, 110, 116, 164, 112, 112, 163, 179, 182, 184, 185, 134, 132, 182, 186, 187, 135, 109, 149, 309, 357, 139, 135, 173, 197, 173, 197, 109, 132, 139, 171, 176, 115, 182, 212, 170, 56, 176, 189, 115, 182, 110, 227, 110, 135, 135, 292, 171, 176, 132, 188, 189, 176, 189, 173, 173, 110, 110, 110, 188, 135, 135, 173, 173, 135, 135 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (YYLEX_PARAM) #else # define YYLEX yylex () #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule) #else static void yy_reduce_print (yyvsp, yyrule) YYSTYPE *yyvsp; int yyrule; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) #else static void yydestruct (yymsg, yytype, yyvaluep) const char *yymsg; int yytype; YYSTYPE *yyvaluep; #endif { YYUSE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (void); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void) #else int yyparse () #endif #endif { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 292 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 298 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 307 "parser.yy" { (yyval.constant) = makeConstantInteger( *(yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 308 "parser.yy" { (yyval.constant) = makeConstantFloat( *(yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 309 "parser.yy" { (yyval.constant) = makeConstantChar( *(yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 334 "parser.yy" { (yyval.constant) = makeConstantStr( *(yyvsp[(1) - (1)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 335 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 18: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 19: /* Line 1806 of yacc.c */ #line 344 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 20: /* Line 1806 of yacc.c */ #line 346 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 21: /* Line 1806 of yacc.c */ #line 348 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 23: /* Line 1806 of yacc.c */ #line 358 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 360 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); } break; case 25: /* Line 1806 of yacc.c */ #line 364 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_fieldSel( (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 27: /* Line 1806 of yacc.c */ #line 367 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_pfieldSel( (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 29: /* Line 1806 of yacc.c */ #line 370 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr1( OperatorNode::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 30: /* Line 1806 of yacc.c */ #line 372 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr1( OperatorNode::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 374 "parser.yy" { (yyval.en) = new CompoundLiteralNode( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 376 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_link( (yyvsp[(3) - (4)].en) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 390 "parser.yy" { (yyval.en) = 0; } break; case 37: /* Line 1806 of yacc.c */ #line 393 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); } break; case 38: /* Line 1806 of yacc.c */ #line 398 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 400 "parser.yy" { (yyval.en) = (yyvsp[(9) - (9)].en)->set_argName( new CompositeExprNode( 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 405 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 42: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 43: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_fieldSel( (yyvsp[(3) - (3)].en), new VarRefNode( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 44: /* Line 1806 of yacc.c */ #line 416 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_fieldSel( (yyvsp[(5) - (7)].en), new VarRefNode( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 45: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_pfieldSel( (yyvsp[(3) - (3)].en), new VarRefNode( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 46: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_pfieldSel( (yyvsp[(5) - (7)].en), new VarRefNode( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 48: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 49: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 50: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 51: /* Line 1806 of yacc.c */ #line 437 "parser.yy" { (yyval.en) = (yyvsp[(1) - (2)].op) == OperatorNode::AddressOf ? (ExpressionNode*) new CompositeExprNode2( build_addressOf( (yyvsp[(2) - (2)].en) ) ) : (ExpressionNode*)new CompositeExprNode( new OperatorNode ( (yyvsp[(1) - (2)].op) ), (yyvsp[(2) - (2)].en) ); } break; case 52: /* Line 1806 of yacc.c */ #line 440 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 53: /* Line 1806 of yacc.c */ #line 442 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr1( OperatorNode::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 54: /* Line 1806 of yacc.c */ #line 444 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr1( OperatorNode::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 55: /* Line 1806 of yacc.c */ #line 446 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_sizeOf( (yyvsp[(2) - (2)].en) ) ); } break; case 56: /* Line 1806 of yacc.c */ #line 448 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_sizeOf( new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ) ); } break; case 57: /* Line 1806 of yacc.c */ #line 450 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_offsetOf( new TypeValueNode( (yyvsp[(3) - (6)].decl) ), new VarRefNode( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 58: /* Line 1806 of yacc.c */ #line 452 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 59: /* Line 1806 of yacc.c */ #line 454 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ); } break; case 60: /* Line 1806 of yacc.c */ #line 456 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ); } break; case 61: /* Line 1806 of yacc.c */ #line 458 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_alignOf( (yyvsp[(2) - (2)].en) ) ); } break; case 62: /* Line 1806 of yacc.c */ #line 460 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_alignOf( new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 466 "parser.yy" { (yyval.op) = OperatorNode::PointTo; } break; case 64: /* Line 1806 of yacc.c */ #line 467 "parser.yy" { (yyval.op) = OperatorNode::AddressOf; } break; case 65: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.op) = OperatorNode::And; } break; case 66: /* Line 1806 of yacc.c */ #line 473 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); } break; case 67: /* Line 1806 of yacc.c */ #line 474 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); } break; case 68: /* Line 1806 of yacc.c */ #line 475 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::Neg ); } break; case 69: /* Line 1806 of yacc.c */ #line 476 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); } break; case 71: /* Line 1806 of yacc.c */ #line 482 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_cast( new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ) ); } break; case 72: /* Line 1806 of yacc.c */ #line 484 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_cast( new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ) ); } break; case 74: /* Line 1806 of yacc.c */ #line 490 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 75: /* Line 1806 of yacc.c */ #line 492 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 76: /* Line 1806 of yacc.c */ #line 494 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 78: /* Line 1806 of yacc.c */ #line 500 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 79: /* Line 1806 of yacc.c */ #line 502 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 508 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 82: /* Line 1806 of yacc.c */ #line 510 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 84: /* Line 1806 of yacc.c */ #line 516 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 85: /* Line 1806 of yacc.c */ #line 518 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 520 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 87: /* Line 1806 of yacc.c */ #line 522 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 89: /* Line 1806 of yacc.c */ #line 528 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 90: /* Line 1806 of yacc.c */ #line 530 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 92: /* Line 1806 of yacc.c */ #line 536 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 94: /* Line 1806 of yacc.c */ #line 542 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 96: /* Line 1806 of yacc.c */ #line 548 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 98: /* Line 1806 of yacc.c */ #line 554 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 100: /* Line 1806 of yacc.c */ #line 560 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 102: /* Line 1806 of yacc.c */ #line 567 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 569 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::NCond ), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 104: /* Line 1806 of yacc.c */ #line 571 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 107: /* Line 1806 of yacc.c */ #line 582 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 108: /* Line 1806 of yacc.c */ #line 584 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 109: /* Line 1806 of yacc.c */ #line 586 "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 110: /* Line 1806 of yacc.c */ #line 591 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 112: /* Line 1806 of yacc.c */ #line 599 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 113: /* Line 1806 of yacc.c */ #line 601 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 114: /* Line 1806 of yacc.c */ #line 603 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); } break; case 115: /* Line 1806 of yacc.c */ #line 605 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); } break; case 117: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 118: /* Line 1806 of yacc.c */ #line 615 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); } break; case 119: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); } break; case 120: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); } break; case 121: /* Line 1806 of yacc.c */ #line 618 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); } break; case 122: /* Line 1806 of yacc.c */ #line 619 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); } break; case 123: /* Line 1806 of yacc.c */ #line 620 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); } break; case 124: /* Line 1806 of yacc.c */ #line 621 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); } break; case 125: /* Line 1806 of yacc.c */ #line 622 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); } break; case 126: /* Line 1806 of yacc.c */ #line 623 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); } break; case 127: /* Line 1806 of yacc.c */ #line 624 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); } break; case 129: /* Line 1806 of yacc.c */ #line 631 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 130: /* Line 1806 of yacc.c */ #line 636 "parser.yy" { (yyval.en) = 0; } break; case 134: /* Line 1806 of yacc.c */ #line 645 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 140: /* Line 1806 of yacc.c */ #line 652 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( StatementNode::Exp, new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_link( (yyvsp[(4) - (6)].en) ) ), 0 ); } break; case 141: /* Line 1806 of yacc.c */ #line 662 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 142: /* Line 1806 of yacc.c */ #line 669 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 143: /* Line 1806 of yacc.c */ #line 676 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 145: /* Line 1806 of yacc.c */ #line 682 "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 146: /* Line 1806 of yacc.c */ #line 687 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 147: /* Line 1806 of yacc.c */ #line 689 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 148: /* Line 1806 of yacc.c */ #line 695 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 151: /* Line 1806 of yacc.c */ #line 702 "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 152: /* Line 1806 of yacc.c */ #line 707 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 153: /* Line 1806 of yacc.c */ #line 713 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 154: /* Line 1806 of yacc.c */ #line 715 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); } break; case 155: /* Line 1806 of yacc.c */ #line 717 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 156: /* Line 1806 of yacc.c */ #line 719 "parser.yy" { StatementNode *sw = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); // The semantics of the declaration list is changed to include associated initialization, which is performed // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound // statement around the switch. Statements after the initial declaration list can never be executed, and // therefore, are removed from the grammar even though C allows it. The change also applies to choose // statement. (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new CompoundStmtNode( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_link( sw )) ) : sw; } break; case 157: /* Line 1806 of yacc.c */ #line 729 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 158: /* Line 1806 of yacc.c */ #line 731 "parser.yy" { StatementNode *sw = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new CompoundStmtNode( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_link( sw )) ) : sw; } break; case 159: /* Line 1806 of yacc.c */ #line 741 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 160: /* Line 1806 of yacc.c */ #line 743 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Range, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 162: /* Line 1806 of yacc.c */ #line 748 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(1) - (1)].en), 0 ); } break; case 163: /* Line 1806 of yacc.c */ #line 750 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_link( new StatementNode( StatementNode::Case, (yyvsp[(3) - (3)].en), 0 ) ) ); } break; case 164: /* Line 1806 of yacc.c */ #line 754 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 165: /* Line 1806 of yacc.c */ #line 755 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 167: /* Line 1806 of yacc.c */ #line 761 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 168: /* Line 1806 of yacc.c */ #line 765 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(2) - (2)].sn) ) ); } break; case 169: /* Line 1806 of yacc.c */ #line 770 "parser.yy" { (yyval.sn) = 0; } break; case 171: /* Line 1806 of yacc.c */ #line 776 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(2) - (2)].sn) ) ); } break; case 172: /* Line 1806 of yacc.c */ #line 778 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( new CompoundStmtNode( (yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 173: /* Line 1806 of yacc.c */ #line 783 "parser.yy" { (yyval.sn) = 0; } break; case 175: /* Line 1806 of yacc.c */ #line 789 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 176: /* Line 1806 of yacc.c */ #line 791 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new CompoundStmtNode( (StatementNode *)mkList( (*(yyvsp[(2) - (3)].sn), *(yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 177: /* Line 1806 of yacc.c */ #line 793 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 178: /* Line 1806 of yacc.c */ #line 795 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_link( (yyvsp[(2) - (4)].sn)->append_last_case( new CompoundStmtNode( (StatementNode *)mkList( (*(yyvsp[(3) - (4)].sn), *(yyvsp[(4) - (4)].sn) ) ) ) ) ) ); } break; case 179: /* Line 1806 of yacc.c */ #line 800 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 181: /* Line 1806 of yacc.c */ #line 806 "parser.yy" { (yyval.sn) = 0; } break; case 182: /* Line 1806 of yacc.c */ #line 808 "parser.yy" { (yyval.sn) = 0; } break; case 183: /* Line 1806 of yacc.c */ #line 813 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 184: /* Line 1806 of yacc.c */ #line 815 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); } break; case 185: /* Line 1806 of yacc.c */ #line 817 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); } break; case 186: /* Line 1806 of yacc.c */ #line 822 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 187: /* Line 1806 of yacc.c */ #line 824 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 188: /* Line 1806 of yacc.c */ #line 829 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 189: /* Line 1806 of yacc.c */ #line 833 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 190: /* Line 1806 of yacc.c */ #line 836 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 191: /* Line 1806 of yacc.c */ #line 840 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 192: /* Line 1806 of yacc.c */ #line 843 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 193: /* Line 1806 of yacc.c */ #line 847 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 194: /* Line 1806 of yacc.c */ #line 849 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 195: /* Line 1806 of yacc.c */ #line 851 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 196: /* Line 1806 of yacc.c */ #line 855 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 197: /* Line 1806 of yacc.c */ #line 857 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 198: /* Line 1806 of yacc.c */ #line 864 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 199: /* Line 1806 of yacc.c */ #line 866 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 200: /* Line 1806 of yacc.c */ #line 868 "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 202: /* Line 1806 of yacc.c */ #line 879 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 203: /* Line 1806 of yacc.c */ #line 881 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 883 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 205: /* Line 1806 of yacc.c */ #line 885 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 206: /* Line 1806 of yacc.c */ #line 890 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 207: /* Line 1806 of yacc.c */ #line 892 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 208: /* Line 1806 of yacc.c */ #line 894 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 209: /* Line 1806 of yacc.c */ #line 896 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 210: /* Line 1806 of yacc.c */ #line 901 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 212: /* Line 1806 of yacc.c */ #line 915 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 213: /* Line 1806 of yacc.c */ #line 920 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 214: /* Line 1806 of yacc.c */ #line 922 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 216: /* Line 1806 of yacc.c */ #line 931 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); } break; case 217: /* Line 1806 of yacc.c */ #line 933 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); } break; case 218: /* Line 1806 of yacc.c */ #line 935 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ); } break; case 219: /* Line 1806 of yacc.c */ #line 937 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].constant) ); } break; case 220: /* Line 1806 of yacc.c */ #line 939 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].constant), (yyvsp[(12) - (14)].label) ); } break; case 221: /* Line 1806 of yacc.c */ #line 944 "parser.yy" { (yyval.flag) = false; } break; case 222: /* Line 1806 of yacc.c */ #line 946 "parser.yy" { (yyval.flag) = true; } break; case 223: /* Line 1806 of yacc.c */ #line 951 "parser.yy" { (yyval.en) = 0; } break; case 226: /* Line 1806 of yacc.c */ #line 958 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 227: /* Line 1806 of yacc.c */ #line 963 "parser.yy" { (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); } break; case 228: /* Line 1806 of yacc.c */ #line 965 "parser.yy" { (yyval.en) = new AsmExprNode( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ); } break; case 229: /* Line 1806 of yacc.c */ #line 970 "parser.yy" { (yyval.constant) = 0; } break; case 230: /* Line 1806 of yacc.c */ #line 972 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (1)].constant); } break; case 231: /* Line 1806 of yacc.c */ #line 974 "parser.yy" { (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); } break; case 232: /* Line 1806 of yacc.c */ #line 979 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 233: /* Line 1806 of yacc.c */ #line 981 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); } break; case 234: /* Line 1806 of yacc.c */ #line 988 "parser.yy" { (yyval.decl) = 0; } break; case 237: /* Line 1806 of yacc.c */ #line 995 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 238: /* Line 1806 of yacc.c */ #line 1000 "parser.yy" { (yyval.decl) = 0; } break; case 241: /* Line 1806 of yacc.c */ #line 1007 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 246: /* Line 1806 of yacc.c */ #line 1021 "parser.yy" {} break; case 247: /* Line 1806 of yacc.c */ #line 1022 "parser.yy" {} break; case 255: /* Line 1806 of yacc.c */ #line 1051 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 256: /* Line 1806 of yacc.c */ #line 1058 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 257: /* Line 1806 of yacc.c */ #line 1063 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) )->addInitializer( (yyvsp[(6) - (6)].in) ) ); } break; case 258: /* Line 1806 of yacc.c */ #line 1073 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1078 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1083 "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 261: /* Line 1806 of yacc.c */ #line 1091 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 262: /* Line 1806 of yacc.c */ #line 1096 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 263: /* Line 1806 of yacc.c */ #line 1101 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1106 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 265: /* Line 1806 of yacc.c */ #line 1111 "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 266: /* Line 1806 of yacc.c */ #line 1119 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 267: /* Line 1806 of yacc.c */ #line 1142 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 268: /* Line 1806 of yacc.c */ #line 1146 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 269: /* Line 1806 of yacc.c */ #line 1153 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 270: /* Line 1806 of yacc.c */ #line 1157 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 271: /* Line 1806 of yacc.c */ #line 1162 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 272: /* Line 1806 of yacc.c */ #line 1167 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 273: /* Line 1806 of yacc.c */ #line 1172 "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 274: /* Line 1806 of yacc.c */ #line 1183 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 275: /* Line 1806 of yacc.c */ #line 1188 "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 276: /* Line 1806 of yacc.c */ #line 1193 "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 277: /* Line 1806 of yacc.c */ #line 1198 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 278: /* Line 1806 of yacc.c */ #line 1203 "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 279: /* Line 1806 of yacc.c */ #line 1212 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 280: /* Line 1806 of yacc.c */ #line 1217 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 285: /* Line 1806 of yacc.c */ #line 1234 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 286: /* Line 1806 of yacc.c */ #line 1239 "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 295: /* Line 1806 of yacc.c */ #line 1261 "parser.yy" { (yyval.decl) = 0; } break; case 298: /* Line 1806 of yacc.c */ #line 1273 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 301: /* Line 1806 of yacc.c */ #line 1284 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 302: /* Line 1806 of yacc.c */ #line 1286 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 303: /* Line 1806 of yacc.c */ #line 1288 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 304: /* Line 1806 of yacc.c */ #line 1290 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 305: /* Line 1806 of yacc.c */ #line 1292 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 306: /* Line 1806 of yacc.c */ #line 1294 "parser.yy" { typedefTable.enterScope(); } break; case 307: /* Line 1806 of yacc.c */ #line 1298 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 309: /* Line 1806 of yacc.c */ #line 1307 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 310: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 312: /* Line 1806 of yacc.c */ #line 1320 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 314: /* Line 1806 of yacc.c */ #line 1329 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 315: /* Line 1806 of yacc.c */ #line 1331 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 316: /* Line 1806 of yacc.c */ #line 1333 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 317: /* Line 1806 of yacc.c */ #line 1335 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 318: /* Line 1806 of yacc.c */ #line 1337 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 319: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 320: /* Line 1806 of yacc.c */ #line 1341 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 321: /* Line 1806 of yacc.c */ #line 1343 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 322: /* Line 1806 of yacc.c */ #line 1348 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 323: /* Line 1806 of yacc.c */ #line 1350 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 324: /* Line 1806 of yacc.c */ #line 1352 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 325: /* Line 1806 of yacc.c */ #line 1354 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 326: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 327: /* Line 1806 of yacc.c */ #line 1358 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 328: /* Line 1806 of yacc.c */ #line 1360 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 329: /* Line 1806 of yacc.c */ #line 1362 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 330: /* Line 1806 of yacc.c */ #line 1364 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 331: /* Line 1806 of yacc.c */ #line 1366 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 332: /* Line 1806 of yacc.c */ #line 1368 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 333: /* Line 1806 of yacc.c */ #line 1370 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 334: /* Line 1806 of yacc.c */ #line 1372 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 336: /* Line 1806 of yacc.c */ #line 1379 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 337: /* Line 1806 of yacc.c */ #line 1381 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 339: /* Line 1806 of yacc.c */ #line 1385 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1391 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1398 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1400 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1402 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 346: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 347: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1413 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1421 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1423 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1429 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1431 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1437 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1439 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1441 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1446 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1448 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1450 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1460 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl), true ); } break; case 367: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0, false ); } break; case 368: /* Line 1806 of yacc.c */ #line 1467 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 369: /* Line 1806 of yacc.c */ #line 1469 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), 0, (yyvsp[(5) - (6)].decl), true ); } break; case 370: /* Line 1806 of yacc.c */ #line 1471 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); } break; case 371: /* Line 1806 of yacc.c */ #line 1473 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 372: /* Line 1806 of yacc.c */ #line 1478 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 373: /* Line 1806 of yacc.c */ #line 1480 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 374: /* Line 1806 of yacc.c */ #line 1485 "parser.yy" { (yyval.decl) = 0; } break; case 375: /* Line 1806 of yacc.c */ #line 1487 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 377: /* Line 1806 of yacc.c */ #line 1493 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 379: /* Line 1806 of yacc.c */ #line 1496 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 381: /* Line 1806 of yacc.c */ #line 1506 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1508 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1510 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1515 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1517 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1522 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 387: /* Line 1806 of yacc.c */ #line 1524 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1527 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 389: /* Line 1806 of yacc.c */ #line 1530 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 391: /* Line 1806 of yacc.c */ #line 1536 "parser.yy" { (yyval.en) = 0; } break; case 392: /* Line 1806 of yacc.c */ #line 1538 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 393: /* Line 1806 of yacc.c */ #line 1543 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 395: /* Line 1806 of yacc.c */ #line 1552 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 396: /* Line 1806 of yacc.c */ #line 1554 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 397: /* Line 1806 of yacc.c */ #line 1559 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 398: /* Line 1806 of yacc.c */ #line 1561 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 399: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1568 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 401: /* Line 1806 of yacc.c */ #line 1573 "parser.yy" { (yyval.en) = 0; } break; case 402: /* Line 1806 of yacc.c */ #line 1575 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 403: /* Line 1806 of yacc.c */ #line 1582 "parser.yy" { (yyval.decl) = 0; } break; case 407: /* Line 1806 of yacc.c */ #line 1590 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 408: /* Line 1806 of yacc.c */ #line 1592 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 409: /* Line 1806 of yacc.c */ #line 1594 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 411: /* Line 1806 of yacc.c */ #line 1602 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1604 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 413: /* Line 1806 of yacc.c */ #line 1606 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 415: /* Line 1806 of yacc.c */ #line 1612 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 416: /* Line 1806 of yacc.c */ #line 1617 "parser.yy" { (yyval.decl) = 0; } break; case 419: /* Line 1806 of yacc.c */ #line 1624 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 422: /* Line 1806 of yacc.c */ #line 1631 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 423: /* Line 1806 of yacc.c */ #line 1633 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 425: /* Line 1806 of yacc.c */ #line 1642 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 426: /* Line 1806 of yacc.c */ #line 1645 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 427: /* Line 1806 of yacc.c */ #line 1647 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 432: /* Line 1806 of yacc.c */ #line 1657 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1663 "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 435: /* Line 1806 of yacc.c */ #line 1668 "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 437: /* Line 1806 of yacc.c */ #line 1677 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 438: /* Line 1806 of yacc.c */ #line 1686 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 439: /* Line 1806 of yacc.c */ #line 1688 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 451: /* Line 1806 of yacc.c */ #line 1713 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 456: /* Line 1806 of yacc.c */ #line 1726 "parser.yy" { (yyval.in) = 0; } break; case 457: /* Line 1806 of yacc.c */ #line 1728 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 458: /* Line 1806 of yacc.c */ #line 1730 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 459: /* Line 1806 of yacc.c */ #line 1734 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1735 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 461: /* Line 1806 of yacc.c */ #line 1740 "parser.yy" { (yyval.in) = 0; } break; case 463: /* Line 1806 of yacc.c */ #line 1742 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 465: /* Line 1806 of yacc.c */ #line 1745 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 467: /* Line 1806 of yacc.c */ #line 1761 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 469: /* Line 1806 of yacc.c */ #line 1767 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 470: /* Line 1806 of yacc.c */ #line 1775 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 471: /* Line 1806 of yacc.c */ #line 1777 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(2) - (2)].tok) ) ); } break; case 472: /* Line 1806 of yacc.c */ #line 1780 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 473: /* Line 1806 of yacc.c */ #line 1782 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 474: /* Line 1806 of yacc.c */ #line 1784 "parser.yy" { (yyval.en) = new DesignatorNode( new CompositeExprNode2( build_opr2( OperatorNode::Range, (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ), true ); } break; case 475: /* Line 1806 of yacc.c */ #line 1786 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(4) - (6)].en) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1810 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1812 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 479: /* Line 1806 of yacc.c */ #line 1814 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1820 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1822 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 483: /* Line 1806 of yacc.c */ #line 1827 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1833 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 486: /* Line 1806 of yacc.c */ #line 1838 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 487: /* Line 1806 of yacc.c */ #line 1840 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1846 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 490: /* Line 1806 of yacc.c */ #line 1848 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 491: /* Line 1806 of yacc.c */ #line 1850 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 492: /* Line 1806 of yacc.c */ #line 1855 "parser.yy" { (yyval.decl) = 0; } break; case 493: /* Line 1806 of yacc.c */ #line 1857 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 494: /* Line 1806 of yacc.c */ #line 1862 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 495: /* Line 1806 of yacc.c */ #line 1867 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 496: /* Line 1806 of yacc.c */ #line 1869 "parser.yy" { (yyval.decl) = 0; } break; case 497: /* Line 1806 of yacc.c */ #line 1874 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1877 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 500: /* Line 1806 of yacc.c */ #line 1879 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 501: /* Line 1806 of yacc.c */ #line 1884 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 502: /* Line 1806 of yacc.c */ #line 1886 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1888 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1893 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 505: /* Line 1806 of yacc.c */ #line 1895 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 506: /* Line 1806 of yacc.c */ #line 1900 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 507: /* Line 1806 of yacc.c */ #line 1905 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 508: /* Line 1806 of yacc.c */ #line 1913 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 509: /* Line 1806 of yacc.c */ #line 1918 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 510: /* Line 1806 of yacc.c */ #line 1923 "parser.yy" { typedefTable.leaveTrait(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 512: /* Line 1806 of yacc.c */ #line 1933 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 515: /* Line 1806 of yacc.c */ #line 1943 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 516: /* Line 1806 of yacc.c */ #line 1948 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 517: /* Line 1806 of yacc.c */ #line 1953 "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 518: /* Line 1806 of yacc.c */ #line 1961 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 519: /* Line 1806 of yacc.c */ #line 1966 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 520: /* Line 1806 of yacc.c */ #line 1976 "parser.yy" {} break; case 521: /* Line 1806 of yacc.c */ #line 1978 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 523: /* Line 1806 of yacc.c */ #line 1990 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 524: /* Line 1806 of yacc.c */ #line 1995 "parser.yy" { (yyval.decl) = 0; } break; case 528: /* Line 1806 of yacc.c */ #line 2003 "parser.yy" {} break; case 529: /* Line 1806 of yacc.c */ #line 2005 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 530: /* Line 1806 of yacc.c */ #line 2010 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 531: /* Line 1806 of yacc.c */ #line 2016 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_link() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 533: /* Line 1806 of yacc.c */ #line 2031 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 534: /* Line 1806 of yacc.c */ #line 2037 "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 535: /* Line 1806 of yacc.c */ #line 2046 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 536: /* Line 1806 of yacc.c */ #line 2052 "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 537: /* Line 1806 of yacc.c */ #line 2058 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 538: /* Line 1806 of yacc.c */ #line 2064 "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 539: /* Line 1806 of yacc.c */ #line 2070 "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 540: /* Line 1806 of yacc.c */ #line 2078 "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 541: /* Line 1806 of yacc.c */ #line 2084 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 542: /* Line 1806 of yacc.c */ #line 2092 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 543: /* Line 1806 of yacc.c */ #line 2098 "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 547: /* Line 1806 of yacc.c */ #line 2113 "parser.yy" { (yyval.en) = new CompositeExprNode2( build_opr2( OperatorNode::Range, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 550: /* Line 1806 of yacc.c */ #line 2123 "parser.yy" { (yyval.decl) = 0; } break; case 553: /* Line 1806 of yacc.c */ #line 2130 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 554: /* Line 1806 of yacc.c */ #line 2136 "parser.yy" { (yyval.decl) = 0; } break; case 560: /* Line 1806 of yacc.c */ #line 2151 "parser.yy" {} break; case 561: /* Line 1806 of yacc.c */ #line 2152 "parser.yy" {} break; case 562: /* Line 1806 of yacc.c */ #line 2153 "parser.yy" {} break; case 563: /* Line 1806 of yacc.c */ #line 2154 "parser.yy" {} break; case 564: /* Line 1806 of yacc.c */ #line 2189 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2192 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2194 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2199 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2204 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 570: /* Line 1806 of yacc.c */ #line 2209 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2211 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2213 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 573: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 574: /* Line 1806 of yacc.c */ #line 2220 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2222 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2224 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 577: /* Line 1806 of yacc.c */ #line 2229 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2231 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 579: /* Line 1806 of yacc.c */ #line 2240 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2243 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2248 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2250 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2252 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 585: /* Line 1806 of yacc.c */ #line 2257 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 586: /* Line 1806 of yacc.c */ #line 2259 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 587: /* Line 1806 of yacc.c */ #line 2261 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 588: /* Line 1806 of yacc.c */ #line 2266 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2268 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2270 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 594: /* Line 1806 of yacc.c */ #line 2285 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2287 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2289 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 597: /* Line 1806 of yacc.c */ #line 2294 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2296 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2298 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 600: /* Line 1806 of yacc.c */ #line 2303 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2305 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2307 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 603: /* Line 1806 of yacc.c */ #line 2322 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2325 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2327 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2333 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 609: /* Line 1806 of yacc.c */ #line 2338 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2340 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2342 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 612: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2349 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2351 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 615: /* Line 1806 of yacc.c */ #line 2353 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 616: /* Line 1806 of yacc.c */ #line 2358 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2360 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2362 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 619: /* Line 1806 of yacc.c */ #line 2372 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2375 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2377 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2382 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2384 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2386 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 626: /* Line 1806 of yacc.c */ #line 2391 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2393 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2395 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2397 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 630: /* Line 1806 of yacc.c */ #line 2402 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2404 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2406 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 633: /* Line 1806 of yacc.c */ #line 2437 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2440 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2442 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2447 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2452 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2460 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2462 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2464 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 642: /* Line 1806 of yacc.c */ #line 2469 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2471 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2476 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2478 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2493 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2495 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 649: /* Line 1806 of yacc.c */ #line 2500 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 650: /* Line 1806 of yacc.c */ #line 2502 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2504 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2506 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 653: /* Line 1806 of yacc.c */ #line 2508 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 655: /* Line 1806 of yacc.c */ #line 2514 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 656: /* Line 1806 of yacc.c */ #line 2516 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 657: /* Line 1806 of yacc.c */ #line 2518 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 658: /* Line 1806 of yacc.c */ #line 2523 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 659: /* Line 1806 of yacc.c */ #line 2525 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 660: /* Line 1806 of yacc.c */ #line 2527 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 661: /* Line 1806 of yacc.c */ #line 2533 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 662: /* Line 1806 of yacc.c */ #line 2535 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2541 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 665: /* Line 1806 of yacc.c */ #line 2543 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 666: /* Line 1806 of yacc.c */ #line 2545 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 667: /* Line 1806 of yacc.c */ #line 2547 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2562 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2564 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 671: /* Line 1806 of yacc.c */ #line 2569 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 672: /* Line 1806 of yacc.c */ #line 2571 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2573 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2575 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 675: /* Line 1806 of yacc.c */ #line 2577 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 677: /* Line 1806 of yacc.c */ #line 2583 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2585 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 679: /* Line 1806 of yacc.c */ #line 2587 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 680: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 681: /* Line 1806 of yacc.c */ #line 2594 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2596 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 684: /* Line 1806 of yacc.c */ #line 2603 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 686: /* Line 1806 of yacc.c */ #line 2614 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 687: /* Line 1806 of yacc.c */ #line 2617 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 688: /* Line 1806 of yacc.c */ #line 2619 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 689: /* Line 1806 of yacc.c */ #line 2622 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 690: /* Line 1806 of yacc.c */ #line 2624 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 691: /* Line 1806 of yacc.c */ #line 2626 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 693: /* Line 1806 of yacc.c */ #line 2640 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2642 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 695: /* Line 1806 of yacc.c */ #line 2647 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 696: /* Line 1806 of yacc.c */ #line 2649 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2651 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2653 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2655 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 701: /* Line 1806 of yacc.c */ #line 2661 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2663 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 703: /* Line 1806 of yacc.c */ #line 2665 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 704: /* Line 1806 of yacc.c */ #line 2670 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 705: /* Line 1806 of yacc.c */ #line 2672 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 708: /* Line 1806 of yacc.c */ #line 2682 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2692 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2694 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2696 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2698 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2700 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2702 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2709 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2711 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2713 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2715 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2717 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2719 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2721 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2723 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2725 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2727 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2732 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 728: /* Line 1806 of yacc.c */ #line 2734 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 729: /* Line 1806 of yacc.c */ #line 2739 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 730: /* Line 1806 of yacc.c */ #line 2741 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 732: /* Line 1806 of yacc.c */ #line 2768 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2779 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2781 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2783 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2785 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2787 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2789 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2796 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2798 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2800 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2802 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2804 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2806 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2811 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 749: /* Line 1806 of yacc.c */ #line 2816 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 750: /* Line 1806 of yacc.c */ #line 2818 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 751: /* Line 1806 of yacc.c */ #line 2820 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 754: /* Line 1806 of yacc.c */ #line 2844 "parser.yy" { (yyval.en) = 0; } break; case 755: /* Line 1806 of yacc.c */ #line 2846 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9430 "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 2849 "parser.yy" // ----end of grammar---- void yyerror( const char * ) { std::cout << "Error "; if ( yyfilename ) { std::cout << "in file " << yyfilename << " "; } // if std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //