/* A Bison parser, made from parse.y by GNU Bison version 1.28 */ #define YYBISON 1 /* Identify Bison output. */ #define IDENTIFIER 257 #define TYPENAME 258 #define SELFNAME 259 #define PFUNCNAME 260 #define SCSPEC 261 #define TYPESPEC 262 #define CV_QUALIFIER 263 #define CONSTANT 264 #define STRING 265 #define ELLIPSIS 266 #define SIZEOF 267 #define ENUM 268 #define IF 269 #define ELSE 270 #define WHILE 271 #define DO 272 #define FOR 273 #define SWITCH 274 #define CASE 275 #define DEFAULT 276 #define BREAK 277 #define CONTINUE 278 #define RETURN_KEYWORD 279 #define GOTO 280 #define ASM_KEYWORD 281 #define TYPEOF 282 #define ALIGNOF 283 #define SIGOF 284 #define ATTRIBUTE 285 #define EXTENSION 286 #define LABEL 287 #define REALPART 288 #define IMAGPART 289 #define VA_ARG 290 #define AGGR 291 #define VISSPEC 292 #define DELETE 293 #define NEW 294 #define THIS 295 #define OPERATOR 296 #define CXX_TRUE 297 #define CXX_FALSE 298 #define NAMESPACE 299 #define TYPENAME_KEYWORD 300 #define USING 301 #define LEFT_RIGHT 302 #define TEMPLATE 303 #define TYPEID 304 #define DYNAMIC_CAST 305 #define STATIC_CAST 306 #define REINTERPRET_CAST 307 #define CONST_CAST 308 #define SCOPE 309 #define EMPTY 310 #define PTYPENAME 311 #define NSNAME 312 #define THROW 313 #define ASSIGN 314 #define OROR 315 #define ANDAND 316 #define MIN_MAX 317 #define EQCOMPARE 318 #define ARITHCOMPARE 319 #define LSHIFT 320 #define RSHIFT 321 #define POINTSAT_STAR 322 #define DOT_STAR 323 #define UNARY 324 #define PLUSPLUS 325 #define MINUSMINUS 326 #define HYPERUNARY 327 #define POINTSAT 328 #define TRY 329 #define CATCH 330 #define EXTERN_LANG_STRING 331 #define ALL 332 #define PRE_PARSED_CLASS_DECL 333 #define DEFARG 334 #define DEFARG_MARKER 335 #define PRE_PARSED_FUNCTION_DECL 336 #define TYPENAME_DEFN 337 #define IDENTIFIER_DEFN 338 #define PTYPENAME_DEFN 339 #define END_OF_LINE 340 #define END_OF_SAVED_INPUT 341 #line 30 "parse.y" /* Cause the `yydebug' variable to be defined. */ #define YYDEBUG 1 #include "config.h" #include "system.h" #include "tree.h" #include "input.h" #include "flags.h" #include "lex.h" #include "cp-tree.h" #include "output.h" #include "except.h" #include "toplev.h" #include "ggc.h" /* Since parsers are distinct for each language, put the language string definition here. (fnf) */ const char * const language_string = "GNU C++"; extern struct obstack permanent_obstack; extern int end_of_file; /* Like YYERROR but do call yyerror. */ #define YYERROR1 { yyerror ("syntax error"); YYERROR; } #define OP0(NODE) (TREE_OPERAND (NODE, 0)) #define OP1(NODE) (TREE_OPERAND (NODE, 1)) /* Contains the statement keyword (if/while/do) to include in an error message if the user supplies an empty conditional expression. */ static const char *cond_stmt_keyword; /* Nonzero if we have an `extern "C"' acting as an extern specifier. */ int have_extern_spec; int used_extern_spec; /* List of types and structure classes of the current declaration. */ static tree current_declspecs; /* List of prefix attributes in effect. Prefix attributes are parsed by the reserved_declspecs and declmods rules. They create a list that contains *both* declspecs and attrs. */ /* ??? It is not clear yet that all cases where an attribute can now appear in a declspec list have been updated. */ static tree prefix_attributes; /* When defining an aggregate, this is the kind of the most recent one being defined. (For example, this might be class_type_node.) */ static tree current_aggr; /* When defining an enumeration, this is the type of the enumeration. */ static tree current_enum_type; static tree empty_parms PARAMS ((void)); static tree parse_decl0 PARAMS ((tree, tree, tree, tree, int)); static tree parse_decl PARAMS ((tree, tree, int)); static void parse_end_decl PARAMS ((tree, tree, tree)); static tree parse_field0 PARAMS ((tree, tree, tree, tree, tree, tree)); static tree parse_field PARAMS ((tree, tree, tree, tree)); static tree parse_bitfield0 PARAMS ((tree, tree, tree, tree, tree)); static tree parse_bitfield PARAMS ((tree, tree, tree)); static tree parse_method PARAMS ((tree, tree, tree)); static void frob_specs PARAMS ((tree, tree)); /* Cons up an empty parameter list. */ static inline tree empty_parms () { tree parms; if (strict_prototype || current_class_type != NULL) parms = void_list_node; else parms = NULL_TREE; return parms; } /* Record the decl-specifiers, attributes and type lookups from the decl-specifier-seq in a declaration. */ static void frob_specs (specs_attrs, lookups) tree specs_attrs, lookups; { save_type_access_control (lookups); split_specs_attrs (specs_attrs, ¤t_declspecs, &prefix_attributes); if (current_declspecs && TREE_CODE (current_declspecs) != TREE_LIST) current_declspecs = build_decl_list (NULL_TREE, current_declspecs); if (have_extern_spec && !used_extern_spec) { current_declspecs = decl_tree_cons (NULL_TREE, get_identifier ("extern"), current_declspecs); used_extern_spec = 1; } } static tree parse_decl (declarator, attributes, initialized) tree declarator, attributes; int initialized; { return start_decl (declarator, current_declspecs, initialized, attributes, prefix_attributes); } static tree parse_decl0 (declarator, specs_attrs, lookups, attributes, initialized) tree declarator, specs_attrs, lookups, attributes; int initialized; { frob_specs (specs_attrs, lookups); return parse_decl (declarator, attributes, initialized); } static void parse_end_decl (decl, init, asmspec) tree decl, init, asmspec; { /* If decl is NULL_TREE, then this was a variable declaration using () syntax for the initializer, so we handled it in grokdeclarator. */ if (decl) decl_type_access_control (decl); cp_finish_decl (decl, init, asmspec, init ? LOOKUP_ONLYCONVERTING : 0); } static tree parse_field (declarator, attributes, asmspec, init) tree declarator, attributes, asmspec, init; { tree d = grokfield (declarator, current_declspecs, init, asmspec, build_tree_list (attributes, prefix_attributes)); decl_type_access_control (d); return d; } static tree parse_field0 (declarator, specs_attrs, lookups, attributes, asmspec, init) tree declarator, specs_attrs, lookups, attributes, asmspec, init; { frob_specs (specs_attrs, lookups); return parse_field (declarator, attributes, asmspec, init); } static tree parse_bitfield (declarator, attributes, width) tree declarator, attributes, width; { tree d = grokbitfield (declarator, current_declspecs, width); cplus_decl_attributes (d, attributes, prefix_attributes); decl_type_access_control (d); return d; } static tree parse_bitfield0 (declarator, specs_attrs, lookups, attributes, width) tree declarator, specs_attrs, lookups, attributes, width; { frob_specs (specs_attrs, lookups); return parse_bitfield (declarator, attributes, width); } static tree parse_method (declarator, specs_attrs, lookups) tree declarator, specs_attrs, lookups; { tree d; frob_specs (specs_attrs, lookups); d = start_method (current_declspecs, declarator, prefix_attributes); decl_type_access_control (d); return d; } void cp_parse_init () { ggc_add_tree_root (¤t_declspecs, 1); ggc_add_tree_root (&prefix_attributes, 1); ggc_add_tree_root (¤t_aggr, 1); ggc_add_tree_root (¤t_enum_type, 1); } #line 221 "parse.y" typedef union { long itype; tree ttype; char *strtype; enum tree_code code; flagged_type_tree ftype; struct pending_inline *pi; } YYSTYPE; #line 424 "parse.y" /* Tell yyparse how to print a token's value, if yydebug is set. */ #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL) extern void yyprint PARAMS ((FILE *, int, YYSTYPE)); #include #ifndef __cplusplus #ifndef __STDC__ #define const #endif #endif #define YYFINAL 1673 #define YYFLAG -32768 #define YYNTBASE 112 #define YYTRANSLATE(x) ((unsigned)(x) <= 341 ? yytranslate[x] : 397) static const char yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 110, 2, 2, 2, 83, 71, 2, 93, 108, 81, 79, 60, 80, 92, 82, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 63, 61, 75, 65, 76, 66, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 94, 2, 111, 70, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 59, 69, 109, 89, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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, 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, 62, 64, 67, 68, 72, 73, 74, 77, 78, 84, 85, 86, 87, 88, 90, 91, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107 }; #if YYDEBUG != 0 static const short yyprhs[] = { 0, 0, 1, 3, 4, 7, 10, 12, 13, 14, 15, 17, 19, 20, 23, 26, 28, 30, 36, 41, 47, 52, 53, 60, 61, 67, 69, 72, 74, 77, 78, 85, 88, 92, 96, 100, 104, 109, 110, 116, 119, 123, 125, 127, 130, 133, 135, 138, 139, 145, 149, 151, 155, 157, 158, 161, 164, 168, 170, 174, 176, 180, 182, 186, 189, 192, 195, 197, 199, 205, 210, 213, 216, 220, 224, 227, 230, 234, 238, 241, 244, 247, 250, 253, 255, 257, 259, 260, 262, 265, 266, 268, 273, 277, 281, 282, 291, 297, 298, 308, 315, 316, 325, 331, 332, 342, 349, 352, 355, 357, 360, 362, 369, 374, 381, 386, 389, 391, 394, 397, 399, 402, 404, 407, 410, 415, 418, 422, 423, 424, 426, 430, 433, 437, 439, 444, 447, 452, 455, 460, 463, 465, 467, 469, 471, 473, 475, 477, 479, 481, 483, 485, 487, 488, 495, 496, 503, 504, 510, 511, 517, 518, 526, 527, 535, 536, 543, 544, 551, 552, 553, 559, 565, 567, 569, 575, 581, 582, 584, 586, 587, 589, 591, 595, 597, 599, 601, 603, 605, 607, 609, 611, 613, 615, 617, 621, 623, 627, 628, 630, 632, 633, 641, 643, 645, 649, 654, 658, 659, 663, 665, 669, 673, 677, 681, 683, 685, 687, 690, 693, 696, 699, 702, 705, 708, 713, 716, 721, 724, 728, 732, 737, 742, 748, 754, 761, 764, 769, 775, 778, 781, 788, 792, 796, 800, 802, 806, 809, 813, 818, 820, 823, 829, 831, 835, 839, 843, 847, 851, 855, 859, 863, 867, 871, 875, 879, 883, 887, 891, 895, 899, 903, 907, 913, 917, 921, 923, 926, 930, 934, 936, 938, 940, 942, 944, 945, 951, 957, 963, 969, 975, 977, 979, 981, 983, 986, 988, 991, 994, 998, 1003, 1008, 1010, 1012, 1014, 1018, 1020, 1022, 1024, 1026, 1030, 1034, 1038, 1039, 1044, 1049, 1052, 1057, 1060, 1065, 1068, 1071, 1073, 1078, 1080, 1088, 1096, 1104, 1112, 1117, 1122, 1125, 1128, 1131, 1133, 1138, 1141, 1144, 1150, 1154, 1157, 1160, 1166, 1170, 1176, 1180, 1185, 1192, 1195, 1197, 1200, 1202, 1205, 1207, 1209, 1211, 1214, 1215, 1218, 1221, 1225, 1229, 1233, 1236, 1239, 1242, 1244, 1246, 1248, 1251, 1254, 1257, 1260, 1262, 1264, 1266, 1268, 1271, 1274, 1278, 1282, 1286, 1291, 1293, 1296, 1299, 1302, 1304, 1306, 1308, 1311, 1314, 1317, 1319, 1321, 1324, 1327, 1331, 1333, 1336, 1338, 1340, 1342, 1347, 1352, 1357, 1362, 1364, 1366, 1368, 1370, 1374, 1376, 1380, 1382, 1386, 1387, 1392, 1393, 1400, 1404, 1405, 1410, 1412, 1416, 1420, 1421, 1426, 1430, 1431, 1433, 1435, 1438, 1445, 1447, 1451, 1452, 1454, 1459, 1466, 1471, 1473, 1475, 1477, 1479, 1481, 1485, 1486, 1489, 1491, 1494, 1498, 1503, 1505, 1507, 1511, 1516, 1520, 1526, 1528, 1533, 1537, 1541, 1542, 1546, 1550, 1554, 1555, 1558, 1561, 1562, 1569, 1570, 1576, 1579, 1582, 1585, 1586, 1587, 1588, 1599, 1601, 1602, 1604, 1605, 1607, 1609, 1612, 1615, 1618, 1621, 1624, 1627, 1630, 1633, 1636, 1640, 1645, 1649, 1652, 1656, 1658, 1659, 1663, 1666, 1669, 1671, 1673, 1674, 1677, 1681, 1683, 1688, 1690, 1694, 1696, 1698, 1701, 1704, 1708, 1712, 1713, 1715, 1719, 1722, 1725, 1727, 1730, 1733, 1736, 1739, 1742, 1745, 1748, 1750, 1753, 1756, 1760, 1763, 1766, 1771, 1776, 1779, 1781, 1787, 1792, 1794, 1795, 1797, 1801, 1802, 1804, 1808, 1810, 1812, 1814, 1816, 1821, 1826, 1831, 1836, 1841, 1845, 1850, 1855, 1860, 1865, 1869, 1872, 1874, 1876, 1880, 1882, 1886, 1889, 1891, 1898, 1899, 1902, 1904, 1907, 1911, 1915, 1917, 1921, 1923, 1926, 1930, 1934, 1937, 1940, 1944, 1946, 1951, 1956, 1960, 1964, 1967, 1969, 1971, 1974, 1976, 1978, 1981, 1984, 1986, 1989, 1993, 1997, 2000, 2003, 2007, 2009, 2013, 2017, 2020, 2023, 2027, 2029, 2034, 2038, 2043, 2047, 2049, 2052, 2055, 2058, 2061, 2064, 2066, 2069, 2074, 2079, 2082, 2084, 2086, 2088, 2090, 2093, 2098, 2101, 2104, 2107, 2110, 2112, 2115, 2118, 2121, 2124, 2128, 2130, 2133, 2137, 2142, 2145, 2148, 2151, 2154, 2157, 2160, 2165, 2168, 2170, 2173, 2176, 2180, 2182, 2186, 2189, 2193, 2196, 2199, 2203, 2205, 2209, 2214, 2216, 2219, 2223, 2226, 2229, 2231, 2235, 2238, 2241, 2243, 2246, 2250, 2252, 2256, 2263, 2268, 2273, 2277, 2283, 2287, 2291, 2295, 2298, 2300, 2302, 2305, 2308, 2311, 2312, 2314, 2316, 2319, 2323, 2325, 2328, 2329, 2333, 2334, 2335, 2341, 2343, 2344, 2347, 2349, 2351, 2353, 2356, 2357, 2362, 2364, 2365, 2366, 2372, 2373, 2374, 2382, 2383, 2384, 2385, 2386, 2399, 2400, 2401, 2409, 2410, 2416, 2417, 2425, 2426, 2431, 2434, 2437, 2440, 2444, 2451, 2460, 2471, 2480, 2493, 2504, 2515, 2520, 2524, 2527, 2530, 2532, 2534, 2536, 2538, 2540, 2541, 2542, 2549, 2550, 2551, 2557, 2559, 2562, 2563, 2564, 2570, 2572, 2574, 2578, 2582, 2585, 2588, 2591, 2594, 2597, 2599, 2602, 2603, 2605, 2606, 2608, 2610, 2611, 2613, 2615, 2619, 2624, 2626, 2630, 2631, 2633, 2635, 2637, 2640, 2643, 2646, 2648, 2651, 2654, 2655, 2659, 2661, 2663, 2665, 2668, 2671, 2674, 2679, 2682, 2685, 2688, 2691, 2694, 2697, 2699, 2702, 2704, 2707, 2709, 2711, 2712, 2713, 2715, 2716, 2721, 2724, 2726, 2728, 2732, 2733, 2737, 2741, 2745, 2747, 2750, 2753, 2756, 2759, 2762, 2765, 2768, 2771, 2774, 2777, 2780, 2783, 2786, 2789, 2792, 2795, 2798, 2801, 2804, 2807, 2810, 2813, 2816, 2820, 2823, 2826, 2829, 2832, 2836, 2839, 2842, 2847, 2852, 2856 }; static const short yyrhs[] = { -1, 113, 0, 0, 114, 120, 0, 113, 120, 0, 113, 0, 0, 0, 0, 32, 0, 27, 0, 0, 121, 122, 0, 148, 147, 0, 144, 0, 141, 0, 119, 93, 217, 108, 61, 0, 133, 59, 115, 109, 0, 133, 116, 148, 117, 147, 0, 133, 116, 144, 117, 0, 0, 45, 163, 59, 123, 115, 109, 0, 0, 45, 59, 124, 115, 109, 0, 125, 0, 127, 61, 0, 129, 0, 118, 122, 0, 0, 45, 163, 65, 126, 132, 61, 0, 47, 310, 0, 47, 324, 310, 0, 47, 324, 207, 0, 47, 131, 163, 0, 47, 324, 163, 0, 47, 324, 131, 163, 0, 0, 47, 45, 130, 132, 61, 0, 58, 55, 0, 131, 58, 55, 0, 207, 0, 310, 0, 324, 310, 0, 324, 207, 0, 97, 0, 133, 97, 0, 0, 49, 75, 135, 136, 76, 0, 49, 75, 76, 0, 140, 0, 136, 60, 140, 0, 163, 0, 0, 267, 137, 0, 46, 137, 0, 134, 267, 137, 0, 138, 0, 138, 65, 223, 0, 388, 0, 388, 65, 202, 0, 139, 0, 139, 65, 184, 0, 134, 142, 0, 134, 1, 0, 148, 147, 0, 143, 0, 141, 0, 133, 116, 148, 117, 147, 0, 133, 116, 143, 117, 0, 118, 142, 0, 234, 61, 0, 227, 233, 61, 0, 224, 232, 61, 0, 259, 61, 0, 234, 61, 0, 227, 233, 61, 0, 224, 232, 61, 0, 227, 61, 0, 166, 61, 0, 224, 61, 0, 1, 61, 0, 1, 109, 0, 61, 0, 218, 0, 159, 0, 0, 158, 0, 158, 61, 0, 0, 107, 0, 154, 146, 145, 335, 0, 154, 146, 359, 0, 154, 146, 1, 0, 0, 315, 5, 93, 150, 379, 108, 297, 391, 0, 315, 5, 48, 297, 391, 0, 0, 324, 315, 5, 93, 151, 379, 108, 297, 391, 0, 324, 315, 5, 48, 297, 391, 0, 0, 315, 179, 93, 152, 379, 108, 297, 391, 0, 315, 179, 48, 297, 391, 0, 0, 324, 315, 179, 93, 153, 379, 108, 297, 391, 0, 324, 315, 179, 48, 297, 391, 0, 224, 221, 0, 227, 307, 0, 307, 0, 227, 149, 0, 149, 0, 5, 93, 379, 108, 297, 391, 0, 5, 48, 297, 391, 0, 179, 93, 379, 108, 297, 391, 0, 179, 48, 297, 391, 0, 227, 155, 0, 155, 0, 224, 221, 0, 227, 307, 0, 307, 0, 227, 149, 0, 149, 0, 25, 3, 0, 157, 251, 0, 157, 93, 196, 108, 0, 157, 48, 0, 63, 160, 161, 0, 0, 0, 162, 0, 161, 60, 162, 0, 161, 1, 0, 93, 196, 108, 0, 48, 0, 164, 93, 196, 108, 0, 164, 48, 0, 303, 93, 196, 108, 0, 303, 48, 0, 317, 93, 196, 108, 0, 317, 48, 0, 1, 0, 3, 0, 4, 0, 5, 0, 57, 0, 58, 0, 3, 0, 57, 0, 58, 0, 104, 0, 103, 0, 105, 0, 0, 49, 175, 230, 61, 167, 176, 0, 0, 49, 175, 224, 221, 168, 176, 0, 0, 49, 175, 307, 169, 176, 0, 0, 49, 175, 149, 170, 176, 0, 0, 7, 49, 175, 230, 61, 171, 176, 0, 0, 7, 49, 175, 224, 221, 172, 176, 0, 0, 7, 49, 175, 307, 173, 176, 0, 0, 7, 49, 175, 149, 174, 176, 0, 0, 0, 57, 75, 182, 181, 180, 0, 4, 75, 182, 181, 180, 0, 179, 0, 177, 0, 163, 75, 182, 76, 180, 0, 5, 75, 182, 181, 180, 0, 0, 76, 0, 78, 0, 0, 183, 0, 184, 0, 183, 60, 184, 0, 223, 0, 57, 0, 202, 0, 80, 0, 79, 0, 87, 0, 88, 0, 110, 0, 195, 0, 202, 0, 48, 0, 93, 186, 108, 0, 48, 0, 93, 190, 108, 0, 0, 190, 0, 1, 0, 0, 369, 221, 235, 244, 65, 191, 252, 0, 186, 0, 109, 0, 332, 330, 109, 0, 332, 330, 1, 109, 0, 332, 1, 109, 0, 0, 59, 194, 192, 0, 344, 0, 202, 60, 202, 0, 202, 60, 1, 0, 195, 60, 202, 0, 195, 60, 1, 0, 202, 0, 195, 0, 212, 0, 118, 201, 0, 81, 201, 0, 71, 201, 0, 89, 201, 0, 185, 201, 0, 68, 163, 0, 13, 197, 0, 13, 93, 223, 108, 0, 29, 197, 0, 29, 93, 223, 108, 0, 214, 296, 0, 214, 296, 199, 0, 214, 198, 296, 0, 214, 198, 296, 199, 0, 214, 93, 223, 108, 0, 214, 93, 223, 108, 199, 0, 214, 198, 93, 223, 108, 0, 214, 198, 93, 223, 108, 199, 0, 215, 201, 0, 215, 94, 111, 201, 0, 215, 94, 186, 111, 201, 0, 34, 201, 0, 35, 201, 0, 36, 93, 202, 60, 223, 108, 0, 93, 196, 108, 0, 59, 196, 109, 0, 93, 196, 108, 0, 48, 0, 93, 230, 108, 0, 65, 252, 0, 93, 223, 108, 0, 200, 93, 223, 108, 0, 197, 0, 200, 197, 0, 200, 59, 253, 265, 109, 0, 201, 0, 202, 84, 202, 0, 202, 85, 202, 0, 202, 79, 202, 0, 202, 80, 202, 0, 202, 81, 202, 0, 202, 82, 202, 0, 202, 83, 202, 0, 202, 77, 202, 0, 202, 78, 202, 0, 202, 74, 202, 0, 202, 75, 202, 0, 202, 76, 202, 0, 202, 73, 202, 0, 202, 72, 202, 0, 202, 71, 202, 0, 202, 69, 202, 0, 202, 70, 202, 0, 202, 68, 202, 0, 202, 67, 202, 0, 202, 66, 374, 63, 202, 0, 202, 65, 202, 0, 202, 64, 202, 0, 62, 0, 62, 202, 0, 89, 389, 163, 0, 89, 389, 177, 0, 205, 0, 396, 0, 3, 0, 57, 0, 58, 0, 0, 6, 75, 204, 182, 181, 0, 396, 75, 204, 182, 181, 0, 49, 163, 75, 182, 181, 0, 49, 6, 75, 182, 181, 0, 49, 396, 75, 182, 181, 0, 203, 0, 4, 0, 5, 0, 209, 0, 245, 209, 0, 203, 0, 81, 208, 0, 71, 208, 0, 93, 208, 108, 0, 3, 75, 182, 181, 0, 58, 75, 183, 181, 0, 309, 0, 203, 0, 210, 0, 93, 208, 108, 0, 203, 0, 10, 0, 216, 0, 217, 0, 93, 186, 108, 0, 93, 208, 108, 0, 93, 1, 108, 0, 0, 93, 213, 336, 108, 0, 203, 93, 196, 108, 0, 203, 48, 0, 212, 93, 196, 108, 0, 212, 48, 0, 212, 94, 186, 111, 0, 212, 87, 0, 212, 88, 0, 41, 0, 9, 93, 196, 108, 0, 313, 0, 51, 75, 223, 76, 93, 186, 108, 0, 52, 75, 223, 76, 93, 186, 108, 0, 53, 75, 223, 76, 93, 186, 108, 0, 54, 75, 223, 76, 93, 186, 108, 0, 50, 93, 186, 108, 0, 50, 93, 223, 108, 0, 324, 3, 0, 324, 205, 0, 324, 396, 0, 312, 0, 312, 93, 196, 108, 0, 312, 48, 0, 219, 206, 0, 219, 206, 93, 196, 108, 0, 219, 206, 48, 0, 219, 207, 0, 219, 312, 0, 219, 207, 93, 196, 108, 0, 219, 207, 48, 0, 219, 312, 93, 196, 108, 0, 219, 312, 48, 0, 219, 89, 8, 48, 0, 219, 8, 55, 89, 8, 48, 0, 219, 1, 0, 40, 0, 324, 40, 0, 39, 0, 324, 215, 0, 43, 0, 44, 0, 11, 0, 217, 11, 0, 0, 212, 92, 0, 212, 91, 0, 230, 232, 61, 0, 224, 232, 61, 0, 227, 233, 61, 0, 224, 61, 0, 227, 61, 0, 118, 220, 0, 301, 0, 307, 0, 48, 0, 222, 48, 0, 228, 328, 0, 298, 328, 0, 230, 328, 0, 228, 0, 298, 0, 228, 0, 225, 0, 227, 230, 0, 230, 226, 0, 230, 229, 226, 0, 227, 230, 226, 0, 227, 230, 229, 0, 227, 230, 229, 226, 0, 7, 0, 226, 231, 0, 226, 7, 0, 226, 245, 0, 245, 0, 298, 0, 7, 0, 227, 9, 0, 227, 7, 0, 227, 245, 0, 245, 0, 230, 0, 298, 230, 0, 230, 229, 0, 298, 230, 229, 0, 231, 0, 229, 231, 0, 259, 0, 8, 0, 304, 0, 28, 93, 186, 108, 0, 28, 93, 223, 108, 0, 30, 93, 186, 108, 0, 30, 93, 223, 108, 0, 8, 0, 9, 0, 259, 0, 240, 0, 232, 60, 236, 0, 241, 0, 233, 60, 236, 0, 242, 0, 234, 60, 236, 0, 0, 119, 93, 217, 108, 0, 0, 221, 235, 244, 65, 237, 252, 0, 221, 235, 244, 0, 0, 244, 65, 239, 252, 0, 244, 0, 221, 235, 238, 0, 307, 235, 238, 0, 0, 307, 235, 243, 238, 0, 149, 235, 244, 0, 0, 245, 0, 246, 0, 245, 246, 0, 31, 93, 93, 247, 108, 108, 0, 248, 0, 247, 60, 248, 0, 0, 249, 0, 249, 93, 3, 108, 0, 249, 93, 3, 60, 196, 108, 0, 249, 93, 196, 108, 0, 163, 0, 7, 0, 8, 0, 9, 0, 163, 0, 250, 60, 163, 0, 0, 65, 252, 0, 202, 0, 59, 109, 0, 59, 253, 109, 0, 59, 253, 60, 109, 0, 1, 0, 252, 0, 253, 60, 252, 0, 94, 202, 111, 252, 0, 163, 63, 252, 0, 253, 60, 163, 63, 252, 0, 102, 0, 254, 146, 145, 335, 0, 254, 146, 359, 0, 254, 146, 1, 0, 0, 256, 255, 147, 0, 101, 202, 107, 0, 101, 1, 107, 0, 0, 258, 257, 0, 258, 1, 0, 0, 14, 163, 59, 260, 293, 109, 0, 0, 14, 59, 261, 293, 109, 0, 14, 163, 0, 14, 322, 0, 46, 317, 0, 0, 0, 0, 274, 59, 262, 280, 109, 244, 263, 258, 264, 256, 0, 274, 0, 0, 60, 0, 0, 60, 0, 37, 0, 267, 7, 0, 267, 8, 0, 267, 9, 0, 267, 37, 0, 267, 245, 0, 267, 163, 0, 267, 165, 0, 268, 59, 0, 268, 63, 0, 267, 315, 163, 0, 267, 324, 315, 163, 0, 267, 324, 163, 0, 267, 178, 0, 267, 315, 178, 0, 268, 0, 0, 269, 272, 275, 0, 270, 275, 0, 267, 59, 0, 273, 0, 271, 0, 0, 63, 389, 0, 63, 389, 276, 0, 277, 0, 276, 60, 389, 277, 0, 278, 0, 279, 389, 278, 0, 317, 0, 303, 0, 38, 389, 0, 7, 389, 0, 279, 38, 389, 0, 279, 7, 389, 0, 0, 282, 0, 280, 281, 282, 0, 280, 281, 0, 38, 63, 0, 283, 0, 282, 283, 0, 284, 61, 0, 284, 109, 0, 156, 63, 0, 156, 95, 0, 156, 25, 0, 156, 59, 0, 61, 0, 118, 283, 0, 134, 283, 0, 134, 224, 61, 0, 224, 285, 0, 227, 286, 0, 307, 235, 244, 251, 0, 149, 235, 244, 251, 0, 63, 202, 0, 1, 0, 227, 155, 235, 244, 251, 0, 155, 235, 244, 251, 0, 127, 0, 0, 287, 0, 285, 60, 288, 0, 0, 290, 0, 286, 60, 292, 0, 289, 0, 290, 0, 291, 0, 292, 0, 301, 235, 244, 251, 0, 4, 63, 202, 244, 0, 307, 235, 244, 251, 0, 149, 235, 244, 251, 0, 3, 63, 202, 244, 0, 63, 202, 244, 0, 301, 235, 244, 251, 0, 4, 63, 202, 244, 0, 307, 235, 244, 251, 0, 3, 63, 202, 244, 0, 63, 202, 244, 0, 294, 266, 0, 266, 0, 295, 0, 294, 60, 295, 0, 163, 0, 163, 65, 202, 0, 369, 325, 0, 369, 0, 93, 223, 108, 94, 186, 111, 0, 0, 297, 9, 0, 9, 0, 298, 9, 0, 93, 196, 108, 0, 93, 379, 108, 0, 48, 0, 93, 1, 108, 0, 301, 0, 245, 301, 0, 81, 298, 300, 0, 71, 298, 300, 0, 81, 300, 0, 71, 300, 0, 323, 297, 300, 0, 302, 0, 302, 299, 297, 391, 0, 302, 94, 186, 111, 0, 302, 94, 111, 0, 93, 300, 108, 0, 315, 314, 0, 314, 0, 314, 0, 324, 314, 0, 303, 0, 305, 0, 324, 305, 0, 315, 314, 0, 307, 0, 245, 307, 0, 81, 298, 306, 0, 71, 298, 306, 0, 81, 306, 0, 71, 306, 0, 323, 297, 306, 0, 211, 0, 81, 298, 306, 0, 71, 298, 306, 0, 81, 308, 0, 71, 308, 0, 323, 297, 306, 0, 309, 0, 211, 299, 297, 391, 0, 93, 308, 108, 0, 211, 94, 186, 111, 0, 211, 94, 111, 0, 311, 0, 315, 210, 0, 315, 207, 0, 315, 206, 0, 315, 203, 0, 315, 206, 0, 311, 0, 324, 311, 0, 230, 93, 196, 108, 0, 230, 93, 208, 108, 0, 230, 222, 0, 4, 0, 5, 0, 177, 0, 316, 0, 315, 316, 0, 315, 49, 321, 55, 0, 4, 55, 0, 5, 55, 0, 58, 55, 0, 177, 55, 0, 318, 0, 324, 318, 0, 319, 163, 0, 319, 177, 0, 319, 321, 0, 319, 49, 321, 0, 320, 0, 319, 320, 0, 319, 321, 55, 0, 319, 49, 321, 55, 0, 4, 55, 0, 5, 55, 0, 177, 55, 0, 57, 55, 0, 3, 55, 0, 58, 55, 0, 163, 75, 182, 181, 0, 324, 314, 0, 305, 0, 324, 305, 0, 315, 81, 0, 324, 315, 81, 0, 55, 0, 81, 297, 325, 0, 81, 297, 0, 71, 297, 325, 0, 71, 297, 0, 323, 297, 0, 323, 297, 325, 0, 326, 0, 94, 186, 111, 0, 326, 94, 186, 111, 0, 328, 0, 245, 328, 0, 81, 298, 327, 0, 81, 327, 0, 81, 298, 0, 81, 0, 71, 298, 327, 0, 71, 327, 0, 71, 298, 0, 71, 0, 323, 297, 0, 323, 297, 327, 0, 329, 0, 93, 327, 108, 0, 329, 93, 379, 108, 297, 391, 0, 329, 48, 297, 391, 0, 329, 94, 186, 111, 0, 329, 94, 111, 0, 93, 380, 108, 297, 391, 0, 200, 297, 391, 0, 222, 297, 391, 0, 94, 186, 111, 0, 94, 111, 0, 343, 0, 331, 0, 330, 343, 0, 330, 331, 0, 1, 61, 0, 0, 333, 0, 334, 0, 333, 334, 0, 33, 250, 61, 0, 336, 0, 1, 336, 0, 0, 59, 337, 192, 0, 0, 0, 15, 339, 188, 340, 341, 0, 336, 0, 0, 342, 344, 0, 336, 0, 344, 0, 220, 0, 186, 61, 0, 0, 338, 16, 345, 341, 0, 338, 0, 0, 0, 17, 346, 188, 347, 193, 0, 0, 0, 18, 348, 341, 17, 349, 187, 61, 0, 0, 0, 0, 0, 19, 350, 93, 372, 351, 189, 61, 352, 374, 108, 353, 193, 0, 0, 0, 20, 354, 93, 190, 108, 355, 341, 0, 0, 21, 202, 63, 356, 343, 0, 0, 21, 202, 12, 202, 63, 357, 343, 0, 0, 22, 63, 358, 343, 0, 23, 61, 0, 24, 61, 0, 25, 61, 0, 25, 186, 61, 0, 119, 373, 93, 217, 108, 61, 0, 119, 373, 93, 217, 63, 375, 108, 61, 0, 119, 373, 93, 217, 63, 375, 63, 375, 108, 61, 0, 119, 373, 93, 217, 55, 375, 108, 61, 0, 119, 373, 93, 217, 63, 375, 63, 375, 63, 378, 108, 61, 0, 119, 373, 93, 217, 55, 375, 63, 378, 108, 61, 0, 119, 373, 93, 217, 63, 375, 55, 378, 108, 61, 0, 26, 81, 186, 61, 0, 26, 163, 61, 0, 371, 343, 0, 371, 109, 0, 61, 0, 362, 0, 129, 0, 128, 0, 125, 0, 0, 0, 95, 360, 145, 336, 361, 365, 0, 0, 0, 95, 363, 336, 364, 365, 0, 366, 0, 365, 366, 0, 0, 0, 96, 367, 370, 368, 336, 0, 228, 0, 298, 0, 93, 12, 108, 0, 93, 388, 108, 0, 3, 63, 0, 57, 63, 0, 4, 63, 0, 5, 63, 0, 374, 61, 0, 220, 0, 59, 192, 0, 0, 9, 0, 0, 186, 0, 1, 0, 0, 376, 0, 377, 0, 376, 60, 377, 0, 11, 93, 186, 108, 0, 11, 0, 378, 60, 11, 0, 0, 380, 0, 223, 0, 384, 0, 385, 12, 0, 384, 12, 0, 223, 12, 0, 12, 0, 384, 63, 0, 223, 63, 0, 0, 65, 382, 383, 0, 100, 0, 252, 0, 386, 0, 388, 381, 0, 385, 387, 0, 385, 390, 0, 385, 390, 65, 252, 0, 384, 60, 0, 223, 60, 0, 225, 221, 0, 228, 221, 0, 230, 221, 0, 225, 328, 0, 225, 0, 227, 307, 0, 388, 0, 388, 381, 0, 386, 0, 223, 0, 0, 0, 307, 0, 0, 62, 93, 393, 108, 0, 62, 48, 0, 223, 0, 392, 0, 393, 60, 392, 0, 0, 81, 297, 394, 0, 71, 297, 394, 0, 323, 297, 394, 0, 42, 0, 395, 81, 0, 395, 82, 0, 395, 83, 0, 395, 79, 0, 395, 80, 0, 395, 71, 0, 395, 69, 0, 395, 70, 0, 395, 89, 0, 395, 60, 0, 395, 74, 0, 395, 75, 0, 395, 76, 0, 395, 73, 0, 395, 64, 0, 395, 65, 0, 395, 77, 0, 395, 78, 0, 395, 87, 0, 395, 88, 0, 395, 68, 0, 395, 67, 0, 395, 110, 0, 395, 66, 63, 0, 395, 72, 0, 395, 91, 0, 395, 84, 0, 395, 48, 0, 395, 94, 111, 0, 395, 40, 0, 395, 39, 0, 395, 40, 94, 111, 0, 395, 39, 94, 111, 0, 395, 369, 394, 0, 395, 1, 0 }; #endif #if YYDEBUG != 0 static const short yyrline[] = { 0, 431, 433, 441, 444, 445, 449, 451, 454, 459, 463, 469, 473, 477, 481, 484, 486, 488, 491, 493, 496, 499, 501, 503, 505, 507, 508, 510, 511, 515, 518, 527, 530, 532, 536, 539, 541, 545, 548, 560, 567, 575, 577, 578, 580, 584, 587, 593, 596, 598, 603, 606, 610, 613, 616, 619, 623, 628, 638, 640, 642, 644, 646, 659, 662, 666, 669, 671, 673, 676, 679, 683, 685, 687, 689, 694, 696, 698, 700, 702, 703, 710, 711, 712, 715, 718, 722, 724, 725, 728, 730, 733, 736, 738, 742, 745, 747, 751, 753, 755, 759, 761, 763, 767, 769, 771, 777, 782, 785, 788, 791, 796, 799, 801, 803, 809, 818, 821, 823, 825, 828, 830, 835, 844, 847, 849, 853, 862, 878, 881, 883, 884, 887, 894, 900, 902, 904, 906, 908, 911, 914, 917, 919, 920, 921, 922, 925, 927, 928, 931, 933, 934, 937, 942, 942, 946, 946, 949, 949, 952, 952, 956, 956, 961, 961, 964, 964, 967, 969, 972, 979, 983, 986, 989, 991, 995, 1001, 1010, 1012, 1020, 1023, 1026, 1029, 1033, 1036, 1038, 1041, 1044, 1046, 1048, 1050, 1054, 1057, 1060, 1065, 1069, 1074, 1078, 1081, 1082, 1086, 1103, 1109, 1112, 1114, 1115, 1116, 1119, 1123, 1124, 1128, 1132, 1135, 1137, 1141, 1144, 1147, 1151, 1154, 1156, 1158, 1160, 1163, 1167, 1169, 1172, 1174, 1180, 1183, 1186, 1189, 1192, 1197, 1200, 1203, 1207, 1209, 1213, 1217, 1219, 1221, 1226, 1229, 1234, 1237, 1239, 1247, 1260, 1265, 1271, 1273, 1275, 1288, 1291, 1293, 1295, 1297, 1299, 1301, 1303, 1305, 1307, 1309, 1311, 1313, 1315, 1317, 1319, 1321, 1323, 1325, 1327, 1329, 1331, 1335, 1337, 1339, 1356, 1359, 1361, 1362, 1363, 1364, 1365, 1368, 1380, 1383, 1387, 1390, 1392, 1397, 1399, 1400, 1403, 1405, 1413, 1415, 1417, 1419, 1423, 1426, 1430, 1434, 1435, 1436, 1440, 1448, 1449, 1450, 1460, 1462, 1465, 1467, 1478, 1483, 1485, 1487, 1489, 1491, 1493, 1495, 1498, 1500, 1511, 1512, 1516, 1520, 1524, 1528, 1530, 1534, 1536, 1538, 1546, 1548, 1550, 1552, 1556, 1558, 1560, 1562, 1567, 1569, 1571, 1573, 1576, 1578, 1580, 1624, 1627, 1631, 1634, 1638, 1641, 1646, 1648, 1652, 1661, 1664, 1671, 1677, 1681, 1683, 1688, 1690, 1697, 1699, 1703, 1707, 1713, 1717, 1720, 1724, 1727, 1737, 1740, 1744, 1748, 1751, 1754, 1757, 1760, 1766, 1772, 1774, 1779, 1781, 1799, 1802, 1807, 1812, 1820, 1822, 1835, 1839, 1842, 1845, 1850, 1853, 1861, 1864, 1866, 1868, 1871, 1874, 1889, 1908, 1911, 1913, 1916, 1918, 1922, 1924, 1928, 1930, 1934, 1937, 1941, 1946, 1947, 1960, 1967, 1968, 1974, 1979, 1984, 1990, 1991, 1998, 2001, 2005, 2008, 2012, 2017, 2020, 2024, 2027, 2029, 2031, 2033, 2040, 2042, 2043, 2044, 2048, 2051, 2055, 2058, 2064, 2066, 2069, 2072, 2075, 2081, 2084, 2087, 2089, 2091, 2095, 2102, 2108, 2113, 2119, 2121, 2126, 2129, 2132, 2134, 2136, 2140, 2144, 2149, 2152, 2157, 2160, 2163, 2169, 2171, 2183, 2187, 2192, 2218, 2220, 2223, 2225, 2230, 2232, 2234, 2236, 2238, 2240, 2244, 2252, 2255, 2257, 2261, 2268, 2274, 2280, 2286, 2296, 2302, 2306, 2313, 2341, 2351, 2357, 2360, 2363, 2365, 2369, 2371, 2375, 2378, 2382, 2390, 2393, 2395, 2399, 2410, 2424, 2425, 2426, 2427, 2430, 2439, 2444, 2450, 2452, 2457, 2459, 2461, 2463, 2465, 2467, 2470, 2480, 2487, 2512, 2518, 2521, 2524, 2526, 2537, 2542, 2545, 2550, 2553, 2560, 2570, 2573, 2580, 2590, 2592, 2595, 2597, 2600, 2604, 2609, 2613, 2616, 2619, 2624, 2627, 2631, 2634, 2636, 2640, 2642, 2649, 2651, 2654, 2657, 2662, 2666, 2671, 2681, 2684, 2688, 2692, 2701, 2704, 2706, 2708, 2714, 2716, 2725, 2728, 2730, 2732, 2734, 2738, 2741, 2744, 2746, 2748, 2750, 2754, 2757, 2768, 2778, 2780, 2781, 2785, 2793, 2795, 2803, 2806, 2808, 2810, 2812, 2816, 2819, 2822, 2824, 2826, 2828, 2832, 2835, 2838, 2840, 2842, 2844, 2846, 2853, 2857, 2862, 2866, 2871, 2873, 2877, 2880, 2882, 2886, 2888, 2889, 2892, 2894, 2896, 2903, 2914, 2920, 2926, 2940, 2942, 2946, 2960, 2962, 2964, 2968, 2974, 2987, 2990, 2995, 3008, 3014, 3016, 3017, 3018, 3026, 3031, 3040, 3041, 3045, 3048, 3054, 3060, 3063, 3065, 3067, 3069, 3073, 3077, 3081, 3084, 3088, 3090, 3099, 3102, 3104, 3106, 3108, 3110, 3112, 3114, 3116, 3120, 3124, 3128, 3132, 3134, 3136, 3138, 3140, 3142, 3144, 3146, 3148, 3156, 3158, 3159, 3160, 3163, 3169, 3171, 3176, 3178, 3181, 3194, 3197, 3200, 3204, 3207, 3214, 3216, 3219, 3221, 3223, 3226, 3229, 3232, 3235, 3237, 3240, 3244, 3246, 3252, 3254, 3255, 3257, 3262, 3264, 3266, 3268, 3270, 3273, 3274, 3276, 3279, 3280, 3283, 3283, 3286, 3286, 3289, 3289, 3291, 3293, 3295, 3297, 3303, 3309, 3311, 3314, 3317, 3320, 3323, 3329, 3331, 3332, 3335, 3337, 3338, 3339, 3341, 3344, 3347, 3350, 3356, 3360, 3362, 3365, 3367, 3370, 3374, 3376, 3379, 3381, 3384, 3401, 3409, 3412, 3414, 3416, 3420, 3423, 3424, 3432, 3435, 3438, 3441, 3442, 3448, 3451, 3454, 3456, 3460, 3465, 3468, 3478, 3483, 3484, 3491, 3494, 3497, 3499, 3502, 3504, 3514, 3528, 3532, 3535, 3537, 3541, 3545, 3548, 3551, 3553, 3557, 3559, 3566, 3573, 3576, 3580, 3584, 3588, 3594, 3598, 3603, 3605, 3608, 3613, 3619, 3630, 3633, 3635, 3639, 3647, 3650, 3654, 3657, 3659, 3661, 3667, 3672, 3675, 3677, 3679, 3681, 3683, 3685, 3687, 3689, 3691, 3693, 3695, 3697, 3699, 3701, 3703, 3705, 3707, 3709, 3711, 3713, 3715, 3717, 3719, 3721, 3723, 3725, 3727, 3729, 3731, 3733, 3735, 3737, 3740, 3742 }; #endif #if YYDEBUG != 0 || defined (YYERROR_VERBOSE) static const char * const yytname[] = { "$","error","$undefined.","IDENTIFIER", "TYPENAME","SELFNAME","PFUNCNAME","SCSPEC","TYPESPEC","CV_QUALIFIER","CONSTANT", "STRING","ELLIPSIS","SIZEOF","ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH", "CASE","DEFAULT","BREAK","CONTINUE","RETURN_KEYWORD","GOTO","ASM_KEYWORD","TYPEOF", "ALIGNOF","SIGOF","ATTRIBUTE","EXTENSION","LABEL","REALPART","IMAGPART","VA_ARG", "AGGR","VISSPEC","DELETE","NEW","THIS","OPERATOR","CXX_TRUE","CXX_FALSE","NAMESPACE", "TYPENAME_KEYWORD","USING","LEFT_RIGHT","TEMPLATE","TYPEID","DYNAMIC_CAST","STATIC_CAST", "REINTERPRET_CAST","CONST_CAST","SCOPE","EMPTY","PTYPENAME","NSNAME","'{'","','", "';'","THROW","':'","ASSIGN","'='","'?'","OROR","ANDAND","'|'","'^'","'&'","MIN_MAX", "EQCOMPARE","ARITHCOMPARE","'<'","'>'","LSHIFT","RSHIFT","'+'","'-'","'*'","'/'", "'%'","POINTSAT_STAR","DOT_STAR","UNARY","PLUSPLUS","MINUSMINUS","'~'","HYPERUNARY", "POINTSAT","'.'","'('","'['","TRY","CATCH","EXTERN_LANG_STRING","ALL","PRE_PARSED_CLASS_DECL", "DEFARG","DEFARG_MARKER","PRE_PARSED_FUNCTION_DECL","TYPENAME_DEFN","IDENTIFIER_DEFN", "PTYPENAME_DEFN","END_OF_LINE","END_OF_SAVED_INPUT","')'","'}'","'!'","']'", "program","extdefs","@1","extdefs_opt",".hush_warning",".warning_ok","extension", "asm_keyword","lang_extdef","@2","extdef","@3","@4","namespace_alias","@5","using_decl", "namespace_using_decl","using_directive","@6","namespace_qualifier","any_id", "extern_lang_string","template_header","@7","template_parm_list","maybe_identifier", "template_type_parm","template_template_parm","template_parm","template_def", "template_extdef","template_datadef","datadef","ctor_initializer_opt","maybe_return_init", "eat_saved_input","fndef","constructor_declarator","@8","@9","@10","@11","fn.def1", "component_constructor_declarator","fn.def2","return_id","return_init","base_init", ".set_base_init","member_init_list","member_init","identifier","notype_identifier", "identifier_defn","explicit_instantiation","@12","@13","@14","@15","@16","@17", "@18","@19","begin_explicit_instantiation","end_explicit_instantiation","template_type", "apparent_template_type","self_template_type",".finish_template_type","template_close_bracket", "template_arg_list_opt","template_arg_list","template_arg","unop","expr","paren_expr_or_null", "paren_cond_or_null","xcond","condition","@20","compstmtend","already_scoped_stmt", "@21","nontrivial_exprlist","nonnull_exprlist","unary_expr","new_placement", "new_initializer","regcast_or_absdcl","cast_expr","expr_no_commas","notype_unqualified_id", "do_id","template_id","object_template_id","unqualified_id","expr_or_declarator_intern", "expr_or_declarator","notype_template_declarator","direct_notype_declarator", "primary","@22","new","delete","boolean.literal","string","nodecls","object", "decl","declarator","fcast_or_absdcl","type_id","typed_declspecs","typed_declspecs1", "reserved_declspecs","declmods","typed_typespecs","reserved_typespecquals","typespec", "typespecqual_reserved","initdecls","notype_initdecls","nomods_initdecls","maybeasm", "initdcl","@23","initdcl0_innards","@24","initdcl0","notype_initdcl0","nomods_initdcl0", "@25","maybe_attribute","attributes","attribute","attribute_list","attrib","any_word", "identifiers_or_typenames","maybe_init","init","initlist","fn.defpen","pending_inline", "pending_inlines","defarg_again","pending_defargs","structsp","@26","@27","@28", "@29","@30","maybecomma","maybecomma_warn","aggr","named_class_head_sans_basetype", "named_class_head_sans_basetype_defn","named_complex_class_head_sans_basetype", "named_class_head","@31","unnamed_class_head","class_head","maybe_base_class_list", "base_class_list","base_class","base_class.1","base_class_access_list","opt.component_decl_list", "access_specifier","component_decl_list","component_decl","component_decl_1", "components","notype_components","component_declarator0","component_declarator", "after_type_component_declarator0","notype_component_declarator0","after_type_component_declarator", "notype_component_declarator","enumlist_opt","enumlist","enumerator","new_type_id", "cv_qualifiers","nonempty_cv_qualifiers","maybe_parmlist","after_type_declarator_intern", "after_type_declarator","direct_after_type_declarator","nonnested_type","complete_type_name", "nested_type","notype_declarator_intern","notype_declarator","complex_notype_declarator", "complex_direct_notype_declarator","qualified_id","notype_qualified_id","overqualified_id", "functional_cast","type_name","nested_name_specifier","nested_name_specifier_1", "typename_sub","typename_sub0","typename_sub1","typename_sub2","explicit_template_type", "complex_type_name","ptr_to_mem","global_scope","new_declarator","direct_new_declarator", "absdcl_intern","absdcl","direct_abstract_declarator","stmts","errstmt","maybe_label_decls", "label_decls","label_decl","compstmt_or_error","compstmt","@32","simple_if", "@33","@34","implicitly_scoped_stmt","@35","stmt","simple_stmt","@36","@37", "@38","@39","@40","@41","@42","@43","@44","@45","@46","@47","@48","@49","function_try_block", "@50","@51","try_block","@52","@53","handler_seq","handler","@54","@55","type_specifier_seq", "handler_args","label_colon","for.init.statement","maybe_cv_qualifier","xexpr", "asm_operands","nonnull_asm_operands","asm_operand","asm_clobbers","parmlist", "complex_parmlist","defarg","@56","defarg1","parms","parms_comma","named_parm", "full_parm","parm","see_typename","bad_parm","exception_specification_opt","ansi_raise_identifier", "ansi_raise_identifiers","conversion_declarator","operator","operator_name", NULL }; #endif static const short yyr1[] = { 0, 112, 112, 114, 113, 113, 115, 115, 116, 117, 118, 119, 121, 120, 122, 122, 122, 122, 122, 122, 122, 123, 122, 124, 122, 122, 122, 122, 122, 126, 125, 127, 127, 127, 128, 128, 128, 130, 129, 131, 131, 132, 132, 132, 132, 133, 133, 135, 134, 134, 136, 136, 137, 137, 138, 138, 139, 140, 140, 140, 140, 140, 140, 141, 141, 142, 142, 142, 142, 142, 142, 143, 143, 143, 143, 144, 144, 144, 144, 144, 144, 144, 144, 144, 145, 145, 146, 146, 146, 147, 147, 148, 148, 148, 150, 149, 149, 151, 149, 149, 152, 149, 149, 153, 149, 149, 154, 154, 154, 154, 154, 155, 155, 155, 155, 156, 156, 156, 156, 156, 156, 156, 157, 158, 158, 158, 159, 160, 161, 161, 161, 161, 162, 162, 162, 162, 162, 162, 162, 162, 162, 163, 163, 163, 163, 163, 164, 164, 164, 165, 165, 165, 167, 166, 168, 166, 169, 166, 170, 166, 171, 166, 172, 166, 173, 166, 174, 166, 175, 176, 177, 177, 177, 178, 178, 179, 180, 181, 181, 182, 182, 183, 183, 184, 184, 184, 185, 185, 185, 185, 185, 186, 186, 187, 187, 188, 188, 189, 189, 189, 191, 190, 190, 192, 192, 192, 192, 194, 193, 193, 195, 195, 195, 195, 196, 196, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 198, 198, 199, 199, 199, 199, 200, 200, 201, 201, 201, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 203, 203, 203, 203, 203, 203, 203, 204, 205, 205, 206, 206, 206, 207, 207, 207, 208, 208, 209, 209, 209, 209, 210, 210, 211, 211, 211, 211, 212, 212, 212, 212, 212, 212, 212, 213, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 212, 214, 214, 215, 215, 216, 216, 217, 217, 218, 219, 219, 220, 220, 220, 220, 220, 220, 221, 221, 222, 222, 223, 223, 223, 223, 223, 224, 224, 225, 225, 225, 225, 225, 225, 226, 226, 226, 226, 226, 227, 227, 227, 227, 227, 227, 228, 228, 228, 228, 229, 229, 230, 230, 230, 230, 230, 230, 230, 231, 231, 231, 232, 232, 233, 233, 234, 234, 235, 235, 237, 236, 236, 239, 238, 238, 240, 241, 243, 242, 242, 244, 244, 245, 245, 246, 247, 247, 248, 248, 248, 248, 248, 249, 249, 249, 249, 250, 250, 251, 251, 252, 252, 252, 252, 252, 253, 253, 253, 253, 253, 254, 255, 255, 255, 256, 256, 257, 257, 258, 258, 258, 260, 259, 261, 259, 259, 259, 259, 262, 263, 264, 259, 259, 265, 265, 266, 266, 267, 267, 267, 267, 267, 267, 268, 269, 269, 269, 270, 270, 270, 270, 270, 271, 272, 271, 271, 273, 274, 274, 275, 275, 275, 276, 276, 277, 277, 278, 278, 279, 279, 279, 279, 280, 280, 280, 280, 281, 282, 282, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 284, 284, 284, 284, 284, 284, 284, 284, 284, 285, 285, 285, 286, 286, 286, 287, 287, 288, 288, 289, 289, 290, 290, 290, 290, 291, 291, 292, 292, 292, 293, 293, 294, 294, 295, 295, 296, 296, 296, 297, 297, 298, 298, 299, 299, 299, 299, 300, 300, 301, 301, 301, 301, 301, 301, 302, 302, 302, 302, 302, 302, 303, 303, 304, 304, 304, 305, 306, 306, 307, 307, 307, 307, 307, 307, 308, 308, 308, 308, 308, 308, 309, 309, 309, 309, 309, 309, 310, 310, 311, 311, 312, 312, 313, 313, 313, 314, 314, 314, 315, 315, 315, 316, 316, 316, 316, 317, 317, 318, 318, 318, 318, 319, 319, 319, 319, 320, 320, 320, 320, 320, 320, 321, 322, 322, 322, 323, 323, 324, 325, 325, 325, 325, 325, 325, 325, 326, 326, 327, 327, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 330, 330, 330, 330, 331, 332, 332, 333, 333, 334, 335, 335, 337, 336, 339, 340, 338, 341, 342, 341, 343, 343, 344, 344, 345, 344, 344, 346, 347, 344, 348, 349, 344, 350, 351, 352, 353, 344, 354, 355, 344, 356, 344, 357, 344, 358, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 360, 361, 359, 363, 364, 362, 365, 365, 367, 368, 366, 369, 369, 370, 370, 371, 371, 371, 371, 372, 372, 372, 373, 373, 374, 374, 374, 375, 375, 376, 376, 377, 378, 378, 379, 379, 379, 380, 380, 380, 380, 380, 380, 380, 382, 381, 383, 383, 384, 384, 384, 384, 384, 385, 385, 386, 386, 386, 386, 386, 386, 387, 387, 388, 388, 389, 390, 390, 391, 391, 391, 392, 393, 393, 394, 394, 394, 394, 395, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396 }; static const short yyr2[] = { 0, 0, 1, 0, 2, 2, 1, 0, 0, 0, 1, 1, 0, 2, 2, 1, 1, 5, 4, 5, 4, 0, 6, 0, 5, 1, 2, 1, 2, 0, 6, 2, 3, 3, 3, 3, 4, 0, 5, 2, 3, 1, 1, 2, 2, 1, 2, 0, 5, 3, 1, 3, 1, 0, 2, 2, 3, 1, 3, 1, 3, 1, 3, 2, 2, 2, 1, 1, 5, 4, 2, 2, 3, 3, 2, 2, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 0, 1, 2, 0, 1, 4, 3, 3, 0, 8, 5, 0, 9, 6, 0, 8, 5, 0, 9, 6, 2, 2, 1, 2, 1, 6, 4, 6, 4, 2, 1, 2, 2, 1, 2, 1, 2, 2, 4, 2, 3, 0, 0, 1, 3, 2, 3, 1, 4, 2, 4, 2, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 6, 0, 6, 0, 5, 0, 5, 0, 7, 0, 7, 0, 6, 0, 6, 0, 0, 5, 5, 1, 1, 5, 5, 0, 1, 1, 0, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 0, 1, 1, 0, 7, 1, 1, 3, 4, 3, 0, 3, 1, 3, 3, 3, 3, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 4, 2, 4, 2, 3, 3, 4, 4, 5, 5, 6, 2, 4, 5, 2, 2, 6, 3, 3, 3, 1, 3, 2, 3, 4, 1, 2, 5, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 3, 1, 2, 3, 3, 1, 1, 1, 1, 1, 0, 5, 5, 5, 5, 5, 1, 1, 1, 1, 2, 1, 2, 2, 3, 4, 4, 1, 1, 1, 3, 1, 1, 1, 1, 3, 3, 3, 0, 4, 4, 2, 4, 2, 4, 2, 2, 1, 4, 1, 7, 7, 7, 7, 4, 4, 2, 2, 2, 1, 4, 2, 2, 5, 3, 2, 2, 5, 3, 5, 3, 4, 6, 2, 1, 2, 1, 2, 1, 1, 1, 2, 0, 2, 2, 3, 3, 3, 2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 3, 3, 3, 4, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 1, 1, 2, 2, 3, 1, 2, 1, 1, 1, 4, 4, 4, 4, 1, 1, 1, 1, 3, 1, 3, 1, 3, 0, 4, 0, 6, 3, 0, 4, 1, 3, 3, 0, 4, 3, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 6, 4, 1, 1, 1, 1, 1, 3, 0, 2, 1, 2, 3, 4, 1, 1, 3, 4, 3, 5, 1, 4, 3, 3, 0, 3, 3, 3, 0, 2, 2, 0, 6, 0, 5, 2, 2, 2, 0, 0, 0, 10, 1, 0, 1, 0, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 4, 3, 2, 3, 1, 0, 3, 2, 2, 1, 1, 0, 2, 3, 1, 4, 1, 3, 1, 1, 2, 2, 3, 3, 0, 1, 3, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 3, 2, 2, 4, 4, 2, 1, 5, 4, 1, 0, 1, 3, 0, 1, 3, 1, 1, 1, 1, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 3, 2, 1, 1, 3, 1, 3, 2, 1, 6, 0, 2, 1, 2, 3, 3, 1, 3, 1, 2, 3, 3, 2, 2, 3, 1, 4, 4, 3, 3, 2, 1, 1, 2, 1, 1, 2, 2, 1, 2, 3, 3, 2, 2, 3, 1, 3, 3, 2, 2, 3, 1, 4, 3, 4, 3, 1, 2, 2, 2, 2, 2, 1, 2, 4, 4, 2, 1, 1, 1, 1, 2, 4, 2, 2, 2, 2, 1, 2, 2, 2, 2, 3, 1, 2, 3, 4, 2, 2, 2, 2, 2, 2, 4, 2, 1, 2, 2, 3, 1, 3, 2, 3, 2, 2, 3, 1, 3, 4, 1, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 3, 1, 3, 6, 4, 4, 3, 5, 3, 3, 3, 2, 1, 1, 2, 2, 2, 0, 1, 1, 2, 3, 1, 2, 0, 3, 0, 0, 5, 1, 0, 2, 1, 1, 1, 2, 0, 4, 1, 0, 0, 5, 0, 0, 7, 0, 0, 0, 0, 12, 0, 0, 7, 0, 5, 0, 7, 0, 4, 2, 2, 2, 3, 6, 8, 10, 8, 12, 10, 10, 4, 3, 2, 2, 1, 1, 1, 1, 1, 0, 0, 6, 0, 0, 5, 1, 2, 0, 0, 5, 1, 1, 3, 3, 2, 2, 2, 2, 2, 1, 2, 0, 1, 0, 1, 1, 0, 1, 1, 3, 4, 1, 3, 0, 1, 1, 1, 2, 2, 2, 1, 2, 2, 0, 3, 1, 1, 1, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 1, 2, 1, 2, 1, 1, 0, 0, 1, 0, 4, 2, 1, 1, 3, 0, 3, 3, 3, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 3, 2, 2, 4, 4, 3, 2 }; static const short yydefact[] = { 3, 12, 12, 5, 0, 4, 0, 281, 633, 634, 0, 388, 400, 578, 0, 11, 0, 0, 0, 10, 485, 843, 0, 0, 0, 168, 665, 282, 283, 83, 0, 0, 830, 0, 45, 0, 0, 13, 25, 0, 27, 8, 0, 16, 15, 89, 110, 86, 0, 635, 172, 302, 279, 303, 611, 0, 375, 0, 374, 393, 0, 413, 392, 430, 399, 0, 500, 501, 507, 506, 505, 480, 387, 600, 401, 601, 108, 301, 622, 598, 0, 636, 576, 0, 0, 280, 81, 82, 179, 639, 179, 640, 179, 284, 168, 141, 142, 143, 144, 145, 471, 473, 0, 661, 0, 474, 0, 0, 0, 0, 142, 143, 144, 145, 23, 0, 0, 0, 0, 0, 0, 0, 475, 643, 0, 649, 0, 0, 0, 37, 0, 0, 31, 0, 0, 47, 0, 179, 641, 0, 0, 0, 609, 604, 0, 0, 0, 608, 0, 0, 0, 0, 302, 0, 293, 0, 0, 0, 301, 576, 28, 0, 26, 3, 46, 0, 64, 388, 0, 0, 8, 67, 63, 66, 89, 0, 0, 0, 399, 90, 14, 0, 428, 0, 0, 446, 87, 79, 642, 582, 0, 0, 576, 80, 0, 0, 0, 106, 0, 409, 365, 591, 366, 597, 0, 576, 390, 389, 78, 109, 376, 0, 411, 391, 107, 382, 406, 407, 377, 395, 397, 386, 408, 0, 75, 431, 486, 487, 488, 489, 504, 150, 149, 151, 491, 492, 173, 498, 490, 0, 0, 493, 494, 507, 830, 503, 476, 579, 394, 0, 425, 634, 0, 663, 172, 626, 627, 623, 603, 637, 0, 602, 599, 0, 878, 874, 873, 871, 853, 858, 859, 0, 865, 864, 850, 851, 849, 868, 857, 854, 855, 856, 860, 861, 847, 848, 844, 845, 846, 870, 862, 863, 852, 869, 0, 866, 776, 393, 777, 839, 284, 281, 578, 306, 354, 0, 0, 0, 0, 0, 350, 348, 321, 352, 353, 0, 0, 0, 0, 0, 282, 283, 275, 0, 0, 187, 186, 0, 188, 189, 0, 0, 190, 0, 0, 180, 181, 0, 249, 0, 252, 185, 305, 216, 0, 0, 307, 308, 0, 183, 372, 393, 373, 628, 333, 323, 0, 0, 0, 0, 179, 0, 483, 469, 0, 662, 660, 0, 191, 192, 0, 0, 0, 435, 3, 21, 29, 657, 653, 654, 656, 658, 655, 141, 142, 143, 0, 144, 145, 645, 646, 650, 647, 644, 0, 291, 292, 290, 625, 624, 33, 32, 49, 0, 158, 0, 0, 393, 156, 0, 0, 605, 607, 0, 606, 142, 143, 277, 278, 297, 0, 615, 296, 0, 614, 0, 304, 282, 283, 0, 0, 0, 295, 294, 619, 0, 0, 12, 0, 168, 9, 9, 70, 0, 65, 0, 0, 71, 74, 0, 427, 429, 122, 93, 127, 765, 0, 85, 84, 92, 125, 0, 0, 123, 88, 0, 806, 215, 0, 214, 801, 824, 0, 372, 393, 373, 0, 800, 802, 831, 813, 0, 0, 621, 0, 0, 833, 0, 0, 589, 584, 0, 588, 0, 0, 0, 0, 0, 576, 428, 0, 77, 0, 576, 596, 0, 379, 380, 0, 76, 428, 384, 383, 385, 378, 398, 415, 414, 179, 495, 499, 497, 0, 502, 508, 0, 396, 428, 576, 94, 0, 0, 0, 0, 576, 100, 577, 610, 634, 664, 172, 0, 0, 867, 872, 395, 576, 576, 0, 576, 877, 179, 0, 0, 223, 0, 225, 238, 239, 0, 0, 0, 0, 0, 0, 276, 222, 219, 218, 220, 0, 0, 0, 0, 0, 305, 0, 0, 0, 217, 177, 178, 299, 0, 221, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 0, 317, 319, 320, 358, 357, 0, 0, 0, 0, 0, 227, 574, 0, 235, 355, 347, 0, 0, 830, 336, 339, 340, 0, 0, 367, 684, 680, 0, 0, 576, 576, 576, 369, 687, 0, 632, 371, 0, 0, 370, 335, 0, 330, 349, 331, 351, 629, 0, 332, 176, 176, 0, 166, 0, 393, 164, 484, 571, 568, 0, 483, 569, 483, 0, 402, 0, 0, 403, 404, 405, 441, 442, 443, 440, 0, 433, 436, 0, 3, 0, 648, 179, 651, 0, 41, 42, 0, 53, 0, 0, 57, 61, 50, 829, 393, 53, 828, 59, 169, 154, 152, 169, 176, 300, 613, 612, 304, 0, 616, 0, 18, 20, 89, 9, 9, 73, 72, 0, 0, 356, 0, 710, 91, 708, 452, 0, 448, 447, 0, 583, 580, 805, 819, 808, 684, 680, 0, 820, 576, 823, 825, 0, 821, 0, 822, 581, 804, 818, 807, 803, 832, 815, 826, 816, 809, 814, 620, 0, 632, 0, 618, 585, 587, 586, 0, 0, 0, 0, 0, 0, 576, 595, 0, 423, 422, 410, 594, 0, 833, 590, 381, 412, 424, 428, 0, 496, 633, 634, 830, 830, 635, 509, 510, 512, 830, 515, 514, 0, 542, 634, 0, 533, 0, 0, 545, 0, 121, 116, 0, 172, 546, 549, 0, 0, 525, 0, 119, 426, 833, 799, 179, 179, 638, 179, 833, 799, 576, 97, 576, 103, 876, 875, 839, 839, 839, 0, 0, 0, 0, 0, 0, 0, 0, 393, 0, 0, 0, 311, 0, 309, 310, 0, 247, 182, 281, 633, 634, 282, 283, 0, 0, 453, 481, 0, 274, 273, 791, 790, 0, 271, 270, 268, 269, 267, 266, 265, 262, 263, 264, 260, 261, 255, 256, 257, 258, 259, 253, 254, 0, 0, 0, 0, 0, 0, 0, 229, 244, 0, 0, 228, 576, 576, 0, 576, 573, 672, 0, 0, 0, 0, 0, 338, 0, 342, 0, 344, 0, 0, 683, 682, 675, 679, 678, 829, 392, 0, 0, 697, 0, 0, 833, 368, 833, 685, 576, 799, 0, 684, 680, 0, 0, 576, 0, 392, 0, 0, 0, 0, 171, 175, 285, 169, 162, 160, 169, 0, 472, 484, 567, 0, 213, 212, 211, 210, 435, 0, 0, 24, 0, 0, 652, 0, 38, 44, 43, 55, 52, 53, 0, 48, 0, 0, 54, 491, 0, 159, 169, 169, 157, 170, 298, 17, 19, 69, 89, 416, 140, 146, 133, 147, 148, 0, 126, 129, 0, 0, 0, 0, 709, 703, 449, 0, 124, 0, 683, 679, 684, 680, 0, 392, 598, 0, 576, 685, 684, 680, 0, 305, 0, 628, 827, 0, 0, 835, 0, 0, 0, 0, 420, 593, 592, 419, 176, 517, 516, 830, 830, 830, 0, 576, 799, 541, 534, 546, 535, 428, 428, 531, 532, 529, 530, 576, 799, 281, 633, 0, 415, 117, 537, 547, 552, 553, 415, 415, 0, 0, 415, 115, 538, 550, 415, 0, 428, 0, 526, 527, 528, 428, 96, 0, 0, 0, 0, 102, 0, 833, 799, 833, 799, 841, 840, 842, 286, 322, 224, 226, 0, 328, 329, 0, 0, 0, 0, 310, 313, 0, 0, 0, 0, 248, 0, 314, 316, 318, 242, 241, 231, 0, 230, 246, 0, 0, 669, 667, 0, 670, 0, 236, 0, 0, 179, 345, 0, 0, 0, 676, 681, 677, 688, 576, 696, 694, 695, 686, 833, 0, 692, 0, 0, 630, 631, 684, 680, 0, 0, 334, 167, 169, 169, 165, 572, 570, 470, 434, 432, 281, 0, 22, 30, 659, 56, 51, 58, 62, 60, 155, 153, 68, 0, 131, 0, 135, 0, 137, 0, 139, 0, 766, 0, 203, 711, 0, 704, 705, 0, 450, 0, 683, 679, 684, 680, 0, 576, 603, 685, 0, 631, 817, 811, 812, 810, 836, 837, 0, 0, 0, 0, 0, 0, 417, 174, 0, 519, 518, 513, 833, 0, 536, 446, 446, 833, 0, 0, 0, 428, 428, 0, 428, 428, 0, 428, 0, 524, 477, 0, 446, 576, 288, 287, 289, 576, 99, 0, 105, 0, 0, 0, 0, 0, 0, 0, 456, 0, 454, 251, 272, 0, 232, 233, 243, 245, 668, 666, 673, 671, 0, 237, 0, 0, 337, 341, 343, 833, 690, 576, 691, 163, 161, 0, 437, 439, 132, 130, 0, 0, 0, 0, 444, 0, 0, 281, 633, 634, 712, 725, 728, 731, 736, 0, 0, 0, 0, 0, 0, 0, 0, 282, 760, 768, 0, 787, 764, 763, 762, 0, 720, 0, 0, 393, 0, 699, 718, 724, 698, 719, 761, 0, 706, 451, 683, 679, 0, 685, 310, 0, 834, 421, 0, 511, 112, 576, 540, 544, 114, 576, 428, 428, 561, 446, 281, 633, 0, 548, 554, 555, 415, 415, 446, 446, 0, 446, 551, 466, 539, 833, 833, 576, 576, 240, 0, 0, 0, 0, 455, 0, 0, 234, 674, 346, 287, 693, 833, 0, 134, 136, 138, 773, 767, 771, 0, 707, 702, 206, 780, 782, 783, 0, 0, 716, 0, 0, 0, 743, 745, 746, 747, 0, 0, 0, 0, 0, 0, 0, 781, 0, 364, 788, 0, 721, 362, 415, 0, 363, 0, 415, 0, 0, 0, 204, 701, 700, 722, 759, 758, 684, 680, 0, 0, 838, 418, 833, 833, 560, 557, 559, 0, 0, 428, 428, 428, 556, 558, 543, 0, 95, 101, 833, 833, 324, 325, 326, 327, 457, 575, 689, 438, 0, 772, 445, 195, 0, 713, 726, 715, 0, 0, 0, 0, 0, 739, 0, 748, 0, 757, 39, 145, 34, 145, 0, 35, 769, 0, 360, 361, 0, 0, 0, 359, 205, 716, 392, 111, 113, 428, 428, 566, 446, 446, 468, 0, 467, 462, 98, 104, 0, 774, 202, 0, 393, 0, 716, 0, 729, 717, 703, 785, 732, 0, 0, 0, 0, 744, 756, 40, 36, 0, 0, 723, 565, 563, 562, 564, 0, 0, 479, 0, 0, 0, 196, 415, 714, 207, 727, 209, 0, 786, 0, 784, 737, 741, 740, 770, 792, 792, 0, 465, 464, 458, 86, 89, 778, 779, 775, 428, 703, 193, 0, 0, 199, 0, 198, 716, 0, 0, 0, 793, 794, 0, 749, 0, 463, 0, 208, 0, 730, 733, 738, 742, 0, 0, 0, 0, 0, 792, 0, 461, 0, 460, 200, 194, 0, 0, 797, 0, 752, 795, 0, 0, 750, 459, 0, 0, 796, 0, 0, 0, 0, 0, 201, 734, 798, 754, 755, 0, 751, 0, 0, 735, 753, 0, 0, 0 }; static const short yydefgoto[] = { 1671, 437, 2, 438, 165, 723, 333, 181, 3, 4, 37, 690, 374, 1343, 691, 816, 1344, 1345, 394, 1443, 695, 41, 817, 403, 701, 987, 702, 703, 704, 43, 172, 173, 44, 456, 184, 180, 45, 46, 831, 1108, 837, 1110, 47, 819, 820, 185, 186, 457, 730, 1014, 1015, 669, 1016, 235, 48, 999, 998, 713, 710, 1180, 1179, 966, 963, 136, 997, 49, 237, 50, 960, 582, 334, 335, 336, 337, 1346, 1609, 1503, 1611, 1549, 1652, 1212, 1584, 1606, 368, 952, 338, 621, 911, 339, 340, 369, 342, 360, 52, 256, 696, 419, 154, 53, 54, 343, 577, 344, 345, 346, 347, 458, 348, 1347, 516, 642, 349, 1348, 56, 218, 472, 350, 219, 485, 220, 198, 211, 60, 499, 517, 1369, 785, 1240, 199, 212, 61, 527, 786, 62, 63, 686, 687, 688, 1320, 463, 873, 874, 1600, 1601, 1576, 1542, 1485, 64, 674, 362, 525, 1394, 1543, 1130, 670, 65, 66, 67, 68, 69, 243, 70, 71, 245, 803, 804, 805, 806, 824, 1095, 825, 826, 827, 1080, 1090, 1081, 1384, 1082, 1083, 1385, 1386, 671, 672, 673, 622, 942, 352, 192, 497, 490, 201, 73, 74, 75, 142, 143, 157, 77, 132, 353, 354, 355, 79, 356, 81, 808, 123, 124, 125, 532, 105, 82, 357, 916, 917, 937, 932, 645, 1351, 1352, 1213, 1214, 1215, 734, 1353, 1021, 1354, 1428, 1552, 1506, 1507, 1355, 1356, 1531, 1429, 1553, 1430, 1586, 1431, 1588, 1642, 1667, 1432, 1613, 1562, 1614, 1512, 459, 731, 1318, 1357, 1446, 1567, 1419, 1420, 1498, 1579, 1551, 1547, 1358, 1558, 1449, 880, 1616, 1617, 1618, 1645, 476, 938, 767, 1044, 1232, 478, 479, 480, 763, 481, 148, 765, 772, 1234, 1235, 550, 84, 85 }; static const short yypact[] = { 194, 226,-32768,-32768, 4463,-32768, 183, 116, 294, 408, 234, 306,-32768,-32768, 1882,-32768, 265, 326, 438,-32768,-32768, -32768, 696, 1525, 1435, 460,-32768, 495, 652,-32768, 3441, 3441,-32768, 2306,-32768, 4463, 492,-32768,-32768, 564,-32768, 555, 2763,-32768,-32768, 525, 1363, 616, 594, 605,-32768, -32768,-32768,-32768, 297, 2914,-32768, 4988,-32768, 2683, 51, -32768, 682,-32768,-32768, 846, 454,-32768, 657,-32768,-32768, 733, 5484,-32768,-32768,-32768, 1337,-32768,-32768,-32768, 2432, -32768,-32768, 246, 6972, 726,-32768,-32768, 11552,-32768, 11552, -32768, 11552,-32768,-32768,-32768, 294, 408, 495, 762,-32768, 764, 605,-32768, 1844,-32768, 246, 11643, 11643, 645,-32768, -32768,-32768,-32768,-32768, 683, 789, 654, 722, 803, 797, 801,-32768,-32768, 831,-32768, 1148, 294, 408,-32768, 495, 762,-32768, 783, 1726, 805, 7478, 11552,-32768, 11552, 3209, 4522,-32768,-32768, 4073, 599, 4522,-32768, 1621, 4563, 4563, 2306, 757, 765,-32768, 297, 727, 779, 799,-32768,-32768, 880,-32768, 809,-32768, 5210,-32768,-32768, 460, 3973, 817, -32768,-32768,-32768, 525, 3692, 7691, 376, 860,-32768,-32768, 837, 682, 936, 166, 200, 883,-32768,-32768,-32768, 8494, 9958,-32768,-32768, 5230, 5230, 5743, 1337, 643,-32768,-32768, 431,-32768,-32768, 4320,-32768,-32768,-32768,-32768,-32768, 2683, 910,-32768, 682, 1337,-32768,-32768,-32768, 2808, 2683,-32768, 682,-32768, 3692,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768,-32768, 873,-32768, 605,-32768, 682, 1409, 1650, -32768,-32768, 657,-32768,-32768,-32768,-32768, 1133, 246,-32768, 425, 2123,-32768, 195,-32768,-32768,-32768,-32768,-32768, 5983, -32768,-32768, 154,-32768, 870, 884,-32768,-32768,-32768,-32768, 898,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768,-32768, 856,-32768,-32768, 1133, 5484, 1334,-32768, -32768, 887,-32768,-32768, 12281, 12372, 12463, 12463, 889,-32768, -32768,-32768,-32768,-32768, 892, 922, 924, 929, 932, 689, 762, 11734, 1813, 12463,-32768,-32768, 12463,-32768,-32768, 12463, 8770,-32768, 12463, 784, 954,-32768, 12463,-32768, 11825,-32768, 12603, 260, 865, 1657, 11916,-32768, 1012, 1035,-32768, 1315, 5269, 5386,-32768, 422,-32768, 1014, 2041, 784, 784, 11552, 7478, 659,-32768, 1813,-32768,-32768, 920, 977, 12510, 944, 947, 952, 1220, 809,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768, 789, 654, 722, 1813, 803, 797, 991, 801, -32768, 1021,-32768, 271, 294, 408,-32768,-32768,-32768,-32768, -32768,-32768, 7221,-32768, 3692, 7984, 2351,-32768, 784, 523, -32768,-32768, 1074,-32768, 994, 1005,-32768,-32768,-32768, 4522, -32768,-32768, 4522,-32768, 986,-32768,-32768,-32768, 727, 727, 727,-32768,-32768,-32768, 5983, 80, 1001, 1009,-32768,-32768, -32768,-32768, 7478,-32768, 941, 984,-32768,-32768, 880,-32768, 682,-32768,-32768,-32768,-32768, 237,-32768,-32768,-32768,-32768, 9321, 11734,-32768,-32768, 1022,-32768, 977, 1029, 12510, 527, 2651, 7691, 2651, 3268, 6704, 1030,-32768, 355, 4896, 1075, 1079, 887,-32768, 1039, 439, 83, 6449, 7110,-32768,-32768, 7110,-32768, 7256, 7256, 5743, 6574, 1038,-32768, 682, 3692, -32768, 10049,-32768,-32768, 7362, 2808, 2683, 3692,-32768, 682, -32768,-32768, 682, 2808,-32768, 1129,-32768, 11552, 873,-32768, -32768, 1409,-32768, 2226, 3610, 1133, 682,-32768,-32768, 1086, 1088, 1120, 1093,-32768,-32768,-32768,-32768, 879,-32768, 443, 1069, 1071,-32768,-32768, 1133,-32768,-32768, 1077,-32768,-32768, 11552, 11734, 8770,-32768, 8770,-32768,-32768,-32768, 11734, 11643, 7493, 7493, 7493, 7493, 12581,-32768,-32768,-32768,-32768, 1070, 12008, 12008, 8770, 1090, 148, 1106, 1135, 1110,-32768,-32768, -32768,-32768, 11552,-32768, 8861, 8770,-32768, 11734, 11734, 9412, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734, 11734,-32768, 11734,-32768,-32768,-32768,-32768,-32768, 11734, 11734, 11734, 11643, 2578, 254, 1028, 10140,-32768,-32768,-32768, 1184, 2123, 1233, 453, 481, 502, 1714, 599,-32768, 2205, 2205, 5501, 10231, 1150, 1196,-32768,-32768, 461, 10820, 663,-32768, 1243, 246, -32768,-32768, 11734,-32768,-32768,-32768,-32768,-32768, 468, 726, -32768,-32768, 784,-32768, 3692, 2581,-32768,-32768, 1185,-32768, 1142, 1189,-32768, 659, 991,-32768, 9685, 9776,-32768,-32768, -32768,-32768,-32768,-32768,-32768, 273,-32768, 1159, 1147, 809, 271, 1202, 11552,-32768, 1197,-32768,-32768, 1726, 1533, 1224, 517, 1200, 1203,-32768,-32768, 5098, 846,-32768, 1205,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768, 1163, 1165,-32768, 1218,-32768,-32768, 525,-32768,-32768,-32768,-32768, 97, 485, 1230, 1135,-32768,-32768,-32768,-32768, 8676, 12581,-32768, 1175, -32768,-32768,-32768,-32768,-32768, 2063, 2063, 6139,-32768,-32768, -32768,-32768, 4320,-32768, 10912,-32768,-32768,-32768,-32768,-32768, -32768,-32768,-32768, 1079, 1222,-32768,-32768,-32768, 11188, 1196, 543,-32768,-32768,-32768,-32768, 7110, 7110, 7537, 7537, 6574, 1243,-32768,-32768, 7362,-32768, 1232,-32768,-32768, 1191, 83, -32768, 2808,-32768,-32768, 682, 1235,-32768, 654, 722,-32768, -32768, 801, 1246,-32768,-32768, 164,-32768,-32768, 1969,-32768, 1050, 1960,-32768, 11734, 4782,-32768, 4782, 274, 274, 619, 552, 1285, 6886, 75, 3783,-32768, 277, 274,-32768, 83, 6841, 11552, 11552,-32768, 11552, 83, 6841,-32768,-32768,-32768, -32768,-32768,-32768, 111, 111, 111, 784, 1206, 1209, 1225, 12536, 1227, 1242, 1252, 5562, 1254, 1256, 1265,-32768, 1245, -32768,-32768, 1247,-32768,-32768, 1308, 707, 720, 43, 168, 11734, 1314,-32768, 1320, 1273, 12581, 12581,-32768,-32768, 1319, 7563, 6730, 8251, 8294, 8315, 3552, 2495, 3386, 3386, 3386, 1908, 1908, 1900, 1900, 963, 963, 963,-32768,-32768, 1277, 1280, 1282, 1286, 1293, 1295, 7493, 254,-32768, 9321, 11734, -32768,-32768,-32768, 11734,-32768,-32768, 1310, 12463, 1296, 1327, 1343, 1372,-32768, 11734,-32768, 11734,-32768, 11734, 2617, 3105, -32768,-32768, 3105,-32768, 150, 2617, 1313, 1317,-32768, 1311, 7493, 83,-32768, 83, 4381,-32768, 6841, 10322, 11004, 11004, 4672, 1323, 11825, 1325, 1833, 4543, 2041, 1255, 1329,-32768, -32768,-32768,-32768,-32768,-32768,-32768, 11734,-32768, 1813,-32768, 1326,-32768, 12581,-32768, 12581, 1220, 1333, 12099,-32768, 1341, 1390,-32768, 784,-32768,-32768,-32768,-32768,-32768, 1108, 7221, -32768, 7493, 11552,-32768, 1097, 11734,-32768,-32768,-32768,-32768, -32768,-32768,-32768,-32768,-32768, 525,-32768,-32768, 789,-32768, 803, 797, 11734, 1396,-32768, 557, 578, 613, 1135,-32768, 69,-32768, 22,-32768, 3084, 2180, 2180, 2336, 2336, 6139, 3497, 179, 4320,-32768, 3014, 11096, 11096, 8210, 323, 1352, 349,-32768, 9321, 8955,-32768, 7493, 1949, 1949, 2186,-32768, -32768,-32768, 1398,-32768,-32768,-32768,-32768,-32768,-32768, 2298, -32768, 6841, 12581,-32768, 1905,-32768, 682, 682,-32768,-32768, -32768,-32768,-32768, 6841, 158, 767, 11734, 1129,-32768, 1408, -32768,-32768,-32768, 467, 571, 2432, 599, 836, 274, 1411, -32768, 935, 1402, 682, 4180,-32768,-32768,-32768, 682,-32768, 1361, 784, 784, 784,-32768, 1365, 83, 6841, 83, 6841, -32768,-32768,-32768,-32768,-32768,-32768,-32768, 7493,-32768,-32768, 1382, 1384, 1392, 1395, 1163,-32768, 7979, 9321, 9048, 1387, -32768, 11734,-32768,-32768,-32768,-32768,-32768, 628, 1389,-32768, -32768, 1393, 191, 919, 919, 1400, 919, 11734,-32768, 12463, 1492, 11552,-32768, 1401, 1406, 1407,-32768,-32768,-32768,-32768, -32768,-32768,-32768,-32768,-32768, 83, 1410,-32768, 1412, 1833, -32768,-32768, 3993, 3993, 6266, 4874,-32768,-32768,-32768,-32768, -32768, 12581,-32768,-32768,-32768,-32768, 284, 1414,-32768,-32768, -32768,-32768,-32768,-32768,-32768, 12603,-32768,-32768,-32768, 1423, -32768, 448,-32768, 11734,-32768, 11734,-32768, 11734,-32768, 1813, -32768,-32768, 8401, 1480,-32768, 9139,-32768, 3497, 2180, 2180, 4052, 4052, 6403,-32768, 373, 3014, 1427, 1749,-32768,-32768, -32768,-32768,-32768,-32768, 316, 2732, 2732, 679, 679, 9321, -32768,-32768, 2226,-32768,-32768,-32768, 83, 1432,-32768, 1452, 1452, 83, 1433, 11734, 11734, 7733, 682, 5632, 682, 682, 1318, 682, 7672,-32768,-32768, 4342, 1452,-32768,-32768, 1464, -32768,-32768,-32768, 1442,-32768, 1443, 1444, 11734, 11734, 11734, 11734, 9321,-32768, 1469,-32768,-32768, 12581, 11734,-32768, 628, -32768,-32768,-32768,-32768,-32768,-32768, 1446,-32768, 1506, 784, -32768,-32768,-32768, 83,-32768,-32768,-32768,-32768,-32768, 11734, -32768,-32768,-32768,-32768, 1447, 1451, 1456, 1476,-32768, 1067, 337, 1497, 900, 940,-32768,-32768,-32768,-32768,-32768, 11734, 1513, 1517, 1518, 11279, 403, 1813, 735, 365,-32768,-32768, 11370, 1572,-32768,-32768,-32768, 1528,-32768, 3360, 7301, 7848, 5855,-32768,-32768, 1580,-32768,-32768,-32768, 10431,-32768,-32768, 4775, 4775, 1243, 6030, 426, 7493,-32768,-32768, 9321,-32768, -32768,-32768,-32768,-32768,-32768,-32768, 7733, 7733,-32768, 1452, 366, 1045, 11734,-32768,-32768,-32768, 1129, 1129, 1452, 1452, 879, 1452,-32768,-32768,-32768, 83, 83,-32768,-32768,-32768, 1491, 1493, 1496, 1501,-32768, 9321, 1500,-32768,-32768,-32768, -32768,-32768, 83, 1505,-32768,-32768,-32768,-32768, 1476,-32768, 1813,-32768,-32768,-32768,-32768,-32768,-32768, 625, 625, 1135, 1522, 1523, 3830,-32768,-32768,-32768,-32768, 1556, 11734, 1561, 1558, 1575, 2088, 2097,-32768, 1135,-32768,-32768, 1539,-32768, -32768, 1129, 1140,-32768, 1160, 1129, 11461, 1170, 339,-32768, -32768,-32768,-32768,-32768,-32768, 6208, 6208, 7916, 2792,-32768, -32768, 83, 83,-32768,-32768,-32768, 11734, 11734, 7733, 682, 682,-32768,-32768,-32768, 8101,-32768,-32768, 83, 83,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768, 1542,-32768,-32768, -32768, 11643,-32768,-32768,-32768, 1619, 10727, 8585, 11643, 11734, -32768, 10539,-32768, 1576,-32768,-32768, 1583,-32768, 1575, 2088, -32768,-32768, 880,-32768,-32768, 12190, 12190, 9230,-32768,-32768, 1135, 2792,-32768,-32768, 7733, 7733,-32768, 1452, 1452,-32768, 9867,-32768,-32768,-32768,-32768, 7417,-32768,-32768, 1532, 601, 3692, 1135, 10633,-32768,-32768, 69,-32768,-32768, 1585, 1536, 12559, 10539,-32768,-32768,-32768,-32768, 1476, 89,-32768,-32768, -32768,-32768,-32768, 1534, 8279, 1557, 1552, 1564, 1135,-32768, 1129,-32768,-32768,-32768,-32768, 639,-32768, 9503,-32768,-32768, -32768,-32768, 1476, 1653, 1653, 1608,-32768,-32768,-32768, 616, 525,-32768,-32768,-32768, 682, 69,-32768, 11734, 1620,-32768, 1625,-32768, 1135, 10539, 1589, 159, 1631,-32768, 92,-32768, 203,-32768, 1628,-32768, 1587,-32768,-32768,-32768,-32768, 11734, 1685, 1636, 1653, 1685, 1653, 1638,-32768, 237,-32768,-32768, -32768, 9594, 1602,-32768, 317,-32768,-32768, 351, 632,-32768, -32768, 9321, 1603,-32768, 1702, 1661, 1663, 1685, 1664,-32768, -32768,-32768,-32768,-32768, 390,-32768, 10633, 1666,-32768,-32768, 1733, 1734,-32768 }; static const short yypgoto[] = {-32768, 1736,-32768, -322, 1567, -383, 95, 0, 1737,-32768, 1705, -32768,-32768, 211,-32768, 378,-32768, 419,-32768, 298, 1055, 30, 6,-32768,-32768, -658,-32768,-32768, 761, 32, 1578, 1321, 1588, -713, 157, -163, -5, -49,-32768,-32768,-32768, -32768,-32768, 937,-32768,-32768,-32768,-32768,-32768,-32768, 563, 1304,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768, 1672, -604, 7140, 1530, -21, -607, -236, -23, 1634, -558,-32768, 1168,-32768, 338,-32768, -1434,-32768, -1408, 103,-32768, 1405, 867, -279,-32768, -878, 6655, -291, 1948, 4982, 1474, -335, -101, -69, 1103, -116, -65, 174,-32768, -32768,-32768, -329,-32768, -158,-32768,-32768, -1271, -41, -328, 6128, 210, 1113, -153, 121, 236, -201, -4, -141, -174, -156, 1, 107, 291,-32768, -227,-32768,-32768,-32768,-32768, -32768, 170, 1424, 76,-32768, 802,-32768,-32768, -1074, -437, 1042,-32768,-32768,-32768,-32768,-32768, -29,-32768,-32768,-32768, -32768,-32768,-32768, 1109, -359,-32768,-32768,-32768,-32768,-32768, -32768,-32768, 1544,-32768, 542, 730,-32768,-32768,-32768, 699, -744,-32768,-32768,-32768,-32768,-32768,-32768, 976,-32768, 537, 1127,-32768, 833, 1186, 2184, 59, 1604, 2729, 974,-32768, -512,-32768, 36, 2748, 94, -143, 791, -58, 5558, 1463, -32768, 6431, 2898, 230, -18, -124,-32768, 1689, -79,-32768, 5621, 4135, -247,-32768, 2259, 37,-32768,-32768, 471,-32768, -32768, 609, 187, -371,-32768,-32768,-32768,-32768, -1426,-32768, -1230, -1412,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768,-32768,-32768,-32768,-32768, 212,-32768,-32768,-32768, -32768,-32768, 267, -1357,-32768,-32768, -33,-32768,-32768,-32768, -32768, -1425, -1415,-32768, 199, -1541, -652, -129, 1076,-32768, -32768,-32768,-32768, -382,-32768, -369, -188,-32768, 862, 469, -32768, 2,-32768, -233 }; #define YYLAST 12688 static const short yytable[] = { 59, 445, 393, 436, 36, 122, 421, 424, 209, 507, 42, 444, 807, 178, 197, 257, 557, 558, 1019, 533, 446, 708, 656, 647, 739, 865, 554, 556, 657, 1140, 222, 59, 398, 567, 709, 36, 568, 174, 59, 569, 433, 42, 579, 177, 707, 392, 584, 526, 42, 994, 103, 299, 689, 210, 625, 961, 524, 506, 724, 254, 587, 477, 1499, 72, 399, 400, 514, 358, 248, 359, 1447, 1064, 170, 1066, 171, 1560, 401, 512, 515, 257, 297, 1096, 1216, 1559, 351, 735, 351, 404, 351, 141, 146, 626, 536, 1648, 72, 1555, 545, 708, 76, 35, 626, 72, 1210, 351, 351, 1569, -144, 1001, 626, 1000, 764, 223, 224, 1093, 409, 127, 128, 1665, 137, 261, 536, 1462, 661, 662, 660, 57, 1582, 209, 1465, 76, 35, 1217, 407, 351, 197, 351, 76, 169, 225, 257, 178, 1585, 365, 298, 1594, 771, 647, 1634, 1587, 202, 545, 214, 1595, 182, 1612, 1635, 57, 770, 8, 538, 441, 59, 743, 176, 174, 59, 26, 453, 130, 131, 177, 1058, 210, 714, 715, 42, 1373, 1374, 1211, 1101, 1619, 222, 546, 250, 1094, 1106, 474, 1628, 721, 222, 222, 88, 547, 1395, -1, 72, 610, 1596, 1624, 170, 1636, 171, 1059, 364, 1637, 1007, 863, 155, 420, 423, 744, 130, 131, 745, 55, 38, 225, 1653, 1017, 222, 1649, 1254, 1631, 138, 72, -356, -2, -597, 72, 454, 408, -145, 225, 88, 411, 539, 1499, 1557, 732, 636, 58, 611, 540, 534, 86, 55, 38, 631, 460, 475, 8, 9, 175, 488, 491, 1585, -295, 406, 864, 76, 1289, 455, -356, 76, 169, 461, 454, 1632, 222, 202, 214, 58, -597, -597, 301, 395, 396, 10, 58, 632, 567, 568, 1563, 794, 769, 261, 57, -597, 535, 225, 176, 729, 87, 462, 248, 1167, 733, 225, 455, 1292, 829, 15, 908, 130, 131, -415, 1476, 692, 610, 93, 259, 623, 664, 21, 225, 1482, 1483, 202, 1484, 909, 296, 510, 222, 155, 155, 155, 26, 351, 27, 321, 657, 1192, 1592, 976, 259, -415, 697, 663, 1097, -415, 297, 989, 1005, 1006, 1310, 189, 405, 910, 248, 89, 421, 424, 450, 611, 792, 94, 351, 666, 107, 1178, 32, 1020, 1181, 259, 711, 512, 515, 758, 980, 90, 155, -302, 58, 512, 259, 55, 1366, 1655, 222, 175, 433, 977, 39, -415, 1629, 515, 1098, 644, 648, 651, 190, 191, 1311, 261, 1197, 1198, 533, -622, 1423, 706, 1423, 58, 210, 298, 515, 58, 95, 110, 111, 700, 1248, 1655, 1408, 39, 178, 759, -302, -302, 760, 108, 72, -596, 1253, 40, 1367, 1656, 473, 962, 1445, 1477, 749, -295, 754, 756, 259, 1195, 223, 447, 726, 59, 137, 88, -622, -622, 177, 222, 1424, 1242, 1530, 1008, 1655, 1009, 798, 799, 40, 667, 1274, -622, 1276, 1657, 112, 113, 475, 91, 1572, 1573, -596, -596, 210, 259, 652, 248, 1141, 528, -304, 706, 818, 222, 222, 189, 91, -596, 406, 92, 1439, 222, 1008, 636, 1009, 798, 799, 840, -365, 259, 15, 796, 1010, 222, 1668, 202, 92, 923, 72, 26, 821, 1011, 1012, 310, 751, 946, 644, 648, 651, 241, 351, 653, 222, 242, 529, -304, -304, 59, 1096, 26, 190, 502, -365, 225, 847, 925, -365, 109, 769, 1010, -298, 135, 841, 76, 475, 743, 26, 1013, 1011, 1012, -128, -128, 924, 351, 807, 351, 927, 351, 776, 777, 947, 948, 351, 855, 855, 855, 855, 1004, -365, 225, 176, 202, 752, 202, 202, 351, 137, 665, 225, 762, 926, 1308, 1309, 990, 1013, 351, 296, 411, 351, 583, 72, 161, 259, 744, 623, 225, 745, 1045, -829, 991, 202, 928, -366, 58, 15, 580, 1073, 581, 202, 127, 128, 1203, 1229, 1231, 708, 216, 217, 1114, 1055, 1056, 163, 14, 351, 297, 1060, 828, 815, 709, 656, 795, 964, 162, 1205, 1149, 657, 985, -366, 707, 179, 697, -366, 706, 1046, 222, 20, 473, 986, 183, 474, 259, 1069, 1074, 823, 23, 1209, 636, 1204, 512, 164, 175, 545, 187, 130, 131, 567, 568, 188, 1207, 95, 110, 111, 756, -366, 155, 155, 155, 983, 1206, -576, 1501, 587, -576, 908, 222, 1070, 58, 298, 122, 1071, 8, 9, 393, 261, 1607, 257, 351, 1017, 1283, 1285, 909, 769, 1658, 930, 933, 475, 95, 110, 111, 477, 500, 501, 475, 1208, 138, 477, 378, 18, 943, 1018, 18, 1072, 473, 112, 113, 1502, 668, 244, 910, 1288, -576, 660, -576, -576, 139, -576, 90, 301, 807, 1608, 10, 26, 822, 130, 131, 373, -576, 1659, -576, 375, 648, 706, 567, 568, 1191, 376, -184, 1236, 474, 259, 112, 113, 114, -576, -576, 18, 202, 1237, 58, 89, 222, 137, -184, 818, -184, 818, 21, -142, -576, 1238, 1078, 1088, 91, 818, 379, 259, 1285, 129, 1079, 90, -143, 427, 428, 301, 395, 396, 10, 26, 787, 246, 1442, 821, 92, 821, 92, 429, 793, 202, 300, 821, 1368, 821, 1026, 1027, 475, 430, 1102, 1103, 59, 1104, 59, 475, 770, 32, 138, 477, 210, 431, 59, 89, 363, 158, 21, 222, 706, 351, 351, 1255, 351, 252, 706, 383, 384, 385, 1047, 1048, 433, 27, 321, 90, 1199, 377, 1405, 1111, 1112, 1113, 95, 96, 97, 381, 226, 227, 228, 382, 296, 380, 1298, 580, -120, 581, 15, 259, -295, 1269, 1270, 1271, 1243, 1244, 1245, 32, 426, 72, 473, 72, 18, 137, 259, 386, 402, 473, 229, 72, 421, 424, 434, 387, 388, 475, 304, 648, 421, 424, -120, 475, 1293, 1294, -120, 1296, 26, 855, 98, 99, 230, 1143, -617, 1638, 828, 815, 828, 815, 612, 164, 433, 1085, 1092, -7, 828, 815, 448, 155, 127, 128, 1067, 1068, 838, 536, 155, 449, -120, 1471, 477, 91, 1099, 823, 855, 823, 452, 158, 158, 158, 706, 464, 477, 823, 474, 518, 231, 232, 233, 613, 614, 92, 89, 615, 616, 617, 618, -118, 543, 15, 1426, 541, 1053, 1157, 544, 257, 1494, 508, 509, 839, 1157, 26, 90, 130, 131, 542, 477, 552, 477, 559, 259, 473, 560, 706, 158, 855, 351, 912, 473, 1157, 261, -118, 91, 700, 561, -118, 562, 913, 500, 727, 1427, 563, 225, 475, 564, 930, 933, 475, 259, 225, 914, 583, 92, 1078, 301, 8, 9, 10, 257, 770, 626, 1079, 822, 706, 1065, 676, 200, -118, 225, 127, 128, 474, 822, 627, 677, 301, 395, 396, 10, 855, 628, 508, 728, 818, 608, 609, 475, 579, 58, 679, 58, 433, 680, 21, 468, 706, 1505, 681, 58, 1157, 252, 1411, 254, 693, 473, 1157, 90, 706, 27, 321, 473, 821, 1522, 694, 21, 127, 128, 92, 127, 128, 26, 629, 130, 131, 1219, 1220, 475, 26, 59, 27, 321, 718, 1219, 1220, 475, 1061, 912, 89, 225, 433, 32, 706, 91, 706, 225, 1478, 913, -6, 95, 110, 111, 855, 226, 227, 228, 722, 411, 90, 475, 914, 364, 630, 92, 364, 1421, 1422, 1300, 741, 130, 131, 475, 130, 131, 153, 742, 757, 18, -828, 216, 217, 1062, 766, 229, 783, 14, 351, 200, 768, 116, 117, 118, 72, 539, 15, -52, 253, 1085, 1505, 832, -52, 833, 708, 112, 113, 475, 835, 475, 20, 706, 518, -52, 1453, 834, 1458, 1578, 859, 23, 842, 1505, 843, 473, 1018, 1257, 259, 473, 259, 828, 815, 1259, 1260, 1455, 733, 1257, 1262, 200, 861, 1260, 500, 1524, 155, 155, 155, 119, 120, 1157, 1604, 1350, 155, 155, 155, 1342, 862, 1660, 823, 818, 864, 706, 508, 1525, 770, 95, 110, 111, 473, 682, 683, 684, 500, 1529, 930, 933, 475, 567, 568, 1250, 1251, 920, 540, 922, 1505, 941, 943, 821, 225, 8, 9, 969, 967, 968, 978, 422, 425, 1157, 979, 982, 984, 8, 9, 20, 59, 259, 1265, 992, 473, 735, 993, 1267, 996, -298, 72, 1002, 473, 367, 371, 112, 113, 1003, 1361, 1362, 475, 1024, 158, 158, 158, 1043, 1075, 1076, 9, 10, 364, 454, 225, 1047, 1048, 1050, 473, 153, 130, 131, 1051, 471, 364, 822, 1057, 1452, 1341, 1452, 473, 1054, 130, 131, 1115, 225, 259, 1116, 101, 127, 128, 222, 127, 1391, 253, 72, 115, 21, 1121, 740, 1122, 58, 1123, 1117, 1349, 1119, 539, 1350, 127, 128, 26, 1124, 27, 28, 473, 210, 473, 1350, 1077, 545, 1120, 1342, 1388, 1125, 1350, 1126, 194, 1388, 1342, 484, 828, 815, 855, 636, 15, 1568, 195, 364, -415, 234, 26, -141, 130, 131, 32, 130, 131, 1128, 196, 200, 1129, 1131, 1132, 421, 424, 1133, 637, 823, 1134, 26, 15, 130, 131, 1135, -415, 1136, 638, -415, -415, 539, 72, 1137, -415, 1138, 1148, 546, 259, 1150, 639, 640, 72, 473, 95, 96, 97, 547, 1151, 72, 1152, 848, 1153, 1160, 1162, -415, -415, 1161, 1379, 1380, 389, 1389, 1390, 1171, 1392, 1172, 576, 1184, 1341, 1177, 1622, 127, 128, 1186, 202, 1456, 202, 200, 1341, 200, 200, 58, 1189, 1190, 417, 1341, 140, 140, 1202, 156, 364, 473, 1228, 773, 1349, 1241, 706, 1264, 98, 99, 1258, 1268, 773, 1263, 1349, 1272, 200, 1278, 822, 1279, 900, 1349, 129, 213, 200, 221, 901, 1280, 903, 904, 1281, 238, 26, 259, 130, 131, 1480, 1481, 1286, 1290, 1550, 574, 1299, 1291, 58, 1350, 1350, 1550, 1157, 1342, 1350, 1301, 1581, 1295, 1342, 1210, 1302, 1303, 471, 461, 1306, -659, 959, 222, 1312, 1307, 351, 1361, 1362, 475, 116, 117, 118, 1313, 1406, 422, 719, 1365, 383, 384, 385, 158, 1372, 1376, 706, 519, 521, 225, 158, 1474, 1475, 1350, 1398, 1399, 1400, 1342, 1410, 1415, 531, 1409, 1350, 1416, 1425, 298, 1342, 510, 1417, 140, 72, 72, 298, 1157, 140, 72, 1418, 156, 156, 156, 1434, 58, 1435, 1436, 26, 1448, 119, 120, 1550, 776, 777, 58, 26, 1450, 387, 388, 471, 259, 58, 467, 1463, 422, 425, 1490, 213, 1491, 1341, 1341, 1492, 475, 451, 1341, 225, 1493, 1350, 1495, 72, 1497, 1342, 1508, 1509, 1513, 487, 487, 496, 72, 1515, 376, 95, 415, 416, 566, 1349, 1349, 1516, 155, 1523, 1349, 221, 1546, 1554, 1564, 1565, 200, 1580, 1597, 513, 221, 1590, 202, 1589, 298, 1341, 1537, 1538, 1539, 1052, 95, 96, 97, 576, 1341, 576, 1599, 1602, 8, 9, 1350, 1615, 12, 13, 1342, 675, 1620, 789, 14, 1603, 72, 1349, 422, 860, 685, 98, 113, 200, 1626, 1630, 1349, 140, 16, 1627, 17, 1605, 576, 675, 1633, 1100, 1640, 20, 1641, 1644, 1646, 1105, 1650, 155, 155, 155, 23, 473, 1570, 1571, 98, 99, 1341, 1654, 1661, 26, 1662, 130, 131, 619, 301, 127, 128, 10, 574, 1663, 574, 1664, 1666, 72, 1670, 852, 301, 395, 396, 10, 1672, 1673, 1349, 1, 443, 296, 5, 160, 574, 1520, 58, 58, 296, 981, 442, 58, 954, 620, 1193, 471, 440, 574, 156, 21, 1621, 879, 471, 1089, -304, 1341, 252, 725, 1314, 361, 1504, 21, 520, 1669, 27, 321, 410, 551, 1623, -304, 1142, 1185, 1023, -304, 970, 473, 27, 321, 1370, 902, 523, 1349, 58, 1246, 1154, 919, 1155, 1266, 1156, 1084, -304, 58, 1091, 1393, 971, 1183, 32, 1163, 503, 1164, 907, 940, -304, -304, 633, -304, 391, -304, 32, 95, 110, 111, 158, 158, 158, 1461, 1359, 296, 1651, 797, 158, 158, 158, 213, 221, 1647, 1639, 1593, 1470, 301, 127, 128, 10, 1042, 0, -304, -304, 140, 1188, 0, 140, 8, 9, 58, 153, 0, 156, 156, 156, 0, -304, 1040, 140, 0, 471, 0, 0, 18, 0, 0, 467, 471, 0, 112, 113, 954, 0, 0, 21, 0, 0, 0, 0, 1200, 636, 422, 719, 0, 95, 96, 97, 26, 872, 27, 321, 0, 364, 0, 0, 213, 0, 221, 0, 0, 130, 131, 58, 1173, 0, 0, 0, 1075, 1076, 9, 10, 487, 0, 1174, 487, 0, 496, 496, 496, 0, 0, 32, 451, 0, 0, 1175, 640, 0, 487, 513, 221, 0, 921, 451, 0, 0, 26, 513, 98, 99, 100, 0, 0, 471, 0, 0, 21, 0, 0, 471, 451, 0, 8, 9, 0, 0, 467, 247, 0, 26, 0, 27, 28, 127, 128, 1249, 0, 1077, 1273, 0, 1275, 116, 798, 799, 0, 194, 156, 0, 156, 18, 605, 606, 607, 608, 609, 195, 603, 604, 605, 606, 607, 608, 609, 32, 156, 156, 156, 196, 773, 0, 0, 0, 988, 26, 773, 130, 131, 0, 0, 156, 995, 0, 0, 0, 26, 467, 130, 131, 0, 1236, 0, 467, 0, 467, 467, 119, 120, 1305, 0, 1237, 0, 0, 0, 0, 0, 341, 0, 341, 1084, 341, 872, 1238, 0, 654, 8, 9, 10, 0, 0, 0, 467, 0, 422, 860, 0, 0, 0, 467, 0, 471, 929, 929, 936, 471, 0, 7, 8, 9, 10, 955, 1315, 13, 1316, 0, 1317, 0, 0, 0, 0, 310, 655, 1146, 21, 0, 341, 0, 341, 0, 0, 221, 95, 110, 111, 18, 0, 26, 0, 130, 131, 95, 110, 111, 471, 0, 21, 0, 0, 0, 1371, 0, 636, 0, 0, 1375, 0, 1169, 0, 26, 574, 27, 28, 0, 0, 0, 0, 95, 110, 111, 530, 221, 238, 422, 425, 746, 0, 0, 0, 469, 0, 422, 1227, 0, 471, 747, 112, 1517, 0, 0, 0, 0, 471, 32, 0, 112, 1519, 748, 640, 0, 0, 467, 0, 0, 0, 0, 21, 1412, 0, 0, 0, 1025, 1025, 1031, 0, 467, 471, 0, 1414, 0, 1031, 112, 113, 0, 7, 8, 9, 10, 471, 0, 247, 8, 9, 773, 156, 0, 536, 0, 0, 0, 0, 487, 487, 496, 496, 496, 0, 574, 0, 487, 127, 128, 18, 0, 773, 13, 0, 513, 18, 0, 451, 0, 471, 21, 471, 0, 0, 0, 0, 636, 116, 798, 799, 1387, 800, 0, 26, 18, 27, 28, 0, 0, 26, 0, 130, 131, 0, 0, 213, 158, 0, 0, 746, 0, 636, 0, 0, 0, 1236, 1486, 1487, 26, 747, 130, 131, 801, 0, 260, 1237, 0, 32, 565, 0, 0, 748, 640, 1496, 637, 422, 719, 1238, 685, 26, 0, 119, 120, 0, 638, 0, 471, 0, 0, 0, 0, 988, 0, 0, 0, 0, 639, 640, 0, 116, 798, 799, 0, 0, 0, 0, 341, 7, 127, 128, 10, 0, 0, 467, 1297, 158, 158, 158, 0, 0, 200, 0, 200, 422, 719, 0, 0, 467, 0, 467, 0, 467, 1533, 1534, 471, 18, 0, 7, 8, 9, 10, 435, 0, 13, 0, 0, 21, 0, 1544, 1545, 0, 26, 929, 119, 120, 929, 215, 216, 217, 26, 0, 27, 28, 14, 0, 18, 0, 929, 0, 0, 0, 1170, 1170, 955, 486, 149, 21, 0, 0, 0, 18, 467, 636, 0, 0, 150, 20, 505, 0, 26, 0, 27, 28, 32, 0, 23, 0, 151, 0, 0, 0, 0, 0, 0, 0, 1028, 0, 738, 469, 0, 712, 238, 0, 0, 0, 1029, 467, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 1030, 640, 0, 0, 1284, 0, 7, 8, 251, 10, 0, 0, 0, 0, 773, 0, 0, 1401, 1402, 1403, 1404, 1025, 1025, 1218, 1218, 1031, 0, 1407, 0, 0, 1025, 1218, 1218, 1031, 0, 0, 0, 341, 0, 0, 0, 0, 1239, 1239, 1239, 21, 0, 0, 0, 0, 0, 0, 252, 0, 0, 0, 0, 0, 0, 0, 27, 28, 451, 451, 0, 0, 0, 0, 0, 0, 341, 469, 0, 1438, 0, 0, 0, 773, 851, 0, 0, 0, 0, 0, 253, 1319, 0, 0, 0, 451, 0, 1284, 32, 0, 451, 0, 200, 0, 0, 0, 0, 0, 341, 0, 738, 0, 0, 876, 877, 0, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 0, 469, 1040, 0, 0, 0, 0, 469, 0, 469, 469, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 471, 8, 9, 0, 0, 12, 13, 215, 216, 217, 0, 14, 0, 469, 14, 0, 1170, 1170, 955, 0, 469, 0, 0, 0, 0, 16, 1514, 17, 467, 0, 467, 18, 467, 0, 20, 0, 0, 20, 0, 0, 127, 128, 0, 23, 973, 975, 23, 0, 0, 422, 1227, 0, 26, 0, 130, 131, 0, 0, 1440, 1441, 341, 965, 1025, 1025, 1218, 1218, 1031, 18, 0, 1025, 0, 0, 0, 7, 8, 9, 10, 0, 471, 1239, 1239, 1239, 0, 0, 636, 0, 0, 0, 0, 1548, 906, 26, 0, 130, 131, 879, 1548, 0, 0, 451, 451, 784, 451, 451, 738, 451, 790, 637, 0, 215, 216, 217, 21, 0, 0, 574, 14, 638, 636, 0, 0, 0, 469, 0, 0, 26, 0, 27, 28, 639, 640, 830, 0, 18, 467, 0, 469, 836, 0, 20, 0, 746, 0, 0, 1500, 0, 0, 0, 23, 844, 845, 747, 846, 0, 0, 8, 9, 0, 0, 32, 13, 0, 0, 748, 640, 0, 1518, 1521, 0, 0, 0, 0, 0, 0, 0, 1548, 0, 0, 0, 0, 0, 1063, 18, 166, 0, 7, 8, 9, 10, 167, 12, 13, 213, 221, 0, 1625, 14, 0, 147, 341, 341, 0, 341, 0, 1469, 1469, 26, 1469, 130, 131, 16, 0, 17, 18, 19, 8, 9, 1643, 0, 20, 451, 451, 1236, 0, 21, 0, 0, 0, 23, 879, 0, 168, 1237, 0, 511, 216, 217, 26, 1127, 27, 28, 14, 18, 1566, 1238, 944, 945, 0, 0, 0, 944, 0, 0, 30, 0, 0, 0, 0, 18, 636, 0, 0, 0, 31, 20, 0, 26, 0, 130, 131, 0, 32, 0, 23, 0, 33, 738, 469, 0, 34, 0, 467, 1466, 0, 0, 0, 0, 0, 0, 0, 0, 469, 1467, 469, 0, 469, 0, 0, 0, 0, 496, 0, 0, 0, 1468, 640, 0, 0, 412, 1469, 1469, 1532, 0, 414, 0, 931, 934, 0, 0, 0, 0, 80, 451, 451, 451, 0, 0, 0, 0, 0, 0, 104, 0, 0, 1182, 0, 7, 8, 9, 10, 0, 133, 489, 492, 0, 469, 0, 144, 144, 0, 144, 0, 80, 1035, 0, 0, 0, 0, 0, 80, 341, 0, 147, 1196, 0, 0, 0, 0, 0, 496, 496, 496, 204, 0, 80, 21, 0, 0, 451, 451, 469, 0, 239, 0, 0, 1049, 0, 0, 26, 104, 27, 28, 0, 0, 193, 0, 0, 0, 0, 0, 263, 104, 0, 0, 194, 0, 0, 0, 0, 0, 738, 738, 0, 0, 195, 0, 0, 0, 0, 0, 0, 0, 32, 104, 931, 934, 196, 537, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 9, 10, 0, 1107, 536, 1109, 1256, 0, 0, 0, 451, 0, 0, 133, 0, 80, 0, 0, 0, 144, 144, 0, 0, 0, 413, 144, 18, 0, 144, 144, 144, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 636, 80, 0, 0, 0, 80, 0, 26, 0, 27, 28, 204, 80, 0, 738, 738, 0, 0, 1287, 0, 0, 0, 0, 746, 0, 7, 8, 9, 10, 0, 204, 204, 204, 747, 1144, 1145, 0, 1147, 341, 0, 0, 32, 0, 0, 0, 748, 640, 127, 128, 0, 0, 0, 247, 18, 0, 0, 0, 0, 0, 204, 0, 0, 0, 0, 21, 0, 0, 0, 1166, 0, 636, 0, 0, 0, 18, 0, 522, 26, 0, 27, 28, 0, 0, 0, 0, 104, 0, 0, 0, 0, 469, 636, 469, 746, 469, 0, 144, 0, 26, 0, 130, 131, 738, 747, 0, 0, 716, 0, 0, 717, 0, 32, 0, 0, 637, 748, 640, 0, 0, 0, 0, 720, 0, 0, 638, 0, 738, 1158, 0, 0, 1159, 0, 0, 0, 104, 548, 639, 640, 0, 0, 1377, 1378, 1165, 0, 0, 0, 931, 934, 0, 0, 7, 127, 128, 10, 0, 774, 1226, 0, 775, 0, 489, 492, 0, 0, 0, 0, 0, 0, 738, 0, 0, 0, 791, 0, 412, 0, 0, 414, 18, 0, 104, 0, 0, 1247, 634, 0, 548, 548, 649, 21, 0, 537, 0, 0, 0, 1252, 469, 80, 0, 0, 0, 0, 26, 0, 27, 28, 0, 0, 0, 7, 8, 9, 10, 215, 216, 217, 1433, 0, 30, 0, 14, 0, 0, 1158, 1159, 931, 934, 0, 31, 0, 133, 0, 1165, 931, 934, 0, 32, 18, 0, 104, 33, 204, 104, 20, 0, 0, 0, 0, 21, 0, 0, 0, 23, 0, 636, 738, 144, 0, 0, 144, 0, 26, 0, 27, 28, 0, 0, 0, 0, 1479, 0, 144, 0, 0, 0, 0, 0, 746, 0, 80, 0, 0, 0, 1304, 0, 0, 0, 747, 0, 0, 0, 0, 738, 0, 0, 32, 0, 0, 0, 755, 640, 7, 8, 9, 10, 0, 0, 204, 753, 204, 204, 649, 0, 0, 0, 753, 0, 0, 0, 0, 0, 0, 0, 204, 204, 0, 0, 204, 0, 204, 204, 204, 781, 0, 0, 0, 204, 0, 0, 0, 21, 204, 0, 469, 204, 0, 1364, 0, 0, 0, 0, 0, 0, 26, 0, 27, 28, 0, 0, 1451, 0, 80, 0, 1535, 1536, 0, 0, 0, 0, 194, 931, 934, 0, 0, 0, 0, 0, 0, 0, 195, 0, 0, 7, 127, 128, 10, 0, 32, 13, 0, 1396, 196, 0, 0, 1397, 0, 1561, 104, 104, 104, 104, 601, 602, 603, 604, 605, 606, 607, 608, 609, 18, 0, 0, 489, 492, 0, 1158, 1159, 931, 934, 0, 21, 0, 1165, 0, 0, 0, 1575, 1413, 0, 0, 0, 0, 147, 26, 0, 27, 28, 301, 8, 9, 10, 0, 774, 775, 489, 492, 0, 0, 0, 30, 791, 0, 0, 0, 0, 0, 104, 0, 548, 31, 0, 716, 717, 0, 0, 18, 0, 32, 0, 720, 634, 33, 548, 548, 649, 0, 21, 0, 0, 0, 0, 956, 636, 0, 0, 958, 0, 0, 0, 26, 0, 27, 321, 1472, 0, 0, 0, 1473, 0, 0, 204, 0, 0, 0, 0, 1221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1222, 0, 0, 0, 1488, 1489, 0, 0, 32, 0, 0, 133, 1223, 640, 0, 0, 0, 0, 133, 0, 0, 0, 738, 0, 0, 0, 204, 239, 0, 0, 0, 0, 0, 810, 0, 7, 8, 811, 10, 167, 12, 13, 1158, 1159, 0, 1165, 14, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 16, 0, 17, 18, 19, 0, 204, 204, 1033, 20, -520, 0, 0, 0, 21, 1033, 0, 0, 23, 812, 0, 168, 0, 0, 0, 0, 0, 26, 0, 27, 28, 0, 0, 813, 0, 814, 204, 204, 781, 781, 781, 0, 0, 30, 204, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 7, 8, 9, 10, 32, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 133, 0, 0, 80, 0, 80, 0, 0, 0, -520, 1086, 80, 0, 80, 0, 931, 934, 0, 0, 104, 0, 0, 0, 0, 21, 104, 0, 0, 0, 0, 0, 0, 548, 548, 548, 0, 0, 26, 0, 27, 28, 0, 0, 548, 0, 774, 775, 489, 492, 0, 0, 0, 0, 194, 791, 489, 492, 0, 0, 0, 0, 0, 0, 195, 412, 414, 774, 775, 791, 0, 0, 32, 0, 537, 810, 196, 7, 8, 811, 10, 167, 12, 13, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 104, 0, 0, 0, 0, 0, 0, 16, 0, 17, 18, 19, 0, 0, 0, 0, 20, -521, 0, 0, 0, 21, 0, 548, 548, 23, 812, 548, 168, 0, 548, 0, 0, 0, 26, 104, 27, 28, 1510, 548, 813, 104, 814, 956, 956, 956, 0, 0, 0, 548, 30, 1176, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, 0, 104, 0, -521, 1511, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 0, 0, 0, 0, 0, 0, 0, 204, 204, 204, 204, 204, 1033, 781, 0, 0, 0, 204, 1033, 1033, 1033, 0, 0, 0, 0, 0, 0, 0, 104, 781, 781, 781, 774, 775, 489, 492, 0, 0, 0, 791, 0, 0, 0, 0, 104, 0, 0, 1086, 0, 489, 492, 716, 717, 0, 0, 0, 104, 0, 720, 0, 7, 8, 9, 10, 167, 12, 13, 0, 0, 1261, 0, 14, 0, 0, 0, 0, 0, 80, 0, 0, 301, 127, 128, 10, 0, 16, 13, 17, 18, 19, 104, 0, 104, 0, 20, 0, 0, 0, 0, 21, 104, 0, 0, 23, 0, 0, 168, 0, 18, 0, 0, 0, 26, 0, 27, 28, 0, 0, 0, 21, 0, 0, 0, 0, 0, 636, 548, 548, 30, 548, 0, 0, 26, 0, 27, 321, 0, 0, 31, 301, 8, 9, 10, 0, 0, 13, 32, 0, 1173, 0, 33, 0, 548, 0, 34, 548, 548, 649, 1174, 0, 7, 127, 128, 10, 0, 0, 32, 18, 0, 0, 1175, 640, 0, 0, 774, 775, 0, 791, 21, 0, 0, 0, 0, 0, 636, 0, 0, 0, 0, 0, 0, 26, 0, 27, 321, 0, 0, 0, 0, 21, 781, 204, 204, 781, 781, 1363, 252, 1221, 204, 0, 0, 0, 0, 0, 27, 28, 0, 1222, 781, 781, 781, 781, 0, 83, 0, 32, 0, 0, 0, 1223, 640, 0, 0, 106, 0, 0, 0, 0, 253, 0, 204, 0, 126, 134, 0, 144, 32, 0, 80, 145, 145, 0, 145, 0, 83, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 810, 0, 7, 8, 811, 10, 167, 12, 13, 145, 0, 83, 0, 14, 489, 492, 0, 0, 0, 240, 0, 0, 0, 0, 0, 0, 249, 16, 0, 17, 18, 19, 0, 0, 0, 0, 20, -523, 249, 0, 0, 21, 0, 0, 0, 23, 812, 0, 168, 0, 0, 0, 0, 0, 26, 0, 27, 28, 0, 0, 813, 0, 814, 0, 0, 204, 753, 204, 0, 0, 30, 0, 0, 0, 489, 492, 0, 0, 781, 781, 31, 781, 0, 104, 0, 0, 0, 0, 32, 0, 83, 0, 33, 0, 145, 145, 0, 0, 0, 0, 145, 0, 0, 145, 145, 145, 0, 0, -523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 83, 0, 0, 0, 0, 0, 145, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 9, 10, 0, 0, 145, 145, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 810, 0, 7, 8, 811, 10, 167, 12, 13, 0, 0, 0, 1033, 14, 0, 145, 0, 0, 0, 21, 0, 781, 781, 1363, 781, 0, 252, 16, 0, 17, 18, 19, 0, 0, 27, 28, 20, -522, 0, 0, 0, 21, 127, 128, 0, 23, 812, 536, 168, 0, 0, 0, 145, 0, 26, 0, 27, 28, 253, 0, 813, 0, 814, 0, 0, 0, 32, 0, 0, 18, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 1033, 1033, 1033, 0, 0, 636, 781, 32, 0, 249, 145, 33, 26, 0, 130, 131, 0, 0, 0, 0, 104, 0, 0, 0, 0, 204, 0, -522, 637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 638, 0, 6, 0, 7, 8, 9, 10, 11, 12, 13, 0, 639, 640, 0, 14, 0, 249, 0, 0, 0, 635, 0, 145, 145, 650, 0, 0, 15, 16, 659, 17, 18, 19, 83, 0, 0, 0, 20, 0, 0, 0, 0, 21, 0, 0, 22, 23, 24, 0, 25, 0, 0, 0, 0, 0, 26, 0, 27, 28, 0, 0, 29, 7, 127, 128, 10, 698, 0, 247, 0, 0, 30, 0, 0, 0, 249, 0, 145, 249, 0, 0, 31, 0, 301, 8, 9, 10, 0, 0, 32, 18, 0, 145, 33, 0, 145, 0, 34, 0, 0, 0, 21, 0, 7, 127, 128, 10, 145, 0, 13, 0, 0, 0, 0, 26, 83, 27, 28, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 252, 30, 18, 0, 0, 0, 0, 0, 27, 321, 0, 31, 0, 21, 145, 650, 145, 145, 650, 32, 0, 0, 650, 33, 0, 0, 26, 0, 27, 28, 145, 145, 253, 0, 145, 0, 145, 145, 145, 145, 32, 0, 149, 145, 0, 0, 0, 0, 145, 0, 0, 145, 150, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 151, 0, 0, 809, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 570, 0, 301, 8, 9, 10, 167, 12, 302, 303, 304, 466, 305, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249, 249, 249, 249, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 636, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, -312, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 949, 0, 0, 0, 0, 0, 0, 0, 325, 326, 950, 0, 0, 249, 0, 145, 328, 329, 330, 0, 0, 0, 951, 640, 0, 0, 0, 0, 0, 145, 145, 650, 0, 0, 0, 0, 8, 9, 957, 332, 810, 247, 7, 8, 811, 10, 167, 12, 13, 0, 0, 659, 0, 14, 0, 0, 0, 145, 0, 0, 0, 0, 0, 18, 0, 0, 0, 16, 0, 17, 18, 19, 0, 0, 0, 0, 20, 0, 0, 0, 636, 21, 0, 698, 0, 23, 812, 26, 168, 130, 131, 126, 0, 0, 26, 0, 27, 28, 145, 240, 813, 0, 814, 1466, 0, 0, 0, 0, 0, 0, 30, 0, 0, 1467, 0, 0, 0, 0, 0, 0, 31, 0, 809, 0, 0, 1468, 640, 0, 32, 0, 0, 0, 33, 0, 301, 8, 9, 10, 145, 145, 650, 0, 0, 0, 0, 0, 0, 957, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 9, 10, 167, 12, 13, 0, 0, 761, 0, 14, 145, 145, 145, 145, 145, 21, 0, 0, 145, 0, 0, 0, 252, 16, 0, 17, 18, 0, 0, 0, 27, 321, 20, 0, 0, 0, 0, 21, 0, 0, 0, 23, 0, 0, 0, 0, 134, 0, 0, 83, 26, 83, 27, 28, 539, 0, 1087, 83, 0, 83, 0, 0, 32, 0, 0, 249, 30, 0, 0, 0, 0, 249, 0, 0, 0, 0, 31, 0, 145, 145, 145, 0, 0, 0, 32, 51, 0, 0, 33, 145, 7, 8, 9, 10, 206, 12, 207, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 51, 0, 152, 16, 51, 17, 18, 0, 0, 0, 0, 51, 20, 0, 0, 0, 0, 21, 0, 0, 0, 23, 0, 0, 51, 0, 51, 0, 249, 0, 26, 0, 27, 28, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 255, 0, 145, 145, 0, 0, 145, 31, 0, 145, 0, 0, 0, 0, 249, 32, 0, 0, 145, 33, 249, 0, 957, 957, 957, 0, 0, 0, 145, 0, 659, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 9, 10, 215, 216, 217, 0, 0, 0, 0, 14, 0, 0, 397, 397, 0, 51, 0, 0, 0, 51, 51, 0, 249, 255, 249, 51, 18, 0, 152, 152, 152, 0, 20, 0, 0, 432, 0, 21, 0, 0, 0, 23, 0, 636, 51, 0, 0, 0, 51, 0, 26, 0, 27, 28, 51, 51, 0, 145, 145, 145, 145, 145, 650, 145, 0, 0, 746, 145, 957, 957, 957, 0, 0, 51, 51, 152, 747, 0, 249, 145, 145, 145, 0, 255, 32, 0, 0, 0, 748, 640, 0, 0, 809, 0, 249, 0, 0, 1087, 0, 0, 0, 0, 51, 0, 0, 0, 249, 0, 6, 0, 7, 8, 9, 10, 11, 12, 13, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 83, 0, 0, 7, 8, 9, 10, 0, 16, 13, 17, 18, 51, 249, 0, 249, 0, 20, 0, 0, 0, 0, 21, 249, 0, 0, 23, 0, 0, 439, 0, 18, 0, 0, 0, 26, 0, 27, 28, 0, 0, 29, 21, 127, 128, 0, 0, 216, 217, 145, 145, 30, 145, 14, 0, 26, 0, 27, 28, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 32, 0, 194, 0, 33, 0, 145, 20, 0, 145, 145, 650, 195, 0, 575, 0, 23, 0, 636, 0, 32, 0, 0, 0, 196, 26, 0, 130, 131, 0, 0, 397, 0, 0, 0, 0, 0, 0, 809, 255, 0, 637, 0, 0, 51, 0, 0, 0, 0, 0, 0, 638, 0, 0, 145, 145, 145, 145, 145, 650, 0, 0, 145, 646, 640, 0, 0, 0, 0, 0, 0, 0, 145, 145, 145, 145, 0, 397, 0, 809, 0, 0, 0, 0, 0, 0, 0, 0, 51, 0, 0, 8, 9, 0, 145, 12, 247, 0, 0, 145, 0, 14, 83, 51, 0, 0, 51, 0, 0, 0, 0, 0, 432, 432, 432, 16, 0, 17, 51, 0, 0, 0, 0, 0, 20, 0, 51, 0, 0, 0, 0, 0, 0, 23, 0, 636, 0, 0, 0, 0, 0, 0, 26, 0, 130, 131, 0, 0, 0, 0, 0, 0, 0, 0, 51, 51, 51, 51, 637, 0, 0, 0, 51, 0, 0, 0, 0, 0, 638, 0, 51, 51, 0, 1444, 51, 0, 152, 152, 152, 432, 639, 640, 0, 51, 145, 650, 145, 0, 51, 8, 9, 51, 0, 12, 247, 0, 0, 145, 145, 14, 145, 0, 249, 0, 0, 0, 8, 9, 51, 167, 12, 13, 0, 16, 466, 17, 14, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 16, 23, 17, 18, 0, 0, 575, 0, 575, 20, 26, 0, 130, 131, 0, 0, 0, 0, 23, 0, 636, 0, 0, 0, 575, 575, 575, 26, 0, 130, 131, 0, 0, 78, 0, 0, 0, 127, 128, 575, 0, 216, 217, 637, 0, 0, 0, 14, 0, 0, 0, 0, 0, 638, 0, 0, 0, 0, 0, 78, 78, 0, 78, 957, 78, 639, 640, 0, 0, 0, 20, 78, 145, 145, 650, 145, 0, 0, 0, 23, 0, 636, 0, 0, 78, 0, 78, 255, 26, 0, 130, 131, 0, 0, 0, 0, 0, 0, 0, 575, 0, 0, 0, 0, 637, 0, 1381, 1382, 9, 10, 0, 0, 0, 0, 638, 0, 0, 0, 51, 0, 0, 0, 0, 0, 0, 159, 639, 640, 0, 0, 0, 0, 957, 957, 957, 0, 0, 0, 145, 0, 0, 0, 0, 0, 397, 21, 0, 205, 0, 0, 0, 397, 249, 0, 0, 0, 0, 145, 26, 51, 27, 28, 0, 0, 0, 78, 1383, 0, 0, 78, 78, 0, 0, 0, 194, 78, 0, 0, 78, 78, 78, 0, 0, 0, 195, 0, 0, 0, 0, 0, 0, 0, 32, 0, 78, 0, 196, 0, 78, 51, 51, 152, 0, 0, 78, 78, 255, 0, 1039, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 9, 10, 0, 575, 78, 78, 78, 0, 0, 0, 51, 51, 432, 432, 432, 0, 0, 0, 51, 0, 0, 0, 159, 159, 159, 0, 18, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 51, 26, 51, 27, 28, 0, 0, 51, 51, 0, 51, 0, 0, 0, 0, 0, 0, 493, 205, 205, 498, 78, 0, 0, 0, 0, 0, 494, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 495, 0, 0, 0, 0, 0, 0, 0, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1459, 0, 1322, 1323, 1324, 10, 167, 12, 302, 303, 304, 0, 305, 14, 1325, 0, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 15, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 1336, 23, 1337, 0, 0, 315, 316, 317, 318, 319, 26, 0, 1338, 321, 733, 658, 1339, 322, 0, 78, 549, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 575, 575, 575, 325, 326, 327, 432, 255, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 0, 1340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 1460, 332, 0, 0, 0, 0, 0, 643, 643, 643, 0, 0, 0, 0, 78, 0, 0, 78, 0, 0, 0, 0, 7, 127, 128, 10, 0, 0, 536, 78, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 51, 51, 51, 152, 152, 152, 432, 18, 255, 0, 51, 1039, 1039, 1039, 0, 0, 0, 0, 21, 205, 0, 0, 78, 78, 78, 78, 0, 8, 9, 0, 78, 26, 536, 27, 28, 0, 0, 0, 78, 78, 51, 0, 78, 0, 78, 78, 78, 30, 0, 0, 0, 78, 0, 0, 18, 0, 78, 31, 0, 78, 0, 255, 0, 0, 0, 32, 0, 0, 0, 33, 51, 636, 0, 0, 0, 0, 78, 0, 26, 0, 130, 131, 0, 0, 0, 750, 0, 750, 750, 643, 0, 0, 0, 0, 1466, 0, 0, 0, 0, 0, 0, 205, 205, 0, 1467, 205, 0, 498, 498, 498, 782, 0, 0, 0, 205, 0, 1468, 640, 0, 205, 0, 0, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 9, 10, 167, 12, 13, 0, 0, 466, 432, 14, 0, 432, 432, 432, 255, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 17, 18, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 21, 0, 0, 0, 23, 0, 636, 0, 0, 0, 0, 0, 658, 26, 0, 27, 28, 0, 0, 432, 51, 51, 432, 432, 432, 0, 0, 51, 0, 1028, 0, 8, 9, 0, 0, 0, 13, 0, 0, 1029, 0, 0, 78, 0, 0, 0, 0, 32, 0, 0, 0, 1030, 640, 0, 370, 372, 0, 0, 18, 51, 0, 0, 0, 915, 51, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 636, 0, 643, 643, 643, 0, 0, 26, 78, 130, 131, 643, 0, 301, 8, 9, 10, 167, 12, 13, 0, 0, 466, 1466, 14, 0, 0, 0, 0, 0, 205, 0, 0, 1467, 0, 0, 0, 0, 16, 0, 17, 18, 0, 0, 0, 1468, 640, 20, 78, 78, 78, 0, 21, 0, 0, 0, 23, 1041, 636, 0, 0, 0, 470, 0, 0, 26, 0, 27, 321, 0, 0, 750, 0, 0, 51, 51, 51, 0, 78, 78, 0, 1173, 0, 0, 0, 0, 78, 0, 0, 0, 0, 1174, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 1175, 640, 0, 0, 0, 0, 0, 0, 750, 750, 1034, 0, 0, 0, 78, 0, 78, 1034, 0, 0, 0, 78, 78, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 205, 782, 782, 782, 0, 0, 0, 205, 301, 8, 9, 10, 167, 12, 13, 0, 0, 466, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 17, 18, 0, 0, 0, 0, 1039, 20, 0, 0, 205, 0, 21, 0, 0, 0, 23, 0, 636, 7, 8, 9, 10, 0, 0, 26, 578, 27, 321, 0, 0, 0, 549, 549, 549, 0, 0, 0, 0, 0, 0, 1221, 0, 643, 0, 0, 0, 18, 0, 0, 0, 1222, 0, 203, 0, 0, 0, 0, 21, 32, 0, 0, 0, 1223, 640, 0, 0, 0, 0, 0, 0, 26, 0, 27, 28, 1039, 1039, 1039, 258, 0, 0, 262, 658, 0, 0, 0, 0, 194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 705, 0, 51, 0, 258, 0, 366, 32, 0, 0, 0, 196, 0, 0, 0, 0, 0, 0, 0, 643, 643, 0, 0, 643, 0, 0, 643, 0, 0, 0, 0, 0, 0, 0, 0, 643, 0, 0, 0, 643, 643, 643, 0, 0, 0, 643, 301, 8, 9, 10, 0, 0, 78, 78, 78, 78, 78, 78, 0, 0, 0, 0, 78, 1041, 1041, 1041, 0, 0, 0, 0, 0, 0, 0, 0, 18, 203, 705, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 78, 0, 203, 203, 203, 0, 26, 0, 27, 321, 0, 0, 504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 778, 750, 750, 750, 1034, 1034, 1034, 1224, 78, 203, 779, 750, 1034, 1034, 1034, 0, 0, 0, 32, 0, 0, 0, 780, 782, 782, 782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 849, 0, 850, 0, 0, 205, 0, 853, 854, 856, 857, 858, 0, 258, 0, 0, 0, 0, 0, 0, 578, 0, 0, 0, 0, 0, -387, 8, 9, -387, -387, 12, 247, 875, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 17, -387, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, -387, 0, 905, 0, 23, 0, 636, 0, 0, 0, 0, 0, 0, 26, 0, 130, 131, 0, 0, 915, 915, 935, 915, 0, 0, 0, 0, 0, 935, 637, 0, 78, 78, 0, 0, 0, 0, 0, 78, 638, 0, 258, 262, 0, 0, 643, 0, -387, 643, 643, 643, 639, 640, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 78, 0, 0, 0, 0, 78, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 0, 0, 1224, 750, 750, 1224, 1224, 1224, 8, 9, 750, 167, 12, 13, 0, 0, 466, 0, 14, 0, 782, 782, 782, 782, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 17, 18, 0, 0, 0, 935, 0, 20, 205, 0, 0, 0, 935, 0, 0, 0, 23, 0, 1075, 8, 811, 10, 206, 12, 207, 26, 0, 130, 131, 14, 0, 203, 0, 203, 203, 78, 78, 78, 0, 0, 0, 0, 0, 16, 0, 17, 18, 203, 203, 0, 0, 203, 20, 203, 203, 203, 203, 21, 0, 0, 203, 23, 0, 0, 0, 203, 0, 0, 203, 0, 26, 0, 27, 28, 0, 0, 0, 0, 1077, 0, 0, 0, 0, 0, 0, 0, 30, 0, 470, 0, 0, 0, 0, 0, 470, 0, 31, 0, 205, 0, 205, 0, 264, 0, 32, 8, 9, 0, 33, 12, 13, 1224, 1224, 0, 1224, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 17, 0, 0, 641, 641, 641, 0, 20, 0, 265, 266, 0, 0, 1041, 0, 0, 23, 0, 267, 0, 0, 0, 0, 0, 0, 26, 0, 130, 131, 0, 268, 0, 1139, 0, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 0, 0, 290, 291, 292, 0, 293, 0, 0, 294, 0, 0, 875, 0, 0, 0, 0, 0, 470, 0, 0, 498, 935, 258, 262, 295, 0, 1041, 1041, 1041, 1224, 1224, 1224, 1224, 0, 0, 0, 0, 0, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 7, 8, 9, 10, 0, 705, 247, 1194, 0, 0, 0, 0, 0, 641, 0, 641, 641, 641, 0, 0, 0, 0, 0, 0, 203, 0, 0, 0, 18, 0, 0, 0, 0, 0, 498, 498, 498, 0, 0, 21, 1224, 102, 0, 0, 0, 935, 0, 0, 0, 0, 121, 102, 26, 935, 27, 28, 0, 102, 102, 205, 102, 1233, 0, 0, 203, 203, 1032, 0, 194, 0, 0, 258, 0, 1032, 0, 0, 0, 470, 195, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 470, 196, 0, 236, 0, 203, 203, 203, 203, 203, 504, 0, 0, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 0, 167, 12, 13, 0, 0, 0, 0, 14, 470, 0, 470, 0, 262, 0, 0, 0, 0, 0, 1277, 0, 0, 16, 0, 17, 18, 203, 0, 0, 0, 0, 20, 7, 8, 9, 10, 0, 390, 13, 121, 699, 0, 0, 168, 0, 0, 102, 102, 0, 26, 0, 130, 131, 102, 102, 0, 0, 102, 102, 102, 18, 418, 102, 102, 102, 641, 641, 641, 0, 0, 0, 21, 0, 0, 953, 0, 935, 7, 8, 9, 10, 206, 12, 207, 26, 0, 27, 28, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 493, 0, 16, 0, 17, 18, 0, 0, 0, 0, 494, 20, 0, 0, 0, 0, 21, 0, 32, 0, 23, 0, 495, 0, 935, 0, 0, 0, 0, 26, 0, 27, 28, 0, 641, 1454, 0, 0, 7, 8, 9, 10, 0, 0, 536, 30, 0, 0, 0, 0, 0, 0, 236, 102, 0, 31, 0, 0, 0, 0, 258, 262, 258, 32, 0, 0, 18, 33, 0, 0, 0, 0, 0, 102, 641, 641, 641, 21, 0, 0, 0, 0, 0, 953, 0, 0, 0, 0, 0, 0, 26, 0, 27, 28, 8, 9, 0, 167, 12, 13, 0, 0, 1577, 0, 14, 0, 194, 0, 0, 0, 0, 0, 102, 0, 0, 0, 195, 0, 16, 0, 17, 18, 0, 0, 32, 0, 0, 20, 196, 203, 203, 203, 203, 203, 1032, 203, 23, 1225, 0, 203, 1032, 1032, 1032, 0, 0, 26, 0, 130, 131, 0, 0, 203, 203, 203, 7, 8, 9, 10, 167, 12, 13, 102, 0, 102, 102, 14, 0, 1233, 0, 203, 8, 9, 0, 0, 12, 13, 0, 0, 0, 16, 14, 17, 18, 641, 0, 0, 0, 0, 20, 0, 504, 0, 0, 21, 16, 0, 17, 23, 0, 0, 0, 0, 0, 20, 0, 0, 26, 102, 27, 28, 0, 0, 23, 301, 8, 9, 10, 0, 0, 13, 0, 26, 30, 130, 131, 0, 102, 0, 0, 0, 0, 0, 31, 102, 0, 0, 102, 0, 0, 0, 32, 18, 0, 0, 33, 0, 0, 0, 102, 0, 0, 0, 21, 0, 0, 0, 0, 641, 641, 0, 0, 641, 0, 0, 641, 26, 0, 27, 321, 935, 0, 0, 0, 641, 0, 0, 0, 953, 953, 953, 258, 778, 0, 641, 0, 0, 0, 0, 0, 0, 0, 779, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 780, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 203, 203, 203, 203, 203, 1032, 0, 578, 203, 0, 0, 0, 0, 102, 0, 802, 0, 0, 203, 203, 203, 203, 0, 0, 0, 705, 1381, 127, 128, 10, 0, 641, 641, 641, 641, 641, 641, 641, 0, 102, 203, 641, 953, 953, 953, 7, 8, 9, 10, 206, 12, 207, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 16, 0, 17, 18, 0, 0, 0, 0, 26, 20, 27, 28, 0, 0, 21, 0, 1383, 0, 23, 0, 0, 0, 0, 0, 30, 0, 0, 26, 0, 27, 28, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 32, 30, 102, 18, 33, 0, 0, 0, 0, 0, 0, 31, 0, 102, 102, 0, 102, 102, 203, 32, 203, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 203, 203, 1225, 203, 0, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 0, 0, 0, 0, 0, 0, 641, 0, 0, 641, 641, 641, 102, 0, 0, 0, 0, 0, 0, 102, 121, 0, 0, 0, 0, 0, 0, 0, 236, 0, 0, 0, 7, 8, 9, 10, 215, 216, 217, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 802, 0, 0, 641, 641, 641, 641, 641, 641, 18, 0, 641, 0, 0, 0, 20, 0, 0, 1032, 0, 21, 0, 0, 0, 23, 0, 636, 203, 203, 1032, 203, 0, 0, 26, 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 8, 9, 0, 167, 12, 13, 0, 0, 466, 195, 14, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 1457, 0, 0, 16, 0, 17, 18, 0, 802, 0, 0, 102, 20, 0, 0, 0, 1032, 1032, 1032, 0, 0, 23, 203, 636, 0, 0, 0, 0, 0, 0, 26, 0, 130, 131, 0, 0, 0, 0, 0, 0, 0, 203, 0, 102, 102, 102, 1466, 8, 9, 0, 206, 12, 207, 0, 102, 0, 1467, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1468, 640, 0, 16, 0, 17, 18, 641, 641, 0, 641, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 130, 131, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 0, 0, 0, 0, 102, 102, 0, 0, 102, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 1282, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 1540, 0, -478, -478, -478, -478, -478, -478, -478, 0, 0, -478, 0, -478, 0, 0, 0, 0, 0, 641, 641, 641, 641, 0, -478, 0, -478, 0, 0, 0, -478, 0, 0, 0, 0, 0, -478, 0, 0, 0, 0, -478, 0, 0, 0, -478, 0, -478, 0, 0, 0, 0, 0, 0, -478, 0, -478, -478, -478, -478, -478, 0, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, -478, 641, -478, -478, -478, 0, -478, -478, -478, -478, -478, 0, 0, 0, 802, 0, 1541, -478, 0, 0, 0, 0, -478, -478, -478, 570, -478, 7, 8, 9, 10, 167, 12, 302, 303, 304, 466, 305, 14, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 636, 0, 315, 316, 317, 318, 319, 26, 0, 27, 28, -312, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 1036, 0, 0, 102, 102, 0, 102, 0, 325, 326, 1037, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 1038, 640, 0, 0, 0, 0, 0, 102, 0, 0, 102, 102, 0, 0, 0, 0, 0, 332, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 0, 0, 0, 0, 0, 802, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 0, 0, 0, 802, 0, 0, 1598, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 102, 1321, 102, 1322, 1323, 1324, 10, 167, 12, 302, 303, 304, 0, 305, 14, 1325, 0, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 15, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 1336, 23, 1337, 0, 0, 315, 316, 317, 318, 319, 26, 0, 1338, 321, 733, 0, 1339, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 465, 1340, 301, 8, 9, 10, 167, 12, 302, 303, 304, 466, 305, 14, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 878, 331, 301, 8, 9, 10, 167, 12, 302, 303, 304, 0, 305, 14, 0, 0, -799, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 1556, 0, -789, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 736, 331, 866, 867, 868, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 869, 870, 737, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 871, 570, 0, 301, 8, 9, 10, 0, 12, 302, 303, 304, 0, 305, 14, 1022, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, -312, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 571, 0, 0, 0, 0, 0, 0, 0, 325, 326, 572, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 736, 573, 866, 867, 868, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 869, 870, 737, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 871, 736, 0, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 737, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 736, 0, 866, 867, 868, 10, 1230, 12, 482, 303, 304, 0, 305, 14, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 869, 870, 737, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 736, 331, 866, 867, 868, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, -482, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 869, 870, 737, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 570, 331, 7, 8, 9, 10, 0, 12, 302, 303, 304, 0, 305, 14, 0, 0, 0, 1360, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 28, -312, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 1526, 0, 0, 0, 0, 0, 0, 0, 325, 326, 1527, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 736, 1528, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 737, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 878, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, -789, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 1610, 331, 301, 8, 9, 10, 0, 12, 302, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, -197, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 878, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 972, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, -789, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 974, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 1574, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 483, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 788, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 918, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 939, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 1168, 1322, 1323, 1324, 10, 167, 12, 302, 303, 304, 0, 305, 14, 1325, 0, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 15, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 1336, 23, 1337, 0, 0, 315, 316, 317, 318, 319, 26, 0, 1338, 321, 733, 0, 1339, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 0, 1340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1464, 332, 1322, 1323, 1324, 10, 167, 12, 302, 303, 304, 0, 305, 14, 1325, 0, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 15, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 1336, 23, 1337, 0, 0, 315, 316, 317, 318, 319, 26, 0, 1338, 321, 733, 0, 1339, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 0, 1340, 0, 1322, 1323, 1324, 10, 167, 12, 302, 303, 304, 0, 305, 14, 1325, 332, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 15, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 1336, 23, 1337, 0, 0, 315, 316, 317, 318, 319, 26, 0, 1338, 321, 1583, 0, 1339, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 0, 1340, 0, 1322, 1323, 1324, 10, 167, 12, 302, 303, 304, 0, 305, 14, 1325, 332, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 15, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 1336, 23, 1337, 0, 0, 315, 316, 317, 318, 319, 26, 0, 1338, 321, 0, 0, 1339, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 0, 1340, 301, 8, 9, 10, 167, 12, 302, 303, 304, 466, 305, 14, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 636, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 949, 0, 0, 0, 0, 0, 0, 0, 325, 326, 950, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 951, 640, 7, 8, 9, 10, 167, 12, 302, 303, 304, 466, 305, 14, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 636, 0, 315, 316, 317, 318, 319, 26, 0, 27, 28, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 1036, 0, 0, 0, 0, 0, 0, 0, 325, 326, 1037, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 1038, 640, 301, 8, 9, 10, 0, 12, 302, 303, 304, 0, 305, 14, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 636, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 949, 0, 0, 0, 0, 0, 0, 0, 325, 326, 950, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 951, 640, 7, 8, 9, 10, 0, 12, 302, 303, 304, 0, 305, 14, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 636, 0, 315, 316, 317, 318, 319, 26, 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 1036, 0, 0, 0, 0, 0, 0, 0, 325, 326, 1037, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 1038, 640, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 571, 0, 0, 0, 0, 0, 0, 0, 325, 326, 572, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 573, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 1437, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 167, 12, 302, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 7, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 28, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 1526, 0, 0, 0, 0, 0, 0, 0, 325, 326, 1527, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 1528, 301, 8, 9, 10, 0, 12, 302, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 320, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 0, 12, 302, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 585, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 586, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 624, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 571, 0, 0, 0, 0, 0, 0, 0, 325, 326, 572, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 573, 1187, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 322, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 7, 8, 9, 10, 0, 12, 302, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 18, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 1526, 0, 0, 0, 0, 0, 0, 0, 325, 326, 1527, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 1528, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 553, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 555, 301, 8, 9, 10, 0, 12, 482, 303, 304, 0, 305, 14, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 16, 306, 17, 0, 19, 0, 307, 308, 309, 20, 0, 310, 311, 312, 21, 313, 314, 0, 23, 0, 0, 0, 315, 316, 317, 318, 319, 26, 0, 27, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 325, 326, 327, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 678, 0, 0, 332, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 1118, 0, 0, 0, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 1591, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 0, 601, 602, 603, 604, 605, 606, 607, 608, 609 }; static const short yycheck[] = { 4, 175, 126, 161, 4, 23, 149, 150, 57, 210, 4, 174, 524, 42, 55, 80, 307, 308, 731, 252, 176, 403, 357, 351, 461, 583, 305, 306, 357, 907, 59, 35, 133, 324, 403, 35, 327, 42, 42, 330, 156, 35, 333, 42, 403, 124, 337, 248, 42, 707, 14, 84, 374, 57, 345, 662, 244, 210, 441, 80, 339, 190, 1419, 4, 133, 134, 219, 90, 72, 92, 1341, 815, 42, 817, 42, 1509, 134, 218, 219, 144, 84, 825, 60, 1508, 88, 456, 90, 136, 92, 30, 31, 11, 9, 1634, 35, 1507, 297, 479, 4, 4, 11, 42, 33, 107, 108, 1531, 63, 714, 11, 713, 479, 60, 61, 38, 137, 4, 5, 1658, 75, 83, 9, 1351, 358, 359, 357, 4, 1552, 176, 1358, 35, 35, 109, 136, 137, 175, 139, 42, 42, 62, 204, 169, 1553, 106, 84, 55, 62, 474, 55, 1556, 55, 351, 57, 63, 46, 1588, 63, 35, 485, 4, 5, 165, 165, 12, 42, 169, 169, 55, 1, 57, 58, 169, 7, 176, 409, 410, 169, 1250, 1251, 109, 831, 1595, 210, 71, 76, 109, 837, 190, 1613, 108, 218, 219, 75, 81, 1267, 0, 136, 48, 108, 1606, 169, 108, 169, 38, 49, 1, 108, 577, 33, 149, 150, 60, 57, 58, 63, 4, 4, 140, 1642, 730, 248, 1635, 63, 63, 55, 165, 59, 0, 48, 169, 63, 136, 63, 156, 75, 140, 81, 1593, 1508, 1, 48, 4, 93, 263, 48, 61, 35, 35, 348, 48, 190, 4, 5, 42, 194, 195, 1667, 108, 136, 108, 165, 1138, 95, 59, 169, 169, 65, 63, 108, 297, 175, 176, 35, 93, 94, 3, 4, 5, 6, 42, 348, 571, 572, 1512, 510, 93, 249, 165, 108, 93, 213, 169, 449, 109, 93, 298, 947, 59, 221, 95, 108, 527, 27, 48, 57, 58, 31, 1380, 386, 48, 75, 80, 344, 361, 42, 238, 1389, 1390, 223, 1392, 65, 84, 214, 351, 149, 150, 151, 55, 331, 57, 58, 659, 989, 1562, 60, 104, 61, 394, 360, 61, 65, 344, 700, 725, 726, 60, 48, 136, 93, 352, 55, 493, 494, 182, 93, 507, 49, 360, 361, 93, 963, 89, 732, 966, 133, 405, 506, 507, 12, 690, 75, 196, 48, 136, 514, 144, 165, 60, 60, 407, 169, 496, 108, 4, 109, 1614, 526, 109, 350, 351, 352, 93, 94, 108, 357, 998, 999, 629, 48, 61, 403, 61, 165, 406, 344, 545, 169, 3, 4, 5, 403, 1062, 60, 1290, 35, 443, 60, 93, 94, 63, 93, 361, 48, 1074, 4, 108, 108, 190, 663, 63, 63, 471, 108, 473, 474, 204, 993, 60, 61, 443, 443, 75, 75, 93, 94, 443, 474, 109, 1054, 109, 1, 60, 3, 4, 5, 35, 361, 1108, 108, 1110, 108, 57, 58, 403, 55, 1538, 1539, 93, 94, 472, 239, 48, 475, 909, 48, 48, 479, 525, 506, 507, 48, 55, 108, 361, 75, 81, 514, 1, 48, 3, 4, 5, 48, 25, 263, 27, 518, 48, 526, 108, 405, 75, 48, 443, 55, 525, 57, 58, 39, 471, 48, 473, 474, 475, 59, 518, 93, 545, 63, 93, 93, 94, 525, 1266, 55, 93, 94, 59, 451, 551, 48, 63, 93, 93, 48, 108, 75, 93, 443, 479, 12, 55, 93, 57, 58, 59, 60, 93, 551, 1060, 553, 48, 555, 493, 494, 93, 94, 560, 561, 562, 563, 564, 724, 95, 487, 443, 471, 472, 473, 474, 573, 75, 361, 496, 479, 93, 1179, 1180, 60, 93, 583, 344, 487, 586, 60, 525, 93, 356, 60, 621, 513, 63, 48, 65, 76, 500, 93, 25, 361, 27, 76, 48, 78, 508, 4, 5, 48, 1043, 1044, 990, 8, 9, 847, 800, 801, 59, 14, 620, 621, 806, 525, 525, 990, 957, 516, 665, 61, 48, 918, 957, 698, 59, 990, 107, 691, 63, 639, 93, 666, 37, 403, 698, 25, 646, 413, 25, 93, 525, 46, 1019, 48, 93, 792, 97, 443, 855, 61, 57, 58, 949, 950, 55, 48, 3, 4, 5, 706, 95, 493, 494, 495, 693, 93, 9, 48, 953, 12, 48, 706, 59, 443, 621, 699, 63, 4, 5, 809, 650, 48, 753, 693, 1202, 1128, 1129, 65, 93, 63, 637, 638, 639, 3, 4, 5, 831, 60, 61, 646, 93, 55, 837, 55, 31, 48, 730, 31, 95, 479, 57, 58, 93, 60, 63, 93, 94, 60, 957, 62, 63, 75, 65, 75, 3, 1243, 93, 6, 55, 525, 57, 58, 93, 76, 108, 78, 59, 706, 748, 1036, 1037, 983, 65, 60, 71, 755, 522, 57, 58, 59, 93, 94, 31, 665, 81, 525, 55, 792, 75, 76, 815, 78, 817, 42, 63, 108, 93, 822, 823, 55, 825, 55, 548, 1216, 45, 822, 75, 63, 57, 58, 3, 4, 5, 6, 55, 500, 59, 58, 815, 75, 817, 75, 71, 508, 706, 75, 823, 1240, 825, 746, 747, 748, 81, 832, 833, 815, 835, 817, 755, 1143, 89, 55, 947, 823, 93, 825, 55, 59, 33, 42, 855, 831, 832, 833, 63, 835, 49, 837, 3, 4, 5, 778, 779, 955, 57, 58, 75, 1006, 55, 1282, 844, 845, 846, 3, 4, 5, 55, 7, 8, 9, 55, 621, 55, 1150, 76, 25, 78, 27, 634, 108, 1102, 1103, 1104, 1057, 1058, 1059, 89, 108, 815, 639, 817, 31, 75, 649, 49, 76, 646, 37, 825, 1028, 1029, 108, 57, 58, 831, 11, 855, 1036, 1037, 59, 837, 1144, 1145, 63, 1147, 55, 906, 57, 58, 59, 910, 108, 1621, 815, 815, 817, 817, 48, 97, 1031, 822, 823, 109, 825, 825, 61, 748, 4, 5, 818, 819, 48, 9, 755, 93, 95, 1369, 1062, 55, 828, 815, 941, 817, 3, 149, 150, 151, 947, 61, 1074, 825, 951, 75, 103, 104, 105, 87, 88, 75, 55, 91, 92, 93, 94, 25, 63, 27, 63, 94, 795, 929, 111, 1033, 1406, 60, 61, 93, 936, 55, 75, 57, 58, 94, 1108, 93, 1110, 93, 753, 748, 93, 990, 196, 992, 993, 71, 755, 955, 957, 59, 55, 990, 75, 63, 75, 81, 60, 61, 63, 75, 929, 947, 75, 949, 950, 951, 781, 936, 94, 60, 75, 1065, 3, 4, 5, 6, 1086, 1350, 11, 1065, 815, 1030, 817, 108, 55, 95, 955, 4, 5, 1038, 825, 1, 60, 3, 4, 5, 6, 1046, 8, 60, 61, 1095, 84, 85, 990, 1341, 815, 108, 817, 1170, 108, 42, 190, 1062, 1430, 108, 825, 1025, 49, 1300, 1086, 75, 831, 1031, 75, 1074, 57, 58, 837, 1095, 1446, 55, 42, 4, 5, 75, 4, 5, 55, 49, 57, 58, 1028, 1029, 1030, 55, 1095, 57, 58, 108, 1036, 1037, 1038, 48, 71, 55, 1025, 1218, 89, 1108, 55, 1110, 1031, 63, 81, 109, 3, 4, 5, 1118, 7, 8, 9, 109, 1025, 75, 1062, 94, 49, 89, 75, 49, 60, 61, 1152, 108, 57, 58, 1074, 57, 58, 33, 108, 108, 31, 65, 8, 9, 93, 65, 37, 108, 14, 1152, 175, 111, 3, 4, 5, 1095, 81, 27, 60, 81, 1065, 1531, 75, 65, 75, 1546, 57, 58, 1108, 75, 1110, 37, 1175, 75, 76, 1348, 55, 1350, 1546, 108, 46, 111, 1552, 111, 947, 1202, 1078, 956, 951, 958, 1095, 1095, 1084, 1085, 1349, 59, 1088, 1089, 223, 108, 1092, 60, 61, 1028, 1029, 1030, 57, 58, 1170, 1579, 1213, 1036, 1037, 1038, 1213, 108, 1652, 1095, 1266, 108, 1223, 60, 61, 1550, 3, 4, 5, 990, 7, 8, 9, 60, 61, 1173, 1174, 1175, 1526, 1527, 1067, 1068, 55, 1261, 8, 1613, 93, 48, 1266, 1170, 4, 5, 60, 65, 109, 93, 150, 151, 1218, 109, 55, 61, 4, 5, 37, 1266, 1033, 1094, 65, 1030, 1638, 65, 1099, 65, 108, 1213, 108, 1038, 107, 108, 57, 58, 61, 1221, 1222, 1223, 108, 493, 494, 495, 65, 3, 4, 5, 6, 49, 63, 1218, 1236, 1237, 65, 1062, 196, 57, 58, 111, 190, 49, 1095, 60, 1348, 1213, 1350, 1074, 76, 57, 58, 108, 1239, 1086, 108, 14, 4, 5, 1350, 4, 5, 81, 1266, 22, 42, 76, 462, 76, 1095, 76, 108, 1213, 108, 81, 1341, 4, 5, 55, 76, 57, 58, 1108, 1349, 1110, 1351, 63, 1550, 108, 1351, 1258, 108, 1358, 108, 71, 1263, 1358, 191, 1266, 1266, 1366, 48, 27, 1523, 81, 49, 31, 65, 55, 63, 57, 58, 89, 57, 58, 63, 93, 405, 60, 108, 63, 1526, 1527, 108, 71, 1266, 108, 55, 27, 57, 58, 111, 31, 109, 81, 60, 61, 81, 1341, 108, 65, 108, 94, 71, 1176, 111, 93, 94, 1351, 1175, 3, 4, 5, 81, 89, 1358, 75, 552, 48, 108, 111, 60, 61, 108, 1256, 1257, 124, 1259, 1260, 108, 1262, 108, 331, 109, 1341, 108, 1601, 4, 5, 108, 1348, 1349, 1350, 471, 1351, 473, 474, 1213, 109, 61, 148, 1358, 30, 31, 60, 33, 49, 1223, 108, 487, 1341, 65, 1468, 63, 57, 58, 60, 108, 496, 60, 1351, 108, 500, 93, 1266, 93, 611, 1358, 45, 57, 508, 59, 617, 93, 619, 620, 93, 65, 55, 1261, 57, 58, 1387, 1388, 109, 108, 1502, 331, 8, 108, 1266, 1507, 1508, 1509, 1469, 1507, 1512, 108, 1551, 111, 1512, 33, 108, 108, 403, 65, 108, 55, 653, 1550, 108, 111, 1528, 1466, 1467, 1468, 3, 4, 5, 108, 63, 430, 431, 108, 3, 4, 5, 748, 108, 108, 1546, 239, 240, 1469, 755, 1377, 1378, 1553, 108, 108, 108, 1553, 48, 108, 252, 111, 1562, 108, 63, 1502, 1562, 1456, 108, 141, 1507, 1508, 1509, 1532, 146, 1512, 96, 149, 150, 151, 63, 1341, 61, 61, 55, 9, 57, 58, 1588, 1526, 1527, 1351, 55, 61, 57, 58, 479, 1363, 1358, 190, 16, 494, 495, 108, 176, 108, 1507, 1508, 108, 1546, 182, 1512, 1532, 108, 1614, 111, 1553, 108, 1614, 93, 93, 61, 194, 195, 196, 1562, 61, 65, 3, 4, 5, 323, 1507, 1508, 55, 1457, 93, 1512, 210, 93, 17, 61, 55, 665, 108, 107, 218, 219, 108, 1551, 61, 1588, 1553, 1479, 1480, 1481, 790, 3, 4, 5, 553, 1562, 555, 102, 108, 4, 5, 1667, 11, 8, 9, 1667, 364, 61, 502, 14, 108, 1614, 1553, 572, 573, 373, 57, 58, 706, 61, 93, 1562, 260, 28, 61, 30, 1581, 586, 386, 60, 830, 65, 37, 108, 11, 61, 836, 61, 1526, 1527, 1528, 46, 1468, 1535, 1536, 57, 58, 1614, 108, 108, 55, 11, 57, 58, 59, 3, 4, 5, 6, 553, 61, 555, 61, 61, 1667, 61, 560, 3, 4, 5, 6, 0, 0, 1614, 0, 170, 1502, 2, 35, 573, 1444, 1507, 1508, 1509, 691, 169, 1512, 646, 93, 990, 639, 165, 586, 331, 42, 1600, 590, 646, 823, 12, 1667, 49, 443, 1202, 94, 1429, 42, 239, 1667, 57, 58, 139, 300, 1605, 27, 910, 976, 737, 31, 672, 1546, 57, 58, 1243, 618, 243, 1667, 1553, 1060, 924, 624, 926, 1095, 928, 822, 48, 1562, 823, 1263, 674, 969, 89, 942, 201, 944, 621, 640, 60, 61, 348, 63, 124, 65, 89, 3, 4, 5, 1028, 1029, 1030, 1351, 1214, 1588, 1638, 522, 1036, 1037, 1038, 406, 407, 1633, 1621, 1567, 1366, 3, 4, 5, 6, 764, -1, 93, 94, 420, 978, -1, 423, 4, 5, 1614, 748, -1, 429, 430, 431, -1, 108, 755, 435, -1, 748, -1, -1, 31, -1, -1, 462, 755, -1, 57, 58, 769, -1, -1, 42, -1, -1, -1, -1, 1013, 48, 779, 780, -1, 3, 4, 5, 55, 585, 57, 58, -1, 49, -1, -1, 472, -1, 474, -1, -1, 57, 58, 1667, 71, -1, -1, -1, 3, 4, 5, 6, 488, -1, 81, 491, -1, 493, 494, 495, -1, -1, 89, 499, -1, -1, 93, 94, -1, 505, 506, 507, -1, 629, 510, -1, -1, 55, 514, 57, 58, 59, -1, -1, 831, -1, -1, 42, -1, -1, 837, 527, -1, 4, 5, -1, -1, 552, 9, -1, 55, -1, 57, 58, 4, 5, 61, -1, 63, 1107, -1, 1109, 3, 4, 5, -1, 71, 553, -1, 555, 31, 81, 82, 83, 84, 85, 81, 79, 80, 81, 82, 83, 84, 85, 89, 571, 572, 573, 93, 1025, -1, -1, -1, 699, 55, 1031, 57, 58, -1, -1, 586, 707, -1, -1, -1, 55, 611, 57, 58, -1, 71, -1, 617, -1, 619, 620, 57, 58, 1166, -1, 81, -1, -1, -1, -1, -1, 88, -1, 90, 1065, 92, 737, 93, -1, 3, 4, 5, 6, -1, -1, -1, 646, -1, 950, 951, -1, -1, -1, 653, -1, 947, 637, 638, 639, 951, -1, 3, 4, 5, 6, 646, 1204, 9, 1206, -1, 1208, -1, -1, -1, -1, 39, 40, 914, 42, -1, 137, -1, 139, -1, -1, 666, 3, 4, 5, 31, -1, 55, -1, 57, 58, 3, 4, 5, 990, -1, 42, -1, -1, -1, 1247, -1, 48, -1, -1, 1252, -1, 948, -1, 55, 951, 57, 58, -1, -1, -1, -1, 3, 4, 5, 6, 706, 707, 1029, 1030, 71, -1, -1, -1, 190, -1, 1037, 1038, -1, 1030, 81, 57, 58, -1, -1, -1, -1, 1038, 89, -1, 57, 58, 93, 94, -1, -1, 755, -1, -1, -1, -1, 42, 1304, -1, -1, -1, 746, 747, 748, -1, 769, 1062, -1, 1310, -1, 755, 57, 58, -1, 3, 4, 5, 6, 1074, -1, 9, 4, 5, 1218, 769, -1, 9, -1, -1, -1, -1, 776, 777, 778, 779, 780, -1, 1038, -1, 784, 4, 5, 31, -1, 1239, 9, -1, 792, 31, -1, 795, -1, 1108, 42, 1110, -1, -1, -1, -1, 48, 3, 4, 5, 1258, 7, -1, 55, 31, 57, 58, -1, -1, 55, -1, 57, 58, -1, -1, 823, 1457, -1, -1, 71, -1, 48, -1, -1, -1, 71, 1396, 1397, 55, 81, 57, 58, 38, -1, 82, 81, -1, 89, 322, -1, -1, 93, 94, 1413, 71, 1174, 1175, 93, 976, 55, -1, 57, 58, -1, 81, -1, 1175, -1, -1, -1, -1, 989, -1, -1, -1, -1, 93, 94, -1, 3, 4, 5, -1, -1, -1, -1, 360, 3, 4, 5, 6, -1, -1, 910, 1148, 1526, 1527, 1528, -1, -1, 1348, -1, 1350, 1222, 1223, -1, -1, 924, -1, 926, -1, 928, 1472, 1473, 1223, 31, -1, 3, 4, 5, 6, 159, -1, 9, -1, -1, 42, -1, 1488, 1489, -1, 55, 930, 57, 58, 933, 7, 8, 9, 55, -1, 57, 58, 14, -1, 31, -1, 945, -1, -1, -1, 949, 950, 951, 192, 71, 42, -1, -1, -1, 31, 978, 48, -1, -1, 81, 37, 205, -1, 55, -1, 57, 58, 89, -1, 46, -1, 93, -1, -1, -1, -1, -1, -1, -1, 71, -1, 461, 462, -1, 61, 989, -1, -1, -1, 81, 1013, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, 93, 94, -1, -1, 1129, -1, 3, 4, 5, 6, -1, -1, -1, -1, 1469, -1, -1, 1278, 1279, 1280, 1281, 1026, 1027, 1028, 1029, 1030, -1, 1288, -1, -1, 1035, 1036, 1037, 1038, -1, -1, -1, 518, -1, -1, -1, -1, 1047, 1048, 1049, 42, -1, -1, -1, -1, -1, -1, 49, -1, -1, -1, -1, -1, -1, -1, 57, 58, 1067, 1068, -1, -1, -1, -1, -1, -1, 551, 552, -1, 1334, -1, -1, -1, 1532, 559, -1, -1, -1, -1, -1, 81, 1210, -1, -1, -1, 1094, -1, 1216, 89, -1, 1099, -1, 1551, -1, -1, -1, -1, -1, 583, -1, 585, -1, -1, 588, 589, -1, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, -1, 611, 1457, -1, -1, -1, -1, 617, -1, 619, 620, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 1468, 4, 5, -1, -1, 8, 9, 7, 8, 9, -1, 14, -1, 646, 14, -1, 1173, 1174, 1175, -1, 653, -1, -1, -1, -1, 28, 1439, 30, 1204, -1, 1206, 31, 1208, -1, 37, -1, -1, 37, -1, -1, 4, 5, -1, 46, 677, 678, 46, -1, -1, 1527, 1528, -1, 55, -1, 57, 58, -1, -1, 1335, 1336, 693, 61, 1219, 1220, 1221, 1222, 1223, 31, -1, 1226, -1, -1, -1, 3, 4, 5, 6, -1, 1546, 1236, 1237, 1238, -1, -1, 48, -1, -1, -1, -1, 1502, 93, 55, -1, 57, 58, 1508, 1509, -1, -1, 1256, 1257, 498, 1259, 1260, 737, 1262, 503, 71, -1, 7, 8, 9, 42, -1, -1, 1528, 14, 81, 48, -1, -1, -1, 755, -1, -1, 55, -1, 57, 58, 93, 94, 528, -1, 31, 1310, -1, 769, 534, -1, 37, -1, 71, -1, -1, 1421, -1, -1, -1, 46, 546, 547, 81, 549, -1, -1, 4, 5, -1, -1, 89, 9, -1, -1, 93, 94, -1, 1443, 1444, -1, -1, -1, -1, -1, -1, -1, 1588, -1, -1, -1, -1, -1, 814, 31, 1, -1, 3, 4, 5, 6, 7, 8, 9, 1349, 1350, -1, 1608, 14, -1, 31, 832, 833, -1, 835, -1, 1361, 1362, 55, 1364, 57, 58, 28, -1, 30, 31, 32, 4, 5, 1630, -1, 37, 1377, 1378, 71, -1, 42, -1, -1, -1, 46, 1642, -1, 49, 81, -1, 7, 8, 9, 55, 871, 57, 58, 14, 31, 1520, 93, 642, 643, -1, -1, -1, 647, -1, -1, 71, -1, -1, -1, -1, 31, 48, -1, -1, -1, 81, 37, -1, 55, -1, 57, 58, -1, 89, -1, 46, -1, 93, 909, 910, -1, 97, -1, 1457, 71, -1, -1, -1, -1, -1, -1, -1, -1, 924, 81, 926, -1, 928, -1, -1, -1, -1, 1457, -1, -1, -1, 93, 94, -1, -1, 141, 1466, 1467, 1468, -1, 146, -1, 637, 638, -1, -1, -1, -1, 4, 1479, 1480, 1481, -1, -1, -1, -1, -1, -1, 14, -1, -1, 967, -1, 3, 4, 5, 6, -1, 24, 194, 195, -1, 978, -1, 30, 31, -1, 33, -1, 35, 750, -1, -1, -1, -1, -1, 42, 993, -1, 195, 996, -1, -1, -1, -1, -1, 1526, 1527, 1528, 55, -1, 57, 42, -1, -1, 1535, 1536, 1013, -1, 65, -1, -1, 782, -1, -1, 55, 72, 57, 58, -1, -1, 61, -1, -1, -1, -1, -1, 83, 84, -1, -1, 71, -1, -1, -1, -1, -1, 1043, 1044, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, 89, 106, 746, 747, 93, 260, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, -1, 838, 9, 840, 1077, -1, -1, -1, 1605, -1, -1, 134, -1, 136, -1, -1, -1, 140, 141, -1, -1, -1, 145, 146, 31, -1, 149, 150, 151, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, 48, 165, -1, -1, -1, 169, -1, 55, -1, 57, 58, 175, 176, -1, 1128, 1129, -1, -1, 1132, -1, -1, -1, -1, 71, -1, 3, 4, 5, 6, -1, 194, 195, 196, 81, 912, 913, -1, 915, 1152, -1, -1, 89, -1, -1, -1, 93, 94, 4, 5, -1, -1, -1, 9, 31, -1, -1, -1, -1, -1, 223, -1, -1, -1, -1, 42, -1, -1, -1, 946, -1, 48, -1, -1, -1, 31, -1, 240, 55, -1, 57, 58, -1, -1, -1, -1, 249, -1, -1, -1, -1, 1204, 48, 1206, 71, 1208, -1, 260, -1, 55, -1, 57, 58, 1216, 81, -1, -1, 420, -1, -1, 423, -1, 89, -1, -1, 71, 93, 94, -1, -1, -1, -1, 435, -1, -1, 81, -1, 1240, 930, -1, -1, 933, -1, -1, -1, 298, 299, 93, 94, -1, -1, 1254, 1255, 945, -1, -1, -1, 949, 950, -1, -1, 3, 4, 5, 6, -1, 488, 1034, -1, 491, -1, 493, 494, -1, -1, -1, -1, -1, -1, 1282, -1, -1, -1, 505, -1, 488, -1, -1, 491, 31, -1, 344, -1, -1, 1061, 348, -1, 350, 351, 352, 42, -1, 505, -1, -1, -1, 1073, 1310, 361, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 1330, -1, 71, -1, 14, -1, -1, 1026, 1027, 1028, 1029, -1, 81, -1, 394, -1, 1035, 1036, 1037, -1, 89, 31, -1, 403, 93, 405, 406, 37, -1, -1, -1, -1, 42, -1, -1, -1, 46, -1, 48, 1369, 420, -1, -1, 423, -1, 55, -1, 57, 58, -1, -1, -1, -1, 1383, -1, 435, -1, -1, -1, -1, -1, 71, -1, 443, -1, -1, -1, 1161, -1, -1, -1, 81, -1, -1, -1, -1, 1406, -1, -1, 89, -1, -1, -1, 93, 94, 3, 4, 5, 6, -1, -1, 471, 472, 473, 474, 475, -1, -1, -1, 479, -1, -1, -1, -1, -1, -1, -1, 487, 488, -1, -1, 491, -1, 493, 494, 495, 496, -1, -1, -1, 500, -1, -1, -1, 42, 505, -1, 1457, 508, -1, 1224, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, 61, -1, 525, -1, 1477, 1478, -1, -1, -1, -1, 71, 1173, 1174, -1, -1, -1, -1, -1, -1, -1, 81, -1, -1, 3, 4, 5, 6, -1, 89, 9, -1, 1268, 93, -1, -1, 1272, -1, 1510, 561, 562, 563, 564, 77, 78, 79, 80, 81, 82, 83, 84, 85, 31, -1, -1, 746, 747, -1, 1219, 1220, 1221, 1222, -1, 42, -1, 1226, -1, -1, -1, 1541, 1306, -1, -1, -1, -1, 747, 55, -1, 57, 58, 3, 4, 5, 6, -1, 776, 777, 778, 779, -1, -1, -1, 71, 784, -1, -1, -1, -1, -1, 621, -1, 623, 81, -1, 776, 777, -1, -1, 31, -1, 89, -1, 784, 635, 93, 637, 638, 639, -1, 42, -1, -1, -1, -1, 646, 48, -1, -1, 650, -1, -1, -1, 55, -1, 57, 58, 1372, -1, -1, -1, 1376, -1, -1, 665, -1, -1, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, 81, -1, -1, -1, 1398, 1399, -1, -1, 89, -1, -1, 691, 93, 94, -1, -1, -1, -1, 698, -1, -1, -1, 1652, -1, -1, -1, 706, 707, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, 1361, 1362, -1, 1364, 14, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 28, -1, 30, 31, 32, -1, 746, 747, 748, 37, 38, -1, -1, -1, 42, 755, -1, -1, 46, 47, -1, 49, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, 61, -1, 63, 776, 777, 778, 779, 780, -1, -1, 71, 784, -1, -1, -1, -1, -1, -1, -1, -1, 81, -1, -1, -1, 3, 4, 5, 6, 89, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, 812, -1, -1, 815, -1, 817, -1, -1, -1, 109, 822, 823, -1, 825, -1, 1466, 1467, -1, -1, 831, -1, -1, -1, -1, 42, 837, -1, -1, -1, -1, -1, -1, 844, 845, 846, -1, -1, 55, -1, 57, 58, -1, -1, 855, -1, 1026, 1027, 1028, 1029, -1, -1, -1, -1, 71, 1035, 1036, 1037, -1, -1, -1, -1, -1, -1, 81, 1026, 1027, 1047, 1048, 1049, -1, -1, 89, -1, 1035, 1, 93, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, 14, -1, -1, -1, -1, -1, -1, 906, -1, -1, -1, -1, -1, -1, 28, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, -1, -1, -1, 42, -1, 929, 930, 46, 47, 933, 49, -1, 936, -1, -1, -1, 55, 941, 57, 58, 12, 945, 61, 947, 63, 949, 950, 951, -1, -1, -1, 955, 71, 957, -1, -1, -1, -1, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 990, -1, 992, -1, 109, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, -1, -1, -1, -1, -1, -1, -1, 1025, 1026, 1027, 1028, 1029, 1030, 1031, -1, -1, -1, 1035, 1036, 1037, 1038, -1, -1, -1, -1, -1, -1, -1, 1046, 1047, 1048, 1049, 1219, 1220, 1221, 1222, -1, -1, -1, 1226, -1, -1, -1, -1, 1062, -1, -1, 1065, -1, 1236, 1237, 1219, 1220, -1, -1, -1, 1074, -1, 1226, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, 1087, -1, 14, -1, -1, -1, -1, -1, 1095, -1, -1, 3, 4, 5, 6, -1, 28, 9, 30, 31, 32, 1108, -1, 1110, -1, 37, -1, -1, -1, -1, 42, 1118, -1, -1, 46, -1, -1, 49, -1, 31, -1, -1, -1, 55, -1, 57, 58, -1, -1, -1, 42, -1, -1, -1, -1, -1, 48, 1144, 1145, 71, 1147, -1, -1, 55, -1, 57, 58, -1, -1, 81, 3, 4, 5, 6, -1, -1, 9, 89, -1, 71, -1, 93, -1, 1170, -1, 97, 1173, 1174, 1175, 81, -1, 3, 4, 5, 6, -1, -1, 89, 31, -1, -1, 93, 94, -1, -1, 1361, 1362, -1, 1364, 42, -1, -1, -1, -1, -1, 48, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, -1, -1, 42, 1218, 1219, 1220, 1221, 1222, 1223, 49, 71, 1226, -1, -1, -1, -1, -1, 57, 58, -1, 81, 1236, 1237, 1238, 1239, -1, 4, -1, 89, -1, -1, -1, 93, 94, -1, -1, 14, -1, -1, -1, -1, 81, -1, 1258, -1, 23, 24, -1, 1263, 89, -1, 1266, 30, 31, -1, 33, -1, 35, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, 55, -1, 57, -1, 14, 1466, 1467, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, 28, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 84, -1, -1, 42, -1, -1, -1, 46, 47, -1, 49, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, 61, -1, 63, -1, -1, 1348, 1349, 1350, -1, -1, 71, -1, -1, -1, 1526, 1527, -1, -1, 1361, 1362, 81, 1364, -1, 1366, -1, -1, -1, -1, 89, -1, 136, -1, 93, -1, 140, 141, -1, -1, -1, -1, 146, -1, -1, 149, 150, 151, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 165, -1, -1, -1, 169, -1, -1, -1, -1, -1, 175, 176, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, -1, -1, 194, 195, 196, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, 1457, 14, -1, 223, -1, -1, -1, 42, -1, 1466, 1467, 1468, 1469, -1, 49, 28, -1, 30, 31, 32, -1, -1, 57, 58, 37, 38, -1, -1, -1, 42, 4, 5, -1, 46, 47, 9, 49, -1, -1, -1, 260, -1, 55, -1, 57, 58, 81, -1, 61, -1, 63, -1, -1, -1, 89, -1, -1, 31, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, 81, 1526, 1527, 1528, -1, -1, 48, 1532, 89, -1, 298, 299, 93, 55, -1, 57, 58, -1, -1, -1, -1, 1546, -1, -1, -1, -1, 1551, -1, 109, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, 81, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, -1, 93, 94, -1, 14, -1, 344, -1, -1, -1, 348, -1, 350, 351, 352, -1, -1, 27, 28, 357, 30, 31, 32, 361, -1, -1, -1, 37, -1, -1, -1, -1, 42, -1, -1, 45, 46, 47, -1, 49, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, 61, 3, 4, 5, 6, 394, -1, 9, -1, -1, 71, -1, -1, -1, 403, -1, 405, 406, -1, -1, 81, -1, 3, 4, 5, 6, -1, -1, 89, 31, -1, 420, 93, -1, 423, -1, 97, -1, -1, -1, 42, -1, 3, 4, 5, 6, 435, -1, 9, -1, -1, -1, -1, 55, 443, 57, 58, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, 49, 71, 31, -1, -1, -1, -1, -1, 57, 58, -1, 81, -1, 42, 471, 472, 473, 474, 475, 89, -1, -1, 479, 93, -1, -1, 55, -1, 57, 58, 487, 488, 81, -1, 491, -1, 493, 494, 495, 496, 89, -1, 71, 500, -1, -1, -1, -1, 505, -1, -1, 508, 81, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, 93, -1, -1, 524, 525, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, 561, 562, 563, 564, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, 621, -1, 623, 87, 88, 89, -1, -1, -1, 93, 94, -1, -1, -1, -1, -1, 637, 638, 639, -1, -1, -1, -1, 4, 5, 646, 110, 1, 9, 3, 4, 5, 6, 7, 8, 9, -1, -1, 659, -1, 14, -1, -1, -1, 665, -1, -1, -1, -1, -1, 31, -1, -1, -1, 28, -1, 30, 31, 32, -1, -1, -1, -1, 37, -1, -1, -1, 48, 42, -1, 691, -1, 46, 47, 55, 49, 57, 58, 699, -1, -1, 55, -1, 57, 58, 706, 707, 61, -1, 63, 71, -1, -1, -1, -1, -1, -1, 71, -1, -1, 81, -1, -1, -1, -1, -1, -1, 81, -1, 730, -1, -1, 93, 94, -1, 89, -1, -1, -1, 93, -1, 3, 4, 5, 6, 746, 747, 748, -1, -1, -1, -1, -1, -1, 755, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, 12, -1, 14, 776, 777, 778, 779, 780, 42, -1, -1, 784, -1, -1, -1, 49, 28, -1, 30, 31, -1, -1, -1, 57, 58, 37, -1, -1, -1, -1, 42, -1, -1, -1, 46, -1, -1, -1, -1, 812, -1, -1, 815, 55, 817, 57, 58, 81, -1, 822, 823, -1, 825, -1, -1, 89, -1, -1, 831, 71, -1, -1, -1, -1, 837, -1, -1, -1, -1, 81, -1, 844, 845, 846, -1, -1, -1, 89, 4, -1, -1, 93, 855, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, 30, 31, -1, 33, 28, 35, 30, 31, -1, -1, -1, -1, 42, 37, -1, -1, -1, -1, 42, -1, -1, -1, 46, -1, -1, 55, -1, 57, -1, 906, -1, 55, -1, 57, 58, -1, -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, -1, -1, 80, -1, 929, 930, -1, -1, 933, 81, -1, 936, -1, -1, -1, -1, 941, 89, -1, -1, 945, 93, 947, -1, 949, 950, 951, -1, -1, -1, 955, -1, 957, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, 14, -1, -1, 133, 134, -1, 136, -1, -1, -1, 140, 141, -1, 990, 144, 992, 146, 31, -1, 149, 150, 151, -1, 37, -1, -1, 156, -1, 42, -1, -1, -1, 46, -1, 48, 165, -1, -1, -1, 169, -1, 55, -1, 57, 58, 175, 176, -1, 1025, 1026, 1027, 1028, 1029, 1030, 1031, -1, -1, 71, 1035, 1036, 1037, 1038, -1, -1, 194, 195, 196, 81, -1, 1046, 1047, 1048, 1049, -1, 204, 89, -1, -1, -1, 93, 94, -1, -1, 1060, -1, 1062, -1, -1, 1065, -1, -1, -1, -1, 223, -1, -1, -1, 1074, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, 14, -1, -1, -1, -1, -1, 1095, -1, -1, 3, 4, 5, 6, -1, 28, 9, 30, 31, 260, 1108, -1, 1110, -1, 37, -1, -1, -1, -1, 42, 1118, -1, -1, 46, -1, -1, 49, -1, 31, -1, -1, -1, 55, -1, 57, 58, -1, -1, 61, 42, 4, 5, -1, -1, 8, 9, 1144, 1145, 71, 1147, 14, -1, 55, -1, 57, 58, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, 89, -1, 71, -1, 93, -1, 1170, 37, -1, 1173, 1174, 1175, 81, -1, 331, -1, 46, -1, 48, -1, 89, -1, -1, -1, 93, 55, -1, 57, 58, -1, -1, 348, -1, -1, -1, -1, -1, -1, 1202, 356, -1, 71, -1, -1, 361, -1, -1, -1, -1, -1, -1, 81, -1, -1, 1218, 1219, 1220, 1221, 1222, 1223, -1, -1, 1226, 93, 94, -1, -1, -1, -1, -1, -1, -1, 1236, 1237, 1238, 1239, -1, 394, -1, 1243, -1, -1, -1, -1, -1, -1, -1, -1, 405, -1, -1, 4, 5, -1, 1258, 8, 9, -1, -1, 1263, -1, 14, 1266, 420, -1, -1, 423, -1, -1, -1, -1, -1, 429, 430, 431, 28, -1, 30, 435, -1, -1, -1, -1, -1, 37, -1, 443, -1, -1, -1, -1, -1, -1, 46, -1, 48, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, 471, 472, 473, 474, 71, -1, -1, -1, 479, -1, -1, -1, -1, -1, 81, -1, 487, 488, -1, 1337, 491, -1, 493, 494, 495, 496, 93, 94, -1, 500, 1348, 1349, 1350, -1, 505, 4, 5, 508, -1, 8, 9, -1, -1, 1361, 1362, 14, 1364, -1, 1366, -1, -1, -1, 4, 5, 525, 7, 8, 9, -1, 28, 12, 30, 14, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, 28, 46, 30, 31, -1, -1, 553, -1, 555, 37, 55, -1, 57, 58, -1, -1, -1, -1, 46, -1, 48, -1, -1, -1, 571, 572, 573, 55, -1, 57, 58, -1, -1, 4, -1, -1, -1, 4, 5, 586, -1, 8, 9, 71, -1, -1, -1, 14, -1, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, 30, 31, -1, 33, 1457, 35, 93, 94, -1, -1, -1, 37, 42, 1466, 1467, 1468, 1469, -1, -1, -1, 46, -1, 48, -1, -1, 55, -1, 57, 634, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, 646, -1, -1, -1, -1, 71, -1, 3, 4, 5, 6, -1, -1, -1, -1, 81, -1, -1, -1, 665, -1, -1, -1, -1, -1, -1, 33, 93, 94, -1, -1, -1, -1, 1526, 1527, 1528, -1, -1, -1, 1532, -1, -1, -1, -1, -1, 691, 42, -1, 55, -1, -1, -1, 698, 1546, -1, -1, -1, -1, 1551, 55, 706, 57, 58, -1, -1, -1, 136, 63, -1, -1, 140, 141, -1, -1, -1, 71, 146, -1, -1, 149, 150, 151, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, 89, -1, 165, -1, 93, -1, 169, 746, 747, 748, -1, -1, 175, 176, 753, -1, 755, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, -1, 769, 194, 195, 196, -1, -1, -1, 776, 777, 778, 779, 780, -1, -1, -1, 784, -1, -1, -1, 149, 150, 151, -1, 31, -1, -1, -1, -1, -1, -1, 223, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 175, 815, 55, 817, 57, 58, -1, -1, 822, 823, -1, 825, -1, -1, -1, -1, -1, -1, 71, 194, 195, 196, 260, -1, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, 223, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, -1, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, 357, 61, 62, -1, 361, 299, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, 949, 950, 951, 79, 80, 81, 955, 956, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, -1, 95, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 405, 109, 110, -1, -1, -1, -1, -1, 350, 351, 352, -1, -1, -1, -1, 420, -1, -1, 423, -1, -1, -1, -1, 3, 4, 5, 6, -1, -1, 9, 435, -1, -1, -1, -1, -1, -1, -1, 443, -1, -1, -1, -1, -1, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 31, 1033, -1, 1035, 1036, 1037, 1038, -1, -1, -1, -1, 42, 405, -1, -1, 471, 472, 473, 474, -1, 4, 5, -1, 479, 55, 9, 57, 58, -1, -1, -1, 487, 488, 1065, -1, 491, -1, 493, 494, 495, 71, -1, -1, -1, 500, -1, -1, 31, -1, 505, 81, -1, 508, -1, 1086, -1, -1, -1, 89, -1, -1, -1, 93, 1095, 48, -1, -1, -1, -1, 525, -1, 55, -1, 57, 58, -1, -1, -1, 471, -1, 473, 474, 475, -1, -1, -1, -1, 71, -1, -1, -1, -1, -1, -1, 487, 488, -1, 81, 491, -1, 493, 494, 495, 496, -1, -1, -1, 500, -1, 93, 94, -1, 505, -1, -1, 508, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, 12, 1170, 14, -1, 1173, 1174, 1175, 1176, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 42, -1, -1, -1, 46, -1, 48, -1, -1, -1, -1, -1, 635, 55, -1, 57, 58, -1, -1, 1218, 1219, 1220, 1221, 1222, 1223, -1, -1, 1226, -1, 71, -1, 4, 5, -1, -1, -1, 9, -1, -1, 81, -1, -1, 665, -1, -1, -1, -1, 89, -1, -1, -1, 93, 94, -1, 107, 108, -1, -1, 31, 1258, -1, -1, -1, 623, 1263, -1, -1, 1266, -1, -1, -1, -1, -1, -1, -1, 48, -1, 637, 638, 639, -1, -1, 55, 706, 57, 58, 646, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, 12, 71, 14, -1, -1, -1, -1, -1, 665, -1, -1, 81, -1, -1, -1, -1, 28, -1, 30, 31, -1, -1, -1, 93, 94, 37, 746, 747, 748, -1, 42, -1, -1, -1, 46, 755, 48, -1, -1, -1, 190, -1, -1, 55, -1, 57, 58, -1, -1, 706, -1, -1, 1348, 1349, 1350, -1, 776, 777, -1, 71, -1, -1, -1, -1, 784, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, 93, 94, -1, -1, -1, -1, -1, -1, 746, 747, 748, -1, -1, -1, 815, -1, 817, 755, -1, -1, -1, 822, 823, -1, 825, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 776, 777, 778, 779, 780, -1, -1, -1, 784, 3, 4, 5, 6, 7, 8, 9, -1, -1, 12, -1, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, 30, 31, -1, -1, -1, -1, 1457, 37, -1, -1, 822, -1, 42, -1, -1, -1, 46, -1, 48, 3, 4, 5, 6, -1, -1, 55, 331, 57, 58, -1, -1, -1, 844, 845, 846, -1, -1, -1, -1, -1, -1, 71, -1, 855, -1, -1, -1, 31, -1, -1, -1, 81, -1, 55, -1, -1, -1, -1, 42, 89, -1, -1, -1, 93, 94, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, 1526, 1527, 1528, 80, -1, -1, 83, 957, -1, -1, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, 81, 403, -1, 1551, -1, 104, -1, 106, 89, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, 929, 930, -1, -1, 933, -1, -1, 936, -1, -1, -1, -1, -1, -1, -1, -1, 945, -1, -1, -1, 949, 950, 951, -1, -1, -1, 955, 3, 4, 5, 6, -1, -1, 1025, 1026, 1027, 1028, 1029, 1030, -1, -1, -1, -1, 1035, 1036, 1037, 1038, -1, -1, -1, -1, -1, -1, -1, -1, 31, 175, 479, -1, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, 1065, -1, 194, 195, 196, -1, 55, -1, 57, 58, -1, -1, 204, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1095, 223, 81, 1035, 1036, 1037, 1038, -1, -1, -1, 89, -1, -1, -1, 93, 1047, 1048, 1049, -1, -1, -1, -1, -1, -1, -1, -1, -1, 249, 553, -1, 555, -1, -1, 1065, -1, 560, 561, 562, 563, 564, -1, 263, -1, -1, -1, -1, -1, -1, 573, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 586, -1, -1, -1, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 42, -1, 620, -1, 46, -1, 48, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, 1144, 1145, 639, 1147, -1, -1, -1, -1, -1, 646, 71, -1, 1219, 1220, -1, -1, -1, -1, -1, 1226, 81, -1, 356, 357, -1, -1, 1170, -1, 89, 1173, 1174, 1175, 93, 94, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 1258, -1, -1, -1, -1, 1263, -1, -1, 1266, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 405, -1, -1, 1218, 1219, 1220, 1221, 1222, 1223, 4, 5, 1226, 7, 8, 9, -1, -1, 12, -1, 14, -1, 1236, 1237, 1238, 1239, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, 30, 31, -1, -1, -1, 748, -1, 37, 1258, -1, -1, -1, 755, -1, -1, -1, 46, -1, 3, 4, 5, 6, 7, 8, 9, 55, -1, 57, 58, 14, -1, 471, -1, 473, 474, 1348, 1349, 1350, -1, -1, -1, -1, -1, 28, -1, 30, 31, 487, 488, -1, -1, 491, 37, 493, 494, 495, 496, 42, -1, -1, 500, 46, -1, -1, -1, 505, -1, -1, 508, -1, 55, -1, 57, 58, -1, -1, -1, -1, 63, -1, -1, -1, -1, -1, -1, -1, 71, -1, 831, -1, -1, -1, -1, -1, 837, -1, 81, -1, 1348, -1, 1350, -1, 1, -1, 89, 4, 5, -1, 93, 8, 9, 1361, 1362, -1, 1364, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, 30, -1, -1, 350, 351, 352, -1, 37, -1, 39, 40, -1, -1, 1457, -1, -1, 46, -1, 48, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, 60, -1, 906, -1, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, -1, -1, 87, 88, 89, -1, 91, -1, -1, 94, -1, -1, 941, -1, -1, -1, -1, -1, 947, -1, -1, 1457, 951, 649, 650, 110, -1, 1526, 1527, 1528, 1466, 1467, 1468, 1469, -1, -1, -1, -1, -1, 665, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1551, -1, -1, -1, 3, 4, 5, 6, -1, 990, 9, 992, -1, -1, -1, -1, -1, 471, -1, 473, 474, 475, -1, -1, -1, -1, -1, -1, 706, -1, -1, -1, 31, -1, -1, -1, -1, -1, 1526, 1527, 1528, -1, -1, 42, 1532, 14, -1, -1, -1, 1030, -1, -1, -1, -1, 23, 24, 55, 1038, 57, 58, -1, 30, 31, 1551, 33, 1046, -1, -1, 746, 747, 748, -1, 71, -1, -1, 753, -1, 755, -1, -1, -1, 1062, 81, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, 1074, 93, -1, 65, -1, 776, 777, 778, 779, 780, 781, -1, -1, 784, -1, -1, -1, -1, -1, -1, -1, -1, -1, 4, 5, -1, 7, 8, 9, -1, -1, -1, -1, 14, 1108, -1, 1110, -1, 809, -1, -1, -1, -1, -1, 1118, -1, -1, 28, -1, 30, 31, 822, -1, -1, -1, -1, 37, 3, 4, 5, 6, -1, 124, 9, 126, 46, -1, -1, 49, -1, -1, 133, 134, -1, 55, -1, 57, 58, 140, 141, -1, -1, 144, 145, 146, 31, 148, 149, 150, 151, 637, 638, 639, -1, -1, -1, 42, -1, -1, 646, -1, 1175, 3, 4, 5, 6, 7, 8, 9, 55, -1, 57, 58, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, -1, 28, -1, 30, 31, -1, -1, -1, -1, 81, 37, -1, -1, -1, -1, 42, -1, 89, -1, 46, -1, 93, -1, 1223, -1, -1, -1, -1, 55, -1, 57, 58, -1, 706, 61, -1, -1, 3, 4, 5, 6, -1, -1, 9, 71, -1, -1, -1, -1, -1, -1, 239, 240, -1, 81, -1, -1, -1, -1, 956, 957, 958, 89, -1, -1, 31, 93, -1, -1, -1, -1, -1, 260, 746, 747, 748, 42, -1, -1, -1, -1, -1, 755, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, 4, 5, -1, 7, 8, 9, -1, -1, 12, -1, 14, -1, 71, -1, -1, -1, -1, -1, 299, -1, -1, -1, 81, -1, 28, -1, 30, 31, -1, -1, 89, -1, -1, 37, 93, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 46, 1033, -1, 1035, 1036, 1037, 1038, -1, -1, 55, -1, 57, 58, -1, -1, 1047, 1048, 1049, 3, 4, 5, 6, 7, 8, 9, 348, -1, 350, 351, 14, -1, 1366, -1, 1065, 4, 5, -1, -1, 8, 9, -1, -1, -1, 28, 14, 30, 31, 855, -1, -1, -1, -1, 37, -1, 1086, -1, -1, 42, 28, -1, 30, 46, -1, -1, -1, -1, -1, 37, -1, -1, 55, 394, 57, 58, -1, -1, 46, 3, 4, 5, 6, -1, -1, 9, -1, 55, 71, 57, 58, -1, 413, -1, -1, -1, -1, -1, 81, 420, -1, -1, 423, -1, -1, -1, 89, 31, -1, -1, 93, -1, -1, -1, 435, -1, -1, -1, 42, -1, -1, -1, -1, 929, 930, -1, -1, 933, -1, -1, 936, 55, -1, 57, 58, 1468, -1, -1, -1, 945, -1, -1, -1, 949, 950, 951, 1176, 71, -1, 955, -1, -1, -1, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, 93, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 1218, 1219, 1220, 1221, 1222, 1223, -1, 1528, 1226, -1, -1, -1, -1, 522, -1, 524, -1, -1, 1236, 1237, 1238, 1239, -1, -1, -1, 1546, 3, 4, 5, 6, -1, 1025, 1026, 1027, 1028, 1029, 1030, 1031, -1, 548, 1258, 1035, 1036, 1037, 1038, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, 14, -1, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, 28, -1, 30, 31, -1, -1, -1, -1, 55, 37, 57, 58, -1, -1, 42, -1, 63, -1, 46, -1, -1, -1, -1, -1, 71, -1, -1, 55, -1, 57, 58, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, 89, 71, 623, 31, 93, -1, -1, -1, -1, -1, -1, 81, -1, 634, 635, -1, 637, 638, 1348, 89, 1350, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, 1361, 1362, 1363, 1364, -1, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, -1, -1, -1, -1, -1, -1, 1170, -1, -1, 1173, 1174, 1175, 691, -1, -1, -1, -1, -1, -1, 698, 699, -1, -1, -1, -1, -1, -1, -1, 707, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, 14, -1, -1, -1, -1, -1, -1, -1, 730, -1, -1, 1218, 1219, 1220, 1221, 1222, 1223, 31, -1, 1226, -1, -1, -1, 37, -1, -1, 1457, -1, 42, -1, -1, -1, 46, -1, 48, 1466, 1467, 1468, 1469, -1, -1, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, 4, 5, -1, 7, 8, 9, -1, -1, 12, 81, 14, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, 93, -1, -1, 28, -1, 30, 31, -1, 809, -1, -1, 812, 37, -1, -1, -1, 1526, 1527, 1528, -1, -1, 46, 1532, 48, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, 1551, -1, 844, 845, 846, 71, 4, 5, -1, 7, 8, 9, -1, 855, -1, 81, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 93, 94, -1, 28, -1, 30, 31, 1361, 1362, -1, 1364, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, -1, -1, -1, -1, 929, 930, -1, -1, 933, -1, -1, 936, -1, -1, -1, -1, -1, -1, -1, -1, 945, -1, -1, -1, -1, 111, -1, -1, -1, -1, 955, -1, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, -1, -1, 12, -1, 14, -1, -1, -1, -1, -1, 1466, 1467, 1468, 1469, -1, 25, -1, 27, -1, -1, -1, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 42, -1, -1, -1, 46, -1, 48, -1, -1, -1, -1, -1, -1, 55, -1, 57, 58, 59, 60, 61, -1, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 1532, 87, 88, 89, -1, 91, 92, 93, 94, 95, -1, -1, -1, 1060, -1, 101, 102, -1, -1, -1, -1, 107, 108, 109, 1, 111, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, -1, -1, 1087, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, 1144, 1145, -1, 1147, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 94, -1, -1, -1, -1, -1, 1170, -1, -1, 1173, 1174, -1, -1, -1, -1, -1, 110, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, -1, -1, -1, -1, -1, 1202, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, -1, -1, -1, 1243, -1, -1, 107, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 1261, 1, 1263, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, -1, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, 61, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 1, 95, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, 61, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 94, 1, -1, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 94, 1, -1, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 1, -1, 3, 4, 5, 6, 100, 8, 9, 10, 11, -1, 13, 14, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, 63, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, 61, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, 1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, 111, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, 111, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, 111, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, 111, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, -1, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, 61, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, -1, 95, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, -1, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, 61, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, -1, 95, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 110, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, 61, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, -1, 95, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, 15, 110, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, 45, 46, 47, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, 61, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, -1, 95, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 94, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 94, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 94, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, 48, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 94, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, 61, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, 7, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, 59, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 94, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, 62, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, 3, 4, 5, 6, -1, 8, 9, 10, 11, -1, 13, 14, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, -1, 32, -1, 34, 35, 36, 37, -1, 39, 40, 41, 42, 43, 44, -1, 46, -1, -1, -1, 50, 51, 52, 53, 54, 55, -1, 57, 58, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, 71, -1, -1, -1, -1, -1, -1, -1, 79, 80, 81, -1, -1, -1, -1, -1, 87, 88, 89, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, 110, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 60, -1, -1, -1, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, -1, 77, 78, 79, 80, 81, 82, 83, 84, 85 }; /* -*-C-*- Note some compilers choke on comments on `#line' lines. */ #line 3 "/usr/lib/bison.simple" /* This file comes from bison-1.28. */ /* Skeleton output parser for bison, Copyright (C) 1984, 1989, 1990 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 2, 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, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. */ /* This is the parser code that is written into each bison parser when the %semantic_parser declaration is not specified in the grammar. It was written by Richard Stallman by simplifying the hairy parser used when %semantic_parser is specified. */ #ifndef YYSTACK_USE_ALLOCA #ifdef alloca #define YYSTACK_USE_ALLOCA #else /* alloca not defined */ #ifdef __GNUC__ #define YYSTACK_USE_ALLOCA #define alloca __builtin_alloca #else /* not GNU C. */ #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386)) #define YYSTACK_USE_ALLOCA #include #else /* not sparc */ /* We think this test detects Watcom and Microsoft C. */ /* This used to test MSDOS, but that is a bad idea since that symbol is in the user namespace. */ #if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__) #if 0 /* No need for malloc.h, which pollutes the namespace; instead, just don't use alloca. */ #include #endif #else /* not MSDOS, or __TURBOC__ */ #if defined(_AIX) /* I don't know what this was needed for, but it pollutes the namespace. So I turned it off. rms, 2 May 1997. */ /* #include */ #pragma alloca #define YYSTACK_USE_ALLOCA #else /* not MSDOS, or __TURBOC__, or _AIX */ #if 0 #ifdef __hpux /* haible@ilog.fr says this works for HPUX 9.05 and up, and on HPUX 10. Eventually we can turn this on. */ #define YYSTACK_USE_ALLOCA #define alloca __builtin_alloca #endif /* __hpux */ #endif #endif /* not _AIX */ #endif /* not MSDOS, or __TURBOC__ */ #endif /* not sparc */ #endif /* not GNU C */ #endif /* alloca not defined */ #endif /* YYSTACK_USE_ALLOCA not defined */ #ifdef YYSTACK_USE_ALLOCA #define YYSTACK_ALLOC alloca #else #define YYSTACK_ALLOC malloc #endif /* Note: there must be only one dollar sign in this file. It is replaced by the list of actions, each action as one case of the switch. */ #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 yyerrlab1 /* 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. */ #define YYFAIL goto yyerrlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(token, value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { yychar = (token), yylval = (value); \ yychar1 = YYTRANSLATE (yychar); \ YYPOPSTACK; \ goto yybackup; \ } \ else \ { yyerror ("syntax error: cannot back up"); YYERROR; } \ while (0) #define YYTERROR 1 #define YYERRCODE 256 #ifndef YYPURE #define YYLEX yylex() #endif #ifdef YYPURE #ifdef YYLSP_NEEDED #ifdef YYLEX_PARAM #define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM) #else #define YYLEX yylex(&yylval, &yylloc) #endif #else /* not YYLSP_NEEDED */ #ifdef YYLEX_PARAM #define YYLEX yylex(&yylval, YYLEX_PARAM) #else #define YYLEX yylex(&yylval) #endif #endif /* not YYLSP_NEEDED */ #endif /* If nonreentrant, generate the variables here */ #ifndef YYPURE int yychar; /* the lookahead symbol */ YYSTYPE yylval; /* the semantic value of the */ /* lookahead symbol */ #ifdef YYLSP_NEEDED YYLTYPE yylloc; /* location data for the lookahead */ /* symbol */ #endif int yynerrs; /* number of parse errors so far */ #endif /* not YYPURE */ #if YYDEBUG != 0 int yydebug; /* nonzero means print parse trace */ /* Since this is uninitialized, it does not stop multiple parsers from coexisting. */ #endif /* YYINITDEPTH indicates the initial size of the parser's stacks */ #ifndef YYINITDEPTH #define YYINITDEPTH 200 #endif /* YYMAXDEPTH is the maximum size the stacks can grow to (effective only if the built-in stack extension method is used). */ #if YYMAXDEPTH == 0 #undef YYMAXDEPTH #endif #ifndef YYMAXDEPTH #define YYMAXDEPTH 10000 #endif /* Define __yy_memcpy. Note that the size argument should be passed with type unsigned int, because that is what the non-GCC definitions require. With GCC, __builtin_memcpy takes an arg of type size_t, but it can handle unsigned int. */ #if __GNUC__ > 1 /* GNU C and GNU C++ define this. */ #define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT) #else /* not GNU C or C++ */ #ifndef __cplusplus /* This is the most reliable way to avoid incompatibilities in available built-in functions on various systems. */ static void __yy_memcpy (to, from, count) char *to; char *from; unsigned int count; { register char *f = from; register char *t = to; register int i = count; while (i-- > 0) *t++ = *f++; } #else /* __cplusplus */ /* This is the most reliable way to avoid incompatibilities in available built-in functions on various systems. */ static void __yy_memcpy (char *to, char *from, unsigned int count) { register char *t = to; register char *f = from; register int i = count; while (i-- > 0) *t++ = *f++; } #endif #endif #line 217 "/usr/lib/bison.simple" /* The user can define YYPARSE_PARAM as the name of an argument to be passed into yyparse. The argument should have type void *. It should actually point to an object. Grammar actions can access the variable by casting it to the proper pointer type. */ #ifdef YYPARSE_PARAM #ifdef __cplusplus #define YYPARSE_PARAM_ARG void *YYPARSE_PARAM #define YYPARSE_PARAM_DECL #else /* not __cplusplus */ #define YYPARSE_PARAM_ARG YYPARSE_PARAM #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM; #endif /* not __cplusplus */ #else /* not YYPARSE_PARAM */ #define YYPARSE_PARAM_ARG #define YYPARSE_PARAM_DECL #endif /* not YYPARSE_PARAM */ /* Prevent warning if -Wstrict-prototypes. */ #ifdef __GNUC__ #ifdef YYPARSE_PARAM int yyparse (void *); #else int yyparse (void); #endif #endif int yyparse(YYPARSE_PARAM_ARG) YYPARSE_PARAM_DECL { register int yystate; register int yyn; register short *yyssp; register YYSTYPE *yyvsp; int yyerrstatus; /* number of tokens to shift before error messages enabled */ int yychar1 = 0; /* lookahead token as an internal (translated) token number */ short yyssa[YYINITDEPTH]; /* the state stack */ YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */ short *yyss = yyssa; /* refer to the stacks thru separate pointers */ YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */ #ifdef YYLSP_NEEDED YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */ YYLTYPE *yyls = yylsa; YYLTYPE *yylsp; #define YYPOPSTACK (yyvsp--, yyssp--, yylsp--) #else #define YYPOPSTACK (yyvsp--, yyssp--) #endif int yystacksize = YYINITDEPTH; int yyfree_stacks = 0; #ifdef YYPURE int yychar; YYSTYPE yylval; int yynerrs; #ifdef YYLSP_NEEDED YYLTYPE yylloc; #endif #endif YYSTYPE yyval; /* the variable used to return */ /* semantic values from the action */ /* routines */ int yylen; #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Starting parse\n"); #endif 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 - 1; yyvsp = yyvs; #ifdef YYLSP_NEEDED yylsp = yyls; #endif /* Push a new state, which is found in yystate . */ /* In all cases, when you get here, the value and location stacks have just been pushed. so pushing a state here evens the stacks. */ yynewstate: *++yyssp = yystate; if (yyssp >= yyss + yystacksize - 1) { /* 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; short *yyss1 = yyss; #ifdef YYLSP_NEEDED YYLTYPE *yyls1 = yyls; #endif /* Get the current used size of the three stacks, in elements. */ int size = yyssp - yyss + 1; #ifdef yyoverflow /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. */ #ifdef YYLSP_NEEDED /* This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow("parser stack overflow", &yyss1, size * sizeof (*yyssp), &yyvs1, size * sizeof (*yyvsp), &yyls1, size * sizeof (*yylsp), &yystacksize); #else yyoverflow("parser stack overflow", &yyss1, size * sizeof (*yyssp), &yyvs1, size * sizeof (*yyvsp), &yystacksize); #endif yyss = yyss1; yyvs = yyvs1; #ifdef YYLSP_NEEDED yyls = yyls1; #endif #else /* no yyoverflow */ /* Extend the stack our own way. */ if (yystacksize >= YYMAXDEPTH) { yyerror("parser stack overflow"); if (yyfree_stacks) { free (yyss); free (yyvs); #ifdef YYLSP_NEEDED free (yyls); #endif } return 2; } yystacksize *= 2; if (yystacksize > YYMAXDEPTH) yystacksize = YYMAXDEPTH; #ifndef YYSTACK_USE_ALLOCA yyfree_stacks = 1; #endif yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp)); __yy_memcpy ((char *)yyss, (char *)yyss1, size * (unsigned int) sizeof (*yyssp)); yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp)); __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * (unsigned int) sizeof (*yyvsp)); #ifdef YYLSP_NEEDED yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp)); __yy_memcpy ((char *)yyls, (char *)yyls1, size * (unsigned int) sizeof (*yylsp)); #endif #endif /* no yyoverflow */ yyssp = yyss + size - 1; yyvsp = yyvs + size - 1; #ifdef YYLSP_NEEDED yylsp = yyls + size - 1; #endif #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Stack size increased to %d\n", yystacksize); #endif if (yyssp >= yyss + yystacksize - 1) YYABORT; } #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Entering state %d\n", yystate); #endif goto yybackup; yybackup: /* Do appropriate processing given the current state. */ /* Read a lookahead token if we need one and don't already have one. */ /* yyresume: */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yyn == YYFLAG) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* yychar is either YYEMPTY or YYEOF or a valid token in external form. */ if (yychar == YYEMPTY) { #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Reading a token: "); #endif yychar = YYLEX; } /* Convert token to internal form (in yychar1) for indexing tables with */ if (yychar <= 0) /* This means end of input. */ { yychar1 = 0; yychar = YYEOF; /* Don't call YYLEX any more */ #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Now at end of input.\n"); #endif } else { yychar1 = YYTRANSLATE(yychar); #if YYDEBUG != 0 if (yydebug) { fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]); /* Give the individual parser a way to print the precise meaning of a token, for further debugging info. */ #ifdef YYPRINT YYPRINT (stderr, yychar, yylval); #endif fprintf (stderr, ")\n"); } #endif } yyn += yychar1; if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1) goto yydefault; yyn = yytable[yyn]; /* yyn is what to do for this token type in this state. Negative => reduce, -yyn is rule number. Positive => shift, yyn is new state. New state is final state => don't bother to shift, just return success. 0, or most negative number => error. */ if (yyn < 0) { if (yyn == YYFLAG) goto yyerrlab; yyn = -yyn; goto yyreduce; } else if (yyn == 0) goto yyerrlab; if (yyn == YYFINAL) YYACCEPT; /* Shift the lookahead token. */ #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]); #endif /* Discard the token being shifted unless it is eof. */ if (yychar != YYEOF) yychar = YYEMPTY; *++yyvsp = yylval; #ifdef YYLSP_NEEDED *++yylsp = yylloc; #endif /* count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; yystate = yyn; goto yynewstate; /* Do the default action for the current state. */ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; /* Do a reduction. yyn is the number of a rule to reduce with. */ yyreduce: yylen = yyr2[yyn]; if (yylen > 0) yyval = yyvsp[1-yylen]; /* implement default value of the action */ #if YYDEBUG != 0 if (yydebug) { int i; fprintf (stderr, "Reducing via rule %d (line %d), ", yyn, yyrline[yyn]); /* Print the symbols being reduced, and their result. */ for (i = yyprhs[yyn]; yyrhs[i] > 0; i++) fprintf (stderr, "%s ", yytname[yyrhs[i]]); fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]); } #endif switch (yyn) { case 2: #line 434 "parse.y" { finish_translation_unit (); ; break;} case 3: #line 442 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 4: #line 444 "parse.y" { yyval.ttype = NULL_TREE; ggc_collect (); ; break;} case 5: #line 446 "parse.y" { yyval.ttype = NULL_TREE; ggc_collect (); ; break;} case 8: #line 455 "parse.y" { have_extern_spec = 1; used_extern_spec = 0; yyval.ttype = NULL_TREE; ; break;} case 9: #line 460 "parse.y" { have_extern_spec = 0; ; break;} case 10: #line 465 "parse.y" { yyval.itype = pedantic; pedantic = 0; ; break;} case 12: #line 474 "parse.y" { if (pending_lang_change) do_pending_lang_change(); type_lookups = NULL_TREE; ; break;} case 13: #line 477 "parse.y" { if (! toplevel_bindings_p ()) pop_everything (); ; break;} case 14: #line 483 "parse.y" { if (pending_inlines) do_pending_inlines (); ; break;} case 15: #line 485 "parse.y" { if (pending_inlines) do_pending_inlines (); ; break;} case 16: #line 487 "parse.y" { if (pending_inlines) do_pending_inlines (); ; break;} case 17: #line 489 "parse.y" { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype); assemble_asm (yyvsp[-2].ttype); ; break;} case 18: #line 492 "parse.y" { pop_lang_context (); ; break;} case 19: #line 494 "parse.y" { if (pending_inlines) do_pending_inlines (); pop_lang_context (); ; break;} case 20: #line 497 "parse.y" { if (pending_inlines) do_pending_inlines (); pop_lang_context (); ; break;} case 21: #line 500 "parse.y" { push_namespace (yyvsp[-1].ttype); ; break;} case 22: #line 502 "parse.y" { pop_namespace (); ; break;} case 23: #line 504 "parse.y" { push_namespace (NULL_TREE); ; break;} case 24: #line 506 "parse.y" { pop_namespace (); ; break;} case 26: #line 509 "parse.y" { do_toplevel_using_decl (yyvsp[-1].ttype); ; break;} case 28: #line 512 "parse.y" { pedantic = yyvsp[-1].itype; ; break;} case 29: #line 517 "parse.y" { begin_only_namespace_names (); ; break;} case 30: #line 519 "parse.y" { end_only_namespace_names (); if (lastiddecl) yyvsp[-1].ttype = lastiddecl; do_namespace_alias (yyvsp[-4].ttype, yyvsp[-1].ttype); ; break;} case 31: #line 529 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 32: #line 531 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 33: #line 533 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 34: #line 538 "parse.y" { yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 35: #line 540 "parse.y" { yyval.ttype = build_parse_node (SCOPE_REF, global_namespace, yyvsp[0].ttype); ; break;} case 36: #line 542 "parse.y" { yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 37: #line 547 "parse.y" { begin_only_namespace_names (); ; break;} case 38: #line 549 "parse.y" { end_only_namespace_names (); /* If no declaration was found, the using-directive is invalid. Since that was not reported, we need the identifier for the error message. */ if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE && lastiddecl) yyvsp[-1].ttype = lastiddecl; do_using_directive (yyvsp[-1].ttype); ; break;} case 39: #line 562 "parse.y" { if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE) yyval.ttype = lastiddecl; got_scope = yyval.ttype; ; break;} case 40: #line 568 "parse.y" { yyval.ttype = yyvsp[-1].ttype; if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE) yyval.ttype = lastiddecl; got_scope = yyval.ttype; ; break;} case 43: #line 579 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 44: #line 581 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 45: #line 586 "parse.y" { push_lang_context (yyvsp[0].ttype); ; break;} case 46: #line 588 "parse.y" { if (current_lang_name != yyvsp[0].ttype) cp_error ("use of linkage spec `%D' is different from previous spec `%D'", yyvsp[0].ttype, current_lang_name); pop_lang_context (); push_lang_context (yyvsp[0].ttype); ; break;} case 47: #line 595 "parse.y" { begin_template_parm_list (); ; break;} case 48: #line 597 "parse.y" { yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ; break;} case 49: #line 599 "parse.y" { begin_specialization(); yyval.ttype = NULL_TREE; ; break;} case 50: #line 605 "parse.y" { yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ; break;} case 51: #line 607 "parse.y" { yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 52: #line 612 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 53: #line 614 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 54: #line 618 "parse.y" { yyval.ttype = finish_template_type_parm (yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 55: #line 620 "parse.y" { yyval.ttype = finish_template_type_parm (class_type_node, yyvsp[0].ttype); ; break;} case 56: #line 625 "parse.y" { yyval.ttype = finish_template_template_parm (yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 57: #line 637 "parse.y" { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ; break;} case 58: #line 639 "parse.y" { yyval.ttype = build_tree_list (groktypename (yyvsp[0].ftype.t), yyvsp[-2].ttype); ; break;} case 59: #line 641 "parse.y" { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ftype.t); ; break;} case 60: #line 643 "parse.y" { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-2].ftype.t); ; break;} case 61: #line 645 "parse.y" { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ; break;} case 62: #line 647 "parse.y" { if (TREE_CODE (yyvsp[0].ttype) != TEMPLATE_DECL && TREE_CODE (yyvsp[0].ttype) != TEMPLATE_TEMPLATE_PARM && TREE_CODE (yyvsp[0].ttype) != TYPE_DECL) { error ("invalid default template argument"); yyvsp[0].ttype = error_mark_node; } yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype); ; break;} case 63: #line 661 "parse.y" { finish_template_decl (yyvsp[-1].ttype); ; break;} case 64: #line 663 "parse.y" { finish_template_decl (yyvsp[-1].ttype); ; break;} case 65: #line 668 "parse.y" { if (pending_inlines) do_pending_inlines (); ; break;} case 66: #line 670 "parse.y" { if (pending_inlines) do_pending_inlines (); ; break;} case 67: #line 672 "parse.y" { if (pending_inlines) do_pending_inlines (); ; break;} case 68: #line 674 "parse.y" { if (pending_inlines) do_pending_inlines (); pop_lang_context (); ; break;} case 69: #line 677 "parse.y" { if (pending_inlines) do_pending_inlines (); pop_lang_context (); ; break;} case 70: #line 680 "parse.y" { pedantic = yyvsp[-1].itype; ; break;} case 72: #line 686 "parse.y" {; break;} case 73: #line 688 "parse.y" { note_list_got_semicolon (yyvsp[-2].ftype.t); ; break;} case 74: #line 690 "parse.y" { maybe_process_partial_specialization (yyvsp[-1].ftype.t); note_got_semicolon (yyvsp[-1].ftype.t); ; break;} case 76: #line 697 "parse.y" {; break;} case 77: #line 699 "parse.y" { note_list_got_semicolon (yyvsp[-2].ftype.t); ; break;} case 78: #line 701 "parse.y" { pedwarn ("empty declaration"); ; break;} case 80: #line 704 "parse.y" { tree t, attrs; split_specs_attrs (yyvsp[-1].ftype.t, &t, &attrs); shadow_tag (t); note_list_got_semicolon (yyvsp[-1].ftype.t); ; break;} case 84: #line 717 "parse.y" { yyval.itype = 0; ; break;} case 85: #line 719 "parse.y" { yyval.itype = 1; ; break;} case 91: #line 735 "parse.y" { expand_body (finish_function ((int)yyvsp[-1].itype)); ; break;} case 92: #line 737 "parse.y" { expand_body (finish_function ((int)yyvsp[0].itype)); ; break;} case 93: #line 739 "parse.y" { ; break;} case 94: #line 744 "parse.y" { yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ; break;} case 95: #line 746 "parse.y" { yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 96: #line 748 "parse.y" { yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype); yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 97: #line 752 "parse.y" { yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ; break;} case 98: #line 754 "parse.y" { yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 99: #line 756 "parse.y" { yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype); yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 100: #line 760 "parse.y" { yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ; break;} case 101: #line 762 "parse.y" { yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 102: #line 764 "parse.y" { yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype); yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 103: #line 768 "parse.y" { yyval.ttype = begin_constructor_declarator (yyvsp[-2].ttype, yyvsp[-1].ttype); ; break;} case 104: #line 770 "parse.y" { yyval.ttype = make_call_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 105: #line 772 "parse.y" { yyval.ttype = begin_constructor_declarator (yyvsp[-4].ttype, yyvsp[-3].ttype); yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 106: #line 779 "parse.y" { check_for_new_type ("return type", yyvsp[-1].ftype); if (!begin_function_definition (yyvsp[-1].ftype.t, yyvsp[0].ttype)) YYERROR1; ; break;} case 107: #line 783 "parse.y" { if (!begin_function_definition (yyvsp[-1].ftype.t, yyvsp[0].ttype)) YYERROR1; ; break;} case 108: #line 786 "parse.y" { if (!begin_function_definition (NULL_TREE, yyvsp[0].ttype)) YYERROR1; ; break;} case 109: #line 789 "parse.y" { if (!begin_function_definition (yyvsp[-1].ftype.t, yyvsp[0].ttype)) YYERROR1; ; break;} case 110: #line 792 "parse.y" { if (!begin_function_definition (NULL_TREE, yyvsp[0].ttype)) YYERROR1; ; break;} case 111: #line 798 "parse.y" { yyval.ttype = make_call_declarator (yyvsp[-5].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 112: #line 800 "parse.y" { yyval.ttype = make_call_declarator (yyvsp[-3].ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 113: #line 802 "parse.y" { yyval.ttype = make_call_declarator (yyvsp[-5].ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 114: #line 804 "parse.y" { yyval.ttype = make_call_declarator (yyvsp[-3].ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 115: #line 811 "parse.y" { yyval.ttype = parse_method (yyvsp[0].ttype, yyvsp[-1].ftype.t, yyvsp[-1].ftype.lookups); rest_of_mdef: if (! yyval.ttype) YYERROR1; if (yychar == YYEMPTY) yychar = YYLEX; reinit_parse_for_method (yychar, yyval.ttype); ; break;} case 116: #line 819 "parse.y" { yyval.ttype = parse_method (yyvsp[0].ttype, NULL_TREE, NULL_TREE); goto rest_of_mdef; ; break;} case 117: #line 822 "parse.y" { yyval.ttype = parse_method (yyvsp[0].ttype, yyvsp[-1].ftype.t, yyvsp[-1].ftype.lookups); goto rest_of_mdef;; break;} case 118: #line 824 "parse.y" { yyval.ttype = parse_method (yyvsp[0].ttype, yyvsp[-1].ftype.t, yyvsp[-1].ftype.lookups); goto rest_of_mdef;; break;} case 119: #line 826 "parse.y" { yyval.ttype = parse_method (yyvsp[0].ttype, NULL_TREE, NULL_TREE); goto rest_of_mdef; ; break;} case 120: #line 829 "parse.y" { yyval.ttype = parse_method (yyvsp[0].ttype, yyvsp[-1].ftype.t, yyvsp[-1].ftype.lookups); goto rest_of_mdef;; break;} case 121: #line 831 "parse.y" { yyval.ttype = parse_method (yyvsp[0].ttype, NULL_TREE, NULL_TREE); goto rest_of_mdef; ; break;} case 122: #line 837 "parse.y" { if (! current_function_parms_stored) store_parm_decls (); yyval.ttype = yyvsp[0].ttype; ; break;} case 123: #line 846 "parse.y" { finish_named_return_value (yyval.ttype, yyvsp[0].ttype); ; break;} case 124: #line 848 "parse.y" { finish_named_return_value (yyval.ttype, yyvsp[-1].ttype); ; break;} case 125: #line 850 "parse.y" { finish_named_return_value (yyval.ttype, NULL_TREE); ; break;} case 126: #line 855 "parse.y" { if (yyvsp[0].itype == 0) error ("no base initializers given following ':'"); setup_vtbl_ptr (); ; break;} case 127: #line 864 "parse.y" { if (! current_function_parms_stored) store_parm_decls (); if (DECL_CONSTRUCTOR_P (current_function_decl)) /* Make a contour for the initializer list. */ do_pushlevel (); else if (current_class_type == NULL_TREE) error ("base initializers not allowed for non-member functions"); else if (! DECL_CONSTRUCTOR_P (current_function_decl)) error ("only constructors take base initializers"); ; break;} case 128: #line 880 "parse.y" { yyval.itype = 0; ; break;} case 129: #line 882 "parse.y" { yyval.itype = 1; ; break;} case 132: #line 889 "parse.y" { if (current_class_name) pedwarn ("anachronistic old style base class initializer"); expand_member_init (current_class_ref, NULL_TREE, yyvsp[-1].ttype); ; break;} case 133: #line 895 "parse.y" { if (current_class_name) pedwarn ("anachronistic old style base class initializer"); expand_member_init (current_class_ref, NULL_TREE, void_type_node); ; break;} case 134: #line 901 "parse.y" { expand_member_init (current_class_ref, yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 135: #line 903 "parse.y" { expand_member_init (current_class_ref, yyvsp[-1].ttype, void_type_node); ; break;} case 136: #line 905 "parse.y" { expand_member_init (current_class_ref, yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 137: #line 907 "parse.y" { expand_member_init (current_class_ref, yyvsp[-1].ttype, void_type_node); ; break;} case 138: #line 909 "parse.y" { expand_member_init (current_class_ref, TYPE_MAIN_DECL (yyvsp[-3].ttype), yyvsp[-1].ttype); ; break;} case 139: #line 912 "parse.y" { expand_member_init (current_class_ref, TYPE_MAIN_DECL (yyvsp[-1].ttype), void_type_node); ; break;} case 152: #line 939 "parse.y" { do_type_instantiation (yyvsp[-1].ftype.t, NULL_TREE); yyungetc (';', 1); ; break;} case 154: #line 943 "parse.y" { tree specs = strip_attrs (yyvsp[-1].ftype.t); do_decl_instantiation (specs, yyvsp[0].ttype, NULL_TREE); ; break;} case 156: #line 947 "parse.y" { do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ; break;} case 158: #line 950 "parse.y" { do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ; break;} case 160: #line 953 "parse.y" { do_type_instantiation (yyvsp[-1].ftype.t, yyvsp[-4].ttype); yyungetc (';', 1); ; break;} case 162: #line 958 "parse.y" { tree specs = strip_attrs (yyvsp[-1].ftype.t); do_decl_instantiation (specs, yyvsp[0].ttype, yyvsp[-4].ttype); ; break;} case 164: #line 962 "parse.y" { do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, yyvsp[-3].ttype); ; break;} case 166: #line 965 "parse.y" { do_decl_instantiation (NULL_TREE, yyvsp[0].ttype, yyvsp[-3].ttype); ; break;} case 168: #line 970 "parse.y" { begin_explicit_instantiation(); ; break;} case 169: #line 973 "parse.y" { end_explicit_instantiation(); ; break;} case 170: #line 982 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 171: #line 985 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 174: #line 993 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 175: #line 998 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 176: #line 1002 "parse.y" { if (yychar == YYEMPTY) yychar = YYLEX; yyval.ttype = finish_template_type (yyvsp[-3].ttype, yyvsp[-1].ttype, yychar == SCOPE); ; break;} case 178: #line 1013 "parse.y" { /* Handle `Class>' without space in the `>>' */ pedwarn ("`>>' should be `> >' in template class name"); yyungetc ('>', 1); ; break;} case 179: #line 1022 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 181: #line 1028 "parse.y" { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ; break;} case 182: #line 1030 "parse.y" { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ; break;} case 183: #line 1035 "parse.y" { yyval.ttype = groktypename (yyvsp[0].ftype.t); ; break;} case 184: #line 1037 "parse.y" { yyval.ttype = lastiddecl; ; break;} case 186: #line 1043 "parse.y" { yyval.code = NEGATE_EXPR; ; break;} case 187: #line 1045 "parse.y" { yyval.code = CONVERT_EXPR; ; break;} case 188: #line 1047 "parse.y" { yyval.code = PREINCREMENT_EXPR; ; break;} case 189: #line 1049 "parse.y" { yyval.code = PREDECREMENT_EXPR; ; break;} case 190: #line 1051 "parse.y" { yyval.code = TRUTH_NOT_EXPR; ; break;} case 191: #line 1056 "parse.y" { yyval.ttype = build_x_compound_expr (yyval.ttype); ; break;} case 193: #line 1062 "parse.y" { error ("ISO C++ forbids an empty condition for `%s'", cond_stmt_keyword); yyval.ttype = integer_zero_node; ; break;} case 194: #line 1066 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 195: #line 1071 "parse.y" { error ("ISO C++ forbids an empty condition for `%s'", cond_stmt_keyword); yyval.ttype = integer_zero_node; ; break;} case 196: #line 1075 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 197: #line 1080 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 199: #line 1083 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 200: #line 1088 "parse.y" { { tree d; for (d = getdecls (); d; d = TREE_CHAIN (d)) if (TREE_CODE (d) == TYPE_DECL) { tree s = TREE_TYPE (d); if (TREE_CODE (s) == RECORD_TYPE) cp_error ("definition of class `%T' in condition", s); else if (TREE_CODE (s) == ENUMERAL_TYPE) cp_error ("definition of enum `%T' in condition", s); } } current_declspecs = yyvsp[-4].ftype.t; yyval.ttype = parse_decl (yyvsp[-3].ttype, yyvsp[-1].ttype, 1); ; break;} case 201: #line 1103 "parse.y" { parse_end_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype); yyval.ttype = convert_from_reference (yyvsp[-1].ttype); if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE) cp_error ("definition of array `%#D' in condition", yyval.ttype); ; break;} case 207: #line 1121 "parse.y" { yyval.ttype = begin_compound_stmt (1); ; break;} case 208: #line 1123 "parse.y" { finish_compound_stmt (1, yyvsp[-1].ttype); ; break;} case 210: #line 1130 "parse.y" { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ; break;} case 211: #line 1133 "parse.y" { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ; break;} case 212: #line 1136 "parse.y" { chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ; break;} case 213: #line 1138 "parse.y" { chainon (yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ; break;} case 214: #line 1143 "parse.y" { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ; break;} case 216: #line 1149 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 217: #line 1152 "parse.y" { yyval.ttype = yyvsp[0].ttype; pedantic = yyvsp[-1].itype; ; break;} case 218: #line 1155 "parse.y" { yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ; break;} case 219: #line 1157 "parse.y" { yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ; break;} case 220: #line 1159 "parse.y" { yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ; break;} case 221: #line 1161 "parse.y" { yyval.ttype = finish_unary_op_expr (yyvsp[-1].code, yyvsp[0].ttype); ; break;} case 222: #line 1164 "parse.y" { if (pedantic) pedwarn ("ISO C++ forbids `&&'"); yyval.ttype = finish_label_address_expr (yyvsp[0].ttype); ; break;} case 223: #line 1168 "parse.y" { yyval.ttype = expr_sizeof (yyvsp[0].ttype); ; break;} case 224: #line 1170 "parse.y" { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ftype.t)); check_for_new_type ("sizeof", yyvsp[-1].ftype); ; break;} case 225: #line 1173 "parse.y" { yyval.ttype = grok_alignof (yyvsp[0].ttype); ; break;} case 226: #line 1175 "parse.y" { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ftype.t)); check_for_new_type ("alignof", yyvsp[-1].ftype); ; break;} case 227: #line 1181 "parse.y" { yyval.ttype = build_new (NULL_TREE, yyvsp[0].ftype.t, NULL_TREE, yyvsp[-1].itype); check_for_new_type ("new", yyvsp[0].ftype); ; break;} case 228: #line 1184 "parse.y" { yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype, yyvsp[-2].itype); check_for_new_type ("new", yyvsp[-1].ftype); ; break;} case 229: #line 1187 "parse.y" { yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ftype.t, NULL_TREE, yyvsp[-2].itype); check_for_new_type ("new", yyvsp[0].ftype); ; break;} case 230: #line 1190 "parse.y" { yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ftype.t, yyvsp[0].ttype, yyvsp[-3].itype); check_for_new_type ("new", yyvsp[-1].ftype); ; break;} case 231: #line 1194 "parse.y" { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ftype.t), NULL_TREE, yyvsp[-3].itype); check_for_new_type ("new", yyvsp[-1].ftype); ; break;} case 232: #line 1198 "parse.y" { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ftype.t), yyvsp[0].ttype, yyvsp[-4].itype); check_for_new_type ("new", yyvsp[-2].ftype); ; break;} case 233: #line 1201 "parse.y" { yyval.ttype = build_new (yyvsp[-3].ttype, groktypename(yyvsp[-1].ftype.t), NULL_TREE, yyvsp[-4].itype); check_for_new_type ("new", yyvsp[-1].ftype); ; break;} case 234: #line 1204 "parse.y" { yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-2].ftype.t), yyvsp[0].ttype, yyvsp[-5].itype); check_for_new_type ("new", yyvsp[-2].ftype); ; break;} case 235: #line 1208 "parse.y" { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ; break;} case 236: #line 1210 "parse.y" { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype); if (yychar == YYEMPTY) yychar = YYLEX; ; break;} case 237: #line 1214 "parse.y" { yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype); if (yychar == YYEMPTY) yychar = YYLEX; ; break;} case 238: #line 1218 "parse.y" { yyval.ttype = build_x_unary_op (REALPART_EXPR, yyvsp[0].ttype); ; break;} case 239: #line 1220 "parse.y" { yyval.ttype = build_x_unary_op (IMAGPART_EXPR, yyvsp[0].ttype); ; break;} case 240: #line 1222 "parse.y" { yyval.ttype = build_x_va_arg (yyvsp[-3].ttype, groktypename (yyvsp[-1].ftype.t)); check_for_new_type ("__builtin_va_arg", yyvsp[-1].ftype); ; break;} case 241: #line 1228 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 242: #line 1230 "parse.y" { cp_pedwarn ("old style placement syntax, use () instead"); yyval.ttype = yyvsp[-1].ttype; ; break;} case 243: #line 1236 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 244: #line 1238 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 245: #line 1240 "parse.y" { cp_error ("`%T' is not a valid expression", yyvsp[-1].ftype.t); yyval.ttype = error_mark_node; ; break;} case 246: #line 1248 "parse.y" { if (pedantic) pedwarn ("ISO C++ forbids initialization of new expression with `='"); if (TREE_CODE (yyvsp[0].ttype) != TREE_LIST && TREE_CODE (yyvsp[0].ttype) != CONSTRUCTOR) yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); else yyval.ttype = yyvsp[0].ttype; ; break;} case 247: #line 1262 "parse.y" { yyvsp[-1].ftype.t = finish_parmlist (build_tree_list (NULL_TREE, yyvsp[-1].ftype.t), 0); yyval.ttype = make_call_declarator (NULL_TREE, yyvsp[-1].ftype.t, NULL_TREE, NULL_TREE); check_for_new_type ("cast", yyvsp[-1].ftype); ; break;} case 248: #line 1266 "parse.y" { yyvsp[-1].ftype.t = finish_parmlist (build_tree_list (NULL_TREE, yyvsp[-1].ftype.t), 0); yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-1].ftype.t, NULL_TREE, NULL_TREE); check_for_new_type ("cast", yyvsp[-1].ftype); ; break;} case 250: #line 1274 "parse.y" { yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ; break;} case 251: #line 1276 "parse.y" { tree init = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype)); if (pedantic) pedwarn ("ISO C++ forbids constructor-expressions"); /* Indicate that this was a GNU C constructor expression. */ TREE_HAS_CONSTRUCTOR (init) = 1; yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init); ; break;} case 253: #line 1292 "parse.y" { yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ; break;} case 254: #line 1294 "parse.y" { yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ; break;} case 255: #line 1296 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 256: #line 1298 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 257: #line 1300 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 258: #line 1302 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 259: #line 1304 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 260: #line 1306 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 261: #line 1308 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 262: #line 1310 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 263: #line 1312 "parse.y" { yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ; break;} case 264: #line 1314 "parse.y" { yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ; break;} case 265: #line 1316 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 266: #line 1318 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 267: #line 1320 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 268: #line 1322 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 269: #line 1324 "parse.y" { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ; break;} case 270: #line 1326 "parse.y" { yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ; break;} case 271: #line 1328 "parse.y" { yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ; break;} case 272: #line 1330 "parse.y" { yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 273: #line 1332 "parse.y" { yyval.ttype = build_x_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype); if (yyval.ttype != error_mark_node) C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ; break;} case 274: #line 1336 "parse.y" { yyval.ttype = build_x_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ; break;} case 275: #line 1338 "parse.y" { yyval.ttype = build_throw (NULL_TREE); ; break;} case 276: #line 1340 "parse.y" { yyval.ttype = build_throw (yyvsp[0].ttype); ; break;} case 277: #line 1358 "parse.y" { yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ; break;} case 278: #line 1360 "parse.y" { yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ; break;} case 284: #line 1369 "parse.y" { /* If lastiddecl is a TREE_LIST, it's a baselink, which means that we're in an expression like S::f, so don't do_identifier; we only do that for unqualified identifiers. */ if (lastiddecl && TREE_CODE (lastiddecl) != TREE_LIST) yyval.ttype = do_identifier (yyvsp[-1].ttype, 1, NULL_TREE); else yyval.ttype = yyvsp[-1].ttype; ; break;} case 285: #line 1382 "parse.y" { yyval.ttype = lookup_template_function (yyvsp[-2].ttype, yyvsp[-1].ttype); ; break;} case 286: #line 1384 "parse.y" { yyval.ttype = lookup_template_function (yyvsp[-2].ttype, yyvsp[-1].ttype); ; break;} case 287: #line 1389 "parse.y" { yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 288: #line 1391 "parse.y" { yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 289: #line 1394 "parse.y" { yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 294: #line 1406 "parse.y" { /* Provide support for '(' attributes '*' declarator ')' etc */ yyval.ttype = decl_tree_cons (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ; break;} case 296: #line 1416 "parse.y" { yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ; break;} case 297: #line 1418 "parse.y" { yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ; break;} case 298: #line 1420 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 299: #line 1425 "parse.y" { yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 300: #line 1427 "parse.y" { yyval.ttype = lookup_template_function (yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 304: #line 1437 "parse.y" { yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ; break;} case 305: #line 1442 "parse.y" { if (TREE_CODE (yyvsp[0].ttype) == BIT_NOT_EXPR) yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyvsp[0].ttype, 0)); else yyval.ttype = finish_id_expr (yyvsp[0].ttype); ; break;} case 308: #line 1451 "parse.y" { yyval.ttype = combine_strings (yyval.ttype); /* combine_strings doesn't set up TYPE_MAIN_VARIANT of a const array the way we want, so fix it. */ if (flag_const_strings) TREE_TYPE (yyval.ttype) = build_cplus_array_type (TREE_TYPE (TREE_TYPE (yyval.ttype)), TYPE_DOMAIN (TREE_TYPE (yyval.ttype))); ; break;} case 309: #line 1461 "parse.y" { yyval.ttype = finish_parenthesized_expr (yyvsp[-1].ttype); ; break;} case 310: #line 1463 "parse.y" { yyvsp[-1].ttype = reparse_decl_as_expr (NULL_TREE, yyvsp[-1].ttype); yyval.ttype = finish_parenthesized_expr (yyvsp[-1].ttype); ; break;} case 311: #line 1466 "parse.y" { yyval.ttype = error_mark_node; ; break;} case 312: #line 1468 "parse.y" { tree scope = current_scope (); if (!scope || TREE_CODE (scope) != FUNCTION_DECL) { error ("braced-group within expression allowed only inside a function"); YYERROR; } if (pedantic) pedwarn ("ISO C++ forbids braced-groups within expressions"); yyval.ttype = begin_stmt_expr (); ; break;} case 313: #line 1479 "parse.y" { yyval.ttype = finish_stmt_expr (yyvsp[-2].ttype); ; break;} case 314: #line 1484 "parse.y" { yyval.ttype = finish_call_expr (yyvsp[-3].ttype, yyvsp[-1].ttype, 1); ; break;} case 315: #line 1486 "parse.y" { yyval.ttype = finish_call_expr (yyvsp[-1].ttype, NULL_TREE, 1); ; break;} case 316: #line 1488 "parse.y" { yyval.ttype = finish_call_expr (yyvsp[-3].ttype, yyvsp[-1].ttype, 0); ; break;} case 317: #line 1490 "parse.y" { yyval.ttype = finish_call_expr (yyvsp[-1].ttype, NULL_TREE, 0); ; break;} case 318: #line 1492 "parse.y" { yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ; break;} case 319: #line 1494 "parse.y" { yyval.ttype = finish_increment_expr (yyvsp[-1].ttype, POSTINCREMENT_EXPR); ; break;} case 320: #line 1496 "parse.y" { yyval.ttype = finish_increment_expr (yyvsp[-1].ttype, POSTDECREMENT_EXPR); ; break;} case 321: #line 1499 "parse.y" { yyval.ttype = finish_this_expr (); ; break;} case 322: #line 1501 "parse.y" { /* This is a C cast in C++'s `functional' notation using the "implicit int" extension so that: `const (3)' is equivalent to `const int (3)'. */ tree type; type = hash_tree_cons (NULL_TREE, yyvsp[-3].ttype, NULL_TREE); type = groktypename (build_decl_list (type, NULL_TREE)); yyval.ttype = build_functional_cast (type, yyvsp[-1].ttype); ; break;} case 324: #line 1513 "parse.y" { tree type = groktypename (yyvsp[-4].ftype.t); check_for_new_type ("dynamic_cast", yyvsp[-4].ftype); yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ; break;} case 325: #line 1517 "parse.y" { tree type = groktypename (yyvsp[-4].ftype.t); check_for_new_type ("static_cast", yyvsp[-4].ftype); yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ; break;} case 326: #line 1521 "parse.y" { tree type = groktypename (yyvsp[-4].ftype.t); check_for_new_type ("reinterpret_cast", yyvsp[-4].ftype); yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ; break;} case 327: #line 1525 "parse.y" { tree type = groktypename (yyvsp[-4].ftype.t); check_for_new_type ("const_cast", yyvsp[-4].ftype); yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ; break;} case 328: #line 1529 "parse.y" { yyval.ttype = build_typeid (yyvsp[-1].ttype); ; break;} case 329: #line 1531 "parse.y" { tree type = groktypename (yyvsp[-1].ftype.t); check_for_new_type ("typeid", yyvsp[-1].ftype); yyval.ttype = get_typeid (TYPE_MAIN_VARIANT (type)); ; break;} case 330: #line 1535 "parse.y" { yyval.ttype = do_scoped_id (yyvsp[0].ttype, 1); ; break;} case 331: #line 1537 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 332: #line 1539 "parse.y" { got_scope = NULL_TREE; if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE) yyval.ttype = do_scoped_id (yyvsp[0].ttype, 1); else yyval.ttype = yyvsp[0].ttype; ; break;} case 333: #line 1547 "parse.y" { yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ; break;} case 334: #line 1549 "parse.y" { yyval.ttype = finish_qualified_call_expr (yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 335: #line 1551 "parse.y" { yyval.ttype = finish_qualified_call_expr (yyvsp[-1].ttype, NULL_TREE); ; break;} case 336: #line 1553 "parse.y" { yyval.ttype = build_x_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ; break;} case 337: #line 1557 "parse.y" { yyval.ttype = finish_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ; break;} case 338: #line 1559 "parse.y" { yyval.ttype = finish_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ; break;} case 339: #line 1561 "parse.y" { yyval.ttype = build_x_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ; break;} case 340: #line 1563 "parse.y" { if (processing_template_decl) yyval.ttype = build_min_nt (COMPONENT_REF, yyvsp[-1].ttype, yyvsp[0].ttype); else yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ; break;} case 341: #line 1568 "parse.y" { yyval.ttype = finish_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ; break;} case 342: #line 1570 "parse.y" { yyval.ttype = finish_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ; break;} case 343: #line 1572 "parse.y" { yyval.ttype = finish_qualified_object_call_expr (yyvsp[-3].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ; break;} case 344: #line 1574 "parse.y" { yyval.ttype = finish_qualified_object_call_expr (yyvsp[-1].ttype, yyvsp[-2].ttype, NULL_TREE); ; break;} case 345: #line 1577 "parse.y" { yyval.ttype = finish_pseudo_destructor_call_expr (yyvsp[-3].ttype, NULL_TREE, yyvsp[-1].ttype); ; break;} case 346: #line 1579 "parse.y" { yyval.ttype = finish_pseudo_destructor_call_expr (yyvsp[-5].ttype, yyvsp[-4].ttype, yyvsp[-1].ttype); ; break;} case 347: #line 1581 "parse.y" { yyval.ttype = error_mark_node; ; break;} case 348: #line 1626 "parse.y" { yyval.itype = 0; ; break;} case 349: #line 1628 "parse.y" { got_scope = NULL_TREE; yyval.itype = 1; ; break;} case 350: #line 1633 "parse.y" { yyval.itype = 0; ; break;} case 351: #line 1635 "parse.y" { got_scope = NULL_TREE; yyval.itype = 1; ; break;} case 352: #line 1640 "parse.y" { yyval.ttype = boolean_true_node; ; break;} case 353: #line 1642 "parse.y" { yyval.ttype = boolean_false_node; ; break;} case 355: #line 1649 "parse.y" { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ; break;} case 356: #line 1654 "parse.y" { if (! current_function_parms_stored) store_parm_decls (); setup_vtbl_ptr (); ; break;} case 357: #line 1663 "parse.y" { got_object = TREE_TYPE (yyval.ttype); ; break;} case 358: #line 1665 "parse.y" { yyval.ttype = build_x_arrow (yyval.ttype); got_object = TREE_TYPE (yyval.ttype); ; break;} case 359: #line 1673 "parse.y" { if (yyvsp[-2].ftype.t && IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ftype.t))) note_got_semicolon (yyvsp[-2].ftype.t); ; break;} case 360: #line 1678 "parse.y" { note_list_got_semicolon (yyvsp[-2].ftype.t); ; break;} case 361: #line 1682 "parse.y" {; break;} case 362: #line 1684 "parse.y" { shadow_tag (yyvsp[-1].ftype.t); note_list_got_semicolon (yyvsp[-1].ftype.t); ; break;} case 363: #line 1689 "parse.y" { warning ("empty declaration"); ; break;} case 364: #line 1691 "parse.y" { pedantic = yyvsp[-1].itype; ; break;} case 367: #line 1705 "parse.y" { yyval.ttype = make_call_declarator (NULL_TREE, empty_parms (), NULL_TREE, NULL_TREE); ; break;} case 368: #line 1708 "parse.y" { yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), NULL_TREE, NULL_TREE); ; break;} case 369: #line 1715 "parse.y" { yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 370: #line 1718 "parse.y" { yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 371: #line 1721 "parse.y" { yyval.ftype.t = build_decl_list (build_decl_list (NULL_TREE, yyvsp[-1].ftype.t), yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 372: #line 1725 "parse.y" { yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE); yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ; break;} case 373: #line 1728 "parse.y" { yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE); yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ; break;} case 374: #line 1739 "parse.y" { yyval.ftype.lookups = type_lookups; ; break;} case 375: #line 1741 "parse.y" { yyval.ftype.lookups = type_lookups; ; break;} case 376: #line 1746 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ftype.t); yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ; break;} case 377: #line 1749 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 378: #line 1752 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-2].ftype.t, chainon (yyvsp[-1].ttype, yyvsp[0].ttype)); yyval.ftype.new_type_flag = yyvsp[-2].ftype.new_type_flag; ; break;} case 379: #line 1755 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ftype.t)); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 380: #line 1758 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ftype.t)); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 381: #line 1761 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-2].ftype.t, chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyvsp[-3].ftype.t))); yyval.ftype.new_type_flag = yyvsp[-2].ftype.new_type_flag; ; break;} case 382: #line 1768 "parse.y" { if (extra_warnings) warning ("`%s' is not at beginning of declaration", IDENTIFIER_POINTER (yyval.ttype)); yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ; break;} case 383: #line 1773 "parse.y" { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyval.ttype); ; break;} case 384: #line 1775 "parse.y" { if (extra_warnings) warning ("`%s' is not at beginning of declaration", IDENTIFIER_POINTER (yyvsp[0].ttype)); yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ; break;} case 385: #line 1780 "parse.y" { yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ; break;} case 386: #line 1782 "parse.y" { yyval.ttype = decl_tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ; break;} case 387: #line 1801 "parse.y" { yyval.ftype.lookups = NULL_TREE; TREE_STATIC (yyval.ftype.t) = 1; ; break;} case 388: #line 1803 "parse.y" { yyval.ftype.t = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); yyval.ftype.new_type_flag = 0; yyval.ftype.lookups = NULL_TREE; ; break;} case 389: #line 1808 "parse.y" { yyval.ftype.t = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ftype.t); TREE_STATIC (yyval.ftype.t) = 1; ; break;} case 390: #line 1813 "parse.y" { if (extra_warnings && TREE_STATIC (yyval.ftype.t)) warning ("`%s' is not at beginning of declaration", IDENTIFIER_POINTER (yyvsp[0].ttype)); yyval.ftype.t = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ftype.t); TREE_STATIC (yyval.ftype.t) = TREE_STATIC (yyvsp[-1].ftype.t); ; break;} case 391: #line 1821 "parse.y" { yyval.ftype.t = hash_tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ftype.t); ; break;} case 392: #line 1823 "parse.y" { yyval.ftype.t = hash_tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); yyval.ftype.new_type_flag = 0; yyval.ftype.lookups = NULL_TREE; ; break;} case 393: #line 1837 "parse.y" { yyval.ftype.t = build_decl_list (NULL_TREE, yyvsp[0].ftype.t); yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ; break;} case 394: #line 1840 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ftype.t); yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ; break;} case 395: #line 1843 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 396: #line 1846 "parse.y" { yyval.ftype.t = decl_tree_cons (NULL_TREE, yyvsp[-1].ftype.t, chainon (yyvsp[0].ttype, yyvsp[-2].ftype.t)); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 397: #line 1852 "parse.y" { yyval.ttype = build_decl_list (NULL_TREE, yyvsp[0].ftype.t); ; break;} case 398: #line 1854 "parse.y" { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ftype.t, yyvsp[-1].ttype); ; break;} case 399: #line 1863 "parse.y" { yyval.ftype.lookups = NULL_TREE; ; break;} case 400: #line 1865 "parse.y" { yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; yyval.ftype.lookups = NULL_TREE; ; break;} case 401: #line 1867 "parse.y" { yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; yyval.ftype.lookups = NULL_TREE; ; break;} case 402: #line 1869 "parse.y" { yyval.ftype.t = finish_typeof (yyvsp[-1].ttype); yyval.ftype.new_type_flag = 0; yyval.ftype.lookups = NULL_TREE; ; break;} case 403: #line 1872 "parse.y" { yyval.ftype.t = groktypename (yyvsp[-1].ftype.t); yyval.ftype.new_type_flag = 0; yyval.ftype.lookups = NULL_TREE; ; break;} case 404: #line 1875 "parse.y" { tree type = TREE_TYPE (yyvsp[-1].ttype); yyval.ftype.new_type_flag = 0; yyval.ftype.lookups = NULL_TREE; if (IS_AGGR_TYPE (type)) { sorry ("sigof type specifier"); yyval.ftype.t = type; } else { error ("`sigof' applied to non-aggregate expression"); yyval.ftype.t = error_mark_node; } ; break;} case 405: #line 1890 "parse.y" { tree type = groktypename (yyvsp[-1].ftype.t); yyval.ftype.new_type_flag = 0; yyval.ftype.lookups = NULL_TREE; if (IS_AGGR_TYPE (type)) { sorry ("sigof type specifier"); yyval.ftype.t = type; } else { error("`sigof' applied to non-aggregate type"); yyval.ftype.t = error_mark_node; } ; break;} case 406: #line 1910 "parse.y" { yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ; break;} case 407: #line 1912 "parse.y" { yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ; break;} case 410: #line 1919 "parse.y" { check_multiple_declarators (); ; break;} case 412: #line 1925 "parse.y" { check_multiple_declarators (); ; break;} case 414: #line 1931 "parse.y" { check_multiple_declarators (); ; break;} case 415: #line 1936 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 416: #line 1938 "parse.y" { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ; break;} case 417: #line 1943 "parse.y" { yyval.ttype = parse_decl (yyvsp[-3].ttype, yyvsp[-1].ttype, 1); ; break;} case 418: #line 1946 "parse.y" { parse_end_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ; break;} case 419: #line 1948 "parse.y" { yyval.ttype = parse_decl (yyvsp[-2].ttype, yyvsp[0].ttype, 0); parse_end_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype); ; break;} case 420: #line 1962 "parse.y" { yyval.ttype = parse_decl0 (yyvsp[-3].ttype, yyvsp[-4].ftype.t, yyvsp[-4].ftype.lookups, yyvsp[-1].ttype, 1); ; break;} case 421: #line 1967 "parse.y" { parse_end_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ; break;} case 422: #line 1969 "parse.y" { tree d = parse_decl0 (yyvsp[-2].ttype, yyvsp[-3].ftype.t, yyvsp[-3].ftype.lookups, yyvsp[0].ttype, 0); parse_end_decl (d, NULL_TREE, yyvsp[-1].ttype); ; break;} case 423: #line 1976 "parse.y" {; break;} case 424: #line 1981 "parse.y" {; break;} case 425: #line 1986 "parse.y" { /* Set things up as initdcl0_innards expects. */ yyvsp[0].ttype = yyvsp[-1].ttype; yyvsp[-1].ttype = NULL_TREE; ; break;} case 426: #line 1990 "parse.y" {; break;} case 427: #line 1992 "parse.y" { tree d = parse_decl0 (yyvsp[-2].ttype, NULL_TREE, NULL_TREE, yyvsp[0].ttype, 0); parse_end_decl (d, NULL_TREE, yyvsp[-1].ttype); ; break;} case 428: #line 2000 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 429: #line 2002 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 430: #line 2007 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 431: #line 2009 "parse.y" { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 432: #line 2014 "parse.y" { yyval.ttype = yyvsp[-2].ttype; ; break;} case 433: #line 2019 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 434: #line 2021 "parse.y" { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 435: #line 2026 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 436: #line 2028 "parse.y" { yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ; break;} case 437: #line 2030 "parse.y" { yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ; break;} case 438: #line 2032 "parse.y" { yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ; break;} case 439: #line 2034 "parse.y" { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 444: #line 2050 "parse.y" { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ; break;} case 445: #line 2052 "parse.y" { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ; break;} case 446: #line 2057 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 447: #line 2059 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 449: #line 2067 "parse.y" { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE); TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ; break;} case 450: #line 2070 "parse.y" { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype)); TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ; break;} case 451: #line 2073 "parse.y" { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype)); TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ; break;} case 452: #line 2076 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 453: #line 2083 "parse.y" { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ; break;} case 454: #line 2085 "parse.y" { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ; break;} case 455: #line 2088 "parse.y" { yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 456: #line 2090 "parse.y" { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ; break;} case 457: #line 2092 "parse.y" { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ; break;} case 458: #line 2097 "parse.y" { start_function (NULL_TREE, yyvsp[0].pi->fndecl, NULL_TREE, (SF_DEFAULT | SF_PRE_PARSED | SF_INCLASS_INLINE)); reinit_parse_for_function (); ; break;} case 459: #line 2104 "parse.y" { expand_body (finish_function ((int)yyvsp[-1].itype | 2)); process_next_inline (yyvsp[-3].pi); ; break;} case 460: #line 2109 "parse.y" { expand_body (finish_function ((int)yyvsp[0].itype | 2)); process_next_inline (yyvsp[-2].pi); ; break;} case 461: #line 2114 "parse.y" { finish_function (2); process_next_inline (yyvsp[-2].pi); ; break;} case 464: #line 2128 "parse.y" { replace_defarg (yyvsp[-2].ttype, yyvsp[-1].ttype); ; break;} case 465: #line 2130 "parse.y" { replace_defarg (yyvsp[-2].ttype, error_mark_node); ; break;} case 467: #line 2135 "parse.y" { do_pending_defargs (); ; break;} case 468: #line 2137 "parse.y" { do_pending_defargs (); ; break;} case 469: #line 2142 "parse.y" { yyval.ttype = current_enum_type; current_enum_type = start_enum (yyvsp[-1].ttype); ; break;} case 470: #line 2145 "parse.y" { yyval.ftype.t = finish_enum (current_enum_type); yyval.ftype.new_type_flag = 1; current_enum_type = yyvsp[-2].ttype; check_for_missing_semicolon (yyval.ftype.t); ; break;} case 471: #line 2150 "parse.y" { yyval.ttype = current_enum_type; current_enum_type = start_enum (make_anon_name ()); ; break;} case 472: #line 2153 "parse.y" { yyval.ftype.t = finish_enum (current_enum_type); yyval.ftype.new_type_flag = 1; current_enum_type = yyvsp[-2].ttype; check_for_missing_semicolon (yyval.ftype.t); ; break;} case 473: #line 2158 "parse.y" { yyval.ftype.t = xref_tag (enum_type_node, yyvsp[0].ttype, 1); yyval.ftype.new_type_flag = 0; ; break;} case 474: #line 2161 "parse.y" { yyval.ftype.t = xref_tag (enum_type_node, yyvsp[0].ttype, 1); yyval.ftype.new_type_flag = 0; ; break;} case 475: #line 2164 "parse.y" { yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; if (!processing_template_decl) cp_pedwarn ("using `typename' outside of template"); ; break;} case 476: #line 2170 "parse.y" { yyvsp[-1].ftype.t = begin_class_definition (yyvsp[-1].ftype.t); ; break;} case 477: #line 2172 "parse.y" { int semi; if (yychar == YYEMPTY) yychar = YYLEX; semi = yychar == ';'; yyval.ttype = finish_class_definition (yyvsp[-5].ftype.t, yyvsp[0].ttype, semi, yyvsp[-5].ftype.new_type_flag); ; break;} case 478: #line 2183 "parse.y" { begin_inline_definitions (); ; break;} case 479: #line 2187 "parse.y" { finish_inline_definitions (); yyval.ftype.t = yyvsp[-3].ttype; yyval.ftype.new_type_flag = 1; ; break;} case 480: #line 2193 "parse.y" { if (yyvsp[0].ftype.new_type_flag && yyvsp[0].ftype.t != error_mark_node) pop_scope (CP_DECL_CONTEXT (TYPE_MAIN_DECL (yyvsp[0].ftype.t))); yyval.ftype.new_type_flag = 0; if (yyvsp[0].ftype.t == error_mark_node) yyval.ftype.t = yyvsp[0].ftype.t; else if (TYPE_BINFO (yyvsp[0].ftype.t) == NULL_TREE) { cp_error ("%T is not a class type", yyvsp[0].ftype.t); yyval.ftype.t = error_mark_node; } else { yyval.ftype.t = yyvsp[0].ftype.t; /* struct B: public A; is not accepted by the standard grammar. */ if (CLASS_TYPE_P (yyval.ftype.t) && TYPE_BINFO_BASETYPES (yyval.ftype.t) && !COMPLETE_TYPE_P (yyval.ftype.t) && ! TYPE_BEING_DEFINED (yyval.ftype.t)) cp_error ("base clause without member specification for `%#T'", yyval.ftype.t); } ; break;} case 484: #line 2226 "parse.y" { if (pedantic && !in_system_header) pedwarn ("comma at end of enumerator list"); ; break;} case 486: #line 2233 "parse.y" { error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ; break;} case 487: #line 2235 "parse.y" { error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ; break;} case 488: #line 2237 "parse.y" { error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ; break;} case 489: #line 2239 "parse.y" { error ("no body nor ';' separates two class, struct or union declarations"); ; break;} case 490: #line 2241 "parse.y" { yyval.ttype = build_decl_list (yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 491: #line 2246 "parse.y" { current_aggr = yyvsp[-1].ttype; yyval.ttype = yyvsp[0].ttype; ; break;} case 492: #line 2254 "parse.y" { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ; break;} case 493: #line 2256 "parse.y" { yyungetc ('{', 1); ; break;} case 494: #line 2258 "parse.y" { yyungetc (':', 1); ; break;} case 495: #line 2263 "parse.y" { current_aggr = yyvsp[-2].ttype; yyval.ftype.t = handle_class_head (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); yyval.ftype.new_type_flag = 1; ; break;} case 496: #line 2269 "parse.y" { current_aggr = yyvsp[-3].ttype; yyval.ftype.t = handle_class_head (yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); yyval.ftype.new_type_flag = 1; ; break;} case 497: #line 2275 "parse.y" { current_aggr = yyvsp[-2].ttype; yyval.ftype.t = handle_class_head (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype); yyval.ftype.new_type_flag = 1; ; break;} case 498: #line 2281 "parse.y" { current_aggr = yyvsp[-1].ttype; yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ; break;} case 499: #line 2287 "parse.y" { current_aggr = yyvsp[-2].ttype; yyval.ftype.t = yyvsp[0].ttype; if (CP_DECL_CONTEXT (yyval.ftype.t)) push_scope (CP_DECL_CONTEXT (yyval.ftype.t)); yyval.ftype.new_type_flag = 1; ; break;} case 500: #line 2298 "parse.y" { yyval.ftype.t = xref_tag (current_aggr, yyvsp[0].ttype, 1); yyval.ftype.new_type_flag = 0; ; break;} case 501: #line 2303 "parse.y" { yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, 0); ; break;} case 502: #line 2307 "parse.y" { yyval.ftype.t = yyvsp[-1].ttype; yyval.ftype.new_type_flag = 0; if (yyvsp[0].ttype) xref_basetypes (current_aggr, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 503: #line 2315 "parse.y" { if (yyvsp[-1].ftype.t != error_mark_node) { yyval.ftype.t = TREE_TYPE (yyvsp[-1].ftype.t); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; if (current_aggr == union_type_node && TREE_CODE (yyval.ftype.t) != UNION_TYPE) cp_pedwarn ("`union' tag used in declaring `%#T'", yyval.ftype.t); else if (TREE_CODE (yyval.ftype.t) == UNION_TYPE && current_aggr != union_type_node) cp_pedwarn ("non-`union' tag used in declaring `%#T'", yyval.ftype); else if (TREE_CODE (yyval.ftype.t) == RECORD_TYPE) /* We might be specializing a template with a different class-key; deal. */ CLASSTYPE_DECLARED_CLASS (yyval.ftype.t) = (current_aggr == class_type_node); if (yyvsp[0].ttype) { maybe_process_partial_specialization (yyval.ftype.t); xref_basetypes (current_aggr, yyvsp[-1].ftype.t, yyval.ftype.t, yyvsp[0].ttype); } } ; break;} case 504: #line 2343 "parse.y" { yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), 0); yyungetc ('{', 1); ; break;} case 505: #line 2353 "parse.y" { yyval.ftype.t = yyvsp[0].ttype; yyval.ftype.new_type_flag = 0; ; break;} case 507: #line 2362 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 508: #line 2364 "parse.y" { yyungetc(':', 1); yyval.ttype = NULL_TREE; ; break;} case 509: #line 2366 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 511: #line 2372 "parse.y" { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ; break;} case 512: #line 2377 "parse.y" { yyval.ttype = finish_base_specifier (access_default_node, yyvsp[0].ttype); ; break;} case 513: #line 2379 "parse.y" { yyval.ttype = finish_base_specifier (yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 514: #line 2384 "parse.y" { if (yyval.ttype == error_mark_node) ; else if (!TYPE_P (yyval.ttype)) yyval.ttype = error_mark_node; else yyval.ttype = TYPE_MAIN_DECL (yyvsp[0].ttype); ; break;} case 517: #line 2396 "parse.y" { if (yyvsp[-1].ttype != ridpointers[(int)RID_VIRTUAL]) cp_error ("`%D' access", yyvsp[-1].ttype); yyval.ttype = access_default_virtual_node; ; break;} case 518: #line 2400 "parse.y" { if (yyvsp[-2].ttype != access_default_virtual_node) error ("multiple access specifiers"); else if (yyvsp[-1].ttype == access_public_node) yyval.ttype = access_public_virtual_node; else if (yyvsp[-1].ttype == access_protected_node) yyval.ttype = access_protected_virtual_node; else /* $2 == access_private_node */ yyval.ttype = access_private_virtual_node; ; break;} case 519: #line 2411 "parse.y" { if (yyvsp[-1].ttype != ridpointers[(int)RID_VIRTUAL]) cp_error ("`%D' access", yyvsp[-1].ttype); else if (yyval.ttype == access_public_node) yyval.ttype = access_public_virtual_node; else if (yyval.ttype == access_protected_node) yyval.ttype = access_protected_virtual_node; else if (yyval.ttype == access_private_node) yyval.ttype = access_private_virtual_node; else error ("multiple `virtual' specifiers"); ; break;} case 524: #line 2432 "parse.y" { current_access_specifier = yyvsp[-1].ttype; ; break;} case 525: #line 2441 "parse.y" { finish_member_declaration (yyvsp[0].ttype); ; break;} case 526: #line 2445 "parse.y" { finish_member_declaration (yyvsp[0].ttype); ; break;} case 528: #line 2453 "parse.y" { error ("missing ';' before right brace"); yyungetc ('}', 0); ; break;} case 529: #line 2458 "parse.y" { yyval.ttype = finish_method (yyval.ttype); ; break;} case 530: #line 2460 "parse.y" { yyval.ttype = finish_method (yyval.ttype); ; break;} case 531: #line 2462 "parse.y" { yyval.ttype = finish_method (yyval.ttype); ; break;} case 532: #line 2464 "parse.y" { yyval.ttype = finish_method (yyval.ttype); ; break;} case 533: #line 2466 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 534: #line 2468 "parse.y" { yyval.ttype = yyvsp[0].ttype; pedantic = yyvsp[-1].itype; ; break;} case 535: #line 2471 "parse.y" { if (yyvsp[0].ttype) yyval.ttype = finish_member_template_decl (yyvsp[0].ttype); else /* The component was already processed. */ yyval.ttype = NULL_TREE; finish_template_decl (yyvsp[-1].ttype); ; break;} case 536: #line 2481 "parse.y" { yyval.ttype = finish_member_class_template (yyvsp[-1].ftype.t); finish_template_decl (yyvsp[-2].ttype); ; break;} case 537: #line 2492 "parse.y" { /* Most of the productions for component_decl only allow the creation of one new member, so we call finish_member_declaration in component_decl_list. For this rule and the next, however, there can be more than one member, e.g.: int i, j; and we need the first member to be fully registered before the second is processed. Therefore, the rules for components take care of this processing. To avoid registering the components more than once, we send NULL_TREE up here; that lets finish_member_declaration know that there is nothing to do. */ if (!yyvsp[0].itype) grok_x_components (yyvsp[-1].ftype.t); yyval.ttype = NULL_TREE; ; break;} case 538: #line 2513 "parse.y" { if (!yyvsp[0].itype) grok_x_components (yyvsp[-1].ftype.t); yyval.ttype = NULL_TREE; ; break;} case 539: #line 2519 "parse.y" { yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype, build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ; break;} case 540: #line 2522 "parse.y" { yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype, build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ; break;} case 541: #line 2525 "parse.y" { yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ; break;} case 542: #line 2527 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 543: #line 2538 "parse.y" { tree specs, attrs; split_specs_attrs (yyvsp[-4].ftype.t, &specs, &attrs); yyval.ttype = grokfield (yyvsp[-3].ttype, specs, yyvsp[0].ttype, yyvsp[-2].ttype, build_tree_list (yyvsp[-1].ttype, attrs)); ; break;} case 544: #line 2543 "parse.y" { yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype, build_tree_list (yyvsp[-1].ttype, NULL_TREE)); ; break;} case 545: #line 2546 "parse.y" { yyval.ttype = do_class_using_decl (yyvsp[0].ttype); ; break;} case 546: #line 2552 "parse.y" { yyval.itype = 0; ; break;} case 547: #line 2554 "parse.y" { if (PROCESSING_REAL_TEMPLATE_DECL_P ()) yyvsp[0].ttype = finish_member_template_decl (yyvsp[0].ttype); finish_member_declaration (yyvsp[0].ttype); yyval.itype = 1; ; break;} case 548: #line 2561 "parse.y" { check_multiple_declarators (); if (PROCESSING_REAL_TEMPLATE_DECL_P ()) yyvsp[0].ttype = finish_member_template_decl (yyvsp[0].ttype); finish_member_declaration (yyvsp[0].ttype); yyval.itype = 2; ; break;} case 549: #line 2572 "parse.y" { yyval.itype = 0; ; break;} case 550: #line 2574 "parse.y" { if (PROCESSING_REAL_TEMPLATE_DECL_P ()) yyvsp[0].ttype = finish_member_template_decl (yyvsp[0].ttype); finish_member_declaration (yyvsp[0].ttype); yyval.itype = 1; ; break;} case 551: #line 2581 "parse.y" { check_multiple_declarators (); if (PROCESSING_REAL_TEMPLATE_DECL_P ()) yyvsp[0].ttype = finish_member_template_decl (yyvsp[0].ttype); finish_member_declaration (yyvsp[0].ttype); yyval.itype = 2; ; break;} case 556: #line 2602 "parse.y" { yyval.ttype = parse_field0 (yyvsp[-3].ttype, yyvsp[-4].ftype.t, yyvsp[-4].ftype.lookups, yyvsp[-1].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 557: #line 2605 "parse.y" { yyval.ttype = parse_bitfield0 (yyvsp[-3].ttype, yyvsp[-4].ftype.t, yyvsp[-4].ftype.lookups, yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 558: #line 2611 "parse.y" { yyval.ttype = parse_field0 (yyvsp[-3].ttype, yyvsp[-4].ftype.t, yyvsp[-4].ftype.lookups, yyvsp[-1].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 559: #line 2614 "parse.y" { yyval.ttype = parse_field0 (yyvsp[-3].ttype, yyvsp[-4].ftype.t, yyvsp[-4].ftype.lookups, yyvsp[-1].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 560: #line 2617 "parse.y" { yyval.ttype = parse_bitfield0 (yyvsp[-3].ttype, yyvsp[-4].ftype.t, yyvsp[-4].ftype.lookups, yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 561: #line 2620 "parse.y" { yyval.ttype = parse_bitfield0 (NULL_TREE, yyvsp[-3].ftype.t, yyvsp[-3].ftype.lookups, yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 562: #line 2626 "parse.y" { yyval.ttype = parse_field (yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 563: #line 2628 "parse.y" { yyval.ttype = parse_bitfield (yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 564: #line 2633 "parse.y" { yyval.ttype = parse_field (yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ; break;} case 565: #line 2635 "parse.y" { yyval.ttype = parse_bitfield (yyvsp[-3].ttype, yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 566: #line 2637 "parse.y" { yyval.ttype = parse_bitfield (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 571: #line 2656 "parse.y" { build_enumerator (yyvsp[0].ttype, NULL_TREE, current_enum_type); ; break;} case 572: #line 2658 "parse.y" { build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype, current_enum_type); ; break;} case 573: #line 2664 "parse.y" { yyval.ftype.t = build_decl_list (yyvsp[-1].ftype.t, yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 574: #line 2667 "parse.y" { yyval.ftype.t = build_decl_list (yyvsp[0].ftype.t, NULL_TREE); yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ; break;} case 575: #line 2672 "parse.y" { if (pedantic) pedwarn ("ISO C++ forbids array dimensions with parenthesized type in new"); yyval.ftype.t = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ftype.t), yyvsp[-1].ttype); yyval.ftype.t = build_decl_list (TREE_PURPOSE (yyvsp[-4].ftype.t), yyval.ftype.t); yyval.ftype.new_type_flag = yyvsp[-4].ftype.new_type_flag; ; break;} case 576: #line 2683 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 577: #line 2685 "parse.y" { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ; break;} case 578: #line 2690 "parse.y" { yyval.ftype.t = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); yyval.ftype.new_type_flag = 0; ; break;} case 579: #line 2693 "parse.y" { yyval.ftype.t = hash_tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ftype.t); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 580: #line 2703 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 581: #line 2705 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 582: #line 2707 "parse.y" { yyval.ttype = empty_parms (); ; break;} case 583: #line 2709 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 585: #line 2717 "parse.y" { /* Provide support for '(' attributes '*' declarator ')' etc */ yyval.ttype = decl_tree_cons (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ; break;} case 586: #line 2727 "parse.y" { yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 587: #line 2729 "parse.y" { yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 588: #line 2731 "parse.y" { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ; break;} case 589: #line 2733 "parse.y" { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ; break;} case 590: #line 2735 "parse.y" { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg); ; break;} case 592: #line 2743 "parse.y" { yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 593: #line 2745 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ; break;} case 594: #line 2747 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ; break;} case 595: #line 2749 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 596: #line 2751 "parse.y" { push_nested_class (yyvsp[-1].ttype, 3); yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ; break;} case 598: #line 2759 "parse.y" { if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE) { yyval.ttype = lookup_name (yyvsp[0].ttype, 1); maybe_note_name_used_in_class (yyvsp[0].ttype, yyval.ttype); } else yyval.ttype = yyvsp[0].ttype; ; break;} case 599: #line 2769 "parse.y" { if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE) yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype); else yyval.ttype = yyvsp[0].ttype; got_scope = NULL_TREE; ; break;} case 602: #line 2782 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 603: #line 2787 "parse.y" { yyval.ttype = get_type_decl (yyvsp[0].ttype); ; break;} case 605: #line 2796 "parse.y" { /* Provide support for '(' attributes '*' declarator ')' etc */ yyval.ttype = decl_tree_cons (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ; break;} case 606: #line 2805 "parse.y" { yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 607: #line 2807 "parse.y" { yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 608: #line 2809 "parse.y" { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ; break;} case 609: #line 2811 "parse.y" { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ; break;} case 610: #line 2813 "parse.y" { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg); ; break;} case 612: #line 2821 "parse.y" { yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 613: #line 2823 "parse.y" { yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 614: #line 2825 "parse.y" { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ; break;} case 615: #line 2827 "parse.y" { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ; break;} case 616: #line 2829 "parse.y" { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg); ; break;} case 618: #line 2837 "parse.y" { yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 619: #line 2839 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 620: #line 2841 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ; break;} case 621: #line 2843 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ; break;} case 622: #line 2845 "parse.y" { enter_scope_of (yyvsp[0].ttype); ; break;} case 623: #line 2847 "parse.y" { got_scope = NULL_TREE; yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); enter_scope_of (yyval.ttype); ; break;} case 624: #line 2855 "parse.y" { got_scope = NULL_TREE; yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ; break;} case 625: #line 2858 "parse.y" { got_scope = NULL_TREE; yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 626: #line 2864 "parse.y" { got_scope = NULL_TREE; yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ; break;} case 627: #line 2867 "parse.y" { got_scope = NULL_TREE; yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 629: #line 2874 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 630: #line 2879 "parse.y" { yyval.ttype = build_functional_cast (yyvsp[-3].ftype.t, yyvsp[-1].ttype); ; break;} case 631: #line 2881 "parse.y" { yyval.ttype = reparse_decl_as_expr (yyvsp[-3].ftype.t, yyvsp[-1].ttype); ; break;} case 632: #line 2883 "parse.y" { yyval.ttype = reparse_absdcl_as_expr (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 637: #line 2895 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 638: #line 2897 "parse.y" { got_scope = yyval.ttype = make_typename_type (yyvsp[-3].ttype, yyvsp[-1].ttype, /*complain=*/1); ; break;} case 639: #line 2905 "parse.y" { if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE) { yyval.ttype = lastiddecl; maybe_note_name_used_in_class (yyvsp[-1].ttype, yyval.ttype); } got_scope = yyval.ttype = complete_type (TYPE_MAIN_VARIANT (TREE_TYPE (yyval.ttype))); ; break;} case 640: #line 2915 "parse.y" { if (TREE_CODE (yyvsp[-1].ttype) == IDENTIFIER_NODE) yyval.ttype = lastiddecl; got_scope = yyval.ttype = TREE_TYPE (yyval.ttype); ; break;} case 641: #line 2921 "parse.y" { if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE) yyval.ttype = lastiddecl; got_scope = yyval.ttype; ; break;} case 642: #line 2927 "parse.y" { got_scope = yyval.ttype = complete_type (TREE_TYPE (yyvsp[-1].ttype)); ; break;} case 644: #line 2943 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 645: #line 2948 "parse.y" { if (TYPE_P (yyvsp[-1].ttype)) yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype, /*complain=*/1); else if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE) cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype); else { yyval.ttype = yyvsp[0].ttype; if (TREE_CODE (yyval.ttype) == TYPE_DECL) yyval.ttype = TREE_TYPE (yyval.ttype); } ; break;} case 646: #line 2961 "parse.y" { yyval.ttype = TREE_TYPE (yyvsp[0].ttype); ; break;} case 647: #line 2963 "parse.y" { yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype, /*complain=*/1); ; break;} case 648: #line 2965 "parse.y" { yyval.ttype = make_typename_type (yyvsp[-2].ttype, yyvsp[0].ttype, /*complain=*/1); ; break;} case 649: #line 2970 "parse.y" { if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE) cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype); ; break;} case 650: #line 2975 "parse.y" { if (TYPE_P (yyvsp[-1].ttype)) yyval.ttype = make_typename_type (yyvsp[-1].ttype, yyvsp[0].ttype, /*complain=*/1); else if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE) cp_error ("`%T' is not a class or namespace", yyvsp[0].ttype); else { yyval.ttype = yyvsp[0].ttype; if (TREE_CODE (yyval.ttype) == TYPE_DECL) yyval.ttype = TREE_TYPE (yyval.ttype); } ; break;} case 651: #line 2988 "parse.y" { got_scope = yyval.ttype = make_typename_type (yyvsp[-2].ttype, yyvsp[-1].ttype, /*complain=*/1); ; break;} case 652: #line 2991 "parse.y" { got_scope = yyval.ttype = make_typename_type (yyvsp[-3].ttype, yyvsp[-1].ttype, /*complain=*/1); ; break;} case 653: #line 2997 "parse.y" { if (TREE_CODE (yyvsp[-1].ttype) != IDENTIFIER_NODE) yyvsp[-1].ttype = lastiddecl; /* Retrieve the type for the identifier, which might involve some computation. */ got_scope = yyval.ttype = complete_type (IDENTIFIER_TYPE_VALUE (yyvsp[-1].ttype)); if (yyval.ttype == error_mark_node) cp_error ("`%T' is not a class or namespace", yyvsp[-1].ttype); ; break;} case 654: #line 3009 "parse.y" { if (TREE_CODE (yyvsp[-1].ttype) != IDENTIFIER_NODE) yyval.ttype = lastiddecl; got_scope = yyval.ttype = complete_type (TREE_TYPE (yyval.ttype)); ; break;} case 655: #line 3015 "parse.y" { got_scope = yyval.ttype = complete_type (TREE_TYPE (yyval.ttype)); ; break;} case 658: #line 3019 "parse.y" { if (TREE_CODE (yyval.ttype) == IDENTIFIER_NODE) yyval.ttype = lastiddecl; got_scope = yyval.ttype; ; break;} case 659: #line 3028 "parse.y" { yyval.ttype = build_min_nt (TEMPLATE_ID_EXPR, yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 660: #line 3033 "parse.y" { if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE) yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype); else yyval.ttype = yyvsp[0].ttype; got_scope = NULL_TREE; ; break;} case 662: #line 3042 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 663: #line 3047 "parse.y" { got_scope = NULL_TREE; ; break;} case 664: #line 3049 "parse.y" { yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ; break;} case 665: #line 3056 "parse.y" { got_scope = void_type_node; ; break;} case 666: #line 3062 "parse.y" { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 667: #line 3064 "parse.y" { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ; break;} case 668: #line 3066 "parse.y" { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 669: #line 3068 "parse.y" { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ; break;} case 670: #line 3070 "parse.y" { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg); ; break;} case 671: #line 3074 "parse.y" { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg); ; break;} case 673: #line 3083 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ; break;} case 674: #line 3085 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ; break;} case 676: #line 3091 "parse.y" { /* Provide support for '(' attributes '*' declarator ')' etc */ yyval.ttype = decl_tree_cons (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ; break;} case 677: #line 3101 "parse.y" { yyval.ttype = make_pointer_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 678: #line 3103 "parse.y" { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ; break;} case 679: #line 3105 "parse.y" { yyval.ttype = make_pointer_declarator (yyvsp[0].ftype.t, NULL_TREE); ; break;} case 680: #line 3107 "parse.y" { yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ; break;} case 681: #line 3109 "parse.y" { yyval.ttype = make_reference_declarator (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 682: #line 3111 "parse.y" { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ; break;} case 683: #line 3113 "parse.y" { yyval.ttype = make_reference_declarator (yyvsp[0].ftype.t, NULL_TREE); ; break;} case 684: #line 3115 "parse.y" { yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ; break;} case 685: #line 3117 "parse.y" { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg); ; break;} case 686: #line 3121 "parse.y" { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg); ; break;} case 688: #line 3130 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 689: #line 3133 "parse.y" { yyval.ttype = make_call_declarator (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 690: #line 3135 "parse.y" { yyval.ttype = make_call_declarator (yyval.ttype, empty_parms (), yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 691: #line 3137 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ; break;} case 692: #line 3139 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ; break;} case 693: #line 3141 "parse.y" { yyval.ttype = make_call_declarator (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 694: #line 3143 "parse.y" { set_quals_and_spec (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 695: #line 3145 "parse.y" { set_quals_and_spec (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 696: #line 3147 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ; break;} case 697: #line 3149 "parse.y" { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ; break;} case 704: #line 3172 "parse.y" { if (pedantic) pedwarn ("ISO C++ forbids label declarations"); ; break;} case 707: #line 3183 "parse.y" { while (yyvsp[-1].ttype) { finish_label_decl (TREE_VALUE (yyvsp[-1].ttype)); yyvsp[-1].ttype = TREE_CHAIN (yyvsp[-1].ttype); } ; break;} case 708: #line 3196 "parse.y" {; break;} case 710: #line 3202 "parse.y" { yyval.ttype = begin_compound_stmt (0); ; break;} case 711: #line 3204 "parse.y" { yyval.ttype = finish_compound_stmt (0, yyvsp[-1].ttype); ; break;} case 712: #line 3209 "parse.y" { yyval.ttype = begin_if_stmt (); cond_stmt_keyword = "if"; ; break;} case 713: #line 3214 "parse.y" { finish_if_stmt_cond (yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 714: #line 3216 "parse.y" { yyval.ttype = finish_then_clause (yyvsp[-3].ttype); ; break;} case 716: #line 3221 "parse.y" { yyval.ttype = begin_compound_stmt (0); ; break;} case 717: #line 3223 "parse.y" { yyval.ttype = finish_compound_stmt (0, yyvsp[-1].ttype); ; break;} case 718: #line 3228 "parse.y" {; break;} case 720: #line 3234 "parse.y" { finish_stmt (); ; break;} case 721: #line 3236 "parse.y" { finish_expr_stmt (yyvsp[-1].ttype); ; break;} case 722: #line 3238 "parse.y" { begin_else_clause (); ; break;} case 723: #line 3240 "parse.y" { finish_else_clause (yyvsp[-3].ttype); finish_if_stmt (); ; break;} case 724: #line 3245 "parse.y" { finish_if_stmt (); ; break;} case 725: #line 3247 "parse.y" { yyval.ttype = begin_while_stmt (); cond_stmt_keyword = "while"; ; break;} case 726: #line 3252 "parse.y" { finish_while_stmt_cond (yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 727: #line 3254 "parse.y" { finish_while_stmt (yyvsp[-3].ttype); ; break;} case 728: #line 3256 "parse.y" { yyval.ttype = begin_do_stmt (); ; break;} case 729: #line 3258 "parse.y" { finish_do_body (yyvsp[-2].ttype); cond_stmt_keyword = "do"; ; break;} case 730: #line 3263 "parse.y" { finish_do_stmt (yyvsp[-1].ttype, yyvsp[-5].ttype); ; break;} case 731: #line 3265 "parse.y" { yyval.ttype = begin_for_stmt (); ; break;} case 732: #line 3267 "parse.y" { finish_for_init_stmt (yyvsp[-2].ttype); ; break;} case 733: #line 3269 "parse.y" { finish_for_cond (yyvsp[-1].ttype, yyvsp[-5].ttype); ; break;} case 734: #line 3271 "parse.y" { finish_for_expr (yyvsp[-1].ttype, yyvsp[-8].ttype); ; break;} case 735: #line 3273 "parse.y" { finish_for_stmt (yyvsp[-3].ttype, yyvsp[-10].ttype); ; break;} case 736: #line 3275 "parse.y" { yyval.ttype = begin_switch_stmt (); ; break;} case 737: #line 3277 "parse.y" { finish_switch_cond (yyvsp[-1].ttype, yyvsp[-3].ttype); ; break;} case 738: #line 3279 "parse.y" { finish_switch_stmt (yyvsp[-3].ttype, yyvsp[-5].ttype); ; break;} case 739: #line 3281 "parse.y" { finish_case_label (yyvsp[-1].ttype, NULL_TREE); ; break;} case 741: #line 3284 "parse.y" { finish_case_label (yyvsp[-3].ttype, yyvsp[-1].ttype); ; break;} case 743: #line 3287 "parse.y" { finish_case_label (NULL_TREE, NULL_TREE); ; break;} case 745: #line 3290 "parse.y" { finish_break_stmt (); ; break;} case 746: #line 3292 "parse.y" { finish_continue_stmt (); ; break;} case 747: #line 3294 "parse.y" { finish_return_stmt (NULL_TREE); ; break;} case 748: #line 3296 "parse.y" { finish_return_stmt (yyvsp[-1].ttype); ; break;} case 749: #line 3298 "parse.y" { finish_asm_stmt (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE, NULL_TREE); ; break;} case 750: #line 3304 "parse.y" { finish_asm_stmt (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE); ; break;} case 751: #line 3310 "parse.y" { finish_asm_stmt (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE); ; break;} case 752: #line 3312 "parse.y" { finish_asm_stmt (yyvsp[-6].ttype, yyvsp[-4].ttype, NULL_TREE, yyvsp[-2].ttype, NULL_TREE); ; break;} case 753: #line 3316 "parse.y" { finish_asm_stmt (yyvsp[-10].ttype, yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype); ; break;} case 754: #line 3319 "parse.y" { finish_asm_stmt (yyvsp[-8].ttype, yyvsp[-6].ttype, NULL_TREE, yyvsp[-4].ttype, yyvsp[-2].ttype); ; break;} case 755: #line 3322 "parse.y" { finish_asm_stmt (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, NULL_TREE, yyvsp[-2].ttype); ; break;} case 756: #line 3324 "parse.y" { if (pedantic) pedwarn ("ISO C++ forbids computed gotos"); finish_goto_stmt (yyvsp[-1].ttype); ; break;} case 757: #line 3330 "parse.y" { finish_goto_stmt (yyvsp[-1].ttype); ; break;} case 759: #line 3333 "parse.y" { error ("label must be followed by statement"); yyungetc ('}', 0); ; break;} case 760: #line 3336 "parse.y" { finish_stmt (); ; break;} case 763: #line 3340 "parse.y" { do_local_using_decl (yyvsp[0].ttype); ; break;} case 765: #line 3346 "parse.y" { yyval.ttype = begin_function_try_block (); ; break;} case 766: #line 3348 "parse.y" { finish_function_try_block (yyvsp[-2].ttype); ; break;} case 767: #line 3350 "parse.y" { finish_function_handler_sequence (yyvsp[-4].ttype); yyval.itype = yyvsp[-3].itype; ; break;} case 768: #line 3358 "parse.y" { yyval.ttype = begin_try_block (); ; break;} case 769: #line 3360 "parse.y" { finish_try_block (yyvsp[-1].ttype); ; break;} case 770: #line 3362 "parse.y" { finish_handler_sequence (yyvsp[-3].ttype); ; break;} case 773: #line 3372 "parse.y" { yyval.ttype = begin_handler(); ; break;} case 774: #line 3374 "parse.y" { yyval.ttype = finish_handler_parms (yyvsp[0].ttype, yyvsp[-1].ttype); ; break;} case 775: #line 3376 "parse.y" { finish_handler (yyvsp[-1].ttype, yyvsp[-3].ttype); ; break;} case 778: #line 3386 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 779: #line 3402 "parse.y" { check_for_new_type ("inside exception declarations", yyvsp[-1].ftype); yyval.ttype = start_handler_parms (TREE_PURPOSE (yyvsp[-1].ftype.t), TREE_VALUE (yyvsp[-1].ftype.t)); ; break;} case 780: #line 3411 "parse.y" { finish_label_stmt (yyvsp[-1].ttype); ; break;} case 781: #line 3413 "parse.y" { finish_label_stmt (yyvsp[-1].ttype); ; break;} case 782: #line 3415 "parse.y" { finish_label_stmt (yyvsp[-1].ttype); ; break;} case 783: #line 3417 "parse.y" { finish_label_stmt (yyvsp[-1].ttype); ; break;} case 784: #line 3422 "parse.y" { finish_expr_stmt (yyvsp[-1].ttype); ; break;} case 786: #line 3425 "parse.y" { if (pedantic) pedwarn ("ISO C++ forbids compound statements inside for initializations"); ; break;} case 787: #line 3434 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 789: #line 3440 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 791: #line 3443 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 792: #line 3450 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 795: #line 3457 "parse.y" { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ; break;} case 796: #line 3462 "parse.y" { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ; break;} case 797: #line 3467 "parse.y" { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ; break;} case 798: #line 3469 "parse.y" { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ; break;} case 799: #line 3480 "parse.y" { yyval.ttype = empty_parms(); ; break;} case 801: #line 3485 "parse.y" { yyval.ttype = finish_parmlist (build_tree_list (NULL_TREE, yyvsp[0].ftype.t), 0); check_for_new_type ("inside parameter list", yyvsp[0].ftype); ; break;} case 802: #line 3493 "parse.y" { yyval.ttype = finish_parmlist (yyval.ttype, 0); ; break;} case 803: #line 3495 "parse.y" { yyval.ttype = finish_parmlist (yyvsp[-1].ttype, 1); ; break;} case 804: #line 3498 "parse.y" { yyval.ttype = finish_parmlist (yyvsp[-1].ttype, 1); ; break;} case 805: #line 3500 "parse.y" { yyval.ttype = finish_parmlist (build_tree_list (NULL_TREE, yyvsp[-1].ftype.t), 1); ; break;} case 806: #line 3503 "parse.y" { yyval.ttype = finish_parmlist (NULL_TREE, 1); ; break;} case 807: #line 3505 "parse.y" { /* This helps us recover from really nasty parse errors, for example, a missing right parenthesis. */ yyerror ("possibly missing ')'"); yyval.ttype = finish_parmlist (yyvsp[-1].ttype, 0); yyungetc (':', 0); yychar = ')'; ; break;} case 808: #line 3515 "parse.y" { /* This helps us recover from really nasty parse errors, for example, a missing right parenthesis. */ yyerror ("possibly missing ')'"); yyval.ttype = finish_parmlist (build_tree_list (NULL_TREE, yyvsp[-1].ftype.t), 0); yyungetc (':', 0); yychar = ')'; ; break;} case 809: #line 3530 "parse.y" { maybe_snarf_defarg (); ; break;} case 810: #line 3532 "parse.y" { yyval.ttype = yyvsp[0].ttype; ; break;} case 813: #line 3543 "parse.y" { check_for_new_type ("in a parameter list", yyvsp[0].ftype); yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ftype.t); ; break;} case 814: #line 3546 "parse.y" { check_for_new_type ("in a parameter list", yyvsp[-1].ftype); yyval.ttype = build_tree_list (yyvsp[0].ttype, yyvsp[-1].ftype.t); ; break;} case 815: #line 3549 "parse.y" { check_for_new_type ("in a parameter list", yyvsp[0].ftype); yyval.ttype = chainon (yyval.ttype, yyvsp[0].ftype.t); ; break;} case 816: #line 3552 "parse.y" { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ; break;} case 817: #line 3554 "parse.y" { yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ; break;} case 819: #line 3560 "parse.y" { check_for_new_type ("in a parameter list", yyvsp[-1].ftype); yyval.ttype = build_tree_list (NULL_TREE, yyvsp[-1].ftype.t); ; break;} case 820: #line 3570 "parse.y" { tree specs = strip_attrs (yyvsp[-1].ftype.t); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype); ; break;} case 821: #line 3574 "parse.y" { yyval.ftype.t = build_tree_list (yyvsp[-1].ftype.t, yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 822: #line 3577 "parse.y" { yyval.ftype.t = build_tree_list (build_decl_list (NULL_TREE, yyvsp[-1].ftype.t), yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 823: #line 3581 "parse.y" { tree specs = strip_attrs (yyvsp[-1].ftype.t); yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 824: #line 3585 "parse.y" { tree specs = strip_attrs (yyvsp[0].ftype.t); yyval.ftype.t = build_tree_list (specs, NULL_TREE); yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ; break;} case 825: #line 3589 "parse.y" { tree specs = strip_attrs (yyvsp[-1].ftype.t); yyval.ftype.t = build_tree_list (specs, yyvsp[0].ttype); yyval.ftype.new_type_flag = 0; ; break;} case 826: #line 3596 "parse.y" { yyval.ftype.t = build_tree_list (NULL_TREE, yyvsp[0].ftype.t); yyval.ftype.new_type_flag = yyvsp[0].ftype.new_type_flag; ; break;} case 827: #line 3599 "parse.y" { yyval.ftype.t = build_tree_list (yyvsp[0].ttype, yyvsp[-1].ftype.t); yyval.ftype.new_type_flag = yyvsp[-1].ftype.new_type_flag; ; break;} case 830: #line 3610 "parse.y" { see_typename (); ; break;} case 831: #line 3615 "parse.y" { error ("type specifier omitted for parameter"); yyval.ttype = build_tree_list (integer_type_node, NULL_TREE); ; break;} case 832: #line 3620 "parse.y" { error ("type specifier omitted for parameter"); if (TREE_CODE (yyval.ttype) == SCOPE_REF && (TREE_CODE (TREE_OPERAND (yyval.ttype, 0)) == TEMPLATE_TYPE_PARM || TREE_CODE (TREE_OPERAND (yyval.ttype, 0)) == TEMPLATE_TEMPLATE_PARM)) cp_error (" perhaps you want `typename %E' to make it a type", yyval.ttype); yyval.ttype = build_tree_list (integer_type_node, yyval.ttype); ; break;} case 833: #line 3632 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 834: #line 3634 "parse.y" { yyval.ttype = yyvsp[-1].ttype; ; break;} case 835: #line 3636 "parse.y" { yyval.ttype = empty_except_spec; ; break;} case 836: #line 3641 "parse.y" { check_for_new_type ("exception specifier", yyvsp[0].ftype); yyval.ttype = groktypename (yyvsp[0].ftype.t); ; break;} case 837: #line 3649 "parse.y" { yyval.ttype = add_exception_specifier (NULL_TREE, yyvsp[0].ttype, 1); ; break;} case 838: #line 3651 "parse.y" { yyval.ttype = add_exception_specifier (yyvsp[-2].ttype, yyvsp[0].ttype, 1); ; break;} case 839: #line 3656 "parse.y" { yyval.ttype = NULL_TREE; ; break;} case 840: #line 3658 "parse.y" { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 841: #line 3660 "parse.y" { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ; break;} case 842: #line 3662 "parse.y" { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg); ; break;} case 843: #line 3669 "parse.y" { got_scope = NULL_TREE; ; break;} case 844: #line 3674 "parse.y" { yyval.ttype = ansi_opname[MULT_EXPR]; ; break;} case 845: #line 3676 "parse.y" { yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ; break;} case 846: #line 3678 "parse.y" { yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ; break;} case 847: #line 3680 "parse.y" { yyval.ttype = ansi_opname[PLUS_EXPR]; ; break;} case 848: #line 3682 "parse.y" { yyval.ttype = ansi_opname[MINUS_EXPR]; ; break;} case 849: #line 3684 "parse.y" { yyval.ttype = ansi_opname[BIT_AND_EXPR]; ; break;} case 850: #line 3686 "parse.y" { yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ; break;} case 851: #line 3688 "parse.y" { yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ; break;} case 852: #line 3690 "parse.y" { yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ; break;} case 853: #line 3692 "parse.y" { yyval.ttype = ansi_opname[COMPOUND_EXPR]; ; break;} case 854: #line 3694 "parse.y" { yyval.ttype = ansi_opname[yyvsp[0].code]; ; break;} case 855: #line 3696 "parse.y" { yyval.ttype = ansi_opname[LT_EXPR]; ; break;} case 856: #line 3698 "parse.y" { yyval.ttype = ansi_opname[GT_EXPR]; ; break;} case 857: #line 3700 "parse.y" { yyval.ttype = ansi_opname[yyvsp[0].code]; ; break;} case 858: #line 3702 "parse.y" { yyval.ttype = ansi_assopname[yyvsp[0].code]; ; break;} case 859: #line 3704 "parse.y" { yyval.ttype = ansi_opname [MODIFY_EXPR]; ; break;} case 860: #line 3706 "parse.y" { yyval.ttype = ansi_opname[yyvsp[0].code]; ; break;} case 861: #line 3708 "parse.y" { yyval.ttype = ansi_opname[yyvsp[0].code]; ; break;} case 862: #line 3710 "parse.y" { yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ; break;} case 863: #line 3712 "parse.y" { yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ; break;} case 864: #line 3714 "parse.y" { yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ; break;} case 865: #line 3716 "parse.y" { yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ; break;} case 866: #line 3718 "parse.y" { yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ; break;} case 867: #line 3720 "parse.y" { yyval.ttype = ansi_opname[COND_EXPR]; ; break;} case 868: #line 3722 "parse.y" { yyval.ttype = ansi_opname[yyvsp[0].code]; ; break;} case 869: #line 3724 "parse.y" { yyval.ttype = ansi_opname[COMPONENT_REF]; ; break;} case 870: #line 3726 "parse.y" { yyval.ttype = ansi_opname[MEMBER_REF]; ; break;} case 871: #line 3728 "parse.y" { yyval.ttype = ansi_opname[CALL_EXPR]; ; break;} case 872: #line 3730 "parse.y" { yyval.ttype = ansi_opname[ARRAY_REF]; ; break;} case 873: #line 3732 "parse.y" { yyval.ttype = ansi_opname[NEW_EXPR]; ; break;} case 874: #line 3734 "parse.y" { yyval.ttype = ansi_opname[DELETE_EXPR]; ; break;} case 875: #line 3736 "parse.y" { yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ; break;} case 876: #line 3738 "parse.y" { yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ; break;} case 877: #line 3741 "parse.y" { yyval.ttype = grokoptypename (yyvsp[-1].ftype.t, yyvsp[0].ttype); ; break;} case 878: #line 3743 "parse.y" { yyval.ttype = ansi_opname[ERROR_MARK]; ; break;} } /* the action file gets copied in in place of this dollarsign */ #line 543 "/usr/lib/bison.simple" yyvsp -= yylen; yyssp -= yylen; #ifdef YYLSP_NEEDED yylsp -= yylen; #endif #if YYDEBUG != 0 if (yydebug) { short *ssp1 = yyss - 1; fprintf (stderr, "state stack now"); while (ssp1 != yyssp) fprintf (stderr, " %d", *++ssp1); fprintf (stderr, "\n"); } #endif *++yyvsp = yyval; #ifdef YYLSP_NEEDED yylsp++; if (yylen == 0) { yylsp->first_line = yylloc.first_line; yylsp->first_column = yylloc.first_column; yylsp->last_line = (yylsp-1)->last_line; yylsp->last_column = (yylsp-1)->last_column; yylsp->text = 0; } else { yylsp->last_line = (yylsp+yylen-1)->last_line; yylsp->last_column = (yylsp+yylen-1)->last_column; } #endif /* 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 - YYNTBASE] + *yyssp; if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTBASE]; goto yynewstate; yyerrlab: /* here on detecting error */ if (! yyerrstatus) /* If not already recovering from an error, report this error. */ { ++yynerrs; #ifdef YYERROR_VERBOSE yyn = yypact[yystate]; if (yyn > YYFLAG && yyn < YYLAST) { int size = 0; char *msg; int x, count; count = 0; /* Start X at -yyn if nec to avoid negative indexes in yycheck. */ for (x = (yyn < 0 ? -yyn : 0); x < (sizeof(yytname) / sizeof(char *)); x++) if (yycheck[x + yyn] == x) size += strlen(yytname[x]) + 15, count++; msg = (char *) malloc(size + 15); if (msg != 0) { strcpy(msg, "parse error"); if (count < 5) { count = 0; for (x = (yyn < 0 ? -yyn : 0); x < (sizeof(yytname) / sizeof(char *)); x++) if (yycheck[x + yyn] == x) { strcat(msg, count == 0 ? ", expecting `" : " or `"); strcat(msg, yytname[x]); strcat(msg, "'"); count++; } } yyerror(msg); free(msg); } else yyerror ("parse error; also virtual memory exceeded"); } else #endif /* YYERROR_VERBOSE */ yyerror("parse error"); } goto yyerrlab1; yyerrlab1: /* here on error raised explicitly by an action */ if (yyerrstatus == 3) { /* if just tried and failed to reuse lookahead token after an error, discard it. */ /* return failure if at end of input */ if (yychar == YYEOF) YYABORT; #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]); #endif yychar = YYEMPTY; } /* Else will try to reuse lookahead token after shifting the error token. */ yyerrstatus = 3; /* Each real token shifted decrements this */ goto yyerrhandle; yyerrdefault: /* current state does not do anything special for the error token. */ #if 0 /* This is wrong; only states that explicitly want error tokens should shift them. */ yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/ if (yyn) goto yydefault; #endif yyerrpop: /* pop the current state because it cannot handle the error token */ if (yyssp == yyss) YYABORT; yyvsp--; yystate = *--yyssp; #ifdef YYLSP_NEEDED yylsp--; #endif #if YYDEBUG != 0 if (yydebug) { short *ssp1 = yyss - 1; fprintf (stderr, "Error: state stack now"); while (ssp1 != yyssp) fprintf (stderr, " %d", *++ssp1); fprintf (stderr, "\n"); } #endif yyerrhandle: yyn = yypact[yystate]; if (yyn == YYFLAG) goto yyerrdefault; yyn += YYTERROR; if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR) goto yyerrdefault; yyn = yytable[yyn]; if (yyn < 0) { if (yyn == YYFLAG) goto yyerrpop; yyn = -yyn; goto yyreduce; } else if (yyn == 0) goto yyerrpop; if (yyn == YYFINAL) YYACCEPT; #if YYDEBUG != 0 if (yydebug) fprintf(stderr, "Shifting error token, "); #endif *++yyvsp = yylval; #ifdef YYLSP_NEEDED *++yylsp = yylloc; #endif yystate = yyn; goto yynewstate; yyacceptlab: /* YYACCEPT comes here. */ if (yyfree_stacks) { free (yyss); free (yyvs); #ifdef YYLSP_NEEDED free (yyls); #endif } return 0; yyabortlab: /* YYABORT comes here. */ if (yyfree_stacks) { free (yyss); free (yyvs); #ifdef YYLSP_NEEDED free (yyls); #endif } return 1; } #line 3746 "parse.y" #ifdef SPEW_DEBUG const char * debug_yytranslate (value) int value; { return yytname[YYTRANSLATE (value)]; } #endif