summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/hitexdir/hiparser.c
blob: 1defe7640e597ef95e95de2cf006a63f4eecbb42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
/* A Bison parser, made by GNU Bison 3.8.2.  */

/* Bison implementation for Yacc-like parsers in C

   Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,
   Inc.

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */

/* As a special exception, you may create a larger work that contains
   part or all of the Bison parser skeleton and distribute that work
   under terms of your choice, so long as that work isn't itself a
   parser generator using the skeleton or a modified version thereof
   as a parser skeleton.  Alternatively, if you modify or redistribute
   the parser skeleton itself, you may (at your option) remove this
   special exception, which will cause the skeleton and the resulting
   Bison output files to be licensed under the GNU General Public
   License without this special exception.

   This special exception was added by the Free Software Foundation in
   version 2.2 of Bison.  */

/* C LALR(1) parser skeleton written by Richard Stallman, by
   simplifying the original so-called "semantic" parser.  */

/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
   especially those whose name start with YY_ or yy_.  They are
   private implementation details that can be changed or removed.  */

/* All symbols defined below should begin with yy or YY, to avoid
   infringing on user name space.  This should be done even for local
   variables, as they might otherwise be expanded by user macros.
   There are some unavoidable exceptions within include files to
   define necessary library symbols; they are noted "INFRINGES ON
   USER NAME SPACE" below.  */

/* Identify Bison output, and Bison version.  */
#define YYBISON 30802

/* Bison version string.  */
#define YYBISON_VERSION "3.8.2"

/* Skeleton name.  */
#define YYSKELETON_NAME "yacc.c"

/* Pure parsers.  */
#define YYPURE 0

/* Push parsers.  */
#define YYPUSH 0

/* Pull parsers.  */
#define YYPULL 1




/* First part of user prologue.  */
#line 2 "parser.y"

	#line 10772 "format.w"
	
#include "hibasetypes.h"
#include <string.h>
#include <math.h>
#include "hierror.h"
#include "hiformat.h"
#include "hiput.h"
extern char**hfont_name;

	/*366:*/
uint32_t definition_bits[0x100/32][32]= {
	#line 8073 "format.w"
	{0}};

#define SET_DBIT(N,K) ((N)>0xFF?1:(definition_bits[N/32][K]	|= (1<<((N)&(32-1)))))
#define GET_DBIT(N,K) ((N)>0xFF?1:((definition_bits[N/32][K]>>((N)&(32-1)))&1))
#define DEF(D,K,N) (D).k= K; (D).n= (N);SET_DBIT((D).n,(D).k);\
 DBG(DBGDEF,"Defining %s %d\n",definition_name[(D).k],(D).n);\
 RNG("Definition",(D).n,max_fixed[(D).k]+1,max_ref[(D).k]);
#define REF(K,N) REF_RNG(K,N);if(!GET_DBIT(N,K)) \
 QUIT("Reference %d to %s before definition",(N),definition_name[K])
	/*:366*/	/*370:*/
#define DEF_REF(D,K,M,N)  DEF(D,K,M);\
if ((int)(M)>max_default[K]) QUIT("Defining non default reference %d for %s",M,definition_name[K]); \
if ((int)(N)>max_fixed[K]) QUIT("Defining reference %d for %s by non fixed reference %d",M,definition_name[K],N);
	/*:370*/

extern void hset_entry(Entry*e,uint16_t i,uint32_t size,
uint32_t xsize,char*file_name);

	/*433:*/
#ifdef DEBUG
#define  YYDEBUG 1
extern int yydebug;
#else
#define YYDEBUG 0
#endif
	/*:433*/
extern int yylex(void);

	/*362:*/
void hset_max(Kind k,int n)
{
	#line 7916 "format.w"
	DBG(DBGDEF,"Setting max %s to %d\n",definition_name[k],n);
	RNG("Maximum",n,max_fixed[k]+1,MAX_REF(k));
	if(n>max_ref[k])
	max_ref[k]= n;
	}
	/*:362*/	/*373:*/
void check_param_def(Ref*df)
{
	#line 8222 "format.w"
	if(df->k!=int_kind&&df->k!=dimen_kind&&df->k!=glue_kind)
	QUIT("Kind %s not allowed in parameter list",definition_name[df->k]);
	if(df->n<=max_fixed[df->k]||max_default[df->k]<df->n)
	QUIT("Parameter %d for %s not allowed in parameter list",df->n,definition_name[df->k]);
	}
	/*:373*/	/*432:*/
extern int yylineno;
int yyerror(const char*msg)
{
	#line 9346 "format.w"
	QUIT(" in line %d %s",yylineno,msg);
	return 0;
	}
	/*:432*/



#line 144 "parser.c"

# ifndef YY_CAST
#  ifdef __cplusplus
#   define YY_CAST(Type, Val) static_cast<Type> (Val)
#   define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
#  else
#   define YY_CAST(Type, Val) ((Type) (Val))
#   define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
#  endif
# endif
# ifndef YY_NULLPTR
#  if defined __cplusplus
#   if 201103L <= __cplusplus
#    define YY_NULLPTR nullptr
#   else
#    define YY_NULLPTR 0
#   endif
#  else
#   define YY_NULLPTR ((void*)0)
#  endif
# endif

#include "hiparser.h"
/* Symbol kind.  */
enum yysymbol_kind_t
{
  YYSYMBOL_YYEMPTY = -2,
  YYSYMBOL_YYEOF = 0,                      /* "end of file"  */
  YYSYMBOL_YYerror = 1,                    /* error  */
  YYSYMBOL_YYUNDEF = 2,                    /* "invalid token"  */
  YYSYMBOL_START = 3,                      /* "<"  */
  YYSYMBOL_END = 4,                        /* ">"  */
  YYSYMBOL_GLYPH = 5,                      /* "glyph"  */
  YYSYMBOL_UNSIGNED = 6,                   /* UNSIGNED  */
  YYSYMBOL_REFERENCE = 7,                  /* REFERENCE  */
  YYSYMBOL_SIGNED = 8,                     /* SIGNED  */
  YYSYMBOL_STRING = 9,                     /* STRING  */
  YYSYMBOL_CHARCODE = 10,                  /* CHARCODE  */
  YYSYMBOL_FPNUM = 11,                     /* FPNUM  */
  YYSYMBOL_DIMEN = 12,                     /* "dimen"  */
  YYSYMBOL_PT = 13,                        /* "pt"  */
  YYSYMBOL_MM = 14,                        /* "mm"  */
  YYSYMBOL_INCH = 15,                      /* "in"  */
  YYSYMBOL_XDIMEN = 16,                    /* "xdimen"  */
  YYSYMBOL_H = 17,                         /* "h"  */
  YYSYMBOL_V = 18,                         /* "v"  */
  YYSYMBOL_FIL = 19,                       /* "fil"  */
  YYSYMBOL_FILL = 20,                      /* "fill"  */
  YYSYMBOL_FILLL = 21,                     /* "filll"  */
  YYSYMBOL_PENALTY = 22,                   /* "penalty"  */
  YYSYMBOL_INTEGER = 23,                   /* "int"  */
  YYSYMBOL_LANGUAGE = 24,                  /* "language"  */
  YYSYMBOL_RULE = 25,                      /* "rule"  */
  YYSYMBOL_RUNNING = 26,                   /* "|"  */
  YYSYMBOL_KERN = 27,                      /* "kern"  */
  YYSYMBOL_EXPLICIT = 28,                  /* "!"  */
  YYSYMBOL_GLUE = 29,                      /* "glue"  */
  YYSYMBOL_PLUS = 30,                      /* "plus"  */
  YYSYMBOL_MINUS = 31,                     /* "minus"  */
  YYSYMBOL_TXT_START = 32,                 /* TXT_START  */
  YYSYMBOL_TXT_END = 33,                   /* TXT_END  */
  YYSYMBOL_TXT_IGNORE = 34,                /* TXT_IGNORE  */
  YYSYMBOL_TXT_FONT_GLUE = 35,             /* TXT_FONT_GLUE  */
  YYSYMBOL_TXT_FONT_HYPHEN = 36,           /* TXT_FONT_HYPHEN  */
  YYSYMBOL_TXT_FONT = 37,                  /* TXT_FONT  */
  YYSYMBOL_TXT_LOCAL = 38,                 /* TXT_LOCAL  */
  YYSYMBOL_TXT_GLOBAL = 39,                /* TXT_GLOBAL  */
  YYSYMBOL_TXT_CC = 40,                    /* TXT_CC  */
  YYSYMBOL_HBOX = 41,                      /* "hbox"  */
  YYSYMBOL_VBOX = 42,                      /* "vbox"  */
  YYSYMBOL_SHIFTED = 43,                   /* "shifted"  */
  YYSYMBOL_HPACK = 44,                     /* "hpack"  */
  YYSYMBOL_HSET = 45,                      /* "hset"  */
  YYSYMBOL_VPACK = 46,                     /* "vpack"  */
  YYSYMBOL_VSET = 47,                      /* "vset"  */
  YYSYMBOL_DEPTH = 48,                     /* "depth"  */
  YYSYMBOL_ADD = 49,                       /* "add"  */
  YYSYMBOL_TO = 50,                        /* "to"  */
  YYSYMBOL_LEADERS = 51,                   /* "leaders"  */
  YYSYMBOL_ALIGN = 52,                     /* "align"  */
  YYSYMBOL_CENTER = 53,                    /* "center"  */
  YYSYMBOL_EXPAND = 54,                    /* "expand"  */
  YYSYMBOL_BASELINE = 55,                  /* "baseline"  */
  YYSYMBOL_LIGATURE = 56,                  /* "ligature"  */
  YYSYMBOL_DISC = 57,                      /* "disc"  */
  YYSYMBOL_PAR = 58,                       /* "par"  */
  YYSYMBOL_MATH = 59,                      /* "math"  */
  YYSYMBOL_ON = 60,                        /* "on"  */
  YYSYMBOL_OFF = 61,                       /* "off"  */
  YYSYMBOL_ADJUST = 62,                    /* "adjust"  */
  YYSYMBOL_TABLE = 63,                     /* "table"  */
  YYSYMBOL_ITEM = 64,                      /* "item"  */
  YYSYMBOL_IMAGE = 65,                     /* "image"  */
  YYSYMBOL_WIDTH = 66,                     /* "width"  */
  YYSYMBOL_HEIGHT = 67,                    /* "height"  */
  YYSYMBOL_LABEL = 68,                     /* "label"  */
  YYSYMBOL_BOT = 69,                       /* "bot"  */
  YYSYMBOL_MID = 70,                       /* "mid"  */
  YYSYMBOL_LINK = 71,                      /* "link"  */
  YYSYMBOL_OUTLINE = 72,                   /* "outline"  */
  YYSYMBOL_STREAM = 73,                    /* "stream"  */
  YYSYMBOL_STREAMDEF = 74,                 /* "stream (definition)"  */
  YYSYMBOL_FIRST = 75,                     /* "first"  */
  YYSYMBOL_LAST = 76,                      /* "last"  */
  YYSYMBOL_TOP = 77,                       /* "top"  */
  YYSYMBOL_NOREFERENCE = 78,               /* "*"  */
  YYSYMBOL_PAGE = 79,                      /* "page"  */
  YYSYMBOL_RANGE = 80,                     /* "range"  */
  YYSYMBOL_DIRECTORY = 81,                 /* "directory"  */
  YYSYMBOL_SECTION = 82,                   /* "entry"  */
  YYSYMBOL_DEFINITIONS = 83,               /* "definitions"  */
  YYSYMBOL_MAX = 84,                       /* "max"  */
  YYSYMBOL_PARAM = 85,                     /* "param"  */
  YYSYMBOL_FONT = 86,                      /* "font"  */
  YYSYMBOL_CONTENT = 87,                   /* "content"  */
  YYSYMBOL_YYACCEPT = 88,                  /* $accept  */
  YYSYMBOL_glyph = 89,                     /* glyph  */
  YYSYMBOL_content_node = 90,              /* content_node  */
  YYSYMBOL_start = 91,                     /* start  */
  YYSYMBOL_integer = 92,                   /* integer  */
  YYSYMBOL_string = 93,                    /* string  */
  YYSYMBOL_number = 94,                    /* number  */
  YYSYMBOL_dimension = 95,                 /* dimension  */
  YYSYMBOL_xdimen = 96,                    /* xdimen  */
  YYSYMBOL_xdimen_node = 97,               /* xdimen_node  */
  YYSYMBOL_order = 98,                     /* order  */
  YYSYMBOL_stretch = 99,                   /* stretch  */
  YYSYMBOL_penalty = 100,                  /* penalty  */
  YYSYMBOL_rule_dimension = 101,           /* rule_dimension  */
  YYSYMBOL_rule = 102,                     /* rule  */
  YYSYMBOL_rule_node = 103,                /* rule_node  */
  YYSYMBOL_explicit = 104,                 /* explicit  */
  YYSYMBOL_kern = 105,                     /* kern  */
  YYSYMBOL_plus = 106,                     /* plus  */
  YYSYMBOL_minus = 107,                    /* minus  */
  YYSYMBOL_glue = 108,                     /* glue  */
  YYSYMBOL_glue_node = 109,                /* glue_node  */
  YYSYMBOL_position = 110,                 /* position  */
  YYSYMBOL_content_list = 111,             /* content_list  */
  YYSYMBOL_estimate = 112,                 /* estimate  */
  YYSYMBOL_list = 113,                     /* list  */
  YYSYMBOL_114_1 = 114,                    /* $@1  */
  YYSYMBOL_text = 115,                     /* text  */
  YYSYMBOL_txt = 116,                      /* txt  */
  YYSYMBOL_117_2 = 117,                    /* $@2  */
  YYSYMBOL_box_dimen = 118,                /* box_dimen  */
  YYSYMBOL_box_shift = 119,                /* box_shift  */
  YYSYMBOL_box_glue_set = 120,             /* box_glue_set  */
  YYSYMBOL_box = 121,                      /* box  */
  YYSYMBOL_hbox_node = 122,                /* hbox_node  */
  YYSYMBOL_vbox_node = 123,                /* vbox_node  */
  YYSYMBOL_box_flex = 124,                 /* box_flex  */
  YYSYMBOL_xbox = 125,                     /* xbox  */
  YYSYMBOL_box_goal = 126,                 /* box_goal  */
  YYSYMBOL_hpack = 127,                    /* hpack  */
  YYSYMBOL_vpack = 128,                    /* vpack  */
  YYSYMBOL_129_3 = 129,                    /* $@3  */
  YYSYMBOL_vxbox_node = 130,               /* vxbox_node  */
  YYSYMBOL_hxbox_node = 131,               /* hxbox_node  */
  YYSYMBOL_ltype = 132,                    /* ltype  */
  YYSYMBOL_leaders = 133,                  /* leaders  */
  YYSYMBOL_baseline = 134,                 /* baseline  */
  YYSYMBOL_135_4 = 135,                    /* $@4  */
  YYSYMBOL_cc_list = 136,                  /* cc_list  */
  YYSYMBOL_lig_cc = 137,                   /* lig_cc  */
  YYSYMBOL_ref = 138,                      /* ref  */
  YYSYMBOL_ligature = 139,                 /* ligature  */
  YYSYMBOL_140_5 = 140,                    /* $@5  */
  YYSYMBOL_replace_count = 141,            /* replace_count  */
  YYSYMBOL_disc = 142,                     /* disc  */
  YYSYMBOL_disc_node = 143,                /* disc_node  */
  YYSYMBOL_par_dimen = 144,                /* par_dimen  */
  YYSYMBOL_par = 145,                      /* par  */
  YYSYMBOL_146_6 = 146,                    /* $@6  */
  YYSYMBOL_math = 147,                     /* math  */
  YYSYMBOL_on_off = 148,                   /* on_off  */
  YYSYMBOL_span_count = 149,               /* span_count  */
  YYSYMBOL_table = 150,                    /* table  */
  YYSYMBOL_image_aspect = 151,             /* image_aspect  */
  YYSYMBOL_image_width = 152,              /* image_width  */
  YYSYMBOL_image_height = 153,             /* image_height  */
  YYSYMBOL_image_spec = 154,               /* image_spec  */
  YYSYMBOL_image = 155,                    /* image  */
  YYSYMBOL_max_value = 156,                /* max_value  */
  YYSYMBOL_placement = 157,                /* placement  */
  YYSYMBOL_def_node = 158,                 /* def_node  */
  YYSYMBOL_stream_link = 159,              /* stream_link  */
  YYSYMBOL_stream_split = 160,             /* stream_split  */
  YYSYMBOL_stream_info = 161,              /* stream_info  */
  YYSYMBOL_162_7 = 162,                    /* $@7  */
  YYSYMBOL_stream_type = 163,              /* stream_type  */
  YYSYMBOL_stream_def_node = 164,          /* stream_def_node  */
  YYSYMBOL_stream_ins_node = 165,          /* stream_ins_node  */
  YYSYMBOL_stream = 166,                   /* stream  */
  YYSYMBOL_page_priority = 167,            /* page_priority  */
  YYSYMBOL_stream_def_list = 168,          /* stream_def_list  */
  YYSYMBOL_page = 169,                     /* page  */
  YYSYMBOL_170_8 = 170,                    /* $@8  */
  YYSYMBOL_171_9 = 171,                    /* $@9  */
  YYSYMBOL_hint = 172,                     /* hint  */
  YYSYMBOL_directory_section = 173,        /* directory_section  */
  YYSYMBOL_174_10 = 174,                   /* $@10  */
  YYSYMBOL_entry_list = 175,               /* entry_list  */
  YYSYMBOL_entry = 176,                    /* entry  */
  YYSYMBOL_definition_section = 177,       /* definition_section  */
  YYSYMBOL_178_11 = 178,                   /* $@11  */
  YYSYMBOL_definition_list = 179,          /* definition_list  */
  YYSYMBOL_max_definitions = 180,          /* max_definitions  */
  YYSYMBOL_max_list = 181,                 /* max_list  */
  YYSYMBOL_def_list = 182,                 /* def_list  */
  YYSYMBOL_parameters = 183,               /* parameters  */
  YYSYMBOL_empty_param_list = 184,         /* empty_param_list  */
  YYSYMBOL_non_empty_param_list = 185,     /* non_empty_param_list  */
  YYSYMBOL_186_12 = 186,                   /* $@12  */
  YYSYMBOL_font = 187,                     /* font  */
  YYSYMBOL_font_head = 188,                /* font_head  */
  YYSYMBOL_font_param_list = 189,          /* font_param_list  */
  YYSYMBOL_font_param = 190,               /* font_param  */
  YYSYMBOL_fref = 191,                     /* fref  */
  YYSYMBOL_xdimen_ref = 192,               /* xdimen_ref  */
  YYSYMBOL_param_ref = 193,                /* param_ref  */
  YYSYMBOL_stream_ref = 194,               /* stream_ref  */
  YYSYMBOL_content_section = 195,          /* content_section  */
  YYSYMBOL_196_13 = 196                    /* $@13  */
};
typedef enum yysymbol_kind_t yysymbol_kind_t;




#ifdef short
# undef short
#endif

/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
   <limits.h> and (if available) <stdint.h> are included
   so that the code can choose integer types of a good width.  */

#ifndef __PTRDIFF_MAX__
# include <limits.h> /* INFRINGES ON USER NAME SPACE */
# if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
#  include <stdint.h> /* INFRINGES ON USER NAME SPACE */
#  define YY_STDINT_H
# endif
#endif

/* Narrow types that promote to a signed type and that can represent a
   signed or unsigned integer of at least N bits.  In tables they can
   save space and decrease cache pressure.  Promoting to a signed type
   helps avoid bugs in integer arithmetic.  */

#ifdef __INT_LEAST8_MAX__
typedef __INT_LEAST8_TYPE__ yytype_int8;
#elif defined YY_STDINT_H
typedef int_least8_t yytype_int8;
#else
typedef signed char yytype_int8;
#endif

#ifdef __INT_LEAST16_MAX__
typedef __INT_LEAST16_TYPE__ yytype_int16;
#elif defined YY_STDINT_H
typedef int_least16_t yytype_int16;
#else
typedef short yytype_int16;
#endif

/* Work around bug in HP-UX 11.23, which defines these macros
   incorrectly for preprocessor constants.  This workaround can likely
   be removed in 2023, as HPE has promised support for HP-UX 11.23
   (aka HP-UX 11i v2) only through the end of 2022; see Table 2 of
   <https://h20195.www2.hpe.com/V2/getpdf.aspx/4AA4-7673ENW.pdf>.  */
#ifdef __hpux
# undef UINT_LEAST8_MAX
# undef UINT_LEAST16_MAX
# define UINT_LEAST8_MAX 255
# define UINT_LEAST16_MAX 65535
#endif

#if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__
typedef __UINT_LEAST8_TYPE__ yytype_uint8;
#elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \
       && UINT_LEAST8_MAX <= INT_MAX)
typedef uint_least8_t yytype_uint8;
#elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX
typedef unsigned char yytype_uint8;
#else
typedef short yytype_uint8;
#endif

#if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__
typedef __UINT_LEAST16_TYPE__ yytype_uint16;
#elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \
       && UINT_LEAST16_MAX <= INT_MAX)
typedef uint_least16_t yytype_uint16;
#elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX
typedef unsigned short yytype_uint16;
#else
typedef int yytype_uint16;
#endif

#ifndef YYPTRDIFF_T
# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
#  define YYPTRDIFF_T __PTRDIFF_TYPE__
#  define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
# elif defined PTRDIFF_MAX
#  ifndef ptrdiff_t
#   include <stddef.h> /* INFRINGES ON USER NAME SPACE */
#  endif
#  define YYPTRDIFF_T ptrdiff_t
#  define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
# else
#  define YYPTRDIFF_T long
#  define YYPTRDIFF_MAXIMUM LONG_MAX
# endif
#endif

#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
#  define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
#  define YYSIZE_T size_t
# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
#  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
#  define YYSIZE_T size_t
# else
#  define YYSIZE_T unsigned
# endif
#endif

#define YYSIZE_MAXIMUM                                  \
  YY_CAST (YYPTRDIFF_T,                                 \
           (YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1)  \
            ? YYPTRDIFF_MAXIMUM                         \
            : YY_CAST (YYSIZE_T, -1)))

#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))


/* Stored state numbers (used for stacks). */
typedef yytype_int16 yy_state_t;

/* State numbers in computations.  */
typedef int yy_state_fast_t;

#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
#  if ENABLE_NLS
#   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
#   define YY_(Msgid) dgettext ("bison-runtime", Msgid)
#  endif
# endif
# ifndef YY_
#  define YY_(Msgid) Msgid
# endif
#endif


#ifndef YY_ATTRIBUTE_PURE
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
#  define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
# else
#  define YY_ATTRIBUTE_PURE
# endif
#endif

#ifndef YY_ATTRIBUTE_UNUSED
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
#  define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
# else
#  define YY_ATTRIBUTE_UNUSED
# endif
#endif

/* Suppress unused-variable warnings by "using" E.  */
#if ! defined lint || defined __GNUC__
# define YY_USE(E) ((void) (E))
#else
# define YY_USE(E) /* empty */
#endif

/* Suppress an incorrect diagnostic about yylval being uninitialized.  */
#if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__
# if __GNUC__ * 100 + __GNUC_MINOR__ < 407
#  define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN                           \
    _Pragma ("GCC diagnostic push")                                     \
    _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")
# else
#  define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN                           \
    _Pragma ("GCC diagnostic push")                                     \
    _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")              \
    _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# endif
# define YY_IGNORE_MAYBE_UNINITIALIZED_END      \
    _Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif

#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
# define YY_IGNORE_USELESS_CAST_BEGIN                          \
    _Pragma ("GCC diagnostic push")                            \
    _Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
# define YY_IGNORE_USELESS_CAST_END            \
    _Pragma ("GCC diagnostic pop")
#endif
#ifndef YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_END
#endif


#define YY_ASSERT(E) ((void) (0 && (E)))

#if 1

/* The parser invokes alloca or malloc; define the necessary symbols.  */

# ifdef YYSTACK_USE_ALLOCA
#  if YYSTACK_USE_ALLOCA
#   ifdef __GNUC__
#    define YYSTACK_ALLOC __builtin_alloca
#   elif defined __BUILTIN_VA_ARG_INCR
#    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
#   elif defined _AIX
#    define YYSTACK_ALLOC __alloca
#   elif defined _MSC_VER
#    include <malloc.h> /* INFRINGES ON USER NAME SPACE */
#    define alloca _alloca
#   else
#    define YYSTACK_ALLOC alloca
#    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
#     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
      /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
#     ifndef EXIT_SUCCESS
#      define EXIT_SUCCESS 0
#     endif
#    endif
#   endif
#  endif
# endif

# ifdef YYSTACK_ALLOC
   /* Pacify GCC's 'empty if-body' warning.  */
#  define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
#  ifndef YYSTACK_ALLOC_MAXIMUM
    /* The OS might guarantee only one guard page at the bottom of the stack,
       and a page size can be as small as 4096 bytes.  So we cannot safely
       invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
       to allow for a few compiler-allocated temporary stack slots.  */
#   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
#  endif
# else
#  define YYSTACK_ALLOC YYMALLOC
#  define YYSTACK_FREE YYFREE
#  ifndef YYSTACK_ALLOC_MAXIMUM
#   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
#  endif
#  if (defined __cplusplus && ! defined EXIT_SUCCESS \
       && ! ((defined YYMALLOC || defined malloc) \
             && (defined YYFREE || defined free)))
#   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
#   ifndef EXIT_SUCCESS
#    define EXIT_SUCCESS 0
#   endif
#  endif
#  ifndef YYMALLOC
#   define YYMALLOC malloc
#   if ! defined malloc && ! defined EXIT_SUCCESS
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
#   endif
#  endif
#  ifndef YYFREE
#   define YYFREE free
#   if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
#   endif
#  endif
# endif
#endif /* 1 */

#if (! defined yyoverflow \
     && (! defined __cplusplus \
         || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

/* A type that is properly aligned for any stack member.  */
union yyalloc
{
  yy_state_t yyss_alloc;
  YYSTYPE yyvs_alloc;
};

/* The size of the maximum gap between one aligned stack and the next.  */
# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)

/* The size of an array large to enough to hold all stacks, each with
   N elements.  */
# define YYSTACK_BYTES(N) \
     ((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE)) \
      + YYSTACK_GAP_MAXIMUM)

# define YYCOPY_NEEDED 1

/* Relocate STACK from its old location to the new one.  The
   local variables YYSIZE and YYSTACKSIZE give the old and new number of
   elements in the stack, and YYPTR gives the new location of the
   stack.  Advance YYPTR to a properly aligned location for the next
   stack.  */
# define YYSTACK_RELOCATE(Stack_alloc, Stack)                           \
    do                                                                  \
      {                                                                 \
        YYPTRDIFF_T yynewbytes;                                         \
        YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                    \
        Stack = &yyptr->Stack_alloc;                                    \
        yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
        yyptr += yynewbytes / YYSIZEOF (*yyptr);                        \
      }                                                                 \
    while (0)

#endif

#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST.  The source and destination do
   not overlap.  */
# ifndef YYCOPY
#  if defined __GNUC__ && 1 < __GNUC__
#   define YYCOPY(Dst, Src, Count) \
      __builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
#  else
#   define YYCOPY(Dst, Src, Count)              \
      do                                        \
        {                                       \
          YYPTRDIFF_T yyi;                      \
          for (yyi = 0; yyi < (Count); yyi++)   \
            (Dst)[yyi] = (Src)[yyi];            \
        }                                       \
      while (0)
#  endif
# endif
#endif /* !YYCOPY_NEEDED */

/* YYFINAL -- State number of the termination state.  */
#define YYFINAL  5
/* YYLAST -- Last index in YYTABLE.  */
#define YYLAST   642

/* YYNTOKENS -- Number of terminals.  */
#define YYNTOKENS  88
/* YYNNTS -- Number of nonterminals.  */
#define YYNNTS  109
/* YYNRULES -- Number of rules.  */
#define YYNRULES  274
/* YYNSTATES -- Number of states.  */
#define YYNSTATES  576

/* YYMAXUTOK -- Last valid token kind.  */
#define YYMAXUTOK   342


/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
   as returned by yylex, with out-of-bounds checking.  */
#define YYTRANSLATE(YYX)                                \
  (0 <= (YYX) && (YYX) <= YYMAXUTOK                     \
   ? YY_CAST (yysymbol_kind_t, yytranslate[YYX])        \
   : YYSYMBOL_YYUNDEF)

/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
   as returned by yylex.  */
static const yytype_int8 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,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
      25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
      35,    36,    37,    38,    39,    40,    41,    42,    43,    44,
      45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
      55,    56,    57,    58,    59,    60,    61,    62,    63,    64,
      65,    66,    67,    68,    69,    70,    71,    72,    73,    74,
      75,    76,    77,    78,    79,    80,    81,    82,    83,    84,
      85,    86,    87
};

#if YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined.  */
static const yytype_int16 yyrline[] =
{
       0,   268,   268,   271,   274,   278,   278,   282,   286,   286,
     292,   294,   296,   298,   301,   304,   308,   311,   314,   317,
     321,   326,   328,   330,   332,   336,   340,   343,   347,   347,
     350,   356,   359,   361,   363,   366,   369,   373,   375,   378,
     380,   383,   386,   390,   396,   399,   400,   401,   404,   407,
     414,   413,   422,   422,   424,   427,   430,   433,   436,   439,
     442,   445,   445,   450,   454,   457,   461,   464,   467,   472,
     476,   479,   482,   482,   484,   487,   490,   494,   497,   500,
     503,   507,   510,   510,   516,   519,   524,   527,   531,   531,
     533,   535,   537,   539,   542,   545,   548,   551,   555,   555,
     564,   569,   569,   572,   575,   578,   581,   581,   588,   592,
     595,   599,   603,   606,   611,   616,   618,   621,   624,   627,
     630,   630,   635,   638,   642,   646,   649,   652,   655,   658,
     661,   664,   667,   670,   674,   678,   680,   683,   687,   691,
     694,   697,   700,   704,   707,   711,   715,   717,   720,   723,
     726,   729,   733,   737,   741,   745,   750,   754,   758,   765,
     767,   769,   771,   774,   779,   784,   794,   796,   799,   802,
     802,   806,   808,   810,   812,   816,   822,   827,   827,   829,
     832,   835,   838,   843,   846,   850,   850,   852,   854,   852,
     861,   864,   868,   870,   870,   873,   873,   874,   879,   879,
     886,   886,   888,   913,   913,   915,   918,   921,   924,   927,
     930,   933,   936,   939,   942,   945,   948,   951,   954,   957,
     960,   963,   969,   972,   975,   978,   981,   984,   987,   990,
     993,   996,   999,  1002,  1005,  1008,  1013,  1016,  1019,  1023,
    1024,  1027,  1031,  1034,  1034,  1042,  1044,  1049,  1049,  1052,
    1055,  1058,  1061,  1064,  1067,  1070,  1073,  1077,  1081,  1084,
    1087,  1093,  1096,  1100,  1104,  1107,  1110,  1113,  1116,  1119,
    1122,  1125,  1129,  1136,  1136
};
#endif

/** Accessing symbol of state STATE.  */
#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])

#if 1
/* The user-facing name of the symbol whose (internal) number is
   YYSYMBOL.  No bounds checking.  */
static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED;

/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
   First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
static const char *const yytname[] =
{
  "\"end of file\"", "error", "\"invalid token\"", "\"<\"", "\">\"",
  "\"glyph\"", "UNSIGNED", "REFERENCE", "SIGNED", "STRING", "CHARCODE",
  "FPNUM", "\"dimen\"", "\"pt\"", "\"mm\"", "\"in\"", "\"xdimen\"",
  "\"h\"", "\"v\"", "\"fil\"", "\"fill\"", "\"filll\"", "\"penalty\"",
  "\"int\"", "\"language\"", "\"rule\"", "\"|\"", "\"kern\"", "\"!\"",
  "\"glue\"", "\"plus\"", "\"minus\"", "TXT_START", "TXT_END",
  "TXT_IGNORE", "TXT_FONT_GLUE", "TXT_FONT_HYPHEN", "TXT_FONT",
  "TXT_LOCAL", "TXT_GLOBAL", "TXT_CC", "\"hbox\"", "\"vbox\"",
  "\"shifted\"", "\"hpack\"", "\"hset\"", "\"vpack\"", "\"vset\"",
  "\"depth\"", "\"add\"", "\"to\"", "\"leaders\"", "\"align\"",
  "\"center\"", "\"expand\"", "\"baseline\"", "\"ligature\"", "\"disc\"",
  "\"par\"", "\"math\"", "\"on\"", "\"off\"", "\"adjust\"", "\"table\"",
  "\"item\"", "\"image\"", "\"width\"", "\"height\"", "\"label\"",
  "\"bot\"", "\"mid\"", "\"link\"", "\"outline\"", "\"stream\"",
  "\"stream (definition)\"", "\"first\"", "\"last\"", "\"top\"", "\"*\"",
  "\"page\"", "\"range\"", "\"directory\"", "\"entry\"", "\"definitions\"",
  "\"max\"", "\"param\"", "\"font\"", "\"content\"", "$accept", "glyph",
  "content_node", "start", "integer", "string", "number", "dimension",
  "xdimen", "xdimen_node", "order", "stretch", "penalty", "rule_dimension",
  "rule", "rule_node", "explicit", "kern", "plus", "minus", "glue",
  "glue_node", "position", "content_list", "estimate", "list", "$@1",
  "text", "txt", "$@2", "box_dimen", "box_shift", "box_glue_set", "box",
  "hbox_node", "vbox_node", "box_flex", "xbox", "box_goal", "hpack",
  "vpack", "$@3", "vxbox_node", "hxbox_node", "ltype", "leaders",
  "baseline", "$@4", "cc_list", "lig_cc", "ref", "ligature", "$@5",
  "replace_count", "disc", "disc_node", "par_dimen", "par", "$@6", "math",
  "on_off", "span_count", "table", "image_aspect", "image_width",
  "image_height", "image_spec", "image", "max_value", "placement",
  "def_node", "stream_link", "stream_split", "stream_info", "$@7",
  "stream_type", "stream_def_node", "stream_ins_node", "stream",
  "page_priority", "stream_def_list", "page", "$@8", "$@9", "hint",
  "directory_section", "$@10", "entry_list", "entry", "definition_section",
  "$@11", "definition_list", "max_definitions", "max_list", "def_list",
  "parameters", "empty_param_list", "non_empty_param_list", "$@12", "font",
  "font_head", "font_param_list", "font_param", "fref", "xdimen_ref",
  "param_ref", "stream_ref", "content_section", "$@13", YY_NULLPTR
};

static const char *
yysymbol_name (yysymbol_kind_t yysymbol)
{
  return yytname[yysymbol];
}
#endif

#define YYPACT_NINF (-242)

#define yypact_value_is_default(Yyn) \
  ((Yyn) == YYPACT_NINF)

#define YYTABLE_NINF (-1)

#define yytable_value_is_error(Yyn) \
  0

/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
   STATE-NUM.  */
static const yytype_int16 yypact[] =
{
      55,    10,   108,   129,   135,  -242,    81,   170,  -242,  -242,
     104,  -242,  -242,   191,  -242,   209,   113,  -242,  -242,   140,
    -242,  -242,  -242,   216,  -242,   227,   220,   238,   177,  -242,
      59,  -242,    -2,  -242,  -242,   568,  -242,  -242,  -242,  -242,
    -242,  -242,  -242,  -242,   280,   391,  -242,   252,   255,   255,
     255,   255,   255,   255,   255,   255,   255,   255,   255,   255,
     255,   255,   257,   260,    75,   278,   264,   175,   246,   217,
     164,   164,   256,   164,   256,   164,   110,   217,   255,    70,
     217,    88,    94,   167,    87,   300,   286,   255,   255,  -242,
    -242,   299,   310,   313,   321,   339,   341,   343,   344,   345,
     349,   352,   353,   354,   355,   356,   357,   358,   359,   360,
     342,   115,  -242,   217,   164,   278,   280,   181,   217,   364,
     164,   255,   246,   362,   280,   363,   280,    90,   254,   365,
     366,   367,  -242,  -242,  -242,   370,   371,   377,  -242,  -242,
    -242,  -242,   297,  -242,   181,   379,   382,  -242,   198,   383,
     164,   361,   384,   386,   164,   256,   389,   392,   164,   275,
     393,   256,   394,   315,   397,   400,  -242,   380,   269,   402,
     404,  -242,   406,   407,   408,   409,   411,   415,    94,   418,
     255,  -242,  -242,   419,   255,  -242,  -242,  -242,  -242,   420,
    -242,    94,    94,  -242,   363,   421,   275,   275,   422,  -242,
     423,   513,   427,   430,   164,   434,    94,   436,   277,  -242,
     255,    76,  -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,
    -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,
    -242,  -242,  -242,   437,   441,   445,   446,   447,   448,   449,
     450,   453,   454,   457,  -242,   458,   463,   464,  -242,   465,
    -242,  -242,   468,   164,   469,   364,  -242,  -242,  -242,   470,
     471,   474,  -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,
    -242,   181,  -242,  -242,   255,  -242,   475,  -242,   322,   164,
     455,  -242,  -242,   164,   311,  -242,  -242,  -242,   110,   110,
      94,  -242,   361,  -242,   433,  -242,  -242,   217,  -242,  -242,
    -242,   364,  -242,  -242,   364,  -242,  -242,  -242,   193,  -242,
    -242,  -242,    94,  -242,  -242,    94,  -242,    94,    94,  -242,
      45,   364,    94,    94,    51,   364,    94,  -242,  -242,  -242,
      94,    94,  -242,  -242,  -242,   480,  -242,   304,  -242,  -242,
    -242,   481,   483,    94,    94,  -242,  -242,  -242,  -242,   472,
     485,  -242,    94,    94,  -242,  -242,  -242,  -242,  -242,  -242,
    -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,   487,  -242,
    -242,   486,  -242,   489,  -242,   364,   364,  -242,  -242,  -242,
    -242,   493,  -242,   164,  -242,   197,  -242,   164,  -242,  -242,
     164,   164,    94,  -242,  -242,  -242,  -242,  -242,   455,   110,
     164,   494,   495,   154,  -242,  -242,  -242,   364,  -242,  -242,
     473,  -242,    94,    46,  -242,    94,  -242,    94,  -242,  -242,
     459,  -242,  -242,   364,    94,  -242,  -242,  -242,   340,    94,
      94,  -242,   240,   435,  -242,  -242,  -242,    94,  -242,   164,
    -242,   364,   497,  -242,   364,  -242,   498,   451,  -242,    77,
    -242,  -242,   488,  -242,  -242,  -242,  -242,  -242,  -242,  -242,
    -242,  -242,  -242,    94,    94,  -242,  -242,  -242,   181,  -242,
    -242,  -242,  -242,  -242,   363,  -242,  -242,  -242,   200,  -242,
    -242,  -242,   440,  -242,   250,  -242,  -242,   505,    47,   364,
    -242,   164,  -242,   246,   255,   255,   255,   255,   255,   255,
     255,   255,  -242,  -242,  -242,   275,   107,   506,  -242,  -242,
    -242,  -242,  -242,  -242,  -242,  -242,  -242,   430,   262,  -242,
    -242,  -242,  -242,  -242,  -242,    47,  -242,    94,  -242,  -242,
     115,   280,   181,   246,   164,   255,   246,   362,    94,  -242,
    -242,  -242,  -242,  -242,   507,   364,   364,   508,   510,   511,
     164,   512,   516,   517,   521,   522,  -242,  -242,   523,   364,
    -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,    94,
    -242,   364,   443,  -242,   255,    86
};

/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
   Performed when YYTABLE does not specify something else to do.  Zero
   means the default is an error.  */
static const yytype_int16 yydefact[] =
{
       0,     0,     0,     0,     0,     1,     0,     0,   193,   198,
       0,   192,   195,     0,   273,     0,     0,   200,    44,     0,
     194,   196,   203,     0,    45,     0,     0,     0,     4,   199,
       0,   201,     4,   274,    46,     0,    32,    72,    73,    88,
      89,   115,   177,   178,     0,     0,   202,     0,     0,     0,
       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
       0,     0,     0,     0,     0,     0,     0,     0,    33,     0,
       0,     0,    64,     0,    64,     0,     0,     0,     0,    33,
       0,    44,     0,     0,     0,     0,     0,     0,     0,     8,
       9,     0,     0,     0,     0,     0,     0,     0,     0,     0,
       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
       0,     0,   105,     0,     0,     0,     0,     0,     0,     0,
       0,     0,    33,     0,     0,    47,     0,   162,     0,     0,
       0,     0,     6,     5,    26,     0,     0,     0,    10,    11,
      12,    29,     0,    28,     0,     0,     0,    34,     0,     0,
      19,    37,     0,     0,     0,    64,     0,     0,     0,     0,
       0,    64,     0,     0,     0,     0,     4,     0,    90,     0,
       0,    98,     0,     0,   106,     0,   109,     0,   113,     0,
     116,   258,    44,     0,    44,   135,   136,   242,   259,     0,
     137,     0,     0,    44,    47,     0,     0,     0,     0,   139,
       0,    47,     0,     0,   147,     0,     0,     0,     0,   260,
      44,     0,   197,   207,   216,   206,   211,   212,   210,   214,
     215,   208,   209,   213,   221,   158,   218,   219,   220,   217,
     205,   204,    44,     0,     0,     0,     0,     0,     0,     0,
       0,     0,     0,     0,   106,     0,     0,     0,   187,     0,
      48,    44,     0,     0,     0,     0,   160,   161,   159,     0,
       0,     0,     2,     7,     3,    27,   261,   271,    13,    15,
      14,     0,    31,   267,     0,    35,     0,    36,     0,     0,
      39,    42,   264,     0,    66,    70,    71,    65,     0,     0,
       0,    87,    37,    86,     0,    85,    84,     0,    91,    92,
      93,     0,    97,   269,     0,   100,   270,   265,     0,   108,
     110,   266,   112,   114,   120,     0,   124,     0,     0,   134,
      47,   128,     0,     0,    47,   125,     0,    50,    44,   138,
       0,     0,   145,   140,   142,     0,   146,   149,   268,   156,
     157,     0,     0,     0,     0,   176,   172,   173,   174,     0,
       0,   171,     0,     0,   224,   237,   227,   223,   236,   225,
     228,   226,   238,   229,   230,   231,   232,   233,   183,   235,
     239,   241,   234,     0,   222,     0,   245,   163,   190,   191,
      30,     0,   262,    17,    18,     0,    38,     0,    41,    63,
       0,     0,     0,    80,    78,    79,    77,    81,    39,     0,
       0,     0,     0,     0,    94,    95,    96,     0,   103,   104,
       0,   111,     0,    47,   123,     0,   119,     0,   117,   243,
       0,   129,   130,   131,     0,   126,   127,    44,     0,     0,
       0,   141,     0,   151,   164,   182,   179,     0,   181,     0,
     169,     0,     0,   184,     0,   240,     0,     0,   247,     0,
     248,   263,     0,    21,    22,    23,    24,    25,    40,    67,
      68,    69,    74,     0,     0,    82,    43,   272,     0,    99,
     101,   121,   122,   118,    47,   132,   133,    52,    61,    49,
     143,   144,   151,   148,     0,   152,   180,     0,     0,     0,
     165,     0,   246,    33,     0,     0,     0,     0,     0,     0,
       0,     0,    16,    76,    75,     0,     0,     0,    51,    60,
      58,    59,    55,    57,    56,    54,    53,     0,     0,   153,
     154,   150,    20,   167,   166,     0,   170,     0,   188,   257,
       0,     0,     0,    33,     0,     0,    33,     0,     0,   107,
     102,   244,    62,   155,     0,     0,     0,     0,     0,     0,
       0,     0,     0,     0,     0,     0,    83,   168,     0,     0,
     249,   254,   255,   250,   253,   251,   252,   256,   175,     0,
     185,   189,     0,   186,     0,     0
};

/* YYPGOTO[NTERM-NUM].  */
static const yytype_int16 yypgoto[] =
{
    -242,  -242,   -83,   -23,   100,   -87,   -86,    -8,   -54,  -233,
    -242,  -137,   -19,   -94,   -96,   229,   -51,    -5,   239,   134,
     -99,  -217,    28,   205,   -95,   -35,  -242,  -242,  -242,  -242,
     127,   -33,  -242,   476,  -147,   242,  -242,   466,  -169,  -242,
    -242,  -242,  -242,  -242,  -242,   425,   426,  -242,  -242,  -242,
     -45,  -103,  -242,  -242,   -97,   174,  -242,  -242,  -242,  -242,
     331,  -242,  -242,  -242,  -242,    63,  -242,  -100,  -242,  -242,
     179,    26,  -242,  -242,  -242,  -242,   -18,  -242,  -242,  -242,
    -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,  -242,
    -242,  -242,  -242,  -242,  -242,    82,  -110,  -188,  -242,  -242,
    -242,  -242,  -242,  -166,  -241,   -73,  -242,  -242,  -242
};

/* YYDEFGOTO[NTERM-NUM].  */
static const yytype_int16 yydefgoto[] =
{
       0,   131,    34,   194,   134,    91,   142,   150,   151,   350,
     457,   386,   135,   144,   145,    36,   176,   149,   280,   388,
     152,   168,   187,    25,   328,   195,   427,   478,   516,   517,
     155,   159,   392,   156,    37,    38,   399,   162,   290,   160,
     164,   505,    39,    40,   301,   169,   172,   304,   506,   410,
     529,   175,   308,   178,   179,    41,   182,   183,   412,   189,
     190,   203,   198,   337,   433,   485,   206,   207,   110,   259,
      31,   525,   526,   351,   488,   352,    42,    43,   342,   444,
     571,   249,   368,   546,     2,     3,    12,    15,    21,     7,
      13,    23,    17,    27,   371,   252,   191,   323,   474,   254,
     255,   376,   450,   530,   184,   192,   210,    11,    18
};

/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM.  If
   positive, shift that token.  If negative, reduce the rule whose
   number is the opposite.  If YYTABLE_NINF, syntax error.  */
static const yytype_int16 yytable[] =
{
      30,   200,    35,   113,   114,   115,   116,   117,   118,   119,
     120,   121,   122,   123,   124,   125,   126,   148,   245,   240,
     136,   239,   146,   247,   153,   246,   180,   330,   331,   238,
     251,   170,   173,   174,   177,   181,   188,   248,   375,   253,
     205,   163,   209,   211,   322,   326,    24,   394,   396,   202,
     271,   250,   250,   167,   112,   393,   395,   250,     1,   143,
     235,   201,   154,   154,   278,   154,    62,   154,   234,   171,
     237,    48,   315,   241,   317,    49,   244,   112,    63,   166,
     345,   129,    50,    51,    52,   130,    70,   407,    53,   166,
      32,     4,    70,   199,   275,   112,   167,   166,   147,   494,
     343,   495,   496,   276,   497,   233,   498,   314,     5,   143,
      54,   318,   171,   166,    55,    56,    57,   112,   336,   193,
     335,   132,   284,   133,    58,   523,   193,   415,   292,   417,
     419,   419,     6,   499,   500,   188,   143,   344,    59,   188,
     539,     8,   501,   312,    60,    61,   283,   540,   185,   186,
     287,   346,   347,   348,   405,   437,   321,   325,   464,   256,
     257,   346,   347,   348,     9,   188,   463,   258,   320,   324,
     138,   339,   139,    10,   421,   140,   424,   380,   425,   468,
      35,   138,   112,   139,   196,   197,   140,   138,   349,   139,
     469,    14,   140,   385,    16,    70,    71,    22,   401,   408,
     161,   141,   161,   409,   138,   112,   139,   141,   489,   140,
     453,   232,    19,    20,   274,   236,   454,   455,   456,    28,
      29,   327,    26,   138,   112,   139,    44,   491,   140,   381,
      32,    33,   167,   508,   509,   510,   511,   512,   513,   514,
     515,    45,    46,   181,   181,   373,   138,   482,   139,    47,
     458,   140,   402,   459,   460,   397,   138,   520,   139,   111,
     353,   140,   112,   143,   127,   349,   349,   128,   138,   543,
     139,   137,   527,   140,   147,   389,   475,   411,   403,   370,
     414,   167,   416,   418,   132,   112,   133,   422,   423,    89,
      90,   426,   413,   208,   413,   429,   430,   452,   420,   158,
     324,   385,   420,   212,   385,   385,   204,   112,   436,   438,
     268,   269,   270,   559,   260,   261,   213,   441,   442,   214,
     413,   298,   299,   300,   288,   289,   569,   215,   558,   531,
     532,   533,   534,   535,   536,   537,   538,   185,   186,   383,
     384,   390,   391,    32,   479,   216,   231,   217,    30,   218,
     219,   220,   447,   449,   181,   221,    24,   461,   222,   223,
     224,   225,   226,   227,   228,   229,   230,   166,   204,   250,
     432,   264,   262,   263,   265,   266,   349,   471,   483,   251,
     472,   267,   473,   272,   167,   487,   273,   277,   281,   476,
     282,   279,   465,   285,   480,   481,   286,   291,   293,   294,
     420,   295,   486,    92,   296,    35,   302,    93,   303,   297,
     305,   306,   307,   309,    94,    95,    96,   310,   349,   311,
      97,   167,   313,   316,   319,   329,   332,   333,   503,   504,
     521,   334,   553,    32,   542,   552,   549,   555,   338,   554,
     340,   354,    98,   524,   548,   355,    99,   100,   101,   356,
     357,   358,   359,   360,   361,   477,   102,   362,   363,   103,
     143,   364,   365,   104,   521,   105,   167,   366,   367,   369,
     106,   107,   372,   374,   377,   378,   108,   109,   379,   382,
     524,   400,   550,   528,   431,   434,   387,   435,   439,    28,
     244,   440,   545,   443,    35,   446,   275,   451,   466,   467,
      70,   490,   484,   556,   492,   470,   502,   518,   493,   522,
     541,   547,   560,   557,   561,   562,   563,   574,    64,   250,
     564,   565,   167,   349,   143,   566,   567,   568,   551,   575,
     404,   398,   462,   428,   570,    65,   349,    66,    67,   341,
      68,   165,    69,   406,   242,   519,   243,   157,   572,   448,
     445,   544,   349,   573,    70,    71,   507,    72,    73,    74,
      75,     0,     0,     0,    76,     0,     0,     0,    77,    78,
      79,    80,    81,    64,     0,    82,    83,    84,    85,     0,
       0,     0,     0,     0,    86,     0,    87,    88,     0,     0,
      65,     0,    66,    67,     0,    68,     0,    69,     0,     0,
       0,     0,     0,     0,     0,     0,     0,     0,     0,    70,
      71,     0,    72,    73,    74,    75,     0,     0,     0,    76,
       0,     0,     0,    77,    78,    79,    80,    81,     0,     0,
      82,    83,    84,    85,     0,     0,     0,     0,     0,    86,
       0,    87,    88
};

static const yytype_int16 yycheck[] =
{
      23,    84,    25,    48,    49,    50,    51,    52,    53,    54,
      55,    56,    57,    58,    59,    60,    61,    68,   121,   118,
      65,   117,    67,   123,    69,   122,    80,   196,   197,   116,
     125,    76,    77,    78,    79,    80,    81,   124,   255,   126,
      85,    74,    87,    88,   191,   192,    18,   288,   289,    84,
     144,     6,     6,    76,     7,   288,   289,     6,     3,    67,
     114,    84,    70,    71,   150,    73,    68,    75,   113,    77,
     115,    12,   182,   118,   184,    16,   121,     7,    80,     3,
       4,     6,    23,    24,    25,    10,    41,   304,    29,     3,
       3,    81,    41,     6,   148,     7,   119,     3,    28,    22,
     210,    24,    25,   148,    27,   113,    29,   180,     0,   117,
      51,   184,   120,     3,    55,    56,    57,     7,   204,    32,
     203,     6,   155,     8,    65,    78,    32,   315,   161,   317,
      85,    85,     3,    56,    57,   180,   144,   210,    79,   184,
      33,     6,    65,   178,    85,    86,   154,    40,    60,    61,
     158,    75,    76,    77,   301,   343,   191,   192,   399,    69,
      70,    75,    76,    77,    83,   210,   399,    77,   191,   192,
       6,   206,     8,     3,   321,    11,   323,   271,   325,    25,
     203,     6,     7,     8,    17,    18,    11,     6,   211,     8,
     407,    87,    11,   279,     3,    41,    42,    84,   297,     6,
      73,    26,    75,    10,     6,     7,     8,    26,   441,    11,
      13,   111,     3,     4,    16,   115,    19,    20,    21,     3,
       4,   193,    82,     6,     7,     8,     6,   444,    11,   274,
       3,     4,   255,    33,    34,    35,    36,    37,    38,    39,
      40,     3,     4,   288,   289,   253,     6,     7,     8,    72,
     387,    11,   297,   390,   391,   290,     6,     7,     8,     7,
     232,    11,     7,   271,     7,   288,   289,     7,     6,     7,
       8,     7,   489,    11,    28,   283,   423,   312,   301,   251,
     315,   304,   317,   318,     6,     7,     8,   322,   323,     9,
      10,   326,   315,     7,   317,   330,   331,   383,   321,    43,
     323,   387,   325,     4,   390,   391,     6,     7,   343,   344,
      13,    14,    15,   546,    60,    61,     6,   352,   353,     6,
     343,    52,    53,    54,    49,    50,   559,     6,   545,   495,
     496,   497,   498,   499,   500,   501,   505,    60,    61,    17,
      18,    30,    31,     3,     4,     6,     4,     6,   371,     6,
       6,     6,   375,   376,   399,     6,   328,   392,     6,     6,
       6,     6,     6,     6,     6,     6,     6,     3,     6,     6,
      66,     4,     7,     7,     4,     4,   399,   412,   432,   474,
     415,     4,   417,     4,   407,   439,     4,     4,     4,   424,
       4,    30,   400,     4,   429,   430,     4,     4,     4,    84,
     423,     4,   437,    12,     4,   428,     4,    16,     4,    29,
       4,     4,     4,     4,    23,    24,    25,     6,   441,     4,
      29,   444,     4,     4,     4,     4,     4,     4,   463,   464,
     484,     4,   535,     3,   517,   534,   532,   537,     4,   536,
       4,     4,    51,   488,   531,     4,    55,    56,    57,     4,
       4,     4,     4,     4,     4,   427,    65,     4,     4,    68,
     468,     4,     4,    72,   518,    74,   489,     4,     4,     4,
      79,    80,     4,     4,     4,     4,    85,    86,     4,     4,
     525,    48,   533,   491,     4,     4,    31,     4,    16,     3,
     535,     6,   527,     6,   517,     6,   550,     4,     4,     4,
      41,     4,    67,   538,     6,    32,    18,    67,    57,     4,
       4,   530,     4,     6,     4,     4,     4,    74,     5,     6,
       4,     4,   545,   546,   532,     4,     4,     4,   533,   574,
     301,   292,   398,   328,   569,    22,   559,    24,    25,   208,
      27,    75,    29,   301,   119,   482,   120,    71,   571,   375,
     371,   525,   575,   571,    41,    42,   474,    44,    45,    46,
      47,    -1,    -1,    -1,    51,    -1,    -1,    -1,    55,    56,
      57,    58,    59,     5,    -1,    62,    63,    64,    65,    -1,
      -1,    -1,    -1,    -1,    71,    -1,    73,    74,    -1,    -1,
      22,    -1,    24,    25,    -1,    27,    -1,    29,    -1,    -1,
      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    41,
      42,    -1,    44,    45,    46,    47,    -1,    -1,    -1,    51,
      -1,    -1,    -1,    55,    56,    57,    58,    59,    -1,    -1,
      62,    63,    64,    65,    -1,    -1,    -1,    -1,    -1,    71,
      -1,    73,    74
};

/* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of
   state STATE-NUM.  */
static const yytype_uint8 yystos[] =
{
       0,     3,   172,   173,    81,     0,     3,   177,     6,    83,
       3,   195,   174,   178,    87,   175,     3,   180,   196,     3,
       4,   176,    84,   179,   110,   111,    82,   181,     3,     4,
      91,   158,     3,     4,    90,    91,   103,   122,   123,   130,
     131,   143,   164,   165,     6,     3,     4,    72,    12,    16,
      23,    24,    25,    29,    51,    55,    56,    57,    65,    79,
      85,    86,    68,    80,     5,    22,    24,    25,    27,    29,
      41,    42,    44,    45,    46,    47,    51,    55,    56,    57,
      58,    59,    62,    63,    64,    65,    71,    73,    74,     9,
      10,    93,    12,    16,    23,    24,    25,    29,    51,    55,
      56,    57,    65,    68,    72,    74,    79,    80,    85,    86,
     156,     7,     7,   138,   138,   138,   138,   138,   138,   138,
     138,   138,   138,   138,   138,   138,   138,     7,     7,     6,
      10,    89,     6,     8,    92,   100,   138,     7,     6,     8,
      11,    26,    94,    95,   101,   102,   138,    28,   104,   105,
      95,    96,   108,   138,    95,   118,   121,   121,    43,   119,
     127,   118,   125,   119,   128,   125,     3,    91,   109,   133,
     138,    95,   134,   138,   138,   139,   104,   138,   141,   142,
      96,   138,   144,   145,   192,    60,    61,   110,   138,   147,
     148,   184,   193,    32,    91,   113,    17,    18,   150,     6,
      90,    91,   113,   149,     6,   138,   154,   155,     7,   138,
     194,   138,     4,     6,     6,     6,     6,     6,     6,     6,
       6,     6,     6,     6,     6,     6,     6,     6,     6,     6,
       6,     4,    92,    95,   138,    96,    92,   138,    93,   102,
     108,   138,   133,   134,   138,   139,   142,   155,    93,   169,
       6,   112,   183,    93,   187,   188,    69,    70,    77,   157,
      60,    61,     7,     7,     4,     4,     4,     4,    13,    14,
      15,   101,     4,     4,    16,    96,   138,     4,    94,    30,
     106,     4,     4,    95,   119,     4,     4,    95,    49,    50,
     126,     4,   119,     4,    84,     4,     4,    29,    52,    53,
      54,   132,     4,     4,   135,     4,     4,     4,   140,     4,
       6,     4,   113,     4,   193,   184,     4,   184,   193,     4,
      91,   113,   122,   185,    91,   113,   122,   110,   112,     4,
     126,   126,     4,     4,     4,    90,    94,   151,     4,   113,
       4,   148,   166,   184,   193,     4,    75,    76,    77,    91,
      97,   161,   163,   110,     4,     4,     4,     4,     4,     4,
       4,     4,     4,     4,     4,     4,     4,     4,   170,     4,
     110,   182,     4,    95,     4,   109,   189,     4,     4,     4,
     101,   138,     4,    17,    18,    94,    99,    31,   107,    95,
      30,    31,   120,    97,   192,    97,   192,   113,   106,   124,
      48,   108,   138,    91,   103,   122,   123,   109,     6,    10,
     137,   113,   146,    91,   113,   185,   113,   185,   113,    85,
      91,   122,   113,   113,   122,   122,   113,   114,   111,   113,
     113,     4,    66,   152,     4,     4,   113,   185,   113,    16,
       6,   113,   113,     6,   167,   158,     6,    91,   143,    91,
     190,     4,    94,    13,    19,    20,    21,    98,    99,    99,
      99,   113,   107,    97,   192,    95,     4,     4,    25,   109,
      32,   113,   113,   113,   186,   122,   113,   110,   115,     4,
     113,   113,     7,    96,    67,   153,   113,    96,   162,    97,
       4,   109,     6,    57,    22,    24,    25,    27,    29,    56,
      57,    65,    18,   113,   113,   129,   136,   183,    33,    34,
      35,    36,    37,    38,    39,    40,   116,   117,    67,   153,
       7,    96,     4,    78,   138,   159,   160,   109,    95,   138,
     191,   191,   191,   191,   191,   191,   191,   191,   126,    33,
      40,     4,    90,     7,   159,   113,   171,   100,    93,   102,
     104,   105,   108,   139,   142,   155,   113,     6,   109,    97,
       4,     4,     4,     4,     4,     4,     4,     4,     4,    97,
     113,   168,    91,   164,    74,   138
};

/* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM.  */
static const yytype_uint8 yyr1[] =
{
       0,    88,    89,    90,    91,    92,    92,    89,    93,    93,
      94,    94,    94,    95,    95,    95,    96,    96,    96,    96,
      97,    98,    98,    98,    98,    99,   100,    90,   101,   101,
     102,   103,    90,   104,   104,   105,    90,   106,   106,   107,
     107,   108,    90,   109,   110,   111,   111,   112,   112,   113,
     114,   113,   115,   115,   116,   116,   116,   116,   116,   116,
     116,   117,   116,   118,   119,   119,   120,   120,   120,   121,
     122,   123,    90,    90,   124,   125,   125,   126,   126,   126,
     126,   127,   129,   128,   130,   130,   131,   131,    90,    90,
     132,   132,   132,   132,   133,   133,   133,    90,   135,   134,
      90,   136,   136,   137,   137,   138,   140,   139,    90,   141,
     141,   142,   142,   142,   143,    90,   144,   145,   145,   145,
     146,   145,   145,   145,    90,   147,   147,   147,   147,   147,
     147,   147,   147,   147,    90,   148,   148,   147,    90,   149,
      90,    90,    90,   150,   150,    90,   151,   151,   152,   152,
     153,   153,   154,   154,   154,   154,   155,    90,   156,   157,
     157,   157,   157,    90,    90,   158,   159,   159,   160,   162,
     161,   163,   163,   163,   163,   164,   165,    90,    90,   166,
     166,   166,    90,   167,   167,   168,   168,   170,   171,   169,
      90,    90,   172,   174,   173,   175,   175,   176,   178,   177,
     179,   179,   180,   181,   181,   156,   156,   156,   156,   156,
     156,   156,   156,   156,   156,   156,   156,   156,   156,   156,
     156,   156,   158,   158,   158,   158,   158,   158,   158,   158,
     158,   158,   158,   158,   158,   158,   158,   158,   158,   182,
     182,   183,   184,   186,   185,   187,   188,   189,   189,   190,
     190,   190,   190,   190,   190,   190,   190,   191,   192,   193,
     194,    90,    90,    90,    90,    90,    90,    90,    90,    90,
      90,    90,   109,   196,   195
};

/* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM.  */
static const yytype_int8 yyr2[] =
{
       0,     2,     2,     4,     1,     1,     1,     2,     1,     1,
       1,     1,     1,     2,     2,     2,     5,     3,     3,     1,
       4,     1,     1,     1,     1,     2,     1,     4,     1,     1,
       3,     4,     1,     0,     1,     2,     4,     0,     2,     0,
       2,     3,     4,     4,     0,     1,     2,     0,     1,     4,
       0,     5,     1,     2,     1,     1,     1,     1,     1,     1,
       1,     0,     2,     3,     0,     2,     0,     2,     2,     4,
       4,     4,     1,     1,     2,     5,     5,     2,     2,     2,
       2,     3,     0,     7,     4,     4,     4,     4,     1,     1,
       0,     1,     1,     1,     3,     3,     3,     4,     0,     4,
       4,     0,     2,     1,     1,     1,     0,     6,     4,     1,
       2,     3,     2,     1,     4,     1,     1,     3,     4,     3,
       0,     4,     4,     3,     4,     2,     3,     3,     2,     3,
       3,     3,     4,     4,     4,     1,     1,     1,     4,     1,
       4,     5,     4,     4,     4,     4,     1,     0,     2,     0,
       2,     0,     4,     5,     5,     6,     2,     4,     2,     1,
       1,     1,     0,     5,     5,     7,     1,     1,     3,     0,
       4,     1,     1,     1,     1,    10,     4,     1,     1,     2,
       3,     2,     5,     0,     1,     0,     2,     0,     0,    10,
       5,     5,     3,     0,     6,     0,     2,     5,     0,     6,
       0,     2,     4,     0,     4,     2,     2,     2,     2,     2,
       2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
       2,     2,     5,     5,     5,     5,     5,     5,     5,     5,
       5,     5,     5,     5,     5,     5,     5,     5,     5,     1,
       2,     2,     1,     0,     5,     2,     4,     2,     2,     5,
       5,     5,     5,     5,     5,     5,     5,     1,     1,     1,
       1,     4,     5,     6,     4,     4,     4,     4,     4,     4,
       4,     4,     4,     0,     5
};


enum { YYENOMEM = -2 };

#define yyerrok         (yyerrstatus = 0)
#define yyclearin       (yychar = YYEMPTY)

#define YYACCEPT        goto yyacceptlab
#define YYABORT         goto yyabortlab
#define YYERROR         goto yyerrorlab
#define YYNOMEM         goto yyexhaustedlab


#define YYRECOVERING()  (!!yyerrstatus)

#define YYBACKUP(Token, Value)                                    \
  do                                                              \
    if (yychar == YYEMPTY)                                        \
      {                                                           \
        yychar = (Token);                                         \
        yylval = (Value);                                         \
        YYPOPSTACK (yylen);                                       \
        yystate = *yyssp;                                         \
        goto yybackup;                                            \
      }                                                           \
    else                                                          \
      {                                                           \
        yyerror (YY_("syntax error: cannot back up")); \
        YYERROR;                                                  \
      }                                                           \
  while (0)

/* Backward compatibility with an undocumented macro.
   Use YYerror or YYUNDEF. */
#define YYERRCODE YYUNDEF


/* Enable debugging if requested.  */
#if YYDEBUG

# ifndef YYFPRINTF
#  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
#  define YYFPRINTF fprintf
# endif

# define YYDPRINTF(Args)                        \
do {                                            \
  if (yydebug)                                  \
    YYFPRINTF Args;                             \
} while (0)




# define YY_SYMBOL_PRINT(Title, Kind, Value, Location)                    \
do {                                                                      \
  if (yydebug)                                                            \
    {                                                                     \
      YYFPRINTF (stderr, "%s ", Title);                                   \
      yy_symbol_print (stderr,                                            \
                  Kind, Value); \
      YYFPRINTF (stderr, "\n");                                           \
    }                                                                     \
} while (0)


/*-----------------------------------.
| Print this symbol's value on YYO.  |
`-----------------------------------*/

static void
yy_symbol_value_print (FILE *yyo,
                       yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep)
{
  FILE *yyoutput = yyo;
  YY_USE (yyoutput);
  if (!yyvaluep)
    return;
  YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  YY_USE (yykind);
  YY_IGNORE_MAYBE_UNINITIALIZED_END
}


/*---------------------------.
| Print this symbol on YYO.  |
`---------------------------*/

static void
yy_symbol_print (FILE *yyo,
                 yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep)
{
  YYFPRINTF (yyo, "%s %s (",
             yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind));

  yy_symbol_value_print (yyo, yykind, yyvaluep);
  YYFPRINTF (yyo, ")");
}

/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included).                                                   |
`------------------------------------------------------------------*/

static void
yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop)
{
  YYFPRINTF (stderr, "Stack now");
  for (; yybottom <= yytop; yybottom++)
    {
      int yybot = *yybottom;
      YYFPRINTF (stderr, " %d", yybot);
    }
  YYFPRINTF (stderr, "\n");
}

# define YY_STACK_PRINT(Bottom, Top)                            \
do {                                                            \
  if (yydebug)                                                  \
    yy_stack_print ((Bottom), (Top));                           \
} while (0)


/*------------------------------------------------.
| Report that the YYRULE is going to be reduced.  |
`------------------------------------------------*/

static void
yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp,
                 int yyrule)
{
  int yylno = yyrline[yyrule];
  int yynrhs = yyr2[yyrule];
  int yyi;
  YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n",
             yyrule - 1, yylno);
  /* The symbols being reduced.  */
  for (yyi = 0; yyi < yynrhs; yyi++)
    {
      YYFPRINTF (stderr, "   $%d = ", yyi + 1);
      yy_symbol_print (stderr,
                       YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]),
                       &yyvsp[(yyi + 1) - (yynrhs)]);
      YYFPRINTF (stderr, "\n");
    }
}

# define YY_REDUCE_PRINT(Rule)          \
do {                                    \
  if (yydebug)                          \
    yy_reduce_print (yyssp, yyvsp, Rule); \
} while (0)

/* Nonzero means print parse trace.  It is left uninitialized so that
   multiple parsers can coexist.  */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args) ((void) 0)
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */


/* YYINITDEPTH -- initial size of the parser's stacks.  */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif

/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
   if the built-in stack extension method is used).

   Do not make this value too large; the results are undefined if
   YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
   evaluated with infinite-precision integer arithmetic.  */

#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif


/* Context of a parse error.  */
typedef struct
{
  yy_state_t *yyssp;
  yysymbol_kind_t yytoken;
} yypcontext_t;

/* Put in YYARG at most YYARGN of the expected tokens given the
   current YYCTX, and return the number of tokens stored in YYARG.  If
   YYARG is null, return the number of expected tokens (guaranteed to
   be less than YYNTOKENS).  Return YYENOMEM on memory exhaustion.
   Return 0 if there are more than YYARGN expected tokens, yet fill
   YYARG up to YYARGN. */
static int
yypcontext_expected_tokens (const yypcontext_t *yyctx,
                            yysymbol_kind_t yyarg[], int yyargn)
{
  /* Actual size of YYARG. */
  int yycount = 0;
  int yyn = yypact[+*yyctx->yyssp];
  if (!yypact_value_is_default (yyn))
    {
      /* Start YYX at -YYN if negative to avoid negative indexes in
         YYCHECK.  In other words, skip the first -YYN actions for
         this state because they are default actions.  */
      int yyxbegin = yyn < 0 ? -yyn : 0;
      /* Stay within bounds of both yycheck and yytname.  */
      int yychecklim = YYLAST - yyn + 1;
      int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
      int yyx;
      for (yyx = yyxbegin; yyx < yyxend; ++yyx)
        if (yycheck[yyx + yyn] == yyx && yyx != YYSYMBOL_YYerror
            && !yytable_value_is_error (yytable[yyx + yyn]))
          {
            if (!yyarg)
              ++yycount;
            else if (yycount == yyargn)
              return 0;
            else
              yyarg[yycount++] = YY_CAST (yysymbol_kind_t, yyx);
          }
    }
  if (yyarg && yycount == 0 && 0 < yyargn)
    yyarg[0] = YYSYMBOL_YYEMPTY;
  return yycount;
}




#ifndef yystrlen
# if defined __GLIBC__ && defined _STRING_H
#  define yystrlen(S) (YY_CAST (YYPTRDIFF_T, strlen (S)))
# else
/* Return the length of YYSTR.  */
static YYPTRDIFF_T
yystrlen (const char *yystr)
{
  YYPTRDIFF_T yylen;
  for (yylen = 0; yystr[yylen]; yylen++)
    continue;
  return yylen;
}
# endif
#endif

#ifndef yystpcpy
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
#  define yystpcpy stpcpy
# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
   YYDEST.  */
static char *
yystpcpy (char *yydest, const char *yysrc)
{
  char *yyd = yydest;
  const char *yys = yysrc;

  while ((*yyd++ = *yys++) != '\0')
    continue;

  return yyd - 1;
}
# endif
#endif

#ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
   quotes and backslashes, so that it's suitable for yyerror.  The
   heuristic is that double-quoting is unnecessary unless the string
   contains an apostrophe, a comma, or backslash (other than
   backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
   null, do not copy; instead, return the length of what the result
   would have been.  */
static YYPTRDIFF_T
yytnamerr (char *yyres, const char *yystr)
{
  if (*yystr == '"')
    {
      YYPTRDIFF_T yyn = 0;
      char const *yyp = yystr;
      for (;;)
        switch (*++yyp)
          {
          case '\'':
          case ',':
            goto do_not_strip_quotes;

          case '\\':
            if (*++yyp != '\\')
              goto do_not_strip_quotes;
            else
              goto append;

          append:
          default:
            if (yyres)
              yyres[yyn] = *yyp;
            yyn++;
            break;

          case '"':
            if (yyres)
              yyres[yyn] = '\0';
            return yyn;
          }
    do_not_strip_quotes: ;
    }

  if (yyres)
    return yystpcpy (yyres, yystr) - yyres;
  else
    return yystrlen (yystr);
}
#endif


static int
yy_syntax_error_arguments (const yypcontext_t *yyctx,
                           yysymbol_kind_t yyarg[], int yyargn)
{
  /* Actual size of YYARG. */
  int yycount = 0;
  /* There are many possibilities here to consider:
     - If this state is a consistent state with a default action, then
       the only way this function was invoked is if the default action
       is an error action.  In that case, don't check for expected
       tokens because there are none.
     - The only way there can be no lookahead present (in yychar) is if
       this state is a consistent state with a default action.  Thus,
       detecting the absence of a lookahead is sufficient to determine
       that there is no unexpected or expected token to report.  In that
       case, just report a simple "syntax error".
     - Don't assume there isn't a lookahead just because this state is a
       consistent state with a default action.  There might have been a
       previous inconsistent state, consistent state with a non-default
       action, or user semantic action that manipulated yychar.
     - Of course, the expected token list depends on states to have
       correct lookahead information, and it depends on the parser not
       to perform extra reductions after fetching a lookahead from the
       scanner and before detecting a syntax error.  Thus, state merging
       (from LALR or IELR) and default reductions corrupt the expected
       token list.  However, the list is correct for canonical LR with
       one exception: it will still contain any token that will not be
       accepted due to an error action in a later state.
  */
  if (yyctx->yytoken != YYSYMBOL_YYEMPTY)
    {
      int yyn;
      if (yyarg)
        yyarg[yycount] = yyctx->yytoken;
      ++yycount;
      yyn = yypcontext_expected_tokens (yyctx,
                                        yyarg ? yyarg + 1 : yyarg, yyargn - 1);
      if (yyn == YYENOMEM)
        return YYENOMEM;
      else
        yycount += yyn;
    }
  return yycount;
}

/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
   about the unexpected token YYTOKEN for the state stack whose top is
   YYSSP.

   Return 0 if *YYMSG was successfully written.  Return -1 if *YYMSG is
   not large enough to hold the message.  In that case, also set
   *YYMSG_ALLOC to the required number of bytes.  Return YYENOMEM if the
   required number of bytes is too large to store.  */
static int
yysyntax_error (YYPTRDIFF_T *yymsg_alloc, char **yymsg,
                const yypcontext_t *yyctx)
{
  enum { YYARGS_MAX = 5 };
  /* Internationalized format string. */
  const char *yyformat = YY_NULLPTR;
  /* Arguments of yyformat: reported tokens (one for the "unexpected",
     one per "expected"). */
  yysymbol_kind_t yyarg[YYARGS_MAX];
  /* Cumulated lengths of YYARG.  */
  YYPTRDIFF_T yysize = 0;

  /* Actual size of YYARG. */
  int yycount = yy_syntax_error_arguments (yyctx, yyarg, YYARGS_MAX);
  if (yycount == YYENOMEM)
    return YYENOMEM;

  switch (yycount)
    {
#define YYCASE_(N, S)                       \
      case N:                               \
        yyformat = S;                       \
        break
    default: /* Avoid compiler warnings. */
      YYCASE_(0, YY_("syntax error"));
      YYCASE_(1, YY_("syntax error, unexpected %s"));
      YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
      YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
      YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
      YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
#undef YYCASE_
    }

  /* Compute error message size.  Don't count the "%s"s, but reserve
     room for the terminator.  */
  yysize = yystrlen (yyformat) - 2 * yycount + 1;
  {
    int yyi;
    for (yyi = 0; yyi < yycount; ++yyi)
      {
        YYPTRDIFF_T yysize1
          = yysize + yytnamerr (YY_NULLPTR, yytname[yyarg[yyi]]);
        if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
          yysize = yysize1;
        else
          return YYENOMEM;
      }
  }

  if (*yymsg_alloc < yysize)
    {
      *yymsg_alloc = 2 * yysize;
      if (! (yysize <= *yymsg_alloc
             && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
        *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
      return -1;
    }

  /* Avoid sprintf, as that infringes on the user's name space.
     Don't have undefined behavior even if the translation
     produced a string with the wrong number of "%s"s.  */
  {
    char *yyp = *yymsg;
    int yyi = 0;
    while ((*yyp = *yyformat) != '\0')
      if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
        {
          yyp += yytnamerr (yyp, yytname[yyarg[yyi++]]);
          yyformat += 2;
        }
      else
        {
          ++yyp;
          ++yyformat;
        }
  }
  return 0;
}


/*-----------------------------------------------.
| Release the memory associated to this symbol.  |
`-----------------------------------------------*/

static void
yydestruct (const char *yymsg,
            yysymbol_kind_t yykind, YYSTYPE *yyvaluep)
{
  YY_USE (yyvaluep);
  if (!yymsg)
    yymsg = "Deleting";
  YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp);

  YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  YY_USE (yykind);
  YY_IGNORE_MAYBE_UNINITIALIZED_END
}


/* Lookahead token kind.  */
int yychar;

/* The semantic value of the lookahead symbol.  */
YYSTYPE yylval;
/* Number of syntax errors so far.  */
int yynerrs;




/*----------.
| yyparse.  |
`----------*/

int
yyparse (void)
{
    yy_state_fast_t yystate = 0;
    /* Number of tokens to shift before error messages enabled.  */
    int yyerrstatus = 0;

    /* Refer to the stacks through separate pointers, to allow yyoverflow
       to reallocate them elsewhere.  */

    /* Their size.  */
    YYPTRDIFF_T yystacksize = YYINITDEPTH;

    /* The state stack: array, bottom, top.  */
    yy_state_t yyssa[YYINITDEPTH];
    yy_state_t *yyss = yyssa;
    yy_state_t *yyssp = yyss;

    /* The semantic value stack: array, bottom, top.  */
    YYSTYPE yyvsa[YYINITDEPTH];
    YYSTYPE *yyvs = yyvsa;
    YYSTYPE *yyvsp = yyvs;

  int yyn;
  /* The return value of yyparse.  */
  int yyresult;
  /* Lookahead symbol kind.  */
  yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY;
  /* The variables used to return semantic value and location from the
     action routines.  */
  YYSTYPE yyval;

  /* Buffer for error messages, and its allocated size.  */
  char yymsgbuf[128];
  char *yymsg = yymsgbuf;
  YYPTRDIFF_T yymsg_alloc = sizeof yymsgbuf;

#define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))

  /* The number of symbols on the RHS of the reduced rule.
     Keep to zero when no symbol should be popped.  */
  int yylen = 0;

  YYDPRINTF ((stderr, "Starting parse\n"));

  yychar = YYEMPTY; /* Cause a token to be read.  */

  goto yysetstate;


/*------------------------------------------------------------.
| yynewstate -- push a new state, which is found in yystate.  |
`------------------------------------------------------------*/
yynewstate:
  /* In all cases, when you get here, the value and location stacks
     have just been pushed.  So pushing a state here evens the stacks.  */
  yyssp++;


/*--------------------------------------------------------------------.
| yysetstate -- set current state (the top of the stack) to yystate.  |
`--------------------------------------------------------------------*/
yysetstate:
  YYDPRINTF ((stderr, "Entering state %d\n", yystate));
  YY_ASSERT (0 <= yystate && yystate < YYNSTATES);
  YY_IGNORE_USELESS_CAST_BEGIN
  *yyssp = YY_CAST (yy_state_t, yystate);
  YY_IGNORE_USELESS_CAST_END
  YY_STACK_PRINT (yyss, yyssp);

  if (yyss + yystacksize - 1 <= yyssp)
#if !defined yyoverflow && !defined YYSTACK_RELOCATE
    YYNOMEM;
#else
    {
      /* Get the current used size of the three stacks, in elements.  */
      YYPTRDIFF_T yysize = yyssp - yyss + 1;

# if defined yyoverflow
      {
        /* Give user a chance to reallocate the stack.  Use copies of
           these so that the &'s don't force the real ones into
           memory.  */
        yy_state_t *yyss1 = yyss;
        YYSTYPE *yyvs1 = yyvs;

        /* Each stack pointer address is followed by the size of the
           data in use in that stack, in bytes.  This used to be a
           conditional around just the two extra args, but that might
           be undefined if yyoverflow is a macro.  */
        yyoverflow (YY_("memory exhausted"),
                    &yyss1, yysize * YYSIZEOF (*yyssp),
                    &yyvs1, yysize * YYSIZEOF (*yyvsp),
                    &yystacksize);
        yyss = yyss1;
        yyvs = yyvs1;
      }
# else /* defined YYSTACK_RELOCATE */
      /* Extend the stack our own way.  */
      if (YYMAXDEPTH <= yystacksize)
        YYNOMEM;
      yystacksize *= 2;
      if (YYMAXDEPTH < yystacksize)
        yystacksize = YYMAXDEPTH;

      {
        yy_state_t *yyss1 = yyss;
        union yyalloc *yyptr =
          YY_CAST (union yyalloc *,
                   YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize))));
        if (! yyptr)
          YYNOMEM;
        YYSTACK_RELOCATE (yyss_alloc, yyss);
        YYSTACK_RELOCATE (yyvs_alloc, yyvs);
#  undef YYSTACK_RELOCATE
        if (yyss1 != yyssa)
          YYSTACK_FREE (yyss1);
      }
# endif

      yyssp = yyss + yysize - 1;
      yyvsp = yyvs + yysize - 1;

      YY_IGNORE_USELESS_CAST_BEGIN
      YYDPRINTF ((stderr, "Stack size increased to %ld\n",
                  YY_CAST (long, yystacksize)));
      YY_IGNORE_USELESS_CAST_END

      if (yyss + yystacksize - 1 <= yyssp)
        YYABORT;
    }
#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */


  if (yystate == YYFINAL)
    YYACCEPT;

  goto yybackup;


/*-----------.
| yybackup.  |
`-----------*/
yybackup:
  /* Do appropriate processing given the current state.  Read a
     lookahead token if we need one and don't already have one.  */

  /* First try to decide what to do without reference to lookahead token.  */
  yyn = yypact[yystate];
  if (yypact_value_is_default (yyn))
    goto yydefault;

  /* Not known => get a lookahead token if don't already have one.  */

  /* YYCHAR is either empty, or end-of-input, or a valid lookahead.  */
  if (yychar == YYEMPTY)
    {
      YYDPRINTF ((stderr, "Reading a token\n"));
      yychar = yylex ();
    }

  if (yychar <= YYEOF)
    {
      yychar = YYEOF;
      yytoken = YYSYMBOL_YYEOF;
      YYDPRINTF ((stderr, "Now at end of input.\n"));
    }
  else if (yychar == YYerror)
    {
      /* The scanner already issued an error message, process directly
         to error recovery.  But do not keep the error token as
         lookahead, it is too special and may lead us to an endless
         loop in error recovery. */
      yychar = YYUNDEF;
      yytoken = YYSYMBOL_YYerror;
      goto yyerrlab1;
    }
  else
    {
      yytoken = YYTRANSLATE (yychar);
      YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
    }

  /* If the proper action on seeing token YYTOKEN is to reduce or to
     detect an error, take that action.  */
  yyn += yytoken;
  if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
    goto yydefault;
  yyn = yytable[yyn];
  if (yyn <= 0)
    {
      if (yytable_value_is_error (yyn))
        goto yyerrlab;
      yyn = -yyn;
      goto yyreduce;
    }

  /* Count tokens shifted since error; after three, turn off error
     status.  */
  if (yyerrstatus)
    yyerrstatus--;

  /* Shift the lookahead token.  */
  YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
  yystate = yyn;
  YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  *++yyvsp = yylval;
  YY_IGNORE_MAYBE_UNINITIALIZED_END

  /* Discard the shifted token.  */
  yychar = YYEMPTY;
  goto yynewstate;


/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state.  |
`-----------------------------------------------------------*/
yydefault:
  yyn = yydefact[yystate];
  if (yyn == 0)
    goto yyerrlab;
  goto yyreduce;


/*-----------------------------.
| yyreduce -- do a reduction.  |
`-----------------------------*/
yyreduce:
  /* yyn is the number of a rule to reduce with.  */
  yylen = yyr2[yyn];

  /* If YYLEN is nonzero, implement the default value of the action:
     '$$ = $1'.

     Otherwise, the following line sets YYVAL to garbage.
     This behavior is undocumented and Bison
     users should not rely upon it.  Assigning to YYVAL
     unconditionally makes the parser a bit smaller, and it avoids a
     GCC warning that YYVAL may be used uninitialized.  */
  yyval = yyvsp[1-yylen];


  YY_REDUCE_PRINT (yyn);
  switch (yyn)
    {
  case 2: /* glyph: UNSIGNED REFERENCE  */
#line 268 "parser.y"
                        {
	#line 424 "format.w"
	(yyval.c).c= (yyvsp[-1].u);REF(font_kind,(yyvsp[0].u));(yyval.c).f= (yyvsp[0].u);}
#line 2028 "parser.c"
    break;

  case 3: /* content_node: start "glyph" glyph ">"  */
#line 271 "parser.y"
                                  {
	#line 425 "format.w"
	hput_tags((yyvsp[-3].u),hput_glyph(&((yyvsp[-1].c))));}
#line 2036 "parser.c"
    break;

  case 4: /* start: "<"  */
#line 274 "parser.y"
           {
	#line 426 "format.w"
	HPUTNODE;(yyval.u)= (uint32_t)(hpos++-hstart);}
#line 2044 "parser.c"
    break;

  case 6: /* integer: UNSIGNED  */
#line 278 "parser.y"
                         {
	#line 947 "format.w"
	RNG("number",(yyvsp[0].u),0,0x7FFFFFFF);}
#line 2052 "parser.c"
    break;

  case 7: /* glyph: CHARCODE REFERENCE  */
#line 282 "parser.y"
                        {
	#line 1088 "format.w"
	(yyval.c).c= (yyvsp[-1].u);REF(font_kind,(yyvsp[0].u));(yyval.c).f= (yyvsp[0].u);}
#line 2060 "parser.c"
    break;

  case 9: /* string: CHARCODE  */
#line 286 "parser.y"
                         {
	#line 1193 "format.w"
	static char s[2];
	RNG("String element",(yyvsp[0].u),0x20,0x7E);
	s[0]= (yyvsp[0].u);s[1]= 0;(yyval.s)= s;}
#line 2070 "parser.c"
    break;

  case 10: /* number: UNSIGNED  */
#line 292 "parser.y"
               {
	#line 1346 "format.w"
	(yyval.f)= (float64_t)(yyvsp[0].u);}
#line 2078 "parser.c"
    break;

  case 11: /* number: SIGNED  */
#line 294 "parser.y"
                                       {
	#line 1346 "format.w"
	(yyval.f)= (float64_t)(yyvsp[0].i);}
#line 2086 "parser.c"
    break;

  case 13: /* dimension: number "pt"  */
#line 298 "parser.y"
                   {
	#line 1697 "format.w"
	(yyval.d)= ROUND((yyvsp[-1].f)*ONE);RNG("Dimension",(yyval.d),-MAX_DIMEN,MAX_DIMEN);}
#line 2094 "parser.c"
    break;

  case 14: /* dimension: number "in"  */
#line 301 "parser.y"
                    {
	#line 1698 "format.w"
	(yyval.d)= ROUND((yyvsp[-1].f)*ONE*72.27);RNG("Dimension",(yyval.d),-MAX_DIMEN,MAX_DIMEN);}
#line 2102 "parser.c"
    break;

  case 15: /* dimension: number "mm"  */
#line 304 "parser.y"
                  {
	#line 1699 "format.w"
	(yyval.d)= ROUND((yyvsp[-1].f)*ONE*(72.27/25.4));RNG("Dimension",(yyval.d),-MAX_DIMEN,MAX_DIMEN);}
#line 2110 "parser.c"
    break;

  case 16: /* xdimen: dimension number "h" number "v"  */
#line 308 "parser.y"
                                  {
	#line 1777 "format.w"
	(yyval.xd).w= (yyvsp[-4].d);(yyval.xd).h= (yyvsp[-3].f);(yyval.xd).v= (yyvsp[-1].f);}
#line 2118 "parser.c"
    break;

  case 17: /* xdimen: dimension number "h"  */
#line 311 "parser.y"
                           {
	#line 1778 "format.w"
	(yyval.xd).w= (yyvsp[-2].d);(yyval.xd).h= (yyvsp[-1].f);(yyval.xd).v= 0.0;}
#line 2126 "parser.c"
    break;

  case 18: /* xdimen: dimension number "v"  */
#line 314 "parser.y"
                           {
	#line 1779 "format.w"
	(yyval.xd).w= (yyvsp[-2].d);(yyval.xd).h= 0.0;(yyval.xd).v= (yyvsp[-1].f);}
#line 2134 "parser.c"
    break;

  case 19: /* xdimen: dimension  */
#line 317 "parser.y"
                  {
	#line 1780 "format.w"
	(yyval.xd).w= (yyvsp[0].d);(yyval.xd).h= 0.0;(yyval.xd).v= 0.0;}
#line 2142 "parser.c"
    break;

  case 20: /* xdimen_node: start "xdimen" xdimen ">"  */
#line 321 "parser.y"
                                   {
	#line 1782 "format.w"
	hput_tags((yyvsp[-3].u),hput_xdimen(&((yyvsp[-1].xd))));}
#line 2150 "parser.c"
    break;

  case 21: /* order: "pt"  */
#line 326 "parser.y"
        {
	#line 1961 "format.w"
	(yyval.o)= normal_o;}
#line 2158 "parser.c"
    break;

  case 22: /* order: "fil"  */
#line 328 "parser.y"
                            {
	#line 1961 "format.w"
	(yyval.o)= fil_o;}
#line 2166 "parser.c"
    break;

  case 23: /* order: "fill"  */
#line 330 "parser.y"
                             {
	#line 1961 "format.w"
	(yyval.o)= fill_o;}
#line 2174 "parser.c"
    break;

  case 24: /* order: "filll"  */
#line 332 "parser.y"
                              {
	#line 1961 "format.w"
	(yyval.o)= filll_o;}
#line 2182 "parser.c"
    break;

  case 25: /* stretch: number order  */
#line 336 "parser.y"
                    {
	#line 1963 "format.w"
	(yyval.st).f= (yyvsp[-1].f);(yyval.st).o= (yyvsp[0].o);}
#line 2190 "parser.c"
    break;

  case 26: /* penalty: integer  */
#line 340 "parser.y"
               {
	#line 2017 "format.w"
	RNG("Penalty",(yyvsp[0].i),-20000,+20000);(yyval.i)= (yyvsp[0].i);}
#line 2198 "parser.c"
    break;

  case 27: /* content_node: start "penalty" penalty ">"  */
#line 343 "parser.y"
                                      {
	#line 2018 "format.w"
	hput_tags((yyvsp[-3].u),hput_int((yyvsp[-1].i)));}
#line 2206 "parser.c"
    break;

  case 29: /* rule_dimension: "|"  */
#line 347 "parser.y"
                                        {
	#line 2193 "format.w"
	(yyval.d)= RUNNING_DIMEN;}
#line 2214 "parser.c"
    break;

  case 30: /* rule: rule_dimension rule_dimension rule_dimension  */
#line 351 "parser.y"
{
	#line 2195 "format.w"
	(yyval.r).h= (yyvsp[-2].d);(yyval.r).d= (yyvsp[-1].d);(yyval.r).w= (yyvsp[0].d);
	if((yyvsp[0].d)==RUNNING_DIMEN&&((yyvsp[-2].d)==RUNNING_DIMEN||(yyvsp[-1].d)==RUNNING_DIMEN))
	QUIT("Incompatible running dimensions 0x%x 0x%x 0x%x",(yyvsp[-2].d),(yyvsp[-1].d),(yyvsp[0].d));}
#line 2224 "parser.c"
    break;

  case 31: /* rule_node: start "rule" rule ">"  */
#line 356 "parser.y"
                             {
	#line 2198 "format.w"
	hput_tags((yyvsp[-3].u),hput_rule(&((yyvsp[-1].r))));}
#line 2232 "parser.c"
    break;

  case 33: /* explicit: %empty  */
#line 361 "parser.y"
         {
	#line 2306 "format.w"
	(yyval.b)= false;}
#line 2240 "parser.c"
    break;

  case 34: /* explicit: "!"  */
#line 363 "parser.y"
                                 {
	#line 2306 "format.w"
	(yyval.b)= true;}
#line 2248 "parser.c"
    break;

  case 35: /* kern: explicit xdimen  */
#line 366 "parser.y"
                    {
	#line 2307 "format.w"
	(yyval.kt).x= (yyvsp[-1].b);(yyval.kt).d= (yyvsp[0].xd);}
#line 2256 "parser.c"
    break;

  case 36: /* content_node: start "kern" kern ">"  */
#line 369 "parser.y"
                                {
	#line 2308 "format.w"
	hput_tags((yyvsp[-3].u),hput_kern(&((yyvsp[-1].kt))));}
#line 2264 "parser.c"
    break;

  case 37: /* plus: %empty  */
#line 373 "parser.y"
     {
	#line 2518 "format.w"
	(yyval.st).f= 0.0;(yyval.st).o= 0;}
#line 2272 "parser.c"
    break;

  case 38: /* plus: "plus" stretch  */
#line 375 "parser.y"
                                             {
	#line 2518 "format.w"
	(yyval.st)= (yyvsp[0].st);}
#line 2280 "parser.c"
    break;

  case 39: /* minus: %empty  */
#line 378 "parser.y"
      {
	#line 2519 "format.w"
	(yyval.st).f= 0.0;(yyval.st).o= 0;}
#line 2288 "parser.c"
    break;

  case 40: /* minus: "minus" stretch  */
#line 380 "parser.y"
                                              {
	#line 2519 "format.w"
	(yyval.st)= (yyvsp[0].st);}
#line 2296 "parser.c"
    break;

  case 41: /* glue: xdimen plus minus  */
#line 383 "parser.y"
                      {
	#line 2520 "format.w"
	(yyval.g).w= (yyvsp[-2].xd);(yyval.g).p= (yyvsp[-1].st);(yyval.g).m= (yyvsp[0].st);}
#line 2304 "parser.c"
    break;

  case 42: /* content_node: start "glue" glue ">"  */
#line 386 "parser.y"
                                {
	#line 2521 "format.w"
	if(ZERO_GLUE((yyvsp[-1].g))){HPUT8(zero_skip_no);
	hput_tags((yyvsp[-3].u),TAG(glue_kind,0));}else hput_tags((yyvsp[-3].u),hput_glue(&((yyvsp[-1].g))));}
#line 2313 "parser.c"
    break;

  case 43: /* glue_node: start "glue" glue ">"  */
#line 391 "parser.y"
{
	#line 2524 "format.w"
	if(ZERO_GLUE((yyvsp[-1].g))){hpos--;(yyval.b)= false;}
	else{hput_tags((yyvsp[-3].u),hput_glue(&((yyvsp[-1].g))));(yyval.b)= true;}}
#line 2322 "parser.c"
    break;

  case 44: /* position: %empty  */
#line 396 "parser.y"
         {
	#line 2800 "format.w"
	(yyval.u)= hpos-hstart;}
#line 2330 "parser.c"
    break;

  case 47: /* estimate: %empty  */
#line 401 "parser.y"
         {
	#line 2803 "format.w"
	hpos+= 2;}
#line 2338 "parser.c"
    break;

  case 48: /* estimate: UNSIGNED  */
#line 404 "parser.y"
                 {
	#line 2804 "format.w"
	hpos+= hsize_bytes((yyvsp[0].u))+1;}
#line 2346 "parser.c"
    break;

  case 49: /* list: start estimate content_list ">"  */
#line 408 "parser.y"
{
	#line 2806 "format.w"
	(yyval.l).k= list_kind;(yyval.l).p= (yyvsp[-1].u);(yyval.l).s= (hpos-hstart)-(yyvsp[-1].u);
	hput_tags((yyvsp[-3].u),hput_list((yyvsp[-3].u)+1,&((yyval.l))));}
#line 2355 "parser.c"
    break;

  case 50: /* $@1: %empty  */
#line 414 "parser.y"
{
	#line 3213 "format.w"
	hpos+= 4;}
#line 2363 "parser.c"
    break;

  case 51: /* list: TXT_START position $@1 text TXT_END  */
#line 418 "parser.y"
{
	#line 3215 "format.w"
	(yyval.l).k= text_kind;(yyval.l).p= (yyvsp[-1].u);(yyval.l).s= (hpos-hstart)-(yyvsp[-1].u);
	hput_tags((yyvsp[-3].u),hput_list((yyvsp[-3].u)+1,&((yyval.l))));}
#line 2372 "parser.c"
    break;

  case 54: /* txt: TXT_CC  */
#line 424 "parser.y"
          {
	#line 3219 "format.w"
	hput_txt_cc((yyvsp[0].u));}
#line 2380 "parser.c"
    break;

  case 55: /* txt: TXT_FONT  */
#line 427 "parser.y"
                 {
	#line 3220 "format.w"
	REF(font_kind,(yyvsp[0].u));hput_txt_font((yyvsp[0].u));}
#line 2388 "parser.c"
    break;

  case 56: /* txt: TXT_GLOBAL  */
#line 430 "parser.y"
                   {
	#line 3221 "format.w"
	REF((yyvsp[0].rf).k,(yyvsp[0].rf).n);hput_txt_global(&((yyvsp[0].rf)));}
#line 2396 "parser.c"
    break;

  case 57: /* txt: TXT_LOCAL  */
#line 433 "parser.y"
                  {
	#line 3222 "format.w"
	RNG("Font parameter",(yyvsp[0].u),0,11);hput_txt_local((yyvsp[0].u));}
#line 2404 "parser.c"
    break;

  case 58: /* txt: TXT_FONT_GLUE  */
#line 436 "parser.y"
                      {
	#line 3223 "format.w"
	HPUTX(1);HPUT8(txt_glue);}
#line 2412 "parser.c"
    break;

  case 59: /* txt: TXT_FONT_HYPHEN  */
#line 439 "parser.y"
                        {
	#line 3224 "format.w"
	HPUTX(1);HPUT8(txt_hyphen);}
#line 2420 "parser.c"
    break;

  case 60: /* txt: TXT_IGNORE  */
#line 442 "parser.y"
                   {
	#line 3225 "format.w"
	HPUTX(1);HPUT8(txt_ignore);}
#line 2428 "parser.c"
    break;

  case 61: /* $@2: %empty  */
#line 445 "parser.y"
         {
	#line 3226 "format.w"
	HPUTX(1);HPUT8(txt_node);}
#line 2436 "parser.c"
    break;

  case 63: /* box_dimen: dimension dimension dimension  */
#line 451 "parser.y"
{
	#line 3486 "format.w"
	(yyval.info)= hput_box_dimen((yyvsp[-2].d),(yyvsp[-1].d),(yyvsp[0].d));}
#line 2444 "parser.c"
    break;

  case 64: /* box_shift: %empty  */
#line 454 "parser.y"
          {
	#line 3487 "format.w"
	(yyval.info)= b000;}
#line 2452 "parser.c"
    break;

  case 65: /* box_shift: "shifted" dimension  */
#line 457 "parser.y"
                          {
	#line 3488 "format.w"
	(yyval.info)= hput_box_shift((yyvsp[0].d));}
#line 2460 "parser.c"
    break;

  case 66: /* box_glue_set: %empty  */
#line 461 "parser.y"
             {
	#line 3490 "format.w"
	(yyval.info)= b000;}
#line 2468 "parser.c"
    break;

  case 67: /* box_glue_set: "plus" stretch  */
#line 464 "parser.y"
                     {
	#line 3491 "format.w"
	(yyval.info)= hput_box_glue_set(+1,(yyvsp[0].st).f,(yyvsp[0].st).o);}
#line 2476 "parser.c"
    break;

  case 68: /* box_glue_set: "minus" stretch  */
#line 467 "parser.y"
                      {
	#line 3492 "format.w"
	(yyval.info)= hput_box_glue_set(-1,(yyvsp[0].st).f,(yyvsp[0].st).o);}
#line 2484 "parser.c"
    break;

  case 69: /* box: box_dimen box_shift box_glue_set list  */
#line 472 "parser.y"
                                         {
	#line 3495 "format.w"
	(yyval.info)= (yyvsp[-3].info)	|(yyvsp[-2].info)	|(yyvsp[-1].info);}
#line 2492 "parser.c"
    break;

  case 70: /* hbox_node: start "hbox" box ">"  */
#line 476 "parser.y"
                            {
	#line 3497 "format.w"
	hput_tags((yyvsp[-3].u),TAG(hbox_kind,(yyvsp[-1].info)));}
#line 2500 "parser.c"
    break;

  case 71: /* vbox_node: start "vbox" box ">"  */
#line 479 "parser.y"
                            {
	#line 3498 "format.w"
	hput_tags((yyvsp[-3].u),TAG(vbox_kind,(yyvsp[-1].info)));}
#line 2508 "parser.c"
    break;

  case 74: /* box_flex: plus minus  */
#line 484 "parser.y"
                   {
	#line 3679 "format.w"
	hput_stretch(&((yyvsp[-1].st)));hput_stretch(&((yyvsp[0].st)));}
#line 2516 "parser.c"
    break;

  case 75: /* xbox: box_dimen box_shift box_flex xdimen_ref list  */
#line 487 "parser.y"
                                                 {
	#line 3680 "format.w"
	(yyval.info)= (yyvsp[-4].info)	|(yyvsp[-3].info);}
#line 2524 "parser.c"
    break;

  case 76: /* xbox: box_dimen box_shift box_flex xdimen_node list  */
#line 490 "parser.y"
                                                      {
	#line 3681 "format.w"
	(yyval.info)= (yyvsp[-4].info)	|(yyvsp[-3].info)	|b100;}
#line 2532 "parser.c"
    break;

  case 77: /* box_goal: "to" xdimen_ref  */
#line 494 "parser.y"
                      {
	#line 3683 "format.w"
	(yyval.info)= b000;}
#line 2540 "parser.c"
    break;

  case 78: /* box_goal: "add" xdimen_ref  */
#line 497 "parser.y"
                       {
	#line 3684 "format.w"
	(yyval.info)= b001;}
#line 2548 "parser.c"
    break;

  case 79: /* box_goal: "to" xdimen_node  */
#line 500 "parser.y"
                       {
	#line 3685 "format.w"
	(yyval.info)= b100;}
#line 2556 "parser.c"
    break;

  case 80: /* box_goal: "add" xdimen_node  */
#line 503 "parser.y"
                        {
	#line 3686 "format.w"
	(yyval.info)= b101;}
#line 2564 "parser.c"
    break;

  case 81: /* hpack: box_shift box_goal list  */
#line 507 "parser.y"
                             {
	#line 3688 "format.w"
	(yyval.info)= (yyvsp[-1].info);}
#line 2572 "parser.c"
    break;

  case 82: /* $@3: %empty  */
#line 510 "parser.y"
                                   {
	#line 3689 "format.w"
	HPUT32((yyvsp[0].d));}
#line 2580 "parser.c"
    break;

  case 83: /* vpack: box_shift "max" "depth" dimension $@3 box_goal list  */
#line 512 "parser.y"
                                 {
	#line 3689 "format.w"
	(yyval.info)= (yyvsp[-6].info)	|(yyvsp[-1].info);}
#line 2588 "parser.c"
    break;

  case 84: /* vxbox_node: start "vset" xbox ">"  */
#line 516 "parser.y"
                              {
	#line 3691 "format.w"
	hput_tags((yyvsp[-3].u),TAG(vset_kind,(yyvsp[-1].info)));}
#line 2596 "parser.c"
    break;

  case 85: /* vxbox_node: start "vpack" vpack ">"  */
#line 519 "parser.y"
                              {
	#line 3692 "format.w"
	hput_tags((yyvsp[-3].u),TAG(vpack_kind,(yyvsp[-1].info)));}
#line 2604 "parser.c"
    break;

  case 86: /* hxbox_node: start "hset" xbox ">"  */
#line 524 "parser.y"
                              {
	#line 3695 "format.w"
	hput_tags((yyvsp[-3].u),TAG(hset_kind,(yyvsp[-1].info)));}
#line 2612 "parser.c"
    break;

  case 87: /* hxbox_node: start "hpack" hpack ">"  */
#line 527 "parser.y"
                              {
	#line 3696 "format.w"
	hput_tags((yyvsp[-3].u),TAG(hpack_kind,(yyvsp[-1].info)));}
#line 2620 "parser.c"
    break;

  case 90: /* ltype: %empty  */
#line 533 "parser.y"
      {
	#line 3806 "format.w"
	(yyval.info)= 1;}
#line 2628 "parser.c"
    break;

  case 91: /* ltype: "align"  */
#line 535 "parser.y"
                      {
	#line 3806 "format.w"
	(yyval.info)= 1;}
#line 2636 "parser.c"
    break;

  case 92: /* ltype: "center"  */
#line 537 "parser.y"
                       {
	#line 3806 "format.w"
	(yyval.info)= 2;}
#line 2644 "parser.c"
    break;

  case 93: /* ltype: "expand"  */
#line 539 "parser.y"
                       {
	#line 3806 "format.w"
	(yyval.info)= 3;}
#line 2652 "parser.c"
    break;

  case 94: /* leaders: glue_node ltype rule_node  */
#line 542 "parser.y"
                                 {
	#line 3807 "format.w"
	if((yyvsp[-2].b))(yyval.info)= (yyvsp[-1].info)	|b100;else (yyval.info)= (yyvsp[-1].info);}
#line 2660 "parser.c"
    break;

  case 95: /* leaders: glue_node ltype hbox_node  */
#line 545 "parser.y"
                                  {
	#line 3808 "format.w"
	if((yyvsp[-2].b))(yyval.info)= (yyvsp[-1].info)	|b100;else (yyval.info)= (yyvsp[-1].info);}
#line 2668 "parser.c"
    break;

  case 96: /* leaders: glue_node ltype vbox_node  */
#line 548 "parser.y"
                                  {
	#line 3809 "format.w"
	if((yyvsp[-2].b))(yyval.info)= (yyvsp[-1].info)	|b100;else (yyval.info)= (yyvsp[-1].info);}
#line 2676 "parser.c"
    break;

  case 97: /* content_node: start "leaders" leaders ">"  */
#line 551 "parser.y"
                                      {
	#line 3810 "format.w"
	hput_tags((yyvsp[-3].u),TAG(leaders_kind,(yyvsp[-1].info)));}
#line 2684 "parser.c"
    break;

  case 98: /* $@4: %empty  */
#line 555 "parser.y"
                  {
	#line 3916 "format.w"
	if((yyvsp[0].d)!=0)HPUT32((yyvsp[0].d));}
#line 2692 "parser.c"
    break;

  case 99: /* baseline: dimension $@4 glue_node glue_node  */
#line 558 "parser.y"
                   {
	#line 3917 "format.w"
	(yyval.info)= b000;if((yyvsp[-3].d)!=0)(yyval.info)	|= b001;
	if((yyvsp[-1].b))(yyval.info)	|= b100;
	if((yyvsp[0].b))(yyval.info)	|= b010;
	}
#line 2703 "parser.c"
    break;

  case 100: /* content_node: start "baseline" baseline ">"  */
#line 565 "parser.y"
{
	#line 3922 "format.w"
	if((yyvsp[-1].info)==b000)HPUT8(0);hput_tags((yyvsp[-3].u),TAG(baseline_kind,(yyvsp[-1].info)));}
#line 2711 "parser.c"
    break;

  case 102: /* cc_list: cc_list TXT_CC  */
#line 569 "parser.y"
                               {
	#line 4005 "format.w"
	hput_utf8((yyvsp[0].u));}
#line 2719 "parser.c"
    break;

  case 103: /* lig_cc: UNSIGNED  */
#line 572 "parser.y"
               {
	#line 4006 "format.w"
	RNG("UTF-8 code",(yyvsp[0].u),0,0x1FFFFF);(yyval.u)= hpos-hstart;hput_utf8((yyvsp[0].u));}
#line 2727 "parser.c"
    break;

  case 104: /* lig_cc: CHARCODE  */
#line 575 "parser.y"
               {
	#line 4007 "format.w"
	(yyval.u)= hpos-hstart;hput_utf8((yyvsp[0].u));}
#line 2735 "parser.c"
    break;

  case 105: /* ref: REFERENCE  */
#line 578 "parser.y"
             {
	#line 4008 "format.w"
	HPUT8((yyvsp[0].u));(yyval.u)= (yyvsp[0].u);}
#line 2743 "parser.c"
    break;

  case 106: /* $@5: %empty  */
#line 581 "parser.y"
            {
	#line 4009 "format.w"
	REF(font_kind,(yyvsp[0].u));}
#line 2751 "parser.c"
    break;

  case 107: /* ligature: ref $@5 lig_cc TXT_START cc_list TXT_END  */
#line 584 "parser.y"
{
	#line 4010 "format.w"
	(yyval.lg).f= (yyvsp[-5].u);(yyval.lg).l.p= (yyvsp[-3].u);(yyval.lg).l.s= (hpos-hstart)-(yyvsp[-3].u);
	RNG("Ligature size",(yyval.lg).l.s,0,255);}
#line 2760 "parser.c"
    break;

  case 108: /* content_node: start "ligature" ligature ">"  */
#line 588 "parser.y"
                                        {
	#line 4012 "format.w"
	hput_tags((yyvsp[-3].u),hput_ligature(&((yyvsp[-1].lg))));}
#line 2768 "parser.c"
    break;

  case 109: /* replace_count: explicit  */
#line 592 "parser.y"
                      {
	#line 4122 "format.w"
	if((yyvsp[0].b)){(yyval.u)= 0x80;HPUT8(0x80);}else (yyval.u)= 0x00;}
#line 2776 "parser.c"
    break;

  case 110: /* replace_count: explicit UNSIGNED  */
#line 595 "parser.y"
                          {
	#line 4123 "format.w"
	RNG("Replace count",(yyvsp[0].u),0,31);
	(yyval.u)= ((yyvsp[0].u))	|(((yyvsp[-1].b))?0x80:0x00);if((yyval.u)!=0)HPUT8((yyval.u));}
#line 2785 "parser.c"
    break;

  case 111: /* disc: replace_count list list  */
#line 599 "parser.y"
                            {
	#line 4125 "format.w"
	(yyval.dc).r= (yyvsp[-2].u);(yyval.dc).p= (yyvsp[-1].l);(yyval.dc).q= (yyvsp[0].l);
	if((yyvsp[0].l).s==0){hpos= hpos-2;if((yyvsp[-1].l).s==0)hpos= hpos-2;}}
#line 2794 "parser.c"
    break;

  case 112: /* disc: replace_count list  */
#line 603 "parser.y"
                           {
	#line 4127 "format.w"
	(yyval.dc).r= (yyvsp[-1].u);(yyval.dc).p= (yyvsp[0].l);if((yyvsp[0].l).s==0)hpos= hpos-2;(yyval.dc).q.s= 0;}
#line 2802 "parser.c"
    break;

  case 113: /* disc: replace_count  */
#line 606 "parser.y"
                      {
	#line 4128 "format.w"
	(yyval.dc).r= (yyvsp[0].u);(yyval.dc).p.s= 0;(yyval.dc).q.s= 0;}
#line 2810 "parser.c"
    break;

  case 114: /* disc_node: start "disc" disc ">"  */
#line 612 "parser.y"
{
	#line 4132 "format.w"
	hput_tags((yyvsp[-3].u),hput_disc(&((yyvsp[-1].dc))));}
#line 2818 "parser.c"
    break;

  case 116: /* par_dimen: xdimen  */
#line 618 "parser.y"
                {
	#line 4286 "format.w"
	hput_xdimen_node(&((yyvsp[0].xd)));}
#line 2826 "parser.c"
    break;

  case 117: /* par: xdimen_ref param_ref list  */
#line 621 "parser.y"
                             {
	#line 4287 "format.w"
	(yyval.info)= b000;}
#line 2834 "parser.c"
    break;

  case 118: /* par: xdimen_ref empty_param_list non_empty_param_list list  */
#line 624 "parser.y"
                                                              {
	#line 4288 "format.w"
	(yyval.info)= b010;}
#line 2842 "parser.c"
    break;

  case 119: /* par: xdimen_ref empty_param_list list  */
#line 627 "parser.y"
                                         {
	#line 4289 "format.w"
	(yyval.info)= b010;}
#line 2850 "parser.c"
    break;

  case 120: /* $@6: %empty  */
#line 630 "parser.y"
                         {
	#line 4290 "format.w"
	hput_xdimen_node(&((yyvsp[-1].xd)));}
#line 2858 "parser.c"
    break;

  case 121: /* par: xdimen param_ref $@6 list  */
#line 632 "parser.y"
                                     {
	#line 4290 "format.w"
	(yyval.info)= b100;}
#line 2866 "parser.c"
    break;

  case 122: /* par: par_dimen empty_param_list non_empty_param_list list  */
#line 635 "parser.y"
                                                             {
	#line 4291 "format.w"
	(yyval.info)= b110;}
#line 2874 "parser.c"
    break;

  case 123: /* par: par_dimen empty_param_list list  */
#line 638 "parser.y"
                                        {
	#line 4292 "format.w"
	(yyval.info)= b110;}
#line 2882 "parser.c"
    break;

  case 124: /* content_node: start "par" par ">"  */
#line 642 "parser.y"
                              {
	#line 4294 "format.w"
	hput_tags((yyvsp[-3].u),TAG(par_kind,(yyvsp[-1].info)));}
#line 2890 "parser.c"
    break;

  case 125: /* math: param_ref list  */
#line 646 "parser.y"
                   {
	#line 4360 "format.w"
	(yyval.info)= b000;}
#line 2898 "parser.c"
    break;

  case 126: /* math: param_ref list hbox_node  */
#line 649 "parser.y"
                                 {
	#line 4361 "format.w"
	(yyval.info)= b001;}
#line 2906 "parser.c"
    break;

  case 127: /* math: param_ref hbox_node list  */
#line 652 "parser.y"
                                 {
	#line 4362 "format.w"
	(yyval.info)= b010;}
#line 2914 "parser.c"
    break;

  case 128: /* math: empty_param_list list  */
#line 655 "parser.y"
                              {
	#line 4363 "format.w"
	(yyval.info)= b100;}
#line 2922 "parser.c"
    break;

  case 129: /* math: empty_param_list list hbox_node  */
#line 658 "parser.y"
                                        {
	#line 4364 "format.w"
	(yyval.info)= b101;}
#line 2930 "parser.c"
    break;

  case 130: /* math: empty_param_list hbox_node list  */
#line 661 "parser.y"
                                        {
	#line 4365 "format.w"
	(yyval.info)= b110;}
#line 2938 "parser.c"
    break;

  case 131: /* math: empty_param_list non_empty_param_list list  */
#line 664 "parser.y"
                                                   {
	#line 4366 "format.w"
	(yyval.info)= b100;}
#line 2946 "parser.c"
    break;

  case 132: /* math: empty_param_list non_empty_param_list list hbox_node  */
#line 667 "parser.y"
                                                             {
	#line 4367 "format.w"
	(yyval.info)= b101;}
#line 2954 "parser.c"
    break;

  case 133: /* math: empty_param_list non_empty_param_list hbox_node list  */
#line 670 "parser.y"
                                                             {
	#line 4368 "format.w"
	(yyval.info)= b110;}
#line 2962 "parser.c"
    break;

  case 134: /* content_node: start "math" math ">"  */
#line 674 "parser.y"
                                {
	#line 4370 "format.w"
	hput_tags((yyvsp[-3].u),TAG(math_kind,(yyvsp[-1].info)));}
#line 2970 "parser.c"
    break;

  case 135: /* on_off: "on"  */
#line 678 "parser.y"
         {
	#line 4420 "format.w"
	(yyval.i)= 1;}
#line 2978 "parser.c"
    break;

  case 136: /* on_off: "off"  */
#line 680 "parser.y"
                    {
	#line 4420 "format.w"
	(yyval.i)= 0;}
#line 2986 "parser.c"
    break;

  case 137: /* math: on_off  */
#line 683 "parser.y"
           {
	#line 4421 "format.w"
	(yyval.info)= b011	|((yyvsp[0].i)<<2);}
#line 2994 "parser.c"
    break;

  case 138: /* content_node: start "adjust" list ">"  */
#line 687 "parser.y"
                                  {
	#line 4452 "format.w"
	hput_tags((yyvsp[-3].u),TAG(adjust_kind,1));}
#line 3002 "parser.c"
    break;

  case 139: /* span_count: UNSIGNED  */
#line 691 "parser.y"
                   {
	#line 4551 "format.w"
	(yyval.info)= hput_span_count((yyvsp[0].u));}
#line 3010 "parser.c"
    break;

  case 140: /* content_node: start "item" content_node ">"  */
#line 694 "parser.y"
                                        {
	#line 4552 "format.w"
	hput_tags((yyvsp[-3].u),TAG(item_kind,1));}
#line 3018 "parser.c"
    break;

  case 141: /* content_node: start "item" span_count content_node ">"  */
#line 697 "parser.y"
                                                   {
	#line 4553 "format.w"
	hput_tags((yyvsp[-4].u),TAG(item_kind,(yyvsp[-2].info)));}
#line 3026 "parser.c"
    break;

  case 142: /* content_node: start "item" list ">"  */
#line 700 "parser.y"
                                {
	#line 4554 "format.w"
	hput_tags((yyvsp[-3].u),TAG(item_kind,b000));}
#line 3034 "parser.c"
    break;

  case 143: /* table: "h" box_goal list list  */
#line 704 "parser.y"
                          {
	#line 4556 "format.w"
	(yyval.info)= (yyvsp[-2].info);}
#line 3042 "parser.c"
    break;

  case 144: /* table: "v" box_goal list list  */
#line 707 "parser.y"
                          {
	#line 4557 "format.w"
	(yyval.info)= (yyvsp[-2].info)	|b010;}
#line 3050 "parser.c"
    break;

  case 145: /* content_node: start "table" table ">"  */
#line 711 "parser.y"
                                  {
	#line 4559 "format.w"
	hput_tags((yyvsp[-3].u),TAG(table_kind,(yyvsp[-1].info)));}
#line 3058 "parser.c"
    break;

  case 146: /* image_aspect: number  */
#line 715 "parser.y"
                   {
	#line 4693 "format.w"
	(yyval.f)= (yyvsp[0].f);}
#line 3066 "parser.c"
    break;

  case 147: /* image_aspect: %empty  */
#line 717 "parser.y"
                         {
	#line 4693 "format.w"
	(yyval.f)= 0.0;}
#line 3074 "parser.c"
    break;

  case 148: /* image_width: "width" xdimen  */
#line 720 "parser.y"
                        {
	#line 4694 "format.w"
	(yyval.xd)= (yyvsp[0].xd);}
#line 3082 "parser.c"
    break;

  case 149: /* image_width: %empty  */
#line 723 "parser.y"
         {
	#line 4695 "format.w"
	(yyval.xd)= xdimen_defaults[zero_xdimen_no];}
#line 3090 "parser.c"
    break;

  case 150: /* image_height: "height" xdimen  */
#line 726 "parser.y"
                          {
	#line 4696 "format.w"
	(yyval.xd)= (yyvsp[0].xd);}
#line 3098 "parser.c"
    break;

  case 151: /* image_height: %empty  */
#line 729 "parser.y"
         {
	#line 4697 "format.w"
	(yyval.xd)= xdimen_defaults[zero_xdimen_no];}
#line 3106 "parser.c"
    break;

  case 152: /* image_spec: UNSIGNED image_aspect image_width image_height  */
#line 734 "parser.y"
{
	#line 4700 "format.w"
	(yyval.info)= hput_image_spec((yyvsp[-3].u),(yyvsp[-2].f),0,&((yyvsp[-1].xd)),0,&((yyvsp[0].xd)));}
#line 3114 "parser.c"
    break;

  case 153: /* image_spec: UNSIGNED image_aspect "width" REFERENCE image_height  */
#line 738 "parser.y"
{
	#line 4702 "format.w"
	(yyval.info)= hput_image_spec((yyvsp[-4].u),(yyvsp[-3].f),(yyvsp[-1].u),NULL,0,&((yyvsp[0].xd)));}
#line 3122 "parser.c"
    break;

  case 154: /* image_spec: UNSIGNED image_aspect image_width "height" REFERENCE  */
#line 742 "parser.y"
{
	#line 4704 "format.w"
	(yyval.info)= hput_image_spec((yyvsp[-4].u),(yyvsp[-3].f),0,&((yyvsp[-2].xd)),(yyvsp[0].u),NULL);}
#line 3130 "parser.c"
    break;

  case 155: /* image_spec: UNSIGNED image_aspect "width" REFERENCE "height" REFERENCE  */
#line 746 "parser.y"
{
	#line 4706 "format.w"
	(yyval.info)= hput_image_spec((yyvsp[-5].u),(yyvsp[-4].f),(yyvsp[-2].u),NULL,(yyvsp[0].u),NULL);}
#line 3138 "parser.c"
    break;

  case 156: /* image: image_spec list  */
#line 750 "parser.y"
                     {
	#line 4708 "format.w"
	(yyval.info)= (yyvsp[-1].info);}
#line 3146 "parser.c"
    break;

  case 157: /* content_node: start "image" image ">"  */
#line 754 "parser.y"
                                  {
	#line 4710 "format.w"
	hput_tags((yyvsp[-3].u),TAG(image_kind,(yyvsp[-1].info)));}
#line 3154 "parser.c"
    break;

  case 158: /* max_value: "outline" UNSIGNED  */
#line 758 "parser.y"
                          {
	#line 5310 "format.w"
	max_outline= (yyvsp[0].u);
	RNG("max outline",max_outline,0,0xFFFF);
	DBG(DBGDEF	|DBGLABEL,"Setting max outline to %d\n",max_outline);
	}
#line 3165 "parser.c"
    break;

  case 159: /* placement: "top"  */
#line 765 "parser.y"
             {
	#line 5402 "format.w"
	(yyval.i)= LABEL_TOP;}
#line 3173 "parser.c"
    break;

  case 160: /* placement: "bot"  */
#line 767 "parser.y"
                            {
	#line 5402 "format.w"
	(yyval.i)= LABEL_BOT;}
#line 3181 "parser.c"
    break;

  case 161: /* placement: "mid"  */
#line 769 "parser.y"
                            {
	#line 5402 "format.w"
	(yyval.i)= LABEL_MID;}
#line 3189 "parser.c"
    break;

  case 162: /* placement: %empty  */
#line 771 "parser.y"
                         {
	#line 5402 "format.w"
	(yyval.i)= LABEL_MID;}
#line 3197 "parser.c"
    break;

  case 163: /* content_node: "<" "label" REFERENCE placement ">"  */
#line 775 "parser.y"
{
	#line 5404 "format.w"
	hset_label((yyvsp[-2].u),(yyvsp[-1].i));}
#line 3205 "parser.c"
    break;

  case 164: /* content_node: start "link" REFERENCE on_off ">"  */
#line 780 "parser.y"
{
	#line 5662 "format.w"
	hput_tags((yyvsp[-4].u),hput_link((yyvsp[-2].u),(yyvsp[-1].i)));}
#line 3213 "parser.c"
    break;

  case 165: /* def_node: "<" "outline" REFERENCE integer position list ">"  */
#line 784 "parser.y"
                                                          {
	#line 5792 "format.w"
	
	static int outline_no= -1;
	(yyval.rf).k= outline_kind;(yyval.rf).n= (yyvsp[-4].u);
	if((yyvsp[-1].l).s==0)QUIT("Outline with empty title in line %d",yylineno);
	outline_no++;
	hset_outline(outline_no,(yyvsp[-4].u),(yyvsp[-3].i),(yyvsp[-2].u));
	}
#line 3227 "parser.c"
    break;

  case 166: /* stream_link: ref  */
#line 794 "parser.y"
               {
	#line 6207 "format.w"
	REF_RNG(stream_kind,(yyvsp[0].u));}
#line 3235 "parser.c"
    break;

  case 167: /* stream_link: "*"  */
#line 796 "parser.y"
                                                    {
	#line 6207 "format.w"
	HPUT8(255);}
#line 3243 "parser.c"
    break;

  case 168: /* stream_split: stream_link stream_link UNSIGNED  */
#line 799 "parser.y"
                                             {
	#line 6208 "format.w"
	RNG("split ratio",(yyvsp[0].u),0,1000);HPUT16((yyvsp[0].u));}
#line 3251 "parser.c"
    break;

  case 169: /* $@7: %empty  */
#line 802 "parser.y"
                                {
	#line 6209 "format.w"
	RNG("magnification factor",(yyvsp[0].u),0,1000);HPUT16((yyvsp[0].u));}
#line 3259 "parser.c"
    break;

  case 171: /* stream_type: stream_info  */
#line 806 "parser.y"
                       {
	#line 6211 "format.w"
	(yyval.info)= 0;}
#line 3267 "parser.c"
    break;

  case 172: /* stream_type: "first"  */
#line 808 "parser.y"
                      {
	#line 6211 "format.w"
	(yyval.info)= 1;}
#line 3275 "parser.c"
    break;

  case 173: /* stream_type: "last"  */
#line 810 "parser.y"
                     {
	#line 6211 "format.w"
	(yyval.info)= 2;}
#line 3283 "parser.c"
    break;

  case 174: /* stream_type: "top"  */
#line 812 "parser.y"
                    {
	#line 6211 "format.w"
	(yyval.info)= 3;}
#line 3291 "parser.c"
    break;

  case 175: /* stream_def_node: start "stream (definition)" ref stream_type list xdimen_node glue_node list glue_node ">"  */
#line 818 "parser.y"
{
	#line 6215 "format.w"
	DEF((yyval.rf),stream_kind,(yyvsp[-7].u));hput_tags((yyvsp[-9].u),TAG(stream_kind,(yyvsp[-6].info)	|b100));}
#line 3299 "parser.c"
    break;

  case 176: /* stream_ins_node: start "stream (definition)" ref ">"  */
#line 823 "parser.y"
{
	#line 6218 "format.w"
	RNG("Stream insertion",(yyvsp[-1].u),0,max_ref[stream_kind]);hput_tags((yyvsp[-3].u),TAG(stream_kind,b100));}
#line 3307 "parser.c"
    break;

  case 179: /* stream: empty_param_list list  */
#line 829 "parser.y"
                            {
	#line 6313 "format.w"
	(yyval.info)= b010;}
#line 3315 "parser.c"
    break;

  case 180: /* stream: empty_param_list non_empty_param_list list  */
#line 832 "parser.y"
                                                   {
	#line 6314 "format.w"
	(yyval.info)= b010;}
#line 3323 "parser.c"
    break;

  case 181: /* stream: param_ref list  */
#line 835 "parser.y"
                       {
	#line 6315 "format.w"
	(yyval.info)= b000;}
#line 3331 "parser.c"
    break;

  case 182: /* content_node: start "stream" stream_ref stream ">"  */
#line 839 "parser.y"
{
	#line 6317 "format.w"
	hput_tags((yyvsp[-4].u),TAG(stream_kind,(yyvsp[-1].info)));}
#line 3339 "parser.c"
    break;

  case 183: /* page_priority: %empty  */
#line 843 "parser.y"
              {
	#line 6420 "format.w"
	HPUT8(1);}
#line 3347 "parser.c"
    break;

  case 184: /* page_priority: UNSIGNED  */
#line 846 "parser.y"
                 {
	#line 6421 "format.w"
	RNG("page priority",(yyvsp[0].u),0,255);HPUT8((yyvsp[0].u));}
#line 3355 "parser.c"
    break;

  case 187: /* $@8: %empty  */
#line 852 "parser.y"
           {
	#line 6425 "format.w"
	hput_string((yyvsp[0].s));}
#line 3363 "parser.c"
    break;

  case 188: /* $@9: %empty  */
#line 854 "parser.y"
                                                          {
	#line 6425 "format.w"
	HPUT32((yyvsp[0].d));}
#line 3371 "parser.c"
    break;

  case 190: /* content_node: "<" "range" REFERENCE "on" ">"  */
#line 861 "parser.y"
                                         {
	#line 6537 "format.w"
	REF(page_kind,(yyvsp[-2].u));hput_range((yyvsp[-2].u),true);}
#line 3379 "parser.c"
    break;

  case 191: /* content_node: "<" "range" REFERENCE "off" ">"  */
#line 864 "parser.y"
                                      {
	#line 6538 "format.w"
	REF(page_kind,(yyvsp[-2].u));hput_range((yyvsp[-2].u),false);}
#line 3387 "parser.c"
    break;

  case 193: /* $@10: %empty  */
#line 870 "parser.y"
                                          {
	#line 7231 "format.w"
	new_directory((yyvsp[0].u)+1);new_output_buffers();}
#line 3395 "parser.c"
    break;

  case 197: /* entry: "<" "entry" UNSIGNED string ">"  */
#line 875 "parser.y"
{
	#line 7234 "format.w"
	RNG("Section number",(yyvsp[-2].u),3,max_section_no);hset_entry(&(dir[(yyvsp[-2].u)]),(yyvsp[-2].u),0,0,(yyvsp[-1].s));}
#line 3403 "parser.c"
    break;

  case 198: /* $@11: %empty  */
#line 879 "parser.y"
                                    {
	#line 7772 "format.w"
	hput_definitions_start();}
#line 3411 "parser.c"
    break;

  case 199: /* definition_section: "<" "definitions" $@11 max_definitions definition_list ">"  */
#line 883 "parser.y"
   {
	#line 7774 "format.w"
	hput_definitions_end();}
#line 3419 "parser.c"
    break;

  case 202: /* max_definitions: "<" "max" max_list ">"  */
#line 889 "parser.y"
{
	#line 7890 "format.w"
		/*253:*/
	if(max_ref[label_kind]>=0)
	ALLOCATE(labels,max_ref[label_kind]+1,Label);
		/*:253*/	/*274:*/
	if(max_outline>=0)
	ALLOCATE(outlines,max_outline+1,Outline);
		/*:274*/	/*301:*/
	ALLOCATE(page_on,max_ref[page_kind]+1,int);
	ALLOCATE(range_pos,2*(max_ref[range_kind]+1),RangePos);
		/*:301*/	/*367:*/
	definition_bits[0][int_kind]= (1<<(MAX_INT_DEFAULT+1))-1;
	definition_bits[0][dimen_kind]= (1<<(MAX_DIMEN_DEFAULT+1))-1;
	definition_bits[0][xdimen_kind]= (1<<(MAX_XDIMEN_DEFAULT+1))-1;
	definition_bits[0][glue_kind]= (1<<(MAX_GLUE_DEFAULT+1))-1;
	definition_bits[0][baseline_kind]= (1<<(MAX_BASELINE_DEFAULT+1))-1;
	definition_bits[0][page_kind]= (1<<(MAX_PAGE_DEFAULT+1))-1;
	definition_bits[0][stream_kind]= (1<<(MAX_STREAM_DEFAULT+1))-1;
	definition_bits[0][range_kind]= (1<<(MAX_RANGE_DEFAULT+1))-1;
		/*:367*/	/*382:*/
	ALLOCATE(hfont_name,max_ref[font_kind]+1,char*);
		/*:382*/hput_max_definitions();}
#line 3447 "parser.c"
    break;

  case 205: /* max_value: "font" UNSIGNED  */
#line 915 "parser.y"
                       {
	#line 7894 "format.w"
	hset_max(font_kind,(yyvsp[0].u));}
#line 3455 "parser.c"
    break;

  case 206: /* max_value: "int" UNSIGNED  */
#line 918 "parser.y"
                         {
	#line 7895 "format.w"
	hset_max(int_kind,(yyvsp[0].u));}
#line 3463 "parser.c"
    break;

  case 207: /* max_value: "dimen" UNSIGNED  */
#line 921 "parser.y"
                       {
	#line 7896 "format.w"
	hset_max(dimen_kind,(yyvsp[0].u));}
#line 3471 "parser.c"
    break;

  case 208: /* max_value: "ligature" UNSIGNED  */
#line 924 "parser.y"
                          {
	#line 7897 "format.w"
	hset_max(ligature_kind,(yyvsp[0].u));}
#line 3479 "parser.c"
    break;

  case 209: /* max_value: "disc" UNSIGNED  */
#line 927 "parser.y"
                      {
	#line 7898 "format.w"
	hset_max(disc_kind,(yyvsp[0].u));}
#line 3487 "parser.c"
    break;

  case 210: /* max_value: "glue" UNSIGNED  */
#line 930 "parser.y"
                      {
	#line 7899 "format.w"
	hset_max(glue_kind,(yyvsp[0].u));}
#line 3495 "parser.c"
    break;

  case 211: /* max_value: "language" UNSIGNED  */
#line 933 "parser.y"
                          {
	#line 7900 "format.w"
	hset_max(language_kind,(yyvsp[0].u));}
#line 3503 "parser.c"
    break;

  case 212: /* max_value: "rule" UNSIGNED  */
#line 936 "parser.y"
                      {
	#line 7901 "format.w"
	hset_max(rule_kind,(yyvsp[0].u));}
#line 3511 "parser.c"
    break;

  case 213: /* max_value: "image" UNSIGNED  */
#line 939 "parser.y"
                       {
	#line 7902 "format.w"
	hset_max(image_kind,(yyvsp[0].u));}
#line 3519 "parser.c"
    break;

  case 214: /* max_value: "leaders" UNSIGNED  */
#line 942 "parser.y"
                         {
	#line 7903 "format.w"
	hset_max(leaders_kind,(yyvsp[0].u));}
#line 3527 "parser.c"
    break;

  case 215: /* max_value: "baseline" UNSIGNED  */
#line 945 "parser.y"
                          {
	#line 7904 "format.w"
	hset_max(baseline_kind,(yyvsp[0].u));}
#line 3535 "parser.c"
    break;

  case 216: /* max_value: "xdimen" UNSIGNED  */
#line 948 "parser.y"
                        {
	#line 7905 "format.w"
	hset_max(xdimen_kind,(yyvsp[0].u));}
#line 3543 "parser.c"
    break;

  case 217: /* max_value: "param" UNSIGNED  */
#line 951 "parser.y"
                       {
	#line 7906 "format.w"
	hset_max(param_kind,(yyvsp[0].u));}
#line 3551 "parser.c"
    break;

  case 218: /* max_value: "stream (definition)" UNSIGNED  */
#line 954 "parser.y"
                           {
	#line 7907 "format.w"
	hset_max(stream_kind,(yyvsp[0].u));}
#line 3559 "parser.c"
    break;

  case 219: /* max_value: "page" UNSIGNED  */
#line 957 "parser.y"
                      {
	#line 7908 "format.w"
	hset_max(page_kind,(yyvsp[0].u));}
#line 3567 "parser.c"
    break;

  case 220: /* max_value: "range" UNSIGNED  */
#line 960 "parser.y"
                       {
	#line 7909 "format.w"
	hset_max(range_kind,(yyvsp[0].u));}
#line 3575 "parser.c"
    break;

  case 221: /* max_value: "label" UNSIGNED  */
#line 963 "parser.y"
                       {
	#line 7910 "format.w"
	hset_max(label_kind,(yyvsp[0].u));}
#line 3583 "parser.c"
    break;

  case 222: /* def_node: start "font" ref font ">"  */
#line 969 "parser.y"
                       {
	#line 8107 "format.w"
	DEF((yyval.rf),font_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),(yyvsp[-1].info));}
#line 3591 "parser.c"
    break;

  case 223: /* def_node: start "int" ref integer ">"  */
#line 972 "parser.y"
                                      {
	#line 8108 "format.w"
	DEF((yyval.rf),int_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),hput_int((yyvsp[-1].i)));}
#line 3599 "parser.c"
    break;

  case 224: /* def_node: start "dimen" ref dimension ">"  */
#line 975 "parser.y"
                                      {
	#line 8109 "format.w"
	DEF((yyval.rf),dimen_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),hput_dimen((yyvsp[-1].d)));}
#line 3607 "parser.c"
    break;

  case 225: /* def_node: start "language" ref string ">"  */
#line 978 "parser.y"
                                      {
	#line 8110 "format.w"
	DEF((yyval.rf),language_kind,(yyvsp[-2].u));hput_string((yyvsp[-1].s));hput_tags((yyvsp[-4].u),TAG(language_kind,0));}
#line 3615 "parser.c"
    break;

  case 226: /* def_node: start "glue" ref glue ">"  */
#line 981 "parser.y"
                                {
	#line 8111 "format.w"
	DEF((yyval.rf),glue_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),hput_glue(&((yyvsp[-1].g))));}
#line 3623 "parser.c"
    break;

  case 227: /* def_node: start "xdimen" ref xdimen ">"  */
#line 984 "parser.y"
                                    {
	#line 8112 "format.w"
	DEF((yyval.rf),xdimen_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),hput_xdimen(&((yyvsp[-1].xd))));}
#line 3631 "parser.c"
    break;

  case 228: /* def_node: start "rule" ref rule ">"  */
#line 987 "parser.y"
                                {
	#line 8113 "format.w"
	DEF((yyval.rf),rule_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),hput_rule(&((yyvsp[-1].r))));}
#line 3639 "parser.c"
    break;

  case 229: /* def_node: start "leaders" ref leaders ">"  */
#line 990 "parser.y"
                                      {
	#line 8114 "format.w"
	DEF((yyval.rf),leaders_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),TAG(leaders_kind,(yyvsp[-1].info)));}
#line 3647 "parser.c"
    break;

  case 230: /* def_node: start "baseline" ref baseline ">"  */
#line 993 "parser.y"
                                        {
	#line 8115 "format.w"
	DEF((yyval.rf),baseline_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),TAG(baseline_kind,(yyvsp[-1].info)));}
#line 3655 "parser.c"
    break;

  case 231: /* def_node: start "ligature" ref ligature ">"  */
#line 996 "parser.y"
                                        {
	#line 8116 "format.w"
	DEF((yyval.rf),ligature_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),hput_ligature(&((yyvsp[-1].lg))));}
#line 3663 "parser.c"
    break;

  case 232: /* def_node: start "disc" ref disc ">"  */
#line 999 "parser.y"
                                {
	#line 8117 "format.w"
	DEF((yyval.rf),disc_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),hput_disc(&((yyvsp[-1].dc))));}
#line 3671 "parser.c"
    break;

  case 233: /* def_node: start "image" ref image ">"  */
#line 1002 "parser.y"
                                  {
	#line 8118 "format.w"
	DEF((yyval.rf),image_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),TAG(image_kind,(yyvsp[-1].info)));}
#line 3679 "parser.c"
    break;

  case 234: /* def_node: start "param" ref parameters ">"  */
#line 1005 "parser.y"
                                       {
	#line 8119 "format.w"
	DEF((yyval.rf),param_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),hput_list((yyvsp[-4].u)+2,&((yyvsp[-1].l))));}
#line 3687 "parser.c"
    break;

  case 235: /* def_node: start "page" ref page ">"  */
#line 1008 "parser.y"
                                {
	#line 8120 "format.w"
	DEF((yyval.rf),page_kind,(yyvsp[-2].u));hput_tags((yyvsp[-4].u),TAG(page_kind,0));}
#line 3695 "parser.c"
    break;

  case 236: /* def_node: start "int" ref ref ">"  */
#line 1013 "parser.y"
                         {
	#line 8139 "format.w"
	DEF_REF((yyval.rf),int_kind,(yyvsp[-2].u),(yyvsp[-1].u));hput_tags((yyvsp[-4].u),TAG(int_kind,0));}
#line 3703 "parser.c"
    break;

  case 237: /* def_node: start "dimen" ref ref ">"  */
#line 1016 "parser.y"
                                {
	#line 8140 "format.w"
	DEF_REF((yyval.rf),dimen_kind,(yyvsp[-2].u),(yyvsp[-1].u));hput_tags((yyvsp[-4].u),TAG(dimen_kind,0));}
#line 3711 "parser.c"
    break;

  case 238: /* def_node: start "glue" ref ref ">"  */
#line 1019 "parser.y"
                               {
	#line 8141 "format.w"
	DEF_REF((yyval.rf),glue_kind,(yyvsp[-2].u),(yyvsp[-1].u));hput_tags((yyvsp[-4].u),TAG(glue_kind,0));}
#line 3719 "parser.c"
    break;

  case 240: /* def_list: def_list def_node  */
#line 1024 "parser.y"
                          {
	#line 8255 "format.w"
	check_param_def(&((yyvsp[0].rf)));}
#line 3727 "parser.c"
    break;

  case 241: /* parameters: estimate def_list  */
#line 1027 "parser.y"
                            {
	#line 8256 "format.w"
	(yyval.l).p= (yyvsp[0].u);(yyval.l).k= param_kind;(yyval.l).s= (hpos-hstart)-(yyvsp[0].u);}
#line 3735 "parser.c"
    break;

  case 242: /* empty_param_list: position  */
#line 1031 "parser.y"
                         {
	#line 8277 "format.w"
	HPUTX(2);hpos++;hput_tags((yyvsp[0].u),TAG(param_kind,1));}
#line 3743 "parser.c"
    break;

  case 243: /* $@12: %empty  */
#line 1034 "parser.y"
                                {
	#line 8278 "format.w"
	hpos= hpos-2;}
#line 3751 "parser.c"
    break;

  case 244: /* non_empty_param_list: start "param" $@12 parameters ">"  */
#line 1037 "parser.y"
{
	#line 8279 "format.w"
	hput_tags((yyvsp[-4].u)-2,hput_list((yyvsp[-4].u)-1,&((yyvsp[-1].l))));}
#line 3759 "parser.c"
    break;

  case 246: /* font_head: string dimension UNSIGNED UNSIGNED  */
#line 1045 "parser.y"
{
	#line 8421 "format.w"
	uint8_t f= (yyvsp[-4].u);SET_DBIT(f,font_kind);hfont_name[f]= strdup((yyvsp[-3].s));(yyval.info)= hput_font_head(f,hfont_name[f],(yyvsp[-2].d),(yyvsp[-1].u),(yyvsp[0].u));}
#line 3767 "parser.c"
    break;

  case 249: /* font_param: start "penalty" fref penalty ">"  */
#line 1052 "parser.y"
                              {
	#line 8426 "format.w"
	hput_tags((yyvsp[-4].u),hput_int((yyvsp[-1].i)));}
#line 3775 "parser.c"
    break;

  case 250: /* font_param: start "kern" fref kern ">"  */
#line 1055 "parser.y"
                                 {
	#line 8427 "format.w"
	hput_tags((yyvsp[-4].u),hput_kern(&((yyvsp[-1].kt))));}
#line 3783 "parser.c"
    break;

  case 251: /* font_param: start "ligature" fref ligature ">"  */
#line 1058 "parser.y"
                                         {
	#line 8428 "format.w"
	hput_tags((yyvsp[-4].u),hput_ligature(&((yyvsp[-1].lg))));}
#line 3791 "parser.c"
    break;

  case 252: /* font_param: start "disc" fref disc ">"  */
#line 1061 "parser.y"
                                 {
	#line 8429 "format.w"
	hput_tags((yyvsp[-4].u),hput_disc(&((yyvsp[-1].dc))));}
#line 3799 "parser.c"
    break;

  case 253: /* font_param: start "glue" fref glue ">"  */
#line 1064 "parser.y"
                                 {
	#line 8430 "format.w"
	hput_tags((yyvsp[-4].u),hput_glue(&((yyvsp[-1].g))));}
#line 3807 "parser.c"
    break;

  case 254: /* font_param: start "language" fref string ">"  */
#line 1067 "parser.y"
                                       {
	#line 8431 "format.w"
	hput_string((yyvsp[-1].s));hput_tags((yyvsp[-4].u),TAG(language_kind,0));}
#line 3815 "parser.c"
    break;

  case 255: /* font_param: start "rule" fref rule ">"  */
#line 1070 "parser.y"
                                 {
	#line 8432 "format.w"
	hput_tags((yyvsp[-4].u),hput_rule(&((yyvsp[-1].r))));}
#line 3823 "parser.c"
    break;

  case 256: /* font_param: start "image" fref image ">"  */
#line 1073 "parser.y"
                                   {
	#line 8433 "format.w"
	hput_tags((yyvsp[-4].u),TAG(image_kind,(yyvsp[-1].info)));}
#line 3831 "parser.c"
    break;

  case 257: /* fref: ref  */
#line 1077 "parser.y"
        {
	#line 8435 "format.w"
	RNG("Font parameter",(yyvsp[0].u),0,MAX_FONT_PARAMS);}
#line 3839 "parser.c"
    break;

  case 258: /* xdimen_ref: ref  */
#line 1081 "parser.y"
              {
	#line 8508 "format.w"
	REF(xdimen_kind,(yyvsp[0].u));}
#line 3847 "parser.c"
    break;

  case 259: /* param_ref: ref  */
#line 1084 "parser.y"
             {
	#line 8509 "format.w"
	REF(param_kind,(yyvsp[0].u));}
#line 3855 "parser.c"
    break;

  case 260: /* stream_ref: ref  */
#line 1087 "parser.y"
              {
	#line 8510 "format.w"
	REF_RNG(stream_kind,(yyvsp[0].u));}
#line 3863 "parser.c"
    break;

  case 261: /* content_node: start "penalty" ref ">"  */
#line 1093 "parser.y"
                     {
	#line 8514 "format.w"
	REF(penalty_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),TAG(penalty_kind,0));}
#line 3871 "parser.c"
    break;

  case 262: /* content_node: start "kern" explicit ref ">"  */
#line 1097 "parser.y"
{
	#line 8516 "format.w"
	REF(dimen_kind,(yyvsp[-1].u));hput_tags((yyvsp[-4].u),TAG(kern_kind,((yyvsp[-2].b))?b100:b000));}
#line 3879 "parser.c"
    break;

  case 263: /* content_node: start "kern" explicit "xdimen" ref ">"  */
#line 1101 "parser.y"
{
	#line 8518 "format.w"
	REF(xdimen_kind,(yyvsp[-1].u));hput_tags((yyvsp[-5].u),TAG(kern_kind,((yyvsp[-3].b))?b101:b001));}
#line 3887 "parser.c"
    break;

  case 264: /* content_node: start "glue" ref ">"  */
#line 1104 "parser.y"
                           {
	#line 8519 "format.w"
	REF(glue_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),TAG(glue_kind,0));}
#line 3895 "parser.c"
    break;

  case 265: /* content_node: start "ligature" ref ">"  */
#line 1107 "parser.y"
                               {
	#line 8520 "format.w"
	REF(ligature_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),TAG(ligature_kind,0));}
#line 3903 "parser.c"
    break;

  case 266: /* content_node: start "disc" ref ">"  */
#line 1110 "parser.y"
                           {
	#line 8521 "format.w"
	REF(disc_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),TAG(disc_kind,0));}
#line 3911 "parser.c"
    break;

  case 267: /* content_node: start "rule" ref ">"  */
#line 1113 "parser.y"
                           {
	#line 8522 "format.w"
	REF(rule_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),TAG(rule_kind,0));}
#line 3919 "parser.c"
    break;

  case 268: /* content_node: start "image" ref ">"  */
#line 1116 "parser.y"
                            {
	#line 8523 "format.w"
	REF(image_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),TAG(image_kind,0));}
#line 3927 "parser.c"
    break;

  case 269: /* content_node: start "leaders" ref ">"  */
#line 1119 "parser.y"
                              {
	#line 8524 "format.w"
	REF(leaders_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),TAG(leaders_kind,0));}
#line 3935 "parser.c"
    break;

  case 270: /* content_node: start "baseline" ref ">"  */
#line 1122 "parser.y"
                               {
	#line 8525 "format.w"
	REF(baseline_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),TAG(baseline_kind,0));}
#line 3943 "parser.c"
    break;

  case 271: /* content_node: start "language" REFERENCE ">"  */
#line 1125 "parser.y"
                                     {
	#line 8526 "format.w"
	REF(language_kind,(yyvsp[-1].u));hput_tags((yyvsp[-3].u),hput_language((yyvsp[-1].u)));}
#line 3951 "parser.c"
    break;

  case 272: /* glue_node: start "glue" ref ">"  */
#line 1129 "parser.y"
                            {
	#line 8528 "format.w"
	REF(glue_kind,(yyvsp[-1].u));
	if((yyvsp[-1].u)==zero_skip_no){hpos= hpos-2;(yyval.b)= false;}
	else{hput_tags((yyvsp[-3].u),TAG(glue_kind,0));(yyval.b)= true;}}
#line 3961 "parser.c"
    break;

  case 273: /* $@13: %empty  */
#line 1136 "parser.y"
                             {
	#line 8959 "format.w"
	hput_content_start();}
#line 3969 "parser.c"
    break;

  case 274: /* content_section: "<" "content" $@13 content_list ">"  */
#line 1139 "parser.y"
{
	#line 8960 "format.w"
	hput_content_end();hput_range_defs();hput_label_defs();}
#line 3977 "parser.c"
    break;


#line 3981 "parser.c"

      default: break;
    }
  /* User semantic actions sometimes alter yychar, and that requires
     that yytoken be updated with the new translation.  We take the
     approach of translating immediately before every use of yytoken.
     One alternative is translating here after every semantic action,
     but that translation would be missed if the semantic action invokes
     YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
     if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
     incorrect destructor might then be invoked immediately.  In the
     case of YYERROR or YYBACKUP, subsequent parser actions might lead
     to an incorrect destructor call or verbose syntax error message
     before the lookahead is translated.  */
  YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc);

  YYPOPSTACK (yylen);
  yylen = 0;

  *++yyvsp = yyval;

  /* Now 'shift' the result of the reduction.  Determine what state
     that goes to, based on the state we popped back to and the rule
     number reduced by.  */
  {
    const int yylhs = yyr1[yyn] - YYNTOKENS;
    const int yyi = yypgoto[yylhs] + *yyssp;
    yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
               ? yytable[yyi]
               : yydefgoto[yylhs]);
  }

  goto yynewstate;


/*--------------------------------------.
| yyerrlab -- here on detecting error.  |
`--------------------------------------*/
yyerrlab:
  /* Make sure we have latest lookahead translation.  See comments at
     user semantic actions for why this is necessary.  */
  yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar);
  /* If not already recovering from an error, report this error.  */
  if (!yyerrstatus)
    {
      ++yynerrs;
      {
        yypcontext_t yyctx
          = {yyssp, yytoken};
        char const *yymsgp = YY_("syntax error");
        int yysyntax_error_status;
        yysyntax_error_status = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx);
        if (yysyntax_error_status == 0)
          yymsgp = yymsg;
        else if (yysyntax_error_status == -1)
          {
            if (yymsg != yymsgbuf)
              YYSTACK_FREE (yymsg);
            yymsg = YY_CAST (char *,
                             YYSTACK_ALLOC (YY_CAST (YYSIZE_T, yymsg_alloc)));
            if (yymsg)
              {
                yysyntax_error_status
                  = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx);
                yymsgp = yymsg;
              }
            else
              {
                yymsg = yymsgbuf;
                yymsg_alloc = sizeof yymsgbuf;
                yysyntax_error_status = YYENOMEM;
              }
          }
        yyerror (yymsgp);
        if (yysyntax_error_status == YYENOMEM)
          YYNOMEM;
      }
    }

  if (yyerrstatus == 3)
    {
      /* If just tried and failed to reuse lookahead token after an
         error, discard it.  */

      if (yychar <= YYEOF)
        {
          /* Return failure if at end of input.  */
          if (yychar == YYEOF)
            YYABORT;
        }
      else
        {
          yydestruct ("Error: discarding",
                      yytoken, &yylval);
          yychar = YYEMPTY;
        }
    }

  /* Else will try to reuse lookahead token after shifting the error
     token.  */
  goto yyerrlab1;


/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR.  |
`---------------------------------------------------*/
yyerrorlab:
  /* Pacify compilers when the user code never invokes YYERROR and the
     label yyerrorlab therefore never appears in user code.  */
  if (0)
    YYERROR;
  ++yynerrs;

  /* Do not reclaim the symbols of the rule whose action triggered
     this YYERROR.  */
  YYPOPSTACK (yylen);
  yylen = 0;
  YY_STACK_PRINT (yyss, yyssp);
  yystate = *yyssp;
  goto yyerrlab1;


/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR.  |
`-------------------------------------------------------------*/
yyerrlab1:
  yyerrstatus = 3;      /* Each real token shifted decrements this.  */

  /* Pop stack until we find a state that shifts the error token.  */
  for (;;)
    {
      yyn = yypact[yystate];
      if (!yypact_value_is_default (yyn))
        {
          yyn += YYSYMBOL_YYerror;
          if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror)
            {
              yyn = yytable[yyn];
              if (0 < yyn)
                break;
            }
        }

      /* Pop the current state because it cannot handle the error token.  */
      if (yyssp == yyss)
        YYABORT;


      yydestruct ("Error: popping",
                  YY_ACCESSING_SYMBOL (yystate), yyvsp);
      YYPOPSTACK (1);
      yystate = *yyssp;
      YY_STACK_PRINT (yyss, yyssp);
    }

  YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  *++yyvsp = yylval;
  YY_IGNORE_MAYBE_UNINITIALIZED_END


  /* Shift the error token.  */
  YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp);

  yystate = yyn;
  goto yynewstate;


/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here.  |
`-------------------------------------*/
yyacceptlab:
  yyresult = 0;
  goto yyreturnlab;


/*-----------------------------------.
| yyabortlab -- YYABORT comes here.  |
`-----------------------------------*/
yyabortlab:
  yyresult = 1;
  goto yyreturnlab;


/*-----------------------------------------------------------.
| yyexhaustedlab -- YYNOMEM (memory exhaustion) comes here.  |
`-----------------------------------------------------------*/
yyexhaustedlab:
  yyerror (YY_("memory exhausted"));
  yyresult = 2;
  goto yyreturnlab;


/*----------------------------------------------------------.
| yyreturnlab -- parsing is finished, clean up and return.  |
`----------------------------------------------------------*/
yyreturnlab:
  if (yychar != YYEMPTY)
    {
      /* Make sure we have latest lookahead translation.  See comments at
         user semantic actions for why this is necessary.  */
      yytoken = YYTRANSLATE (yychar);
      yydestruct ("Cleanup: discarding lookahead",
                  yytoken, &yylval);
    }
  /* Do not reclaim the symbols of the rule whose action triggered
     this YYABORT or YYACCEPT.  */
  YYPOPSTACK (yylen);
  YY_STACK_PRINT (yyss, yyssp);
  while (yyssp != yyss)
    {
      yydestruct ("Cleanup: popping",
                  YY_ACCESSING_SYMBOL (+*yyssp), yyvsp);
      YYPOPSTACK (1);
    }
#ifndef yyoverflow
  if (yyss != yyssa)
    YYSTACK_FREE (yyss);
#endif
  if (yymsg != yymsgbuf)
    YYSTACK_FREE (yymsg);
  return yyresult;
}

#line 1143 "parser.y"

	/*:520*/