File: markdown_parser.c

package info (click to toggle)
geany-plugins 2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,832 kB
  • sloc: ansic: 107,883; sh: 5,567; makefile: 1,531; sed: 16
file content (6715 lines) | stat: -rw-r--r-- 342,730 bytes parent folder | download | duplicates (9)
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
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
/* A recursive-descent parser generated by peg 0.1.9 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define YYRULECOUNT 240

/**********************************************************************

  markdown_parser.leg - markdown parser in C using a PEG grammar.
  (c) 2008 John MacFarlane (jgm at berkeley dot edu).

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License or the MIT
  license.  See LICENSE for details.

  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.

 ***********************************************************************/

#include <stdbool.h>
#include <assert.h>
#include "markdown_peg.h"
#include "utility_functions.h"



/**********************************************************************

  Definitions for leg parser generator.
  YY_INPUT is the function the parser calls to get new input.
  We take all new input from (static) charbuf.

 ***********************************************************************/



# define YYSTYPE element *
#ifdef __DEBUG__
# define YY_DEBUG 1
#endif

#define YY_INPUT(buf, result, max_size)              \
{                                                    \
    int yyc;                                         \
    if (charbuf && *charbuf != '\0') {               \
        yyc= *charbuf++;                             \
    } else {                                         \
        yyc= EOF;                                    \
    }                                                \
    result= (EOF == yyc) ? 0 : (*(buf)= yyc, 1);     \
}

#define YY_RULE(T)	T


/**********************************************************************

  PEG grammar and parser actions for markdown syntax.

 ***********************************************************************/


#ifndef YY_LOCAL
#define YY_LOCAL(T)	static T
#endif
#ifndef YY_ACTION
#define YY_ACTION(T)	static T
#endif
#ifndef YY_RULE
#define YY_RULE(T)	static T
#endif
#ifndef YY_PARSE
#define YY_PARSE(T)	T
#endif
#ifndef YYPARSE
#define YYPARSE		yyparse
#endif
#ifndef YYPARSEFROM
#define YYPARSEFROM	yyparsefrom
#endif
#ifndef YY_INPUT
#define YY_INPUT(buf, result, max_size)			\
  {							\
    int yyc= getchar();					\
    result= (EOF == yyc) ? 0 : (*(buf)= yyc, 1);	\
    yyprintf((stderr, "<%c>", yyc));			\
  }
#endif
#ifndef YY_BEGIN
#define YY_BEGIN	( ctx->begin= ctx->pos, 1)
#endif
#ifndef YY_END
#define YY_END		( ctx->end= ctx->pos, 1)
#endif
#ifdef YY_DEBUG
# define yyprintf(args)	fprintf args
#else
# define yyprintf(args)
#endif
#ifndef YYSTYPE
#define YYSTYPE	int
#endif

#ifndef YY_PART

typedef struct _yycontext yycontext;
typedef void (*yyaction)(yycontext *ctx, char *yytext, int yyleng);
typedef struct _yythunk { int begin, end;  yyaction  action;  struct _yythunk *next; } yythunk;

struct _yycontext {
  char     *buf;
  int       buflen;
  int       pos;
  int       limit;
  char     *text;
  int       textlen;
  int       begin;
  int       end;
  int       textmax;
  yythunk  *thunks;
  int       thunkslen;
  int       thunkpos;
  YYSTYPE   yy;
  YYSTYPE  *val;
  YYSTYPE  *vals;
  int       valslen;
#ifdef YY_CTX_MEMBERS
  YY_CTX_MEMBERS
#endif
};

#ifdef YY_CTX_LOCAL
#define YY_CTX_PARAM_	yycontext *yyctx,
#define YY_CTX_PARAM	yycontext *yyctx
#define YY_CTX_ARG_	yyctx,
#define YY_CTX_ARG	yyctx
#else
#define YY_CTX_PARAM_
#define YY_CTX_PARAM
#define YY_CTX_ARG_
#define YY_CTX_ARG
yycontext yyctx0;
yycontext *yyctx= &yyctx0;
#endif

YY_LOCAL(int) yyrefill(yycontext *ctx)
{
  int yyn;
  while (ctx->buflen - ctx->pos < 512)
    {
      ctx->buflen *= 2;
      ctx->buf= (char *)realloc(ctx->buf, ctx->buflen);
    }
  YY_INPUT((ctx->buf + ctx->pos), yyn, (ctx->buflen - ctx->pos));
  if (!yyn) return 0;
  ctx->limit += yyn;
  return 1;
}

YY_LOCAL(int) yymatchDot(yycontext *ctx)
{
  if (ctx->pos >= ctx->limit && !yyrefill(ctx)) return 0;
  ++ctx->pos;
  return 1;
}

YY_LOCAL(int) yymatchChar(yycontext *ctx, int c)
{
  if (ctx->pos >= ctx->limit && !yyrefill(ctx)) return 0;
  if ((unsigned char)ctx->buf[ctx->pos] == c)
    {
      ++ctx->pos;
      yyprintf((stderr, "  ok   yymatchChar(ctx, %c) @ %s\n", c, ctx->buf+ctx->pos));
      return 1;
    }
  yyprintf((stderr, "  fail yymatchChar(ctx, %c) @ %s\n", c, ctx->buf+ctx->pos));
  return 0;
}

YY_LOCAL(int) yymatchString(yycontext *ctx, char *s)
{
  int yysav= ctx->pos;
  while (*s)
    {
      if (ctx->pos >= ctx->limit && !yyrefill(ctx)) return 0;
      if (ctx->buf[ctx->pos] != *s)
        {
          ctx->pos= yysav;
          return 0;
        }
      ++s;
      ++ctx->pos;
    }
  return 1;
}

YY_LOCAL(int) yymatchClass(yycontext *ctx, unsigned char *bits)
{
  int c;
  if (ctx->pos >= ctx->limit && !yyrefill(ctx)) return 0;
  c= (unsigned char)ctx->buf[ctx->pos];
  if (bits[c >> 3] & (1 << (c & 7)))
    {
      ++ctx->pos;
      yyprintf((stderr, "  ok   yymatchClass @ %s\n", ctx->buf+ctx->pos));
      return 1;
    }
  yyprintf((stderr, "  fail yymatchClass @ %s\n", ctx->buf+ctx->pos));
  return 0;
}

YY_LOCAL(void) yyDo(yycontext *ctx, yyaction action, int begin, int end)
{
  while (ctx->thunkpos >= ctx->thunkslen)
    {
      ctx->thunkslen *= 2;
      ctx->thunks= (yythunk *)realloc(ctx->thunks, sizeof(yythunk) * ctx->thunkslen);
    }
  ctx->thunks[ctx->thunkpos].begin=  begin;
  ctx->thunks[ctx->thunkpos].end=    end;
  ctx->thunks[ctx->thunkpos].action= action;
  ++ctx->thunkpos;
}

YY_LOCAL(int) yyText(yycontext *ctx, int begin, int end)
{
  int yyleng= end - begin;
  if (yyleng <= 0)
    yyleng= 0;
  else
    {
      while (ctx->textlen < (yyleng + 1))
	{
	  ctx->textlen *= 2;
	  ctx->text= (char *)realloc(ctx->text, ctx->textlen);
	}
      memcpy(ctx->text, ctx->buf + begin, yyleng);
    }
  ctx->text[yyleng]= '\0';
  return yyleng;
}

YY_LOCAL(void) yyDone(yycontext *ctx)
{
  int pos;
  for (pos= 0;  pos < ctx->thunkpos;  ++pos)
    {
      yythunk *thunk= &ctx->thunks[pos];
      int yyleng= thunk->end ? yyText(ctx, thunk->begin, thunk->end) : thunk->begin;
      yyprintf((stderr, "DO [%d] %p %s\n", pos, thunk->action, ctx->text));
      thunk->action(ctx, ctx->text, yyleng);
    }
  ctx->thunkpos= 0;
}

YY_LOCAL(void) yyCommit(yycontext *ctx)
{
  if ((ctx->limit -= ctx->pos))
    {
      memmove(ctx->buf, ctx->buf + ctx->pos, ctx->limit);
    }
  ctx->begin -= ctx->pos;
  ctx->end -= ctx->pos;
  ctx->pos= ctx->thunkpos= 0;
}

YY_LOCAL(int) yyAccept(yycontext *ctx, int tp0)
{
  if (tp0)
    {
      fprintf(stderr, "accept denied at %d\n", tp0);
      return 0;
    }
  else
    {
      yyDone(ctx);
      yyCommit(ctx);
    }
  return 1;
}

YY_LOCAL(void) yyPush(yycontext *ctx, char *text, int count)  { ctx->val += count; }
YY_LOCAL(void) yyPop(yycontext *ctx, char *text, int count)   { ctx->val -= count; }
YY_LOCAL(void) yySet(yycontext *ctx, char *text, int count)   { ctx->val[count]= ctx->yy; }

#endif /* YY_PART */

#define	YYACCEPT	yyAccept(ctx, yythunkpos0)

YY_RULE(int) yy_Notes(yycontext *ctx); /* 240 */
YY_RULE(int) yy_RawNoteBlock(yycontext *ctx); /* 239 */
YY_RULE(int) yy_RawNoteReference(yycontext *ctx); /* 238 */
YY_RULE(int) yy_DoubleQuoteEnd(yycontext *ctx); /* 237 */
YY_RULE(int) yy_DoubleQuoteStart(yycontext *ctx); /* 236 */
YY_RULE(int) yy_SingleQuoteEnd(yycontext *ctx); /* 235 */
YY_RULE(int) yy_SingleQuoteStart(yycontext *ctx); /* 234 */
YY_RULE(int) yy_EnDash(yycontext *ctx); /* 233 */
YY_RULE(int) yy_EmDash(yycontext *ctx); /* 232 */
YY_RULE(int) yy_Apostrophe(yycontext *ctx); /* 231 */
YY_RULE(int) yy_DoubleQuoted(yycontext *ctx); /* 230 */
YY_RULE(int) yy_SingleQuoted(yycontext *ctx); /* 229 */
YY_RULE(int) yy_Dash(yycontext *ctx); /* 228 */
YY_RULE(int) yy_Ellipsis(yycontext *ctx); /* 227 */
YY_RULE(int) yy_Digit(yycontext *ctx); /* 226 */
YY_RULE(int) yy_ExtendedSpecialChar(yycontext *ctx); /* 225 */
YY_RULE(int) yy_AlphanumericAscii(yycontext *ctx); /* 224 */
YY_RULE(int) yy_Quoted(yycontext *ctx); /* 223 */
YY_RULE(int) yy_HtmlTag(yycontext *ctx); /* 222 */
YY_RULE(int) yy_Ticks5(yycontext *ctx); /* 221 */
YY_RULE(int) yy_Ticks4(yycontext *ctx); /* 220 */
YY_RULE(int) yy_Ticks3(yycontext *ctx); /* 219 */
YY_RULE(int) yy_Ticks2(yycontext *ctx); /* 218 */
YY_RULE(int) yy_Ticks1(yycontext *ctx); /* 217 */
YY_RULE(int) yy_SkipBlock(yycontext *ctx); /* 216 */
YY_RULE(int) yy_References(yycontext *ctx); /* 215 */
YY_RULE(int) yy_EmptyTitle(yycontext *ctx); /* 214 */
YY_RULE(int) yy_RefTitleParens(yycontext *ctx); /* 213 */
YY_RULE(int) yy_RefTitleDouble(yycontext *ctx); /* 212 */
YY_RULE(int) yy_RefTitleSingle(yycontext *ctx); /* 211 */
YY_RULE(int) yy_RefTitle(yycontext *ctx); /* 210 */
YY_RULE(int) yy_RefSrc(yycontext *ctx); /* 209 */
YY_RULE(int) yy_AutoLinkEmail(yycontext *ctx); /* 208 */
YY_RULE(int) yy_AutoLinkUrl(yycontext *ctx); /* 207 */
YY_RULE(int) yy_TitleDouble(yycontext *ctx); /* 206 */
YY_RULE(int) yy_TitleSingle(yycontext *ctx); /* 205 */
YY_RULE(int) yy_Nonspacechar(yycontext *ctx); /* 204 */
YY_RULE(int) yy_SourceContents(yycontext *ctx); /* 203 */
YY_RULE(int) yy_Title(yycontext *ctx); /* 202 */
YY_RULE(int) yy_Source(yycontext *ctx); /* 201 */
YY_RULE(int) yy_Label(yycontext *ctx); /* 200 */
YY_RULE(int) yy_ReferenceLinkSingle(yycontext *ctx); /* 199 */
YY_RULE(int) yy_ReferenceLinkDouble(yycontext *ctx); /* 198 */
YY_RULE(int) yy_AutoLink(yycontext *ctx); /* 197 */
YY_RULE(int) yy_ReferenceLink(yycontext *ctx); /* 196 */
YY_RULE(int) yy_ExplicitLink(yycontext *ctx); /* 195 */
YY_RULE(int) yy_StrongUl(yycontext *ctx); /* 194 */
YY_RULE(int) yy_StrongStar(yycontext *ctx); /* 193 */
YY_RULE(int) yy_Whitespace(yycontext *ctx); /* 192 */
YY_RULE(int) yy_EmphUl(yycontext *ctx); /* 191 */
YY_RULE(int) yy_EmphStar(yycontext *ctx); /* 190 */
YY_RULE(int) yy_StarLine(yycontext *ctx); /* 189 */
YY_RULE(int) yy_UlLine(yycontext *ctx); /* 188 */
YY_RULE(int) yy_SpecialChar(yycontext *ctx); /* 187 */
YY_RULE(int) yy_Eof(yycontext *ctx); /* 186 */
YY_RULE(int) yy_NormalEndline(yycontext *ctx); /* 185 */
YY_RULE(int) yy_TerminalEndline(yycontext *ctx); /* 184 */
YY_RULE(int) yy_LineBreak(yycontext *ctx); /* 183 */
YY_RULE(int) yy_CharEntity(yycontext *ctx); /* 182 */
YY_RULE(int) yy_DecEntity(yycontext *ctx); /* 181 */
YY_RULE(int) yy_HexEntity(yycontext *ctx); /* 180 */
YY_RULE(int) yy_AposChunk(yycontext *ctx); /* 179 */
YY_RULE(int) yy_Alphanumeric(yycontext *ctx); /* 178 */
YY_RULE(int) yy_StrChunk(yycontext *ctx); /* 177 */
YY_RULE(int) yy_NormalChar(yycontext *ctx); /* 176 */
YY_RULE(int) yy_Symbol(yycontext *ctx); /* 175 */
YY_RULE(int) yy_Smart(yycontext *ctx); /* 174 */
YY_RULE(int) yy_EscapedChar(yycontext *ctx); /* 173 */
YY_RULE(int) yy_Entity(yycontext *ctx); /* 172 */
YY_RULE(int) yy_RawHtml(yycontext *ctx); /* 171 */
YY_RULE(int) yy_Code(yycontext *ctx); /* 170 */
YY_RULE(int) yy_InlineNote(yycontext *ctx); /* 169 */
YY_RULE(int) yy_NoteReference(yycontext *ctx); /* 168 */
YY_RULE(int) yy_Link(yycontext *ctx); /* 167 */
YY_RULE(int) yy_Image(yycontext *ctx); /* 166 */
YY_RULE(int) yy_Emph(yycontext *ctx); /* 165 */
YY_RULE(int) yy_Strong(yycontext *ctx); /* 164 */
YY_RULE(int) yy_Space(yycontext *ctx); /* 163 */
YY_RULE(int) yy_UlOrStarLine(yycontext *ctx); /* 162 */
YY_RULE(int) yy_Str(yycontext *ctx); /* 161 */
YY_RULE(int) yy_InStyleTags(yycontext *ctx); /* 160 */
YY_RULE(int) yy_StyleClose(yycontext *ctx); /* 159 */
YY_RULE(int) yy_StyleOpen(yycontext *ctx); /* 158 */
YY_RULE(int) yy_HtmlBlockType(yycontext *ctx); /* 157 */
YY_RULE(int) yy_HtmlBlockSelfClosing(yycontext *ctx); /* 156 */
YY_RULE(int) yy_HtmlComment(yycontext *ctx); /* 155 */
YY_RULE(int) yy_HtmlBlockInTags(yycontext *ctx); /* 154 */
YY_RULE(int) yy_HtmlBlockHead(yycontext *ctx); /* 153 */
YY_RULE(int) yy_HtmlBlockCloseHead(yycontext *ctx); /* 152 */
YY_RULE(int) yy_HtmlBlockOpenHead(yycontext *ctx); /* 151 */
YY_RULE(int) yy_HtmlBlockScript(yycontext *ctx); /* 150 */
YY_RULE(int) yy_HtmlBlockCloseScript(yycontext *ctx); /* 149 */
YY_RULE(int) yy_HtmlBlockOpenScript(yycontext *ctx); /* 148 */
YY_RULE(int) yy_HtmlBlockTr(yycontext *ctx); /* 147 */
YY_RULE(int) yy_HtmlBlockCloseTr(yycontext *ctx); /* 146 */
YY_RULE(int) yy_HtmlBlockOpenTr(yycontext *ctx); /* 145 */
YY_RULE(int) yy_HtmlBlockThead(yycontext *ctx); /* 144 */
YY_RULE(int) yy_HtmlBlockCloseThead(yycontext *ctx); /* 143 */
YY_RULE(int) yy_HtmlBlockOpenThead(yycontext *ctx); /* 142 */
YY_RULE(int) yy_HtmlBlockTh(yycontext *ctx); /* 141 */
YY_RULE(int) yy_HtmlBlockCloseTh(yycontext *ctx); /* 140 */
YY_RULE(int) yy_HtmlBlockOpenTh(yycontext *ctx); /* 139 */
YY_RULE(int) yy_HtmlBlockTfoot(yycontext *ctx); /* 138 */
YY_RULE(int) yy_HtmlBlockCloseTfoot(yycontext *ctx); /* 137 */
YY_RULE(int) yy_HtmlBlockOpenTfoot(yycontext *ctx); /* 136 */
YY_RULE(int) yy_HtmlBlockTd(yycontext *ctx); /* 135 */
YY_RULE(int) yy_HtmlBlockCloseTd(yycontext *ctx); /* 134 */
YY_RULE(int) yy_HtmlBlockOpenTd(yycontext *ctx); /* 133 */
YY_RULE(int) yy_HtmlBlockTbody(yycontext *ctx); /* 132 */
YY_RULE(int) yy_HtmlBlockCloseTbody(yycontext *ctx); /* 131 */
YY_RULE(int) yy_HtmlBlockOpenTbody(yycontext *ctx); /* 130 */
YY_RULE(int) yy_HtmlBlockLi(yycontext *ctx); /* 129 */
YY_RULE(int) yy_HtmlBlockCloseLi(yycontext *ctx); /* 128 */
YY_RULE(int) yy_HtmlBlockOpenLi(yycontext *ctx); /* 127 */
YY_RULE(int) yy_HtmlBlockFrameset(yycontext *ctx); /* 126 */
YY_RULE(int) yy_HtmlBlockCloseFrameset(yycontext *ctx); /* 125 */
YY_RULE(int) yy_HtmlBlockOpenFrameset(yycontext *ctx); /* 124 */
YY_RULE(int) yy_HtmlBlockDt(yycontext *ctx); /* 123 */
YY_RULE(int) yy_HtmlBlockCloseDt(yycontext *ctx); /* 122 */
YY_RULE(int) yy_HtmlBlockOpenDt(yycontext *ctx); /* 121 */
YY_RULE(int) yy_HtmlBlockDd(yycontext *ctx); /* 120 */
YY_RULE(int) yy_HtmlBlockCloseDd(yycontext *ctx); /* 119 */
YY_RULE(int) yy_HtmlBlockOpenDd(yycontext *ctx); /* 118 */
YY_RULE(int) yy_HtmlBlockUl(yycontext *ctx); /* 117 */
YY_RULE(int) yy_HtmlBlockCloseUl(yycontext *ctx); /* 116 */
YY_RULE(int) yy_HtmlBlockOpenUl(yycontext *ctx); /* 115 */
YY_RULE(int) yy_HtmlBlockTable(yycontext *ctx); /* 114 */
YY_RULE(int) yy_HtmlBlockCloseTable(yycontext *ctx); /* 113 */
YY_RULE(int) yy_HtmlBlockOpenTable(yycontext *ctx); /* 112 */
YY_RULE(int) yy_HtmlBlockPre(yycontext *ctx); /* 111 */
YY_RULE(int) yy_HtmlBlockClosePre(yycontext *ctx); /* 110 */
YY_RULE(int) yy_HtmlBlockOpenPre(yycontext *ctx); /* 109 */
YY_RULE(int) yy_HtmlBlockP(yycontext *ctx); /* 108 */
YY_RULE(int) yy_HtmlBlockCloseP(yycontext *ctx); /* 107 */
YY_RULE(int) yy_HtmlBlockOpenP(yycontext *ctx); /* 106 */
YY_RULE(int) yy_HtmlBlockOl(yycontext *ctx); /* 105 */
YY_RULE(int) yy_HtmlBlockCloseOl(yycontext *ctx); /* 104 */
YY_RULE(int) yy_HtmlBlockOpenOl(yycontext *ctx); /* 103 */
YY_RULE(int) yy_HtmlBlockNoscript(yycontext *ctx); /* 102 */
YY_RULE(int) yy_HtmlBlockCloseNoscript(yycontext *ctx); /* 101 */
YY_RULE(int) yy_HtmlBlockOpenNoscript(yycontext *ctx); /* 100 */
YY_RULE(int) yy_HtmlBlockNoframes(yycontext *ctx); /* 99 */
YY_RULE(int) yy_HtmlBlockCloseNoframes(yycontext *ctx); /* 98 */
YY_RULE(int) yy_HtmlBlockOpenNoframes(yycontext *ctx); /* 97 */
YY_RULE(int) yy_HtmlBlockMenu(yycontext *ctx); /* 96 */
YY_RULE(int) yy_HtmlBlockCloseMenu(yycontext *ctx); /* 95 */
YY_RULE(int) yy_HtmlBlockOpenMenu(yycontext *ctx); /* 94 */
YY_RULE(int) yy_HtmlBlockH6(yycontext *ctx); /* 93 */
YY_RULE(int) yy_HtmlBlockCloseH6(yycontext *ctx); /* 92 */
YY_RULE(int) yy_HtmlBlockOpenH6(yycontext *ctx); /* 91 */
YY_RULE(int) yy_HtmlBlockH5(yycontext *ctx); /* 90 */
YY_RULE(int) yy_HtmlBlockCloseH5(yycontext *ctx); /* 89 */
YY_RULE(int) yy_HtmlBlockOpenH5(yycontext *ctx); /* 88 */
YY_RULE(int) yy_HtmlBlockH4(yycontext *ctx); /* 87 */
YY_RULE(int) yy_HtmlBlockCloseH4(yycontext *ctx); /* 86 */
YY_RULE(int) yy_HtmlBlockOpenH4(yycontext *ctx); /* 85 */
YY_RULE(int) yy_HtmlBlockH3(yycontext *ctx); /* 84 */
YY_RULE(int) yy_HtmlBlockCloseH3(yycontext *ctx); /* 83 */
YY_RULE(int) yy_HtmlBlockOpenH3(yycontext *ctx); /* 82 */
YY_RULE(int) yy_HtmlBlockH2(yycontext *ctx); /* 81 */
YY_RULE(int) yy_HtmlBlockCloseH2(yycontext *ctx); /* 80 */
YY_RULE(int) yy_HtmlBlockOpenH2(yycontext *ctx); /* 79 */
YY_RULE(int) yy_HtmlBlockH1(yycontext *ctx); /* 78 */
YY_RULE(int) yy_HtmlBlockCloseH1(yycontext *ctx); /* 77 */
YY_RULE(int) yy_HtmlBlockOpenH1(yycontext *ctx); /* 76 */
YY_RULE(int) yy_HtmlBlockForm(yycontext *ctx); /* 75 */
YY_RULE(int) yy_HtmlBlockCloseForm(yycontext *ctx); /* 74 */
YY_RULE(int) yy_HtmlBlockOpenForm(yycontext *ctx); /* 73 */
YY_RULE(int) yy_HtmlBlockFieldset(yycontext *ctx); /* 72 */
YY_RULE(int) yy_HtmlBlockCloseFieldset(yycontext *ctx); /* 71 */
YY_RULE(int) yy_HtmlBlockOpenFieldset(yycontext *ctx); /* 70 */
YY_RULE(int) yy_HtmlBlockDl(yycontext *ctx); /* 69 */
YY_RULE(int) yy_HtmlBlockCloseDl(yycontext *ctx); /* 68 */
YY_RULE(int) yy_HtmlBlockOpenDl(yycontext *ctx); /* 67 */
YY_RULE(int) yy_HtmlBlockDiv(yycontext *ctx); /* 66 */
YY_RULE(int) yy_HtmlBlockCloseDiv(yycontext *ctx); /* 65 */
YY_RULE(int) yy_HtmlBlockOpenDiv(yycontext *ctx); /* 64 */
YY_RULE(int) yy_HtmlBlockDir(yycontext *ctx); /* 63 */
YY_RULE(int) yy_HtmlBlockCloseDir(yycontext *ctx); /* 62 */
YY_RULE(int) yy_HtmlBlockOpenDir(yycontext *ctx); /* 61 */
YY_RULE(int) yy_HtmlBlockCenter(yycontext *ctx); /* 60 */
YY_RULE(int) yy_HtmlBlockCloseCenter(yycontext *ctx); /* 59 */
YY_RULE(int) yy_HtmlBlockOpenCenter(yycontext *ctx); /* 58 */
YY_RULE(int) yy_HtmlBlockBlockquote(yycontext *ctx); /* 57 */
YY_RULE(int) yy_HtmlBlockCloseBlockquote(yycontext *ctx); /* 56 */
YY_RULE(int) yy_HtmlBlockOpenBlockquote(yycontext *ctx); /* 55 */
YY_RULE(int) yy_HtmlBlockAddress(yycontext *ctx); /* 54 */
YY_RULE(int) yy_HtmlBlockCloseAddress(yycontext *ctx); /* 53 */
YY_RULE(int) yy_HtmlAttribute(yycontext *ctx); /* 52 */
YY_RULE(int) yy_Spnl(yycontext *ctx); /* 51 */
YY_RULE(int) yy_HtmlBlockOpenAddress(yycontext *ctx); /* 50 */
YY_RULE(int) yy_OptionallyIndentedLine(yycontext *ctx); /* 49 */
YY_RULE(int) yy_Indent(yycontext *ctx); /* 48 */
YY_RULE(int) yy_ListBlockLine(yycontext *ctx); /* 47 */
YY_RULE(int) yy_ListContinuationBlock(yycontext *ctx); /* 46 */
YY_RULE(int) yy_ListBlock(yycontext *ctx); /* 45 */
YY_RULE(int) yy_ListItem(yycontext *ctx); /* 44 */
YY_RULE(int) yy_Enumerator(yycontext *ctx); /* 43 */
YY_RULE(int) yy_ListItemTight(yycontext *ctx); /* 42 */
YY_RULE(int) yy_ListLoose(yycontext *ctx); /* 41 */
YY_RULE(int) yy_ListTight(yycontext *ctx); /* 40 */
YY_RULE(int) yy_Spacechar(yycontext *ctx); /* 39 */
YY_RULE(int) yy_Bullet(yycontext *ctx); /* 38 */
YY_RULE(int) yy_VerbatimChunk(yycontext *ctx); /* 37 */
YY_RULE(int) yy_IndentedLine(yycontext *ctx); /* 36 */
YY_RULE(int) yy_NonblankIndentedLine(yycontext *ctx); /* 35 */
YY_RULE(int) yy_Line(yycontext *ctx); /* 34 */
YY_RULE(int) yy_BlockQuoteRaw(yycontext *ctx); /* 33 */
YY_RULE(int) yy_Endline(yycontext *ctx); /* 32 */
YY_RULE(int) yy_RawLine(yycontext *ctx); /* 31 */
YY_RULE(int) yy_SetextBottom2(yycontext *ctx); /* 30 */
YY_RULE(int) yy_SetextBottom1(yycontext *ctx); /* 29 */
YY_RULE(int) yy_SetextHeading2(yycontext *ctx); /* 28 */
YY_RULE(int) yy_SetextHeading1(yycontext *ctx); /* 27 */
YY_RULE(int) yy_SetextHeading(yycontext *ctx); /* 26 */
YY_RULE(int) yy_AtxHeading(yycontext *ctx); /* 25 */
YY_RULE(int) yy_AtxStart(yycontext *ctx); /* 24 */
YY_RULE(int) yy_Inline(yycontext *ctx); /* 23 */
YY_RULE(int) yy_Sp(yycontext *ctx); /* 22 */
YY_RULE(int) yy_Newline(yycontext *ctx); /* 21 */
YY_RULE(int) yy_AtxInline(yycontext *ctx); /* 20 */
YY_RULE(int) yy_Inlines(yycontext *ctx); /* 19 */
YY_RULE(int) yy_NonindentSpace(yycontext *ctx); /* 18 */
YY_RULE(int) yy_Plain(yycontext *ctx); /* 17 */
YY_RULE(int) yy_Para(yycontext *ctx); /* 16 */
YY_RULE(int) yy_StyleBlock(yycontext *ctx); /* 15 */
YY_RULE(int) yy_HtmlBlock(yycontext *ctx); /* 14 */
YY_RULE(int) yy_BulletList(yycontext *ctx); /* 13 */
YY_RULE(int) yy_OrderedList(yycontext *ctx); /* 12 */
YY_RULE(int) yy_Heading(yycontext *ctx); /* 11 */
YY_RULE(int) yy_HorizontalRule(yycontext *ctx); /* 10 */
YY_RULE(int) yy_Reference(yycontext *ctx); /* 9 */
YY_RULE(int) yy_Note(yycontext *ctx); /* 8 */
YY_RULE(int) yy_Verbatim(yycontext *ctx); /* 7 */
YY_RULE(int) yy_BlockQuote(yycontext *ctx); /* 6 */
YY_RULE(int) yy_BlankLine(yycontext *ctx); /* 5 */
YY_RULE(int) yy_Block(yycontext *ctx); /* 4 */
YY_RULE(int) yy_StartList(yycontext *ctx); /* 3 */
YY_RULE(int) yy_BOM(yycontext *ctx); /* 2 */
YY_RULE(int) yy_Doc(yycontext *ctx); /* 1 */

YY_ACTION(void) yy_3_RawNoteBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_RawNoteBlock\n"));
     yy = mk_str_from_list(a, true);
                    yy->key = RAW;
                ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_RawNoteBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_RawNoteBlock\n"));
   a = cons(mk_str(yytext), a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_RawNoteBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_RawNoteBlock\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_Notes(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_Notes\n"));
   notes = reverse(a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_Notes(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Notes\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_2_InlineNote(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_InlineNote\n"));
   yy = mk_list(NOTE, a);
                  yy->contents.str = 0; ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_InlineNote(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_InlineNote\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_3_Note(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define ref ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_Note\n"));
     yy = mk_list(NOTE, a);
                    yy->contents.str = strdup(ref->contents.str);
                ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
#undef ref
}
YY_ACTION(void) yy_2_Note(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define ref ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_Note\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
#undef ref
}
YY_ACTION(void) yy_1_Note(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define ref ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Note\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
#undef ref
}
YY_ACTION(void) yy_1_RawNoteReference(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_RawNoteReference\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_NoteReference(yycontext *ctx, char *yytext, int yyleng)
{
#define ref ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_NoteReference\n"));
     element *match;
                    if (find_note(&match, ref->contents.str)) {
                        yy = mk_element(NOTE);
                        assert(match->children != NULL);
                        yy->children = match->children;
                        yy->contents.str = 0;
                    } else {
                        char *s;
                        s = malloc(strlen(ref->contents.str) + 4);
                        sprintf(s, "[^%s]", ref->contents.str);
                        yy = mk_str(s);
                        free(s);
                    }
                ;
#undef yythunkpos
#undef yypos
#undef yy
#undef ref
}
YY_ACTION(void) yy_2_DoubleQuoted(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_DoubleQuoted\n"));
   yy = mk_list(DOUBLEQUOTED, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_DoubleQuoted(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_DoubleQuoted\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_2_SingleQuoted(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_SingleQuoted\n"));
   yy = mk_list(SINGLEQUOTED, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_SingleQuoted(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_SingleQuoted\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_EmDash(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_EmDash\n"));
   yy = mk_element(EMDASH); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_EnDash(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_EnDash\n"));
   yy = mk_element(ENDASH); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Ellipsis(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Ellipsis\n"));
   yy = mk_element(ELLIPSIS); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Apostrophe(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Apostrophe\n"));
   yy = mk_element(APOSTROPHE); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Line(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Line\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_StartList(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_StartList\n"));
   yy = NULL; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_RawHtml(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_RawHtml\n"));
     if (extension(EXT_FILTER_HTML)) {
                    yy = mk_list(LIST, NULL);
                } else {
                    yy = mk_str(yytext);
                    yy->key = HTML;
                }
            ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Code(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Code\n"));
   yy = mk_str(yytext); yy->key = CODE; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_2_References(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_References\n"));
   references = reverse(a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_References(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_References\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_RefTitle(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_RefTitle\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_RefSrc(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_RefSrc\n"));
   yy = mk_str(yytext); 
           yy->key = HTML; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_2_Label(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_Label\n"));
   yy = mk_list(LIST, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_Label(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Label\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_Reference(yycontext *ctx, char *yytext, int yyleng)
{
#define t ctx->val[-1]
#define s ctx->val[-2]
#define l ctx->val[-3]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Reference\n"));
   yy = mk_link(l->children, s->contents.str, t->contents.str);
              free_element(s);
              free_element(t);
              free(l);
              yy->key = REFERENCE; ;
#undef yythunkpos
#undef yypos
#undef yy
#undef t
#undef s
#undef l
}
YY_ACTION(void) yy_1_AutoLinkEmail(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_AutoLinkEmail\n"));
     char *mailto = malloc(strlen(yytext) + 8);
                    sprintf(mailto, "mailto:%s", yytext);
                    yy = mk_link(mk_str(yytext), mailto, "");
                    free(mailto);
                ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_AutoLinkUrl(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_AutoLinkUrl\n"));
     yy = mk_link(mk_str(yytext), yytext, ""); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Title(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Title\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Source(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Source\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_ExplicitLink(yycontext *ctx, char *yytext, int yyleng)
{
#define t ctx->val[-1]
#define s ctx->val[-2]
#define l ctx->val[-3]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ExplicitLink\n"));
   yy = mk_link(l->children, s->contents.str, t->contents.str);
                  free_element(s);
                  free_element(t);
                  free(l); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef t
#undef s
#undef l
}
YY_ACTION(void) yy_1_ReferenceLinkSingle(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ReferenceLinkSingle\n"));
     link match;
                           if (find_reference(&match, a->children)) {
                               yy = mk_link(a->children, match.url, match.title);
                               free(a);
                           }
                           else {
                               element *result;
                               result = mk_element(LIST);
                               result->children = cons(mk_str("["), cons(a, cons(mk_str("]"), mk_str(yytext))));
                               yy = result;
                           }
                       ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_ReferenceLinkDouble(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ReferenceLinkDouble\n"));
     link match;
                           if (find_reference(&match, b->children)) {
                               yy = mk_link(a->children, match.url, match.title);
                               free(a);
                               free_element_list(b);
                           } else {
                               element *result;
                               result = mk_element(LIST);
                               result->children = cons(mk_str("["), cons(a, cons(mk_str("]"), cons(mk_str(yytext),
                                                   cons(mk_str("["), cons(b, mk_str("]")))))));
                               yy = result;
                           }
                       ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_Image(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Image\n"));
   if (yy->key == LINK) {
              yy->key = IMAGE;
          } else {
              element *result;
              result = yy;
              yy->children = cons(mk_str("!"), result->children);
          } ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_2_StrongUl(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_StrongUl\n"));
   yy = mk_list(STRONG, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_StrongUl(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_StrongUl\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_2_StrongStar(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_StrongStar\n"));
   yy = mk_list(STRONG, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_StrongStar(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_StrongStar\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_3_EmphUl(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_EmphUl\n"));
   yy = mk_list(EMPH, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_2_EmphUl(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_EmphUl\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_EmphUl(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_EmphUl\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_3_EmphStar(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_EmphStar\n"));
   yy = mk_list(EMPH, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_2_EmphStar(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_EmphStar\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_EmphStar(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_EmphStar\n"));
   a = cons(b, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_UlOrStarLine(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_UlOrStarLine\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Symbol(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Symbol\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_LineBreak(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_LineBreak\n"));
   yy = mk_element(LINEBREAK); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_TerminalEndline(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_TerminalEndline\n"));
   yy = NULL; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_NormalEndline(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_NormalEndline\n"));
   yy = mk_str("\n");
                    yy->key = SPACE; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Entity(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Entity\n"));
   yy = mk_str(yytext); yy->key = HTML; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_EscapedChar(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_EscapedChar\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_AposChunk(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_AposChunk\n"));
   yy = mk_element(APOSTROPHE); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_StrChunk(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_StrChunk\n"));
   yy = mk_str(yytext); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_3_Str(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_Str\n"));
   if (a->next == NULL) { yy = a; } else { yy = mk_list(LIST, a); } ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_Str(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_Str\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_Str(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Str\n"));
   a = cons(mk_str(yytext), a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_Space(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Space\n"));
   yy = mk_str(" ");
          yy->key = SPACE; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_3_Inlines(yycontext *ctx, char *yytext, int yyleng)
{
#define c ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_Inlines\n"));
   yy = mk_list(LIST, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef c
#undef a
}
YY_ACTION(void) yy_2_Inlines(yycontext *ctx, char *yytext, int yyleng)
{
#define c ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_Inlines\n"));
   a = cons(c, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef c
#undef a
}
YY_ACTION(void) yy_1_Inlines(yycontext *ctx, char *yytext, int yyleng)
{
#define c ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Inlines\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef c
#undef a
}
YY_ACTION(void) yy_1_StyleBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_StyleBlock\n"));
     if (extension(EXT_FILTER_STYLES)) {
                        yy = mk_list(LIST, NULL);
                    } else {
                        yy = mk_str(yytext);
                        yy->key = HTMLBLOCK;
                    }
                ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_HtmlBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_HtmlBlock\n"));
     if (extension(EXT_FILTER_HTML)) {
                    yy = mk_list(LIST, NULL);
                } else {
                    yy = mk_str(yytext);
                    yy->key = HTMLBLOCK;
                }
            ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_OrderedList(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_OrderedList\n"));
   yy->key = ORDEREDLIST; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_3_ListContinuationBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_ListContinuationBlock\n"));
    yy = mk_str_from_list(a, false); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_ListContinuationBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_ListContinuationBlock\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_ListContinuationBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ListContinuationBlock\n"));
     if (strlen(yytext) == 0)
                                   a = cons(mk_str("\001"), a); /* block separator */
                              else
                                   a = cons(mk_str(yytext), a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_3_ListBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_ListBlock\n"));
   yy = mk_str_from_list(a, false); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_ListBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_ListBlock\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_ListBlock(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ListBlock\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_3_ListItemTight(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_ListItemTight\n"));
    element *raw;
               raw = mk_str_from_list(a, false);
               raw->key = RAW;
               yy = mk_element(LISTITEM);
               yy->children = raw;
            ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_ListItemTight(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_ListItemTight\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_ListItemTight(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ListItemTight\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_3_ListItem(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_ListItem\n"));
    element *raw;
               raw = mk_str_from_list(a, false);
               raw->key = RAW;
               yy = mk_element(LISTITEM);
               yy->children = raw;
            ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_ListItem(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_ListItem\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_ListItem(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ListItem\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_ListLoose(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_ListLoose\n"));
   yy = mk_list(LIST, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_1_ListLoose(yycontext *ctx, char *yytext, int yyleng)
{
#define b ctx->val[-1]
#define a ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ListLoose\n"));
     element *li;
                  li = b->children;
                  li->contents.str = realloc(li->contents.str, strlen(li->contents.str) + 3);
                  strcat(li->contents.str, "\n\n");  /* In loose list, \n\n added to end of each element */
                  a = cons(b, a);
              ;
#undef yythunkpos
#undef yypos
#undef yy
#undef b
#undef a
}
YY_ACTION(void) yy_2_ListTight(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_ListTight\n"));
   yy = mk_list(LIST, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_ListTight(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_ListTight\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_BulletList(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_BulletList\n"));
   yy->key = BULLETLIST; ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_HorizontalRule(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_HorizontalRule\n"));
   yy = mk_element(HRULE); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_2_Verbatim(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_Verbatim\n"));
   yy = mk_str_from_list(a, false);
                 yy->key = VERBATIM; ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_Verbatim(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Verbatim\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_3_VerbatimChunk(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_VerbatimChunk\n"));
   yy = mk_str_from_list(a, false); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_VerbatimChunk(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_VerbatimChunk\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_VerbatimChunk(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_VerbatimChunk\n"));
   a = cons(mk_str("\n"), a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_4_BlockQuoteRaw(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_4_BlockQuoteRaw\n"));
     yy = mk_str_from_list(a, true);
                     yy->key = RAW;
                 ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_3_BlockQuoteRaw(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_3_BlockQuoteRaw\n"));
   a = cons(mk_str("\n"), a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_BlockQuoteRaw(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_BlockQuoteRaw\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_BlockQuoteRaw(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_BlockQuoteRaw\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_BlockQuote(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_BlockQuote\n"));
    yy = mk_element(BLOCKQUOTE);
                yy->children = a;
             ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_SetextHeading2(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_SetextHeading2\n"));
   yy = mk_list(H2, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_SetextHeading2(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_SetextHeading2\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_SetextHeading1(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_SetextHeading1\n"));
   yy = mk_list(H1, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_SetextHeading1(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_SetextHeading1\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_AtxHeading(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define s ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_AtxHeading\n"));
   yy = mk_list(s->key, a);
              free(s); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
#undef s
}
YY_ACTION(void) yy_1_AtxHeading(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define s ctx->val[-2]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_AtxHeading\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
#undef s
}
YY_ACTION(void) yy_1_AtxStart(yycontext *ctx, char *yytext, int yyleng)
{
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_AtxStart\n"));
   yy = mk_element(H1 + (strlen(yytext) - 1)); ;
#undef yythunkpos
#undef yypos
#undef yy
}
YY_ACTION(void) yy_1_Plain(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Plain\n"));
   yy = a; yy->key = PLAIN; ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_Para(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Para\n"));
   yy = a; yy->key = PARA; ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_2_Doc(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_2_Doc\n"));
   parse_result = reverse(a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}
YY_ACTION(void) yy_1_Doc(yycontext *ctx, char *yytext, int yyleng)
{
#define a ctx->val[-1]
#define yy ctx->yy
#define yypos ctx->pos
#define yythunkpos ctx->thunkpos
  yyprintf((stderr, "do yy_1_Doc\n"));
   a = cons(yy, a); ;
#undef yythunkpos
#undef yypos
#undef yy
#undef a
}

YY_RULE(int) yy_Notes(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "Notes"));  if (!yy_StartList(ctx)) goto l1;  yyDo(ctx, yySet, -2, 0);
  l2:;	
  {  int yypos3= ctx->pos, yythunkpos3= ctx->thunkpos;
  {  int yypos4= ctx->pos, yythunkpos4= ctx->thunkpos;  if (!yy_Note(ctx)) goto l5;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_Notes, ctx->begin, ctx->end);  goto l4;
  l5:;	  ctx->pos= yypos4; ctx->thunkpos= yythunkpos4;  if (!yy_SkipBlock(ctx)) goto l3;
  }
  l4:;	  goto l2;
  l3:;	  ctx->pos= yypos3; ctx->thunkpos= yythunkpos3;
  }  yyDo(ctx, yy_2_Notes, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Notes", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l1:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Notes", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RawNoteBlock(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "RawNoteBlock"));  if (!yy_StartList(ctx)) goto l6;  yyDo(ctx, yySet, -1, 0);
  {  int yypos9= ctx->pos, yythunkpos9= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l9;  goto l6;
  l9:;	  ctx->pos= yypos9; ctx->thunkpos= yythunkpos9;
  }  if (!yy_OptionallyIndentedLine(ctx)) goto l6;  yyDo(ctx, yy_1_RawNoteBlock, ctx->begin, ctx->end);
  l7:;	
  {  int yypos8= ctx->pos, yythunkpos8= ctx->thunkpos;
  {  int yypos10= ctx->pos, yythunkpos10= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l10;  goto l8;
  l10:;	  ctx->pos= yypos10; ctx->thunkpos= yythunkpos10;
  }  if (!yy_OptionallyIndentedLine(ctx)) goto l8;  yyDo(ctx, yy_1_RawNoteBlock, ctx->begin, ctx->end);  goto l7;
  l8:;	  ctx->pos= yypos8; ctx->thunkpos= yythunkpos8;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l6;
  l11:;	
  {  int yypos12= ctx->pos, yythunkpos12= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l12;  goto l11;
  l12:;	  ctx->pos= yypos12; ctx->thunkpos= yythunkpos12;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l6;  yyDo(ctx, yy_2_RawNoteBlock, ctx->begin, ctx->end);  yyDo(ctx, yy_3_RawNoteBlock, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "RawNoteBlock", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l6:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RawNoteBlock", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RawNoteReference(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "RawNoteReference"));  if (!yymatchString(ctx, "[^")) goto l13;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l13;
  {  int yypos16= ctx->pos, yythunkpos16= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l16;  goto l13;
  l16:;	  ctx->pos= yypos16; ctx->thunkpos= yythunkpos16;
  }
  {  int yypos17= ctx->pos, yythunkpos17= ctx->thunkpos;  if (!yymatchChar(ctx, ']')) goto l17;  goto l13;
  l17:;	  ctx->pos= yypos17; ctx->thunkpos= yythunkpos17;
  }  if (!yymatchDot(ctx)) goto l13;
  l14:;	
  {  int yypos15= ctx->pos, yythunkpos15= ctx->thunkpos;
  {  int yypos18= ctx->pos, yythunkpos18= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l18;  goto l15;
  l18:;	  ctx->pos= yypos18; ctx->thunkpos= yythunkpos18;
  }
  {  int yypos19= ctx->pos, yythunkpos19= ctx->thunkpos;  if (!yymatchChar(ctx, ']')) goto l19;  goto l15;
  l19:;	  ctx->pos= yypos19; ctx->thunkpos= yythunkpos19;
  }  if (!yymatchDot(ctx)) goto l15;  goto l14;
  l15:;	  ctx->pos= yypos15; ctx->thunkpos= yythunkpos15;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l13;  if (!yymatchChar(ctx, ']')) goto l13;  yyDo(ctx, yy_1_RawNoteReference, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "RawNoteReference", ctx->buf+ctx->pos));
  return 1;
  l13:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RawNoteReference", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_DoubleQuoteEnd(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "DoubleQuoteEnd"));  if (!yymatchChar(ctx, '"')) goto l20;
  yyprintf((stderr, "  ok   %s @ %s\n", "DoubleQuoteEnd", ctx->buf+ctx->pos));
  return 1;
  l20:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "DoubleQuoteEnd", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_DoubleQuoteStart(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "DoubleQuoteStart"));  if (!yymatchChar(ctx, '"')) goto l21;
  yyprintf((stderr, "  ok   %s @ %s\n", "DoubleQuoteStart", ctx->buf+ctx->pos));
  return 1;
  l21:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "DoubleQuoteStart", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SingleQuoteEnd(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "SingleQuoteEnd"));  if (!yymatchChar(ctx, '\'')) goto l22;
  {  int yypos23= ctx->pos, yythunkpos23= ctx->thunkpos;  if (!yy_Alphanumeric(ctx)) goto l23;  goto l22;
  l23:;	  ctx->pos= yypos23; ctx->thunkpos= yythunkpos23;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "SingleQuoteEnd", ctx->buf+ctx->pos));
  return 1;
  l22:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SingleQuoteEnd", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SingleQuoteStart(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "SingleQuoteStart"));  if (!yymatchChar(ctx, '\'')) goto l24;
  {  int yypos25= ctx->pos, yythunkpos25= ctx->thunkpos;
  {  int yypos26= ctx->pos, yythunkpos26= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l27;  goto l26;
  l27:;	  ctx->pos= yypos26; ctx->thunkpos= yythunkpos26;  if (!yy_Newline(ctx)) goto l25;
  }
  l26:;	  goto l24;
  l25:;	  ctx->pos= yypos25; ctx->thunkpos= yythunkpos25;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "SingleQuoteStart", ctx->buf+ctx->pos));
  return 1;
  l24:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SingleQuoteStart", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_EnDash(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "EnDash"));  if (!yymatchChar(ctx, '-')) goto l28;
  {  int yypos29= ctx->pos, yythunkpos29= ctx->thunkpos;  if (!yy_Digit(ctx)) goto l28;  ctx->pos= yypos29; ctx->thunkpos= yythunkpos29;
  }  yyDo(ctx, yy_1_EnDash, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "EnDash", ctx->buf+ctx->pos));
  return 1;
  l28:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "EnDash", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_EmDash(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "EmDash"));
  {  int yypos31= ctx->pos, yythunkpos31= ctx->thunkpos;  if (!yymatchString(ctx, "---")) goto l32;  goto l31;
  l32:;	  ctx->pos= yypos31; ctx->thunkpos= yythunkpos31;  if (!yymatchString(ctx, "--")) goto l30;
  }
  l31:;	  yyDo(ctx, yy_1_EmDash, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "EmDash", ctx->buf+ctx->pos));
  return 1;
  l30:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "EmDash", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Apostrophe(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Apostrophe"));  if (!yymatchChar(ctx, '\'')) goto l33;  yyDo(ctx, yy_1_Apostrophe, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Apostrophe", ctx->buf+ctx->pos));
  return 1;
  l33:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Apostrophe", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_DoubleQuoted(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "DoubleQuoted"));  if (!yy_DoubleQuoteStart(ctx)) goto l34;  if (!yy_StartList(ctx)) goto l34;  yyDo(ctx, yySet, -2, 0);
  {  int yypos37= ctx->pos, yythunkpos37= ctx->thunkpos;  if (!yy_DoubleQuoteEnd(ctx)) goto l37;  goto l34;
  l37:;	  ctx->pos= yypos37; ctx->thunkpos= yythunkpos37;
  }  if (!yy_Inline(ctx)) goto l34;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_DoubleQuoted, ctx->begin, ctx->end);
  l35:;	
  {  int yypos36= ctx->pos, yythunkpos36= ctx->thunkpos;
  {  int yypos38= ctx->pos, yythunkpos38= ctx->thunkpos;  if (!yy_DoubleQuoteEnd(ctx)) goto l38;  goto l36;
  l38:;	  ctx->pos= yypos38; ctx->thunkpos= yythunkpos38;
  }  if (!yy_Inline(ctx)) goto l36;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_DoubleQuoted, ctx->begin, ctx->end);  goto l35;
  l36:;	  ctx->pos= yypos36; ctx->thunkpos= yythunkpos36;
  }  if (!yy_DoubleQuoteEnd(ctx)) goto l34;  yyDo(ctx, yy_2_DoubleQuoted, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "DoubleQuoted", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l34:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "DoubleQuoted", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SingleQuoted(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "SingleQuoted"));  if (!yy_SingleQuoteStart(ctx)) goto l39;  if (!yy_StartList(ctx)) goto l39;  yyDo(ctx, yySet, -2, 0);
  {  int yypos42= ctx->pos, yythunkpos42= ctx->thunkpos;  if (!yy_SingleQuoteEnd(ctx)) goto l42;  goto l39;
  l42:;	  ctx->pos= yypos42; ctx->thunkpos= yythunkpos42;
  }  if (!yy_Inline(ctx)) goto l39;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_SingleQuoted, ctx->begin, ctx->end);
  l40:;	
  {  int yypos41= ctx->pos, yythunkpos41= ctx->thunkpos;
  {  int yypos43= ctx->pos, yythunkpos43= ctx->thunkpos;  if (!yy_SingleQuoteEnd(ctx)) goto l43;  goto l41;
  l43:;	  ctx->pos= yypos43; ctx->thunkpos= yythunkpos43;
  }  if (!yy_Inline(ctx)) goto l41;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_SingleQuoted, ctx->begin, ctx->end);  goto l40;
  l41:;	  ctx->pos= yypos41; ctx->thunkpos= yythunkpos41;
  }  if (!yy_SingleQuoteEnd(ctx)) goto l39;  yyDo(ctx, yy_2_SingleQuoted, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "SingleQuoted", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l39:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SingleQuoted", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Dash(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Dash"));
  {  int yypos45= ctx->pos, yythunkpos45= ctx->thunkpos;  if (!yy_EmDash(ctx)) goto l46;  goto l45;
  l46:;	  ctx->pos= yypos45; ctx->thunkpos= yythunkpos45;  if (!yy_EnDash(ctx)) goto l44;
  }
  l45:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Dash", ctx->buf+ctx->pos));
  return 1;
  l44:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Dash", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Ellipsis(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Ellipsis"));
  {  int yypos48= ctx->pos, yythunkpos48= ctx->thunkpos;  if (!yymatchString(ctx, "...")) goto l49;  goto l48;
  l49:;	  ctx->pos= yypos48; ctx->thunkpos= yythunkpos48;  if (!yymatchString(ctx, ". . .")) goto l47;
  }
  l48:;	  yyDo(ctx, yy_1_Ellipsis, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Ellipsis", ctx->buf+ctx->pos));
  return 1;
  l47:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Ellipsis", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Digit(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Digit"));  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l50;
  yyprintf((stderr, "  ok   %s @ %s\n", "Digit", ctx->buf+ctx->pos));
  return 1;
  l50:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Digit", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ExtendedSpecialChar(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "ExtendedSpecialChar"));
  {  int yypos52= ctx->pos, yythunkpos52= ctx->thunkpos;  yyText(ctx, ctx->begin, ctx->end);  if (!( extension(EXT_SMART) )) goto l53;
  {  int yypos54= ctx->pos, yythunkpos54= ctx->thunkpos;  if (!yymatchChar(ctx, '.')) goto l55;  goto l54;
  l55:;	  ctx->pos= yypos54; ctx->thunkpos= yythunkpos54;  if (!yymatchChar(ctx, '-')) goto l56;  goto l54;
  l56:;	  ctx->pos= yypos54; ctx->thunkpos= yythunkpos54;  if (!yymatchChar(ctx, '\'')) goto l57;  goto l54;
  l57:;	  ctx->pos= yypos54; ctx->thunkpos= yythunkpos54;  if (!yymatchChar(ctx, '"')) goto l53;
  }
  l54:;	  goto l52;
  l53:;	  ctx->pos= yypos52; ctx->thunkpos= yythunkpos52;  yyText(ctx, ctx->begin, ctx->end);  if (!( extension(EXT_NOTES) )) goto l51;  if (!yymatchChar(ctx, '^')) goto l51;
  }
  l52:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "ExtendedSpecialChar", ctx->buf+ctx->pos));
  return 1;
  l51:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ExtendedSpecialChar", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_AlphanumericAscii(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "AlphanumericAscii"));  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l58;
  yyprintf((stderr, "  ok   %s @ %s\n", "AlphanumericAscii", ctx->buf+ctx->pos));
  return 1;
  l58:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "AlphanumericAscii", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Quoted(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Quoted"));
  {  int yypos60= ctx->pos, yythunkpos60= ctx->thunkpos;  if (!yymatchChar(ctx, '"')) goto l61;
  l62:;	
  {  int yypos63= ctx->pos, yythunkpos63= ctx->thunkpos;
  {  int yypos64= ctx->pos, yythunkpos64= ctx->thunkpos;  if (!yymatchChar(ctx, '"')) goto l64;  goto l63;
  l64:;	  ctx->pos= yypos64; ctx->thunkpos= yythunkpos64;
  }  if (!yymatchDot(ctx)) goto l63;  goto l62;
  l63:;	  ctx->pos= yypos63; ctx->thunkpos= yythunkpos63;
  }  if (!yymatchChar(ctx, '"')) goto l61;  goto l60;
  l61:;	  ctx->pos= yypos60; ctx->thunkpos= yythunkpos60;  if (!yymatchChar(ctx, '\'')) goto l59;
  l65:;	
  {  int yypos66= ctx->pos, yythunkpos66= ctx->thunkpos;
  {  int yypos67= ctx->pos, yythunkpos67= ctx->thunkpos;  if (!yymatchChar(ctx, '\'')) goto l67;  goto l66;
  l67:;	  ctx->pos= yypos67; ctx->thunkpos= yythunkpos67;
  }  if (!yymatchDot(ctx)) goto l66;  goto l65;
  l66:;	  ctx->pos= yypos66; ctx->thunkpos= yythunkpos66;
  }  if (!yymatchChar(ctx, '\'')) goto l59;
  }
  l60:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Quoted", ctx->buf+ctx->pos));
  return 1;
  l59:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Quoted", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlTag(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlTag"));  if (!yymatchChar(ctx, '<')) goto l68;  if (!yy_Spnl(ctx)) goto l68;
  {  int yypos69= ctx->pos, yythunkpos69= ctx->thunkpos;  if (!yymatchChar(ctx, '/')) goto l69;  goto l70;
  l69:;	  ctx->pos= yypos69; ctx->thunkpos= yythunkpos69;
  }
  l70:;	  if (!yy_AlphanumericAscii(ctx)) goto l68;
  l71:;	
  {  int yypos72= ctx->pos, yythunkpos72= ctx->thunkpos;  if (!yy_AlphanumericAscii(ctx)) goto l72;  goto l71;
  l72:;	  ctx->pos= yypos72; ctx->thunkpos= yythunkpos72;
  }  if (!yy_Spnl(ctx)) goto l68;
  l73:;	
  {  int yypos74= ctx->pos, yythunkpos74= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l74;  goto l73;
  l74:;	  ctx->pos= yypos74; ctx->thunkpos= yythunkpos74;
  }
  {  int yypos75= ctx->pos, yythunkpos75= ctx->thunkpos;  if (!yymatchChar(ctx, '/')) goto l75;  goto l76;
  l75:;	  ctx->pos= yypos75; ctx->thunkpos= yythunkpos75;
  }
  l76:;	  if (!yy_Spnl(ctx)) goto l68;  if (!yymatchChar(ctx, '>')) goto l68;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlTag", ctx->buf+ctx->pos));
  return 1;
  l68:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlTag", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Ticks5(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Ticks5"));  if (!yymatchString(ctx, "`````")) goto l77;
  {  int yypos78= ctx->pos, yythunkpos78= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l78;  goto l77;
  l78:;	  ctx->pos= yypos78; ctx->thunkpos= yythunkpos78;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Ticks5", ctx->buf+ctx->pos));
  return 1;
  l77:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Ticks5", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Ticks4(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Ticks4"));  if (!yymatchString(ctx, "````")) goto l79;
  {  int yypos80= ctx->pos, yythunkpos80= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l80;  goto l79;
  l80:;	  ctx->pos= yypos80; ctx->thunkpos= yythunkpos80;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Ticks4", ctx->buf+ctx->pos));
  return 1;
  l79:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Ticks4", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Ticks3(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Ticks3"));  if (!yymatchString(ctx, "```")) goto l81;
  {  int yypos82= ctx->pos, yythunkpos82= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l82;  goto l81;
  l82:;	  ctx->pos= yypos82; ctx->thunkpos= yythunkpos82;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Ticks3", ctx->buf+ctx->pos));
  return 1;
  l81:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Ticks3", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Ticks2(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Ticks2"));  if (!yymatchString(ctx, "``")) goto l83;
  {  int yypos84= ctx->pos, yythunkpos84= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l84;  goto l83;
  l84:;	  ctx->pos= yypos84; ctx->thunkpos= yythunkpos84;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Ticks2", ctx->buf+ctx->pos));
  return 1;
  l83:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Ticks2", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Ticks1(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Ticks1"));  if (!yymatchChar(ctx, '`')) goto l85;
  {  int yypos86= ctx->pos, yythunkpos86= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l86;  goto l85;
  l86:;	  ctx->pos= yypos86; ctx->thunkpos= yythunkpos86;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Ticks1", ctx->buf+ctx->pos));
  return 1;
  l85:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Ticks1", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SkipBlock(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "SkipBlock"));
  {  int yypos88= ctx->pos, yythunkpos88= ctx->thunkpos;  if (!yy_HtmlBlock(ctx)) goto l89;  goto l88;
  l89:;	  ctx->pos= yypos88; ctx->thunkpos= yythunkpos88;
  {  int yypos93= ctx->pos, yythunkpos93= ctx->thunkpos;  if (!yymatchChar(ctx, '#')) goto l93;  goto l90;
  l93:;	  ctx->pos= yypos93; ctx->thunkpos= yythunkpos93;
  }
  {  int yypos94= ctx->pos, yythunkpos94= ctx->thunkpos;  if (!yy_SetextBottom1(ctx)) goto l94;  goto l90;
  l94:;	  ctx->pos= yypos94; ctx->thunkpos= yythunkpos94;
  }
  {  int yypos95= ctx->pos, yythunkpos95= ctx->thunkpos;  if (!yy_SetextBottom2(ctx)) goto l95;  goto l90;
  l95:;	  ctx->pos= yypos95; ctx->thunkpos= yythunkpos95;
  }
  {  int yypos96= ctx->pos, yythunkpos96= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l96;  goto l90;
  l96:;	  ctx->pos= yypos96; ctx->thunkpos= yythunkpos96;
  }  if (!yy_RawLine(ctx)) goto l90;
  l91:;	
  {  int yypos92= ctx->pos, yythunkpos92= ctx->thunkpos;
  {  int yypos97= ctx->pos, yythunkpos97= ctx->thunkpos;  if (!yymatchChar(ctx, '#')) goto l97;  goto l92;
  l97:;	  ctx->pos= yypos97; ctx->thunkpos= yythunkpos97;
  }
  {  int yypos98= ctx->pos, yythunkpos98= ctx->thunkpos;  if (!yy_SetextBottom1(ctx)) goto l98;  goto l92;
  l98:;	  ctx->pos= yypos98; ctx->thunkpos= yythunkpos98;
  }
  {  int yypos99= ctx->pos, yythunkpos99= ctx->thunkpos;  if (!yy_SetextBottom2(ctx)) goto l99;  goto l92;
  l99:;	  ctx->pos= yypos99; ctx->thunkpos= yythunkpos99;
  }
  {  int yypos100= ctx->pos, yythunkpos100= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l100;  goto l92;
  l100:;	  ctx->pos= yypos100; ctx->thunkpos= yythunkpos100;
  }  if (!yy_RawLine(ctx)) goto l92;  goto l91;
  l92:;	  ctx->pos= yypos92; ctx->thunkpos= yythunkpos92;
  }
  l101:;	
  {  int yypos102= ctx->pos, yythunkpos102= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l102;  goto l101;
  l102:;	  ctx->pos= yypos102; ctx->thunkpos= yythunkpos102;
  }  goto l88;
  l90:;	  ctx->pos= yypos88; ctx->thunkpos= yythunkpos88;  if (!yy_BlankLine(ctx)) goto l103;
  l104:;	
  {  int yypos105= ctx->pos, yythunkpos105= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l105;  goto l104;
  l105:;	  ctx->pos= yypos105; ctx->thunkpos= yythunkpos105;
  }  goto l88;
  l103:;	  ctx->pos= yypos88; ctx->thunkpos= yythunkpos88;  if (!yy_RawLine(ctx)) goto l87;
  }
  l88:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "SkipBlock", ctx->buf+ctx->pos));
  return 1;
  l87:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SkipBlock", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_References(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "References"));  if (!yy_StartList(ctx)) goto l106;  yyDo(ctx, yySet, -2, 0);
  l107:;	
  {  int yypos108= ctx->pos, yythunkpos108= ctx->thunkpos;
  {  int yypos109= ctx->pos, yythunkpos109= ctx->thunkpos;  if (!yy_Reference(ctx)) goto l110;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_References, ctx->begin, ctx->end);  goto l109;
  l110:;	  ctx->pos= yypos109; ctx->thunkpos= yythunkpos109;  if (!yy_SkipBlock(ctx)) goto l108;
  }
  l109:;	  goto l107;
  l108:;	  ctx->pos= yypos108; ctx->thunkpos= yythunkpos108;
  }  yyDo(ctx, yy_2_References, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "References", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l106:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "References", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_EmptyTitle(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "EmptyTitle"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l111;  if (!yymatchString(ctx, "")) goto l111;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l111;
  yyprintf((stderr, "  ok   %s @ %s\n", "EmptyTitle", ctx->buf+ctx->pos));
  return 1;
  l111:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "EmptyTitle", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RefTitleParens(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "RefTitleParens"));  if (!yy_Spnl(ctx)) goto l112;  if (!yymatchChar(ctx, '(')) goto l112;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l112;
  l113:;	
  {  int yypos114= ctx->pos, yythunkpos114= ctx->thunkpos;
  {  int yypos115= ctx->pos, yythunkpos115= ctx->thunkpos;
  {  int yypos116= ctx->pos, yythunkpos116= ctx->thunkpos;  if (!yymatchChar(ctx, ')')) goto l117;  if (!yy_Sp(ctx)) goto l117;  if (!yy_Newline(ctx)) goto l117;  goto l116;
  l117:;	  ctx->pos= yypos116; ctx->thunkpos= yythunkpos116;  if (!yy_Newline(ctx)) goto l115;
  }
  l116:;	  goto l114;
  l115:;	  ctx->pos= yypos115; ctx->thunkpos= yythunkpos115;
  }  if (!yymatchDot(ctx)) goto l114;  goto l113;
  l114:;	  ctx->pos= yypos114; ctx->thunkpos= yythunkpos114;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l112;  if (!yymatchChar(ctx, ')')) goto l112;
  yyprintf((stderr, "  ok   %s @ %s\n", "RefTitleParens", ctx->buf+ctx->pos));
  return 1;
  l112:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RefTitleParens", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RefTitleDouble(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "RefTitleDouble"));  if (!yy_Spnl(ctx)) goto l118;  if (!yymatchChar(ctx, '"')) goto l118;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l118;
  l119:;	
  {  int yypos120= ctx->pos, yythunkpos120= ctx->thunkpos;
  {  int yypos121= ctx->pos, yythunkpos121= ctx->thunkpos;
  {  int yypos122= ctx->pos, yythunkpos122= ctx->thunkpos;  if (!yymatchChar(ctx, '"')) goto l123;  if (!yy_Sp(ctx)) goto l123;  if (!yy_Newline(ctx)) goto l123;  goto l122;
  l123:;	  ctx->pos= yypos122; ctx->thunkpos= yythunkpos122;  if (!yy_Newline(ctx)) goto l121;
  }
  l122:;	  goto l120;
  l121:;	  ctx->pos= yypos121; ctx->thunkpos= yythunkpos121;
  }  if (!yymatchDot(ctx)) goto l120;  goto l119;
  l120:;	  ctx->pos= yypos120; ctx->thunkpos= yythunkpos120;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l118;  if (!yymatchChar(ctx, '"')) goto l118;
  yyprintf((stderr, "  ok   %s @ %s\n", "RefTitleDouble", ctx->buf+ctx->pos));
  return 1;
  l118:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RefTitleDouble", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RefTitleSingle(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "RefTitleSingle"));  if (!yy_Spnl(ctx)) goto l124;  if (!yymatchChar(ctx, '\'')) goto l124;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l124;
  l125:;	
  {  int yypos126= ctx->pos, yythunkpos126= ctx->thunkpos;
  {  int yypos127= ctx->pos, yythunkpos127= ctx->thunkpos;
  {  int yypos128= ctx->pos, yythunkpos128= ctx->thunkpos;  if (!yymatchChar(ctx, '\'')) goto l129;  if (!yy_Sp(ctx)) goto l129;  if (!yy_Newline(ctx)) goto l129;  goto l128;
  l129:;	  ctx->pos= yypos128; ctx->thunkpos= yythunkpos128;  if (!yy_Newline(ctx)) goto l127;
  }
  l128:;	  goto l126;
  l127:;	  ctx->pos= yypos127; ctx->thunkpos= yythunkpos127;
  }  if (!yymatchDot(ctx)) goto l126;  goto l125;
  l126:;	  ctx->pos= yypos126; ctx->thunkpos= yythunkpos126;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l124;  if (!yymatchChar(ctx, '\'')) goto l124;
  yyprintf((stderr, "  ok   %s @ %s\n", "RefTitleSingle", ctx->buf+ctx->pos));
  return 1;
  l124:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RefTitleSingle", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RefTitle(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "RefTitle"));
  {  int yypos131= ctx->pos, yythunkpos131= ctx->thunkpos;  if (!yy_RefTitleSingle(ctx)) goto l132;  goto l131;
  l132:;	  ctx->pos= yypos131; ctx->thunkpos= yythunkpos131;  if (!yy_RefTitleDouble(ctx)) goto l133;  goto l131;
  l133:;	  ctx->pos= yypos131; ctx->thunkpos= yythunkpos131;  if (!yy_RefTitleParens(ctx)) goto l134;  goto l131;
  l134:;	  ctx->pos= yypos131; ctx->thunkpos= yythunkpos131;  if (!yy_EmptyTitle(ctx)) goto l130;
  }
  l131:;	  yyDo(ctx, yy_1_RefTitle, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "RefTitle", ctx->buf+ctx->pos));
  return 1;
  l130:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RefTitle", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RefSrc(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "RefSrc"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l135;  if (!yy_Nonspacechar(ctx)) goto l135;
  l136:;	
  {  int yypos137= ctx->pos, yythunkpos137= ctx->thunkpos;  if (!yy_Nonspacechar(ctx)) goto l137;  goto l136;
  l137:;	  ctx->pos= yypos137; ctx->thunkpos= yythunkpos137;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l135;  yyDo(ctx, yy_1_RefSrc, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "RefSrc", ctx->buf+ctx->pos));
  return 1;
  l135:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RefSrc", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_AutoLinkEmail(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "AutoLinkEmail"));  if (!yymatchChar(ctx, '<')) goto l138;
  {  int yypos139= ctx->pos, yythunkpos139= ctx->thunkpos;  if (!yymatchString(ctx, "mailto:")) goto l139;  goto l140;
  l139:;	  ctx->pos= yypos139; ctx->thunkpos= yythunkpos139;
  }
  l140:;	  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l138;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\062\350\377\003\376\377\377\207\376\377\377\107\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l138;
  l141:;	
  {  int yypos142= ctx->pos, yythunkpos142= ctx->thunkpos;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\062\350\377\003\376\377\377\207\376\377\377\107\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l142;  goto l141;
  l142:;	  ctx->pos= yypos142; ctx->thunkpos= yythunkpos142;
  }  if (!yymatchChar(ctx, '@')) goto l138;
  {  int yypos145= ctx->pos, yythunkpos145= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l145;  goto l138;
  l145:;	  ctx->pos= yypos145; ctx->thunkpos= yythunkpos145;
  }
  {  int yypos146= ctx->pos, yythunkpos146= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l146;  goto l138;
  l146:;	  ctx->pos= yypos146; ctx->thunkpos= yythunkpos146;
  }  if (!yymatchDot(ctx)) goto l138;
  l143:;	
  {  int yypos144= ctx->pos, yythunkpos144= ctx->thunkpos;
  {  int yypos147= ctx->pos, yythunkpos147= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l147;  goto l144;
  l147:;	  ctx->pos= yypos147; ctx->thunkpos= yythunkpos147;
  }
  {  int yypos148= ctx->pos, yythunkpos148= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l148;  goto l144;
  l148:;	  ctx->pos= yypos148; ctx->thunkpos= yythunkpos148;
  }  if (!yymatchDot(ctx)) goto l144;  goto l143;
  l144:;	  ctx->pos= yypos144; ctx->thunkpos= yythunkpos144;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l138;  if (!yymatchChar(ctx, '>')) goto l138;  yyDo(ctx, yy_1_AutoLinkEmail, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "AutoLinkEmail", ctx->buf+ctx->pos));
  return 1;
  l138:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "AutoLinkEmail", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_AutoLinkUrl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "AutoLinkUrl"));  if (!yymatchChar(ctx, '<')) goto l149;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l149;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\000\000\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l149;
  l150:;	
  {  int yypos151= ctx->pos, yythunkpos151= ctx->thunkpos;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\000\000\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l151;  goto l150;
  l151:;	  ctx->pos= yypos151; ctx->thunkpos= yythunkpos151;
  }  if (!yymatchString(ctx, "://")) goto l149;
  {  int yypos154= ctx->pos, yythunkpos154= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l154;  goto l149;
  l154:;	  ctx->pos= yypos154; ctx->thunkpos= yythunkpos154;
  }
  {  int yypos155= ctx->pos, yythunkpos155= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l155;  goto l149;
  l155:;	  ctx->pos= yypos155; ctx->thunkpos= yythunkpos155;
  }  if (!yymatchDot(ctx)) goto l149;
  l152:;	
  {  int yypos153= ctx->pos, yythunkpos153= ctx->thunkpos;
  {  int yypos156= ctx->pos, yythunkpos156= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l156;  goto l153;
  l156:;	  ctx->pos= yypos156; ctx->thunkpos= yythunkpos156;
  }
  {  int yypos157= ctx->pos, yythunkpos157= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l157;  goto l153;
  l157:;	  ctx->pos= yypos157; ctx->thunkpos= yythunkpos157;
  }  if (!yymatchDot(ctx)) goto l153;  goto l152;
  l153:;	  ctx->pos= yypos153; ctx->thunkpos= yythunkpos153;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l149;  if (!yymatchChar(ctx, '>')) goto l149;  yyDo(ctx, yy_1_AutoLinkUrl, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "AutoLinkUrl", ctx->buf+ctx->pos));
  return 1;
  l149:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "AutoLinkUrl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_TitleDouble(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "TitleDouble"));  if (!yymatchChar(ctx, '"')) goto l158;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l158;
  l159:;	
  {  int yypos160= ctx->pos, yythunkpos160= ctx->thunkpos;
  {  int yypos161= ctx->pos, yythunkpos161= ctx->thunkpos;  if (!yymatchChar(ctx, '"')) goto l161;  if (!yy_Sp(ctx)) goto l161;
  {  int yypos162= ctx->pos, yythunkpos162= ctx->thunkpos;  if (!yymatchChar(ctx, ')')) goto l163;  goto l162;
  l163:;	  ctx->pos= yypos162; ctx->thunkpos= yythunkpos162;  if (!yy_Newline(ctx)) goto l161;
  }
  l162:;	  goto l160;
  l161:;	  ctx->pos= yypos161; ctx->thunkpos= yythunkpos161;
  }  if (!yymatchDot(ctx)) goto l160;  goto l159;
  l160:;	  ctx->pos= yypos160; ctx->thunkpos= yythunkpos160;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l158;  if (!yymatchChar(ctx, '"')) goto l158;
  yyprintf((stderr, "  ok   %s @ %s\n", "TitleDouble", ctx->buf+ctx->pos));
  return 1;
  l158:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "TitleDouble", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_TitleSingle(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "TitleSingle"));  if (!yymatchChar(ctx, '\'')) goto l164;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l164;
  l165:;	
  {  int yypos166= ctx->pos, yythunkpos166= ctx->thunkpos;
  {  int yypos167= ctx->pos, yythunkpos167= ctx->thunkpos;  if (!yymatchChar(ctx, '\'')) goto l167;  if (!yy_Sp(ctx)) goto l167;
  {  int yypos168= ctx->pos, yythunkpos168= ctx->thunkpos;  if (!yymatchChar(ctx, ')')) goto l169;  goto l168;
  l169:;	  ctx->pos= yypos168; ctx->thunkpos= yythunkpos168;  if (!yy_Newline(ctx)) goto l167;
  }
  l168:;	  goto l166;
  l167:;	  ctx->pos= yypos167; ctx->thunkpos= yythunkpos167;
  }  if (!yymatchDot(ctx)) goto l166;  goto l165;
  l166:;	  ctx->pos= yypos166; ctx->thunkpos= yythunkpos166;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l164;  if (!yymatchChar(ctx, '\'')) goto l164;
  yyprintf((stderr, "  ok   %s @ %s\n", "TitleSingle", ctx->buf+ctx->pos));
  return 1;
  l164:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "TitleSingle", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Nonspacechar(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Nonspacechar"));
  {  int yypos171= ctx->pos, yythunkpos171= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l171;  goto l170;
  l171:;	  ctx->pos= yypos171; ctx->thunkpos= yythunkpos171;
  }
  {  int yypos172= ctx->pos, yythunkpos172= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l172;  goto l170;
  l172:;	  ctx->pos= yypos172; ctx->thunkpos= yythunkpos172;
  }  if (!yymatchDot(ctx)) goto l170;
  yyprintf((stderr, "  ok   %s @ %s\n", "Nonspacechar", ctx->buf+ctx->pos));
  return 1;
  l170:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Nonspacechar", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SourceContents(yycontext *ctx)
{
  yyprintf((stderr, "%s\n", "SourceContents"));
  l174:;	
  {  int yypos175= ctx->pos, yythunkpos175= ctx->thunkpos;
  {  int yypos176= ctx->pos, yythunkpos176= ctx->thunkpos;
  {  int yypos180= ctx->pos, yythunkpos180= ctx->thunkpos;  if (!yymatchChar(ctx, '(')) goto l180;  goto l177;
  l180:;	  ctx->pos= yypos180; ctx->thunkpos= yythunkpos180;
  }
  {  int yypos181= ctx->pos, yythunkpos181= ctx->thunkpos;  if (!yymatchChar(ctx, ')')) goto l181;  goto l177;
  l181:;	  ctx->pos= yypos181; ctx->thunkpos= yythunkpos181;
  }
  {  int yypos182= ctx->pos, yythunkpos182= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l182;  goto l177;
  l182:;	  ctx->pos= yypos182; ctx->thunkpos= yythunkpos182;
  }  if (!yy_Nonspacechar(ctx)) goto l177;
  l178:;	
  {  int yypos179= ctx->pos, yythunkpos179= ctx->thunkpos;
  {  int yypos183= ctx->pos, yythunkpos183= ctx->thunkpos;  if (!yymatchChar(ctx, '(')) goto l183;  goto l179;
  l183:;	  ctx->pos= yypos183; ctx->thunkpos= yythunkpos183;
  }
  {  int yypos184= ctx->pos, yythunkpos184= ctx->thunkpos;  if (!yymatchChar(ctx, ')')) goto l184;  goto l179;
  l184:;	  ctx->pos= yypos184; ctx->thunkpos= yythunkpos184;
  }
  {  int yypos185= ctx->pos, yythunkpos185= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l185;  goto l179;
  l185:;	  ctx->pos= yypos185; ctx->thunkpos= yythunkpos185;
  }  if (!yy_Nonspacechar(ctx)) goto l179;  goto l178;
  l179:;	  ctx->pos= yypos179; ctx->thunkpos= yythunkpos179;
  }  goto l176;
  l177:;	  ctx->pos= yypos176; ctx->thunkpos= yythunkpos176;  if (!yymatchChar(ctx, '(')) goto l175;  if (!yy_SourceContents(ctx)) goto l175;  if (!yymatchChar(ctx, ')')) goto l175;
  }
  l176:;	  goto l174;
  l175:;	  ctx->pos= yypos175; ctx->thunkpos= yythunkpos175;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "SourceContents", ctx->buf+ctx->pos));
  return 1;
}
YY_RULE(int) yy_Title(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Title"));
  {  int yypos187= ctx->pos, yythunkpos187= ctx->thunkpos;  if (!yy_TitleSingle(ctx)) goto l188;  goto l187;
  l188:;	  ctx->pos= yypos187; ctx->thunkpos= yythunkpos187;  if (!yy_TitleDouble(ctx)) goto l189;  goto l187;
  l189:;	  ctx->pos= yypos187; ctx->thunkpos= yythunkpos187;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l186;  if (!yymatchString(ctx, "")) goto l186;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l186;
  }
  l187:;	  yyDo(ctx, yy_1_Title, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Title", ctx->buf+ctx->pos));
  return 1;
  l186:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Title", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Source(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Source"));
  {  int yypos191= ctx->pos, yythunkpos191= ctx->thunkpos;  if (!yymatchChar(ctx, '<')) goto l192;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l192;  if (!yy_SourceContents(ctx)) goto l192;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l192;  if (!yymatchChar(ctx, '>')) goto l192;  goto l191;
  l192:;	  ctx->pos= yypos191; ctx->thunkpos= yythunkpos191;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l190;  if (!yy_SourceContents(ctx)) goto l190;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l190;
  }
  l191:;	  yyDo(ctx, yy_1_Source, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Source", ctx->buf+ctx->pos));
  return 1;
  l190:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Source", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Label(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "Label"));  if (!yymatchChar(ctx, '[')) goto l193;
  {  int yypos194= ctx->pos, yythunkpos194= ctx->thunkpos;
  {  int yypos196= ctx->pos, yythunkpos196= ctx->thunkpos;  if (!yymatchChar(ctx, '^')) goto l196;  goto l195;
  l196:;	  ctx->pos= yypos196; ctx->thunkpos= yythunkpos196;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!( extension(EXT_NOTES) )) goto l195;  goto l194;
  l195:;	  ctx->pos= yypos194; ctx->thunkpos= yythunkpos194;
  {  int yypos197= ctx->pos, yythunkpos197= ctx->thunkpos;  if (!yymatchDot(ctx)) goto l193;  ctx->pos= yypos197; ctx->thunkpos= yythunkpos197;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!( !extension(EXT_NOTES) )) goto l193;
  }
  l194:;	  if (!yy_StartList(ctx)) goto l193;  yyDo(ctx, yySet, -1, 0);
  l198:;	
  {  int yypos199= ctx->pos, yythunkpos199= ctx->thunkpos;
  {  int yypos200= ctx->pos, yythunkpos200= ctx->thunkpos;  if (!yymatchChar(ctx, ']')) goto l200;  goto l199;
  l200:;	  ctx->pos= yypos200; ctx->thunkpos= yythunkpos200;
  }  if (!yy_Inline(ctx)) goto l199;  yyDo(ctx, yy_1_Label, ctx->begin, ctx->end);  goto l198;
  l199:;	  ctx->pos= yypos199; ctx->thunkpos= yythunkpos199;
  }  if (!yymatchChar(ctx, ']')) goto l193;  yyDo(ctx, yy_2_Label, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Label", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l193:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Label", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ReferenceLinkSingle(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "ReferenceLinkSingle"));  if (!yy_Label(ctx)) goto l201;  yyDo(ctx, yySet, -1, 0);  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l201;
  {  int yypos202= ctx->pos, yythunkpos202= ctx->thunkpos;  if (!yy_Spnl(ctx)) goto l202;  if (!yymatchString(ctx, "[]")) goto l202;  goto l203;
  l202:;	  ctx->pos= yypos202; ctx->thunkpos= yythunkpos202;
  }
  l203:;	  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l201;  yyDo(ctx, yy_1_ReferenceLinkSingle, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ReferenceLinkSingle", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l201:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ReferenceLinkSingle", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ReferenceLinkDouble(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "ReferenceLinkDouble"));  if (!yy_Label(ctx)) goto l204;  yyDo(ctx, yySet, -2, 0);  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l204;  if (!yy_Spnl(ctx)) goto l204;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l204;
  {  int yypos205= ctx->pos, yythunkpos205= ctx->thunkpos;  if (!yymatchString(ctx, "[]")) goto l205;  goto l204;
  l205:;	  ctx->pos= yypos205; ctx->thunkpos= yythunkpos205;
  }  if (!yy_Label(ctx)) goto l204;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_ReferenceLinkDouble, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ReferenceLinkDouble", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l204:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ReferenceLinkDouble", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_AutoLink(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "AutoLink"));
  {  int yypos207= ctx->pos, yythunkpos207= ctx->thunkpos;  if (!yy_AutoLinkUrl(ctx)) goto l208;  goto l207;
  l208:;	  ctx->pos= yypos207; ctx->thunkpos= yythunkpos207;  if (!yy_AutoLinkEmail(ctx)) goto l206;
  }
  l207:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "AutoLink", ctx->buf+ctx->pos));
  return 1;
  l206:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "AutoLink", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ReferenceLink(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "ReferenceLink"));
  {  int yypos210= ctx->pos, yythunkpos210= ctx->thunkpos;  if (!yy_ReferenceLinkDouble(ctx)) goto l211;  goto l210;
  l211:;	  ctx->pos= yypos210; ctx->thunkpos= yythunkpos210;  if (!yy_ReferenceLinkSingle(ctx)) goto l209;
  }
  l210:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "ReferenceLink", ctx->buf+ctx->pos));
  return 1;
  l209:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ReferenceLink", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ExplicitLink(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 3, 0);
  yyprintf((stderr, "%s\n", "ExplicitLink"));  if (!yy_Label(ctx)) goto l212;  yyDo(ctx, yySet, -3, 0);  if (!yymatchChar(ctx, '(')) goto l212;  if (!yy_Sp(ctx)) goto l212;  if (!yy_Source(ctx)) goto l212;  yyDo(ctx, yySet, -2, 0);  if (!yy_Spnl(ctx)) goto l212;  if (!yy_Title(ctx)) goto l212;  yyDo(ctx, yySet, -1, 0);  if (!yy_Sp(ctx)) goto l212;  if (!yymatchChar(ctx, ')')) goto l212;  yyDo(ctx, yy_1_ExplicitLink, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ExplicitLink", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 3, 0);
  return 1;
  l212:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ExplicitLink", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_StrongUl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "StrongUl"));  if (!yymatchString(ctx, "__")) goto l213;
  {  int yypos214= ctx->pos, yythunkpos214= ctx->thunkpos;  if (!yy_Whitespace(ctx)) goto l214;  goto l213;
  l214:;	  ctx->pos= yypos214; ctx->thunkpos= yythunkpos214;
  }  if (!yy_StartList(ctx)) goto l213;  yyDo(ctx, yySet, -2, 0);
  {  int yypos217= ctx->pos, yythunkpos217= ctx->thunkpos;  if (!yymatchString(ctx, "__")) goto l217;  goto l213;
  l217:;	  ctx->pos= yypos217; ctx->thunkpos= yythunkpos217;
  }  if (!yy_Inline(ctx)) goto l213;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_StrongUl, ctx->begin, ctx->end);
  l215:;	
  {  int yypos216= ctx->pos, yythunkpos216= ctx->thunkpos;
  {  int yypos218= ctx->pos, yythunkpos218= ctx->thunkpos;  if (!yymatchString(ctx, "__")) goto l218;  goto l216;
  l218:;	  ctx->pos= yypos218; ctx->thunkpos= yythunkpos218;
  }  if (!yy_Inline(ctx)) goto l216;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_StrongUl, ctx->begin, ctx->end);  goto l215;
  l216:;	  ctx->pos= yypos216; ctx->thunkpos= yythunkpos216;
  }  if (!yymatchString(ctx, "__")) goto l213;  yyDo(ctx, yy_2_StrongUl, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "StrongUl", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l213:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "StrongUl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_StrongStar(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "StrongStar"));  if (!yymatchString(ctx, "**")) goto l219;
  {  int yypos220= ctx->pos, yythunkpos220= ctx->thunkpos;  if (!yy_Whitespace(ctx)) goto l220;  goto l219;
  l220:;	  ctx->pos= yypos220; ctx->thunkpos= yythunkpos220;
  }  if (!yy_StartList(ctx)) goto l219;  yyDo(ctx, yySet, -2, 0);
  {  int yypos223= ctx->pos, yythunkpos223= ctx->thunkpos;  if (!yymatchString(ctx, "**")) goto l223;  goto l219;
  l223:;	  ctx->pos= yypos223; ctx->thunkpos= yythunkpos223;
  }  if (!yy_Inline(ctx)) goto l219;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_StrongStar, ctx->begin, ctx->end);
  l221:;	
  {  int yypos222= ctx->pos, yythunkpos222= ctx->thunkpos;
  {  int yypos224= ctx->pos, yythunkpos224= ctx->thunkpos;  if (!yymatchString(ctx, "**")) goto l224;  goto l222;
  l224:;	  ctx->pos= yypos224; ctx->thunkpos= yythunkpos224;
  }  if (!yy_Inline(ctx)) goto l222;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_StrongStar, ctx->begin, ctx->end);  goto l221;
  l222:;	  ctx->pos= yypos222; ctx->thunkpos= yythunkpos222;
  }  if (!yymatchString(ctx, "**")) goto l219;  yyDo(ctx, yy_2_StrongStar, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "StrongStar", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l219:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "StrongStar", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Whitespace(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Whitespace"));
  {  int yypos226= ctx->pos, yythunkpos226= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l227;  goto l226;
  l227:;	  ctx->pos= yypos226; ctx->thunkpos= yythunkpos226;  if (!yy_Newline(ctx)) goto l225;
  }
  l226:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Whitespace", ctx->buf+ctx->pos));
  return 1;
  l225:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Whitespace", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_EmphUl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "EmphUl"));  if (!yymatchChar(ctx, '_')) goto l228;
  {  int yypos229= ctx->pos, yythunkpos229= ctx->thunkpos;  if (!yy_Whitespace(ctx)) goto l229;  goto l228;
  l229:;	  ctx->pos= yypos229; ctx->thunkpos= yythunkpos229;
  }  if (!yy_StartList(ctx)) goto l228;  yyDo(ctx, yySet, -2, 0);
  {  int yypos232= ctx->pos, yythunkpos232= ctx->thunkpos;
  {  int yypos234= ctx->pos, yythunkpos234= ctx->thunkpos;  if (!yymatchChar(ctx, '_')) goto l234;  goto l233;
  l234:;	  ctx->pos= yypos234; ctx->thunkpos= yythunkpos234;
  }  if (!yy_Inline(ctx)) goto l233;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_EmphUl, ctx->begin, ctx->end);  goto l232;
  l233:;	  ctx->pos= yypos232; ctx->thunkpos= yythunkpos232;  if (!yy_StrongUl(ctx)) goto l228;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_2_EmphUl, ctx->begin, ctx->end);
  }
  l232:;	
  l230:;	
  {  int yypos231= ctx->pos, yythunkpos231= ctx->thunkpos;
  {  int yypos235= ctx->pos, yythunkpos235= ctx->thunkpos;
  {  int yypos237= ctx->pos, yythunkpos237= ctx->thunkpos;  if (!yymatchChar(ctx, '_')) goto l237;  goto l236;
  l237:;	  ctx->pos= yypos237; ctx->thunkpos= yythunkpos237;
  }  if (!yy_Inline(ctx)) goto l236;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_EmphUl, ctx->begin, ctx->end);  goto l235;
  l236:;	  ctx->pos= yypos235; ctx->thunkpos= yythunkpos235;  if (!yy_StrongUl(ctx)) goto l231;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_2_EmphUl, ctx->begin, ctx->end);
  }
  l235:;	  goto l230;
  l231:;	  ctx->pos= yypos231; ctx->thunkpos= yythunkpos231;
  }  if (!yymatchChar(ctx, '_')) goto l228;  yyDo(ctx, yy_3_EmphUl, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "EmphUl", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l228:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "EmphUl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_EmphStar(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "EmphStar"));  if (!yymatchChar(ctx, '*')) goto l238;
  {  int yypos239= ctx->pos, yythunkpos239= ctx->thunkpos;  if (!yy_Whitespace(ctx)) goto l239;  goto l238;
  l239:;	  ctx->pos= yypos239; ctx->thunkpos= yythunkpos239;
  }  if (!yy_StartList(ctx)) goto l238;  yyDo(ctx, yySet, -2, 0);
  {  int yypos242= ctx->pos, yythunkpos242= ctx->thunkpos;
  {  int yypos244= ctx->pos, yythunkpos244= ctx->thunkpos;  if (!yymatchChar(ctx, '*')) goto l244;  goto l243;
  l244:;	  ctx->pos= yypos244; ctx->thunkpos= yythunkpos244;
  }  if (!yy_Inline(ctx)) goto l243;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_EmphStar, ctx->begin, ctx->end);  goto l242;
  l243:;	  ctx->pos= yypos242; ctx->thunkpos= yythunkpos242;  if (!yy_StrongStar(ctx)) goto l238;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_2_EmphStar, ctx->begin, ctx->end);
  }
  l242:;	
  l240:;	
  {  int yypos241= ctx->pos, yythunkpos241= ctx->thunkpos;
  {  int yypos245= ctx->pos, yythunkpos245= ctx->thunkpos;
  {  int yypos247= ctx->pos, yythunkpos247= ctx->thunkpos;  if (!yymatchChar(ctx, '*')) goto l247;  goto l246;
  l247:;	  ctx->pos= yypos247; ctx->thunkpos= yythunkpos247;
  }  if (!yy_Inline(ctx)) goto l246;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_EmphStar, ctx->begin, ctx->end);  goto l245;
  l246:;	  ctx->pos= yypos245; ctx->thunkpos= yythunkpos245;  if (!yy_StrongStar(ctx)) goto l241;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_2_EmphStar, ctx->begin, ctx->end);
  }
  l245:;	  goto l240;
  l241:;	  ctx->pos= yypos241; ctx->thunkpos= yythunkpos241;
  }  if (!yymatchChar(ctx, '*')) goto l238;  yyDo(ctx, yy_3_EmphStar, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "EmphStar", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l238:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "EmphStar", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_StarLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "StarLine"));
  {  int yypos249= ctx->pos, yythunkpos249= ctx->thunkpos;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l250;  if (!yymatchString(ctx, "****")) goto l250;
  l251:;	
  {  int yypos252= ctx->pos, yythunkpos252= ctx->thunkpos;  if (!yymatchChar(ctx, '*')) goto l252;  goto l251;
  l252:;	  ctx->pos= yypos252; ctx->thunkpos= yythunkpos252;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l250;  goto l249;
  l250:;	  ctx->pos= yypos249; ctx->thunkpos= yythunkpos249;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l248;  if (!yy_Spacechar(ctx)) goto l248;  if (!yymatchChar(ctx, '*')) goto l248;
  l253:;	
  {  int yypos254= ctx->pos, yythunkpos254= ctx->thunkpos;  if (!yymatchChar(ctx, '*')) goto l254;  goto l253;
  l254:;	  ctx->pos= yypos254; ctx->thunkpos= yythunkpos254;
  }
  {  int yypos255= ctx->pos, yythunkpos255= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l248;  ctx->pos= yypos255; ctx->thunkpos= yythunkpos255;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l248;
  }
  l249:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "StarLine", ctx->buf+ctx->pos));
  return 1;
  l248:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "StarLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_UlLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "UlLine"));
  {  int yypos257= ctx->pos, yythunkpos257= ctx->thunkpos;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l258;  if (!yymatchString(ctx, "____")) goto l258;
  l259:;	
  {  int yypos260= ctx->pos, yythunkpos260= ctx->thunkpos;  if (!yymatchChar(ctx, '_')) goto l260;  goto l259;
  l260:;	  ctx->pos= yypos260; ctx->thunkpos= yythunkpos260;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l258;  goto l257;
  l258:;	  ctx->pos= yypos257; ctx->thunkpos= yythunkpos257;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l256;  if (!yy_Spacechar(ctx)) goto l256;  if (!yymatchChar(ctx, '_')) goto l256;
  l261:;	
  {  int yypos262= ctx->pos, yythunkpos262= ctx->thunkpos;  if (!yymatchChar(ctx, '_')) goto l262;  goto l261;
  l262:;	  ctx->pos= yypos262; ctx->thunkpos= yythunkpos262;
  }
  {  int yypos263= ctx->pos, yythunkpos263= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l256;  ctx->pos= yypos263; ctx->thunkpos= yythunkpos263;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l256;
  }
  l257:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "UlLine", ctx->buf+ctx->pos));
  return 1;
  l256:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "UlLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SpecialChar(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "SpecialChar"));
  {  int yypos265= ctx->pos, yythunkpos265= ctx->thunkpos;  if (!yymatchChar(ctx, '*')) goto l266;  goto l265;
  l266:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '_')) goto l267;  goto l265;
  l267:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '`')) goto l268;  goto l265;
  l268:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '&')) goto l269;  goto l265;
  l269:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '[')) goto l270;  goto l265;
  l270:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, ']')) goto l271;  goto l265;
  l271:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '(')) goto l272;  goto l265;
  l272:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, ')')) goto l273;  goto l265;
  l273:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '<')) goto l274;  goto l265;
  l274:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '!')) goto l275;  goto l265;
  l275:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '#')) goto l276;  goto l265;
  l276:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '\\')) goto l277;  goto l265;
  l277:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '\'')) goto l278;  goto l265;
  l278:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yymatchChar(ctx, '"')) goto l279;  goto l265;
  l279:;	  ctx->pos= yypos265; ctx->thunkpos= yythunkpos265;  if (!yy_ExtendedSpecialChar(ctx)) goto l264;
  }
  l265:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "SpecialChar", ctx->buf+ctx->pos));
  return 1;
  l264:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SpecialChar", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Eof(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Eof"));
  {  int yypos281= ctx->pos, yythunkpos281= ctx->thunkpos;  if (!yymatchDot(ctx)) goto l281;  goto l280;
  l281:;	  ctx->pos= yypos281; ctx->thunkpos= yythunkpos281;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Eof", ctx->buf+ctx->pos));
  return 1;
  l280:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Eof", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_NormalEndline(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "NormalEndline"));  if (!yy_Sp(ctx)) goto l282;  if (!yy_Newline(ctx)) goto l282;
  {  int yypos283= ctx->pos, yythunkpos283= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l283;  goto l282;
  l283:;	  ctx->pos= yypos283; ctx->thunkpos= yythunkpos283;
  }
  {  int yypos284= ctx->pos, yythunkpos284= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l284;  goto l282;
  l284:;	  ctx->pos= yypos284; ctx->thunkpos= yythunkpos284;
  }
  {  int yypos285= ctx->pos, yythunkpos285= ctx->thunkpos;  if (!yy_AtxStart(ctx)) goto l285;  goto l282;
  l285:;	  ctx->pos= yypos285; ctx->thunkpos= yythunkpos285;
  }
  {  int yypos286= ctx->pos, yythunkpos286= ctx->thunkpos;  if (!yy_Line(ctx)) goto l286;
  {  int yypos287= ctx->pos, yythunkpos287= ctx->thunkpos;  if (!yymatchChar(ctx, '=')) goto l288;
  l289:;	
  {  int yypos290= ctx->pos, yythunkpos290= ctx->thunkpos;  if (!yymatchChar(ctx, '=')) goto l290;  goto l289;
  l290:;	  ctx->pos= yypos290; ctx->thunkpos= yythunkpos290;
  }  goto l287;
  l288:;	  ctx->pos= yypos287; ctx->thunkpos= yythunkpos287;  if (!yymatchChar(ctx, '-')) goto l286;
  l291:;	
  {  int yypos292= ctx->pos, yythunkpos292= ctx->thunkpos;  if (!yymatchChar(ctx, '-')) goto l292;  goto l291;
  l292:;	  ctx->pos= yypos292; ctx->thunkpos= yythunkpos292;
  }
  }
  l287:;	  if (!yy_Newline(ctx)) goto l286;  goto l282;
  l286:;	  ctx->pos= yypos286; ctx->thunkpos= yythunkpos286;
  }  yyDo(ctx, yy_1_NormalEndline, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "NormalEndline", ctx->buf+ctx->pos));
  return 1;
  l282:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "NormalEndline", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_TerminalEndline(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "TerminalEndline"));  if (!yy_Sp(ctx)) goto l293;  if (!yy_Newline(ctx)) goto l293;  if (!yy_Eof(ctx)) goto l293;  yyDo(ctx, yy_1_TerminalEndline, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "TerminalEndline", ctx->buf+ctx->pos));
  return 1;
  l293:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "TerminalEndline", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_LineBreak(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "LineBreak"));  if (!yymatchString(ctx, "  ")) goto l294;  if (!yy_NormalEndline(ctx)) goto l294;  yyDo(ctx, yy_1_LineBreak, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "LineBreak", ctx->buf+ctx->pos));
  return 1;
  l294:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "LineBreak", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_CharEntity(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "CharEntity"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l295;  if (!yymatchChar(ctx, '&')) goto l295;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l295;
  l296:;	
  {  int yypos297= ctx->pos, yythunkpos297= ctx->thunkpos;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l297;  goto l296;
  l297:;	  ctx->pos= yypos297; ctx->thunkpos= yythunkpos297;
  }  if (!yymatchChar(ctx, ';')) goto l295;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l295;
  yyprintf((stderr, "  ok   %s @ %s\n", "CharEntity", ctx->buf+ctx->pos));
  return 1;
  l295:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "CharEntity", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_DecEntity(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "DecEntity"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l298;  if (!yymatchChar(ctx, '&')) goto l298;  if (!yymatchChar(ctx, '#')) goto l298;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l298;
  l299:;	
  {  int yypos300= ctx->pos, yythunkpos300= ctx->thunkpos;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l300;  goto l299;
  l300:;	  ctx->pos= yypos300; ctx->thunkpos= yythunkpos300;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l298;  if (!yymatchChar(ctx, ';')) goto l298;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l298;
  yyprintf((stderr, "  ok   %s @ %s\n", "DecEntity", ctx->buf+ctx->pos));
  return 1;
  l298:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "DecEntity", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HexEntity(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HexEntity"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l301;  if (!yymatchChar(ctx, '&')) goto l301;  if (!yymatchChar(ctx, '#')) goto l301;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\000\000\000\000\000\001\000\000\000\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l301;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\176\000\000\000\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l301;
  l302:;	
  {  int yypos303= ctx->pos, yythunkpos303= ctx->thunkpos;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\176\000\000\000\176\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l303;  goto l302;
  l303:;	  ctx->pos= yypos303; ctx->thunkpos= yythunkpos303;
  }  if (!yymatchChar(ctx, ';')) goto l301;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l301;
  yyprintf((stderr, "  ok   %s @ %s\n", "HexEntity", ctx->buf+ctx->pos));
  return 1;
  l301:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HexEntity", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_AposChunk(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "AposChunk"));  yyText(ctx, ctx->begin, ctx->end);  if (!( extension(EXT_SMART) )) goto l304;  if (!yymatchChar(ctx, '\'')) goto l304;
  {  int yypos305= ctx->pos, yythunkpos305= ctx->thunkpos;  if (!yy_Alphanumeric(ctx)) goto l304;  ctx->pos= yypos305; ctx->thunkpos= yythunkpos305;
  }  yyDo(ctx, yy_1_AposChunk, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "AposChunk", ctx->buf+ctx->pos));
  return 1;
  l304:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "AposChunk", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Alphanumeric(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Alphanumeric"));
  {  int yypos307= ctx->pos, yythunkpos307= ctx->thunkpos;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\376\377\377\007\376\377\377\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l308;  goto l307;
  l308:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\200")) goto l309;  goto l307;
  l309:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\201")) goto l310;  goto l307;
  l310:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\202")) goto l311;  goto l307;
  l311:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\203")) goto l312;  goto l307;
  l312:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\204")) goto l313;  goto l307;
  l313:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\205")) goto l314;  goto l307;
  l314:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\206")) goto l315;  goto l307;
  l315:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\207")) goto l316;  goto l307;
  l316:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\210")) goto l317;  goto l307;
  l317:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\211")) goto l318;  goto l307;
  l318:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\212")) goto l319;  goto l307;
  l319:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\213")) goto l320;  goto l307;
  l320:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\214")) goto l321;  goto l307;
  l321:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\215")) goto l322;  goto l307;
  l322:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\216")) goto l323;  goto l307;
  l323:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\217")) goto l324;  goto l307;
  l324:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\220")) goto l325;  goto l307;
  l325:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\221")) goto l326;  goto l307;
  l326:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\222")) goto l327;  goto l307;
  l327:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\223")) goto l328;  goto l307;
  l328:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\224")) goto l329;  goto l307;
  l329:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\225")) goto l330;  goto l307;
  l330:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\226")) goto l331;  goto l307;
  l331:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\227")) goto l332;  goto l307;
  l332:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\230")) goto l333;  goto l307;
  l333:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\231")) goto l334;  goto l307;
  l334:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\232")) goto l335;  goto l307;
  l335:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\233")) goto l336;  goto l307;
  l336:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\234")) goto l337;  goto l307;
  l337:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\235")) goto l338;  goto l307;
  l338:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\236")) goto l339;  goto l307;
  l339:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\237")) goto l340;  goto l307;
  l340:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\240")) goto l341;  goto l307;
  l341:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\241")) goto l342;  goto l307;
  l342:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\242")) goto l343;  goto l307;
  l343:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\243")) goto l344;  goto l307;
  l344:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\244")) goto l345;  goto l307;
  l345:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\245")) goto l346;  goto l307;
  l346:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\246")) goto l347;  goto l307;
  l347:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\247")) goto l348;  goto l307;
  l348:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\250")) goto l349;  goto l307;
  l349:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\251")) goto l350;  goto l307;
  l350:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\252")) goto l351;  goto l307;
  l351:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\253")) goto l352;  goto l307;
  l352:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\254")) goto l353;  goto l307;
  l353:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\255")) goto l354;  goto l307;
  l354:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\256")) goto l355;  goto l307;
  l355:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\257")) goto l356;  goto l307;
  l356:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\260")) goto l357;  goto l307;
  l357:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\261")) goto l358;  goto l307;
  l358:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\262")) goto l359;  goto l307;
  l359:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\263")) goto l360;  goto l307;
  l360:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\264")) goto l361;  goto l307;
  l361:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\265")) goto l362;  goto l307;
  l362:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\266")) goto l363;  goto l307;
  l363:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\267")) goto l364;  goto l307;
  l364:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\270")) goto l365;  goto l307;
  l365:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\271")) goto l366;  goto l307;
  l366:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\272")) goto l367;  goto l307;
  l367:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\273")) goto l368;  goto l307;
  l368:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\274")) goto l369;  goto l307;
  l369:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\275")) goto l370;  goto l307;
  l370:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\276")) goto l371;  goto l307;
  l371:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\277")) goto l372;  goto l307;
  l372:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\300")) goto l373;  goto l307;
  l373:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\301")) goto l374;  goto l307;
  l374:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\302")) goto l375;  goto l307;
  l375:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\303")) goto l376;  goto l307;
  l376:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\304")) goto l377;  goto l307;
  l377:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\305")) goto l378;  goto l307;
  l378:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\306")) goto l379;  goto l307;
  l379:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\307")) goto l380;  goto l307;
  l380:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\310")) goto l381;  goto l307;
  l381:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\311")) goto l382;  goto l307;
  l382:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\312")) goto l383;  goto l307;
  l383:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\313")) goto l384;  goto l307;
  l384:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\314")) goto l385;  goto l307;
  l385:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\315")) goto l386;  goto l307;
  l386:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\316")) goto l387;  goto l307;
  l387:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\317")) goto l388;  goto l307;
  l388:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\320")) goto l389;  goto l307;
  l389:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\321")) goto l390;  goto l307;
  l390:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\322")) goto l391;  goto l307;
  l391:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\323")) goto l392;  goto l307;
  l392:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\324")) goto l393;  goto l307;
  l393:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\325")) goto l394;  goto l307;
  l394:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\326")) goto l395;  goto l307;
  l395:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\327")) goto l396;  goto l307;
  l396:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\330")) goto l397;  goto l307;
  l397:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\331")) goto l398;  goto l307;
  l398:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\332")) goto l399;  goto l307;
  l399:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\333")) goto l400;  goto l307;
  l400:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\334")) goto l401;  goto l307;
  l401:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\335")) goto l402;  goto l307;
  l402:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\336")) goto l403;  goto l307;
  l403:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\337")) goto l404;  goto l307;
  l404:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\340")) goto l405;  goto l307;
  l405:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\341")) goto l406;  goto l307;
  l406:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\342")) goto l407;  goto l307;
  l407:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\343")) goto l408;  goto l307;
  l408:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\344")) goto l409;  goto l307;
  l409:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\345")) goto l410;  goto l307;
  l410:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\346")) goto l411;  goto l307;
  l411:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\347")) goto l412;  goto l307;
  l412:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\350")) goto l413;  goto l307;
  l413:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\351")) goto l414;  goto l307;
  l414:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\352")) goto l415;  goto l307;
  l415:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\353")) goto l416;  goto l307;
  l416:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\354")) goto l417;  goto l307;
  l417:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\355")) goto l418;  goto l307;
  l418:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\356")) goto l419;  goto l307;
  l419:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\357")) goto l420;  goto l307;
  l420:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\360")) goto l421;  goto l307;
  l421:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\361")) goto l422;  goto l307;
  l422:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\362")) goto l423;  goto l307;
  l423:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\363")) goto l424;  goto l307;
  l424:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\364")) goto l425;  goto l307;
  l425:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\365")) goto l426;  goto l307;
  l426:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\366")) goto l427;  goto l307;
  l427:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\367")) goto l428;  goto l307;
  l428:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\370")) goto l429;  goto l307;
  l429:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\371")) goto l430;  goto l307;
  l430:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\372")) goto l431;  goto l307;
  l431:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\373")) goto l432;  goto l307;
  l432:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\374")) goto l433;  goto l307;
  l433:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\375")) goto l434;  goto l307;
  l434:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\376")) goto l435;  goto l307;
  l435:;	  ctx->pos= yypos307; ctx->thunkpos= yythunkpos307;  if (!yymatchString(ctx, "\377")) goto l306;
  }
  l307:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Alphanumeric", ctx->buf+ctx->pos));
  return 1;
  l306:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Alphanumeric", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_StrChunk(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "StrChunk"));
  {  int yypos437= ctx->pos, yythunkpos437= ctx->thunkpos;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l438;
  {  int yypos441= ctx->pos, yythunkpos441= ctx->thunkpos;  if (!yy_NormalChar(ctx)) goto l442;  goto l441;
  l442:;	  ctx->pos= yypos441; ctx->thunkpos= yythunkpos441;  if (!yymatchChar(ctx, '_')) goto l438;
  l443:;	
  {  int yypos444= ctx->pos, yythunkpos444= ctx->thunkpos;  if (!yymatchChar(ctx, '_')) goto l444;  goto l443;
  l444:;	  ctx->pos= yypos444; ctx->thunkpos= yythunkpos444;
  }
  {  int yypos445= ctx->pos, yythunkpos445= ctx->thunkpos;  if (!yy_Alphanumeric(ctx)) goto l438;  ctx->pos= yypos445; ctx->thunkpos= yythunkpos445;
  }
  }
  l441:;	
  l439:;	
  {  int yypos440= ctx->pos, yythunkpos440= ctx->thunkpos;
  {  int yypos446= ctx->pos, yythunkpos446= ctx->thunkpos;  if (!yy_NormalChar(ctx)) goto l447;  goto l446;
  l447:;	  ctx->pos= yypos446; ctx->thunkpos= yythunkpos446;  if (!yymatchChar(ctx, '_')) goto l440;
  l448:;	
  {  int yypos449= ctx->pos, yythunkpos449= ctx->thunkpos;  if (!yymatchChar(ctx, '_')) goto l449;  goto l448;
  l449:;	  ctx->pos= yypos449; ctx->thunkpos= yythunkpos449;
  }
  {  int yypos450= ctx->pos, yythunkpos450= ctx->thunkpos;  if (!yy_Alphanumeric(ctx)) goto l440;  ctx->pos= yypos450; ctx->thunkpos= yythunkpos450;
  }
  }
  l446:;	  goto l439;
  l440:;	  ctx->pos= yypos440; ctx->thunkpos= yythunkpos440;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l438;  yyDo(ctx, yy_1_StrChunk, ctx->begin, ctx->end);  goto l437;
  l438:;	  ctx->pos= yypos437; ctx->thunkpos= yythunkpos437;  if (!yy_AposChunk(ctx)) goto l436;
  }
  l437:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "StrChunk", ctx->buf+ctx->pos));
  return 1;
  l436:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "StrChunk", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_NormalChar(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "NormalChar"));
  {  int yypos452= ctx->pos, yythunkpos452= ctx->thunkpos;
  {  int yypos453= ctx->pos, yythunkpos453= ctx->thunkpos;  if (!yy_SpecialChar(ctx)) goto l454;  goto l453;
  l454:;	  ctx->pos= yypos453; ctx->thunkpos= yythunkpos453;  if (!yy_Spacechar(ctx)) goto l455;  goto l453;
  l455:;	  ctx->pos= yypos453; ctx->thunkpos= yythunkpos453;  if (!yy_Newline(ctx)) goto l452;
  }
  l453:;	  goto l451;
  l452:;	  ctx->pos= yypos452; ctx->thunkpos= yythunkpos452;
  }  if (!yymatchDot(ctx)) goto l451;
  yyprintf((stderr, "  ok   %s @ %s\n", "NormalChar", ctx->buf+ctx->pos));
  return 1;
  l451:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "NormalChar", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Symbol(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Symbol"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l456;  if (!yy_SpecialChar(ctx)) goto l456;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l456;  yyDo(ctx, yy_1_Symbol, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Symbol", ctx->buf+ctx->pos));
  return 1;
  l456:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Symbol", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Smart(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Smart"));  yyText(ctx, ctx->begin, ctx->end);  if (!( extension(EXT_SMART) )) goto l457;
  {  int yypos458= ctx->pos, yythunkpos458= ctx->thunkpos;  if (!yy_Ellipsis(ctx)) goto l459;  goto l458;
  l459:;	  ctx->pos= yypos458; ctx->thunkpos= yythunkpos458;  if (!yy_Dash(ctx)) goto l460;  goto l458;
  l460:;	  ctx->pos= yypos458; ctx->thunkpos= yythunkpos458;  if (!yy_SingleQuoted(ctx)) goto l461;  goto l458;
  l461:;	  ctx->pos= yypos458; ctx->thunkpos= yythunkpos458;  if (!yy_DoubleQuoted(ctx)) goto l462;  goto l458;
  l462:;	  ctx->pos= yypos458; ctx->thunkpos= yythunkpos458;  if (!yy_Apostrophe(ctx)) goto l457;
  }
  l458:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Smart", ctx->buf+ctx->pos));
  return 1;
  l457:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Smart", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_EscapedChar(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "EscapedChar"));  if (!yymatchChar(ctx, '\\')) goto l463;
  {  int yypos464= ctx->pos, yythunkpos464= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l464;  goto l463;
  l464:;	  ctx->pos= yypos464; ctx->thunkpos= yythunkpos464;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l463;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\012\157\000\120\000\000\000\270\001\000\000\070\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l463;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l463;  yyDo(ctx, yy_1_EscapedChar, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "EscapedChar", ctx->buf+ctx->pos));
  return 1;
  l463:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "EscapedChar", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Entity(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Entity"));
  {  int yypos466= ctx->pos, yythunkpos466= ctx->thunkpos;  if (!yy_HexEntity(ctx)) goto l467;  goto l466;
  l467:;	  ctx->pos= yypos466; ctx->thunkpos= yythunkpos466;  if (!yy_DecEntity(ctx)) goto l468;  goto l466;
  l468:;	  ctx->pos= yypos466; ctx->thunkpos= yythunkpos466;  if (!yy_CharEntity(ctx)) goto l465;
  }
  l466:;	  yyDo(ctx, yy_1_Entity, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Entity", ctx->buf+ctx->pos));
  return 1;
  l465:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Entity", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RawHtml(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "RawHtml"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l469;
  {  int yypos470= ctx->pos, yythunkpos470= ctx->thunkpos;  if (!yy_HtmlComment(ctx)) goto l471;  goto l470;
  l471:;	  ctx->pos= yypos470; ctx->thunkpos= yythunkpos470;  if (!yy_HtmlBlockScript(ctx)) goto l472;  goto l470;
  l472:;	  ctx->pos= yypos470; ctx->thunkpos= yythunkpos470;  if (!yy_HtmlTag(ctx)) goto l469;
  }
  l470:;	  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l469;  yyDo(ctx, yy_1_RawHtml, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "RawHtml", ctx->buf+ctx->pos));
  return 1;
  l469:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RawHtml", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Code(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Code"));
  {  int yypos474= ctx->pos, yythunkpos474= ctx->thunkpos;  if (!yy_Ticks1(ctx)) goto l475;  if (!yy_Sp(ctx)) goto l475;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l475;
  {  int yypos478= ctx->pos, yythunkpos478= ctx->thunkpos;
  {  int yypos482= ctx->pos, yythunkpos482= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l482;  goto l479;
  l482:;	  ctx->pos= yypos482; ctx->thunkpos= yythunkpos482;
  }  if (!yy_Nonspacechar(ctx)) goto l479;
  l480:;	
  {  int yypos481= ctx->pos, yythunkpos481= ctx->thunkpos;
  {  int yypos483= ctx->pos, yythunkpos483= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l483;  goto l481;
  l483:;	  ctx->pos= yypos483; ctx->thunkpos= yythunkpos483;
  }  if (!yy_Nonspacechar(ctx)) goto l481;  goto l480;
  l481:;	  ctx->pos= yypos481; ctx->thunkpos= yythunkpos481;
  }  goto l478;
  l479:;	  ctx->pos= yypos478; ctx->thunkpos= yythunkpos478;
  {  int yypos485= ctx->pos, yythunkpos485= ctx->thunkpos;  if (!yy_Ticks1(ctx)) goto l485;  goto l484;
  l485:;	  ctx->pos= yypos485; ctx->thunkpos= yythunkpos485;
  }  if (!yymatchChar(ctx, '`')) goto l484;
  l486:;	
  {  int yypos487= ctx->pos, yythunkpos487= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l487;  goto l486;
  l487:;	  ctx->pos= yypos487; ctx->thunkpos= yythunkpos487;
  }  goto l478;
  l484:;	  ctx->pos= yypos478; ctx->thunkpos= yythunkpos478;
  {  int yypos488= ctx->pos, yythunkpos488= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l488;  if (!yy_Ticks1(ctx)) goto l488;  goto l475;
  l488:;	  ctx->pos= yypos488; ctx->thunkpos= yythunkpos488;
  }
  {  int yypos489= ctx->pos, yythunkpos489= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l490;  goto l489;
  l490:;	  ctx->pos= yypos489; ctx->thunkpos= yythunkpos489;  if (!yy_Newline(ctx)) goto l475;
  {  int yypos491= ctx->pos, yythunkpos491= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l491;  goto l475;
  l491:;	  ctx->pos= yypos491; ctx->thunkpos= yythunkpos491;
  }
  }
  l489:;	
  }
  l478:;	
  l476:;	
  {  int yypos477= ctx->pos, yythunkpos477= ctx->thunkpos;
  {  int yypos492= ctx->pos, yythunkpos492= ctx->thunkpos;
  {  int yypos496= ctx->pos, yythunkpos496= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l496;  goto l493;
  l496:;	  ctx->pos= yypos496; ctx->thunkpos= yythunkpos496;
  }  if (!yy_Nonspacechar(ctx)) goto l493;
  l494:;	
  {  int yypos495= ctx->pos, yythunkpos495= ctx->thunkpos;
  {  int yypos497= ctx->pos, yythunkpos497= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l497;  goto l495;
  l497:;	  ctx->pos= yypos497; ctx->thunkpos= yythunkpos497;
  }  if (!yy_Nonspacechar(ctx)) goto l495;  goto l494;
  l495:;	  ctx->pos= yypos495; ctx->thunkpos= yythunkpos495;
  }  goto l492;
  l493:;	  ctx->pos= yypos492; ctx->thunkpos= yythunkpos492;
  {  int yypos499= ctx->pos, yythunkpos499= ctx->thunkpos;  if (!yy_Ticks1(ctx)) goto l499;  goto l498;
  l499:;	  ctx->pos= yypos499; ctx->thunkpos= yythunkpos499;
  }  if (!yymatchChar(ctx, '`')) goto l498;
  l500:;	
  {  int yypos501= ctx->pos, yythunkpos501= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l501;  goto l500;
  l501:;	  ctx->pos= yypos501; ctx->thunkpos= yythunkpos501;
  }  goto l492;
  l498:;	  ctx->pos= yypos492; ctx->thunkpos= yythunkpos492;
  {  int yypos502= ctx->pos, yythunkpos502= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l502;  if (!yy_Ticks1(ctx)) goto l502;  goto l477;
  l502:;	  ctx->pos= yypos502; ctx->thunkpos= yythunkpos502;
  }
  {  int yypos503= ctx->pos, yythunkpos503= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l504;  goto l503;
  l504:;	  ctx->pos= yypos503; ctx->thunkpos= yythunkpos503;  if (!yy_Newline(ctx)) goto l477;
  {  int yypos505= ctx->pos, yythunkpos505= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l505;  goto l477;
  l505:;	  ctx->pos= yypos505; ctx->thunkpos= yythunkpos505;
  }
  }
  l503:;	
  }
  l492:;	  goto l476;
  l477:;	  ctx->pos= yypos477; ctx->thunkpos= yythunkpos477;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l475;  if (!yy_Sp(ctx)) goto l475;  if (!yy_Ticks1(ctx)) goto l475;  goto l474;
  l475:;	  ctx->pos= yypos474; ctx->thunkpos= yythunkpos474;  if (!yy_Ticks2(ctx)) goto l506;  if (!yy_Sp(ctx)) goto l506;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l506;
  {  int yypos509= ctx->pos, yythunkpos509= ctx->thunkpos;
  {  int yypos513= ctx->pos, yythunkpos513= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l513;  goto l510;
  l513:;	  ctx->pos= yypos513; ctx->thunkpos= yythunkpos513;
  }  if (!yy_Nonspacechar(ctx)) goto l510;
  l511:;	
  {  int yypos512= ctx->pos, yythunkpos512= ctx->thunkpos;
  {  int yypos514= ctx->pos, yythunkpos514= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l514;  goto l512;
  l514:;	  ctx->pos= yypos514; ctx->thunkpos= yythunkpos514;
  }  if (!yy_Nonspacechar(ctx)) goto l512;  goto l511;
  l512:;	  ctx->pos= yypos512; ctx->thunkpos= yythunkpos512;
  }  goto l509;
  l510:;	  ctx->pos= yypos509; ctx->thunkpos= yythunkpos509;
  {  int yypos516= ctx->pos, yythunkpos516= ctx->thunkpos;  if (!yy_Ticks2(ctx)) goto l516;  goto l515;
  l516:;	  ctx->pos= yypos516; ctx->thunkpos= yythunkpos516;
  }  if (!yymatchChar(ctx, '`')) goto l515;
  l517:;	
  {  int yypos518= ctx->pos, yythunkpos518= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l518;  goto l517;
  l518:;	  ctx->pos= yypos518; ctx->thunkpos= yythunkpos518;
  }  goto l509;
  l515:;	  ctx->pos= yypos509; ctx->thunkpos= yythunkpos509;
  {  int yypos519= ctx->pos, yythunkpos519= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l519;  if (!yy_Ticks2(ctx)) goto l519;  goto l506;
  l519:;	  ctx->pos= yypos519; ctx->thunkpos= yythunkpos519;
  }
  {  int yypos520= ctx->pos, yythunkpos520= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l521;  goto l520;
  l521:;	  ctx->pos= yypos520; ctx->thunkpos= yythunkpos520;  if (!yy_Newline(ctx)) goto l506;
  {  int yypos522= ctx->pos, yythunkpos522= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l522;  goto l506;
  l522:;	  ctx->pos= yypos522; ctx->thunkpos= yythunkpos522;
  }
  }
  l520:;	
  }
  l509:;	
  l507:;	
  {  int yypos508= ctx->pos, yythunkpos508= ctx->thunkpos;
  {  int yypos523= ctx->pos, yythunkpos523= ctx->thunkpos;
  {  int yypos527= ctx->pos, yythunkpos527= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l527;  goto l524;
  l527:;	  ctx->pos= yypos527; ctx->thunkpos= yythunkpos527;
  }  if (!yy_Nonspacechar(ctx)) goto l524;
  l525:;	
  {  int yypos526= ctx->pos, yythunkpos526= ctx->thunkpos;
  {  int yypos528= ctx->pos, yythunkpos528= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l528;  goto l526;
  l528:;	  ctx->pos= yypos528; ctx->thunkpos= yythunkpos528;
  }  if (!yy_Nonspacechar(ctx)) goto l526;  goto l525;
  l526:;	  ctx->pos= yypos526; ctx->thunkpos= yythunkpos526;
  }  goto l523;
  l524:;	  ctx->pos= yypos523; ctx->thunkpos= yythunkpos523;
  {  int yypos530= ctx->pos, yythunkpos530= ctx->thunkpos;  if (!yy_Ticks2(ctx)) goto l530;  goto l529;
  l530:;	  ctx->pos= yypos530; ctx->thunkpos= yythunkpos530;
  }  if (!yymatchChar(ctx, '`')) goto l529;
  l531:;	
  {  int yypos532= ctx->pos, yythunkpos532= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l532;  goto l531;
  l532:;	  ctx->pos= yypos532; ctx->thunkpos= yythunkpos532;
  }  goto l523;
  l529:;	  ctx->pos= yypos523; ctx->thunkpos= yythunkpos523;
  {  int yypos533= ctx->pos, yythunkpos533= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l533;  if (!yy_Ticks2(ctx)) goto l533;  goto l508;
  l533:;	  ctx->pos= yypos533; ctx->thunkpos= yythunkpos533;
  }
  {  int yypos534= ctx->pos, yythunkpos534= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l535;  goto l534;
  l535:;	  ctx->pos= yypos534; ctx->thunkpos= yythunkpos534;  if (!yy_Newline(ctx)) goto l508;
  {  int yypos536= ctx->pos, yythunkpos536= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l536;  goto l508;
  l536:;	  ctx->pos= yypos536; ctx->thunkpos= yythunkpos536;
  }
  }
  l534:;	
  }
  l523:;	  goto l507;
  l508:;	  ctx->pos= yypos508; ctx->thunkpos= yythunkpos508;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l506;  if (!yy_Sp(ctx)) goto l506;  if (!yy_Ticks2(ctx)) goto l506;  goto l474;
  l506:;	  ctx->pos= yypos474; ctx->thunkpos= yythunkpos474;  if (!yy_Ticks3(ctx)) goto l537;  if (!yy_Sp(ctx)) goto l537;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l537;
  {  int yypos540= ctx->pos, yythunkpos540= ctx->thunkpos;
  {  int yypos544= ctx->pos, yythunkpos544= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l544;  goto l541;
  l544:;	  ctx->pos= yypos544; ctx->thunkpos= yythunkpos544;
  }  if (!yy_Nonspacechar(ctx)) goto l541;
  l542:;	
  {  int yypos543= ctx->pos, yythunkpos543= ctx->thunkpos;
  {  int yypos545= ctx->pos, yythunkpos545= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l545;  goto l543;
  l545:;	  ctx->pos= yypos545; ctx->thunkpos= yythunkpos545;
  }  if (!yy_Nonspacechar(ctx)) goto l543;  goto l542;
  l543:;	  ctx->pos= yypos543; ctx->thunkpos= yythunkpos543;
  }  goto l540;
  l541:;	  ctx->pos= yypos540; ctx->thunkpos= yythunkpos540;
  {  int yypos547= ctx->pos, yythunkpos547= ctx->thunkpos;  if (!yy_Ticks3(ctx)) goto l547;  goto l546;
  l547:;	  ctx->pos= yypos547; ctx->thunkpos= yythunkpos547;
  }  if (!yymatchChar(ctx, '`')) goto l546;
  l548:;	
  {  int yypos549= ctx->pos, yythunkpos549= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l549;  goto l548;
  l549:;	  ctx->pos= yypos549; ctx->thunkpos= yythunkpos549;
  }  goto l540;
  l546:;	  ctx->pos= yypos540; ctx->thunkpos= yythunkpos540;
  {  int yypos550= ctx->pos, yythunkpos550= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l550;  if (!yy_Ticks3(ctx)) goto l550;  goto l537;
  l550:;	  ctx->pos= yypos550; ctx->thunkpos= yythunkpos550;
  }
  {  int yypos551= ctx->pos, yythunkpos551= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l552;  goto l551;
  l552:;	  ctx->pos= yypos551; ctx->thunkpos= yythunkpos551;  if (!yy_Newline(ctx)) goto l537;
  {  int yypos553= ctx->pos, yythunkpos553= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l553;  goto l537;
  l553:;	  ctx->pos= yypos553; ctx->thunkpos= yythunkpos553;
  }
  }
  l551:;	
  }
  l540:;	
  l538:;	
  {  int yypos539= ctx->pos, yythunkpos539= ctx->thunkpos;
  {  int yypos554= ctx->pos, yythunkpos554= ctx->thunkpos;
  {  int yypos558= ctx->pos, yythunkpos558= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l558;  goto l555;
  l558:;	  ctx->pos= yypos558; ctx->thunkpos= yythunkpos558;
  }  if (!yy_Nonspacechar(ctx)) goto l555;
  l556:;	
  {  int yypos557= ctx->pos, yythunkpos557= ctx->thunkpos;
  {  int yypos559= ctx->pos, yythunkpos559= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l559;  goto l557;
  l559:;	  ctx->pos= yypos559; ctx->thunkpos= yythunkpos559;
  }  if (!yy_Nonspacechar(ctx)) goto l557;  goto l556;
  l557:;	  ctx->pos= yypos557; ctx->thunkpos= yythunkpos557;
  }  goto l554;
  l555:;	  ctx->pos= yypos554; ctx->thunkpos= yythunkpos554;
  {  int yypos561= ctx->pos, yythunkpos561= ctx->thunkpos;  if (!yy_Ticks3(ctx)) goto l561;  goto l560;
  l561:;	  ctx->pos= yypos561; ctx->thunkpos= yythunkpos561;
  }  if (!yymatchChar(ctx, '`')) goto l560;
  l562:;	
  {  int yypos563= ctx->pos, yythunkpos563= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l563;  goto l562;
  l563:;	  ctx->pos= yypos563; ctx->thunkpos= yythunkpos563;
  }  goto l554;
  l560:;	  ctx->pos= yypos554; ctx->thunkpos= yythunkpos554;
  {  int yypos564= ctx->pos, yythunkpos564= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l564;  if (!yy_Ticks3(ctx)) goto l564;  goto l539;
  l564:;	  ctx->pos= yypos564; ctx->thunkpos= yythunkpos564;
  }
  {  int yypos565= ctx->pos, yythunkpos565= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l566;  goto l565;
  l566:;	  ctx->pos= yypos565; ctx->thunkpos= yythunkpos565;  if (!yy_Newline(ctx)) goto l539;
  {  int yypos567= ctx->pos, yythunkpos567= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l567;  goto l539;
  l567:;	  ctx->pos= yypos567; ctx->thunkpos= yythunkpos567;
  }
  }
  l565:;	
  }
  l554:;	  goto l538;
  l539:;	  ctx->pos= yypos539; ctx->thunkpos= yythunkpos539;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l537;  if (!yy_Sp(ctx)) goto l537;  if (!yy_Ticks3(ctx)) goto l537;  goto l474;
  l537:;	  ctx->pos= yypos474; ctx->thunkpos= yythunkpos474;  if (!yy_Ticks4(ctx)) goto l568;  if (!yy_Sp(ctx)) goto l568;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l568;
  {  int yypos571= ctx->pos, yythunkpos571= ctx->thunkpos;
  {  int yypos575= ctx->pos, yythunkpos575= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l575;  goto l572;
  l575:;	  ctx->pos= yypos575; ctx->thunkpos= yythunkpos575;
  }  if (!yy_Nonspacechar(ctx)) goto l572;
  l573:;	
  {  int yypos574= ctx->pos, yythunkpos574= ctx->thunkpos;
  {  int yypos576= ctx->pos, yythunkpos576= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l576;  goto l574;
  l576:;	  ctx->pos= yypos576; ctx->thunkpos= yythunkpos576;
  }  if (!yy_Nonspacechar(ctx)) goto l574;  goto l573;
  l574:;	  ctx->pos= yypos574; ctx->thunkpos= yythunkpos574;
  }  goto l571;
  l572:;	  ctx->pos= yypos571; ctx->thunkpos= yythunkpos571;
  {  int yypos578= ctx->pos, yythunkpos578= ctx->thunkpos;  if (!yy_Ticks4(ctx)) goto l578;  goto l577;
  l578:;	  ctx->pos= yypos578; ctx->thunkpos= yythunkpos578;
  }  if (!yymatchChar(ctx, '`')) goto l577;
  l579:;	
  {  int yypos580= ctx->pos, yythunkpos580= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l580;  goto l579;
  l580:;	  ctx->pos= yypos580; ctx->thunkpos= yythunkpos580;
  }  goto l571;
  l577:;	  ctx->pos= yypos571; ctx->thunkpos= yythunkpos571;
  {  int yypos581= ctx->pos, yythunkpos581= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l581;  if (!yy_Ticks4(ctx)) goto l581;  goto l568;
  l581:;	  ctx->pos= yypos581; ctx->thunkpos= yythunkpos581;
  }
  {  int yypos582= ctx->pos, yythunkpos582= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l583;  goto l582;
  l583:;	  ctx->pos= yypos582; ctx->thunkpos= yythunkpos582;  if (!yy_Newline(ctx)) goto l568;
  {  int yypos584= ctx->pos, yythunkpos584= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l584;  goto l568;
  l584:;	  ctx->pos= yypos584; ctx->thunkpos= yythunkpos584;
  }
  }
  l582:;	
  }
  l571:;	
  l569:;	
  {  int yypos570= ctx->pos, yythunkpos570= ctx->thunkpos;
  {  int yypos585= ctx->pos, yythunkpos585= ctx->thunkpos;
  {  int yypos589= ctx->pos, yythunkpos589= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l589;  goto l586;
  l589:;	  ctx->pos= yypos589; ctx->thunkpos= yythunkpos589;
  }  if (!yy_Nonspacechar(ctx)) goto l586;
  l587:;	
  {  int yypos588= ctx->pos, yythunkpos588= ctx->thunkpos;
  {  int yypos590= ctx->pos, yythunkpos590= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l590;  goto l588;
  l590:;	  ctx->pos= yypos590; ctx->thunkpos= yythunkpos590;
  }  if (!yy_Nonspacechar(ctx)) goto l588;  goto l587;
  l588:;	  ctx->pos= yypos588; ctx->thunkpos= yythunkpos588;
  }  goto l585;
  l586:;	  ctx->pos= yypos585; ctx->thunkpos= yythunkpos585;
  {  int yypos592= ctx->pos, yythunkpos592= ctx->thunkpos;  if (!yy_Ticks4(ctx)) goto l592;  goto l591;
  l592:;	  ctx->pos= yypos592; ctx->thunkpos= yythunkpos592;
  }  if (!yymatchChar(ctx, '`')) goto l591;
  l593:;	
  {  int yypos594= ctx->pos, yythunkpos594= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l594;  goto l593;
  l594:;	  ctx->pos= yypos594; ctx->thunkpos= yythunkpos594;
  }  goto l585;
  l591:;	  ctx->pos= yypos585; ctx->thunkpos= yythunkpos585;
  {  int yypos595= ctx->pos, yythunkpos595= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l595;  if (!yy_Ticks4(ctx)) goto l595;  goto l570;
  l595:;	  ctx->pos= yypos595; ctx->thunkpos= yythunkpos595;
  }
  {  int yypos596= ctx->pos, yythunkpos596= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l597;  goto l596;
  l597:;	  ctx->pos= yypos596; ctx->thunkpos= yythunkpos596;  if (!yy_Newline(ctx)) goto l570;
  {  int yypos598= ctx->pos, yythunkpos598= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l598;  goto l570;
  l598:;	  ctx->pos= yypos598; ctx->thunkpos= yythunkpos598;
  }
  }
  l596:;	
  }
  l585:;	  goto l569;
  l570:;	  ctx->pos= yypos570; ctx->thunkpos= yythunkpos570;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l568;  if (!yy_Sp(ctx)) goto l568;  if (!yy_Ticks4(ctx)) goto l568;  goto l474;
  l568:;	  ctx->pos= yypos474; ctx->thunkpos= yythunkpos474;  if (!yy_Ticks5(ctx)) goto l473;  if (!yy_Sp(ctx)) goto l473;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l473;
  {  int yypos601= ctx->pos, yythunkpos601= ctx->thunkpos;
  {  int yypos605= ctx->pos, yythunkpos605= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l605;  goto l602;
  l605:;	  ctx->pos= yypos605; ctx->thunkpos= yythunkpos605;
  }  if (!yy_Nonspacechar(ctx)) goto l602;
  l603:;	
  {  int yypos604= ctx->pos, yythunkpos604= ctx->thunkpos;
  {  int yypos606= ctx->pos, yythunkpos606= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l606;  goto l604;
  l606:;	  ctx->pos= yypos606; ctx->thunkpos= yythunkpos606;
  }  if (!yy_Nonspacechar(ctx)) goto l604;  goto l603;
  l604:;	  ctx->pos= yypos604; ctx->thunkpos= yythunkpos604;
  }  goto l601;
  l602:;	  ctx->pos= yypos601; ctx->thunkpos= yythunkpos601;
  {  int yypos608= ctx->pos, yythunkpos608= ctx->thunkpos;  if (!yy_Ticks5(ctx)) goto l608;  goto l607;
  l608:;	  ctx->pos= yypos608; ctx->thunkpos= yythunkpos608;
  }  if (!yymatchChar(ctx, '`')) goto l607;
  l609:;	
  {  int yypos610= ctx->pos, yythunkpos610= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l610;  goto l609;
  l610:;	  ctx->pos= yypos610; ctx->thunkpos= yythunkpos610;
  }  goto l601;
  l607:;	  ctx->pos= yypos601; ctx->thunkpos= yythunkpos601;
  {  int yypos611= ctx->pos, yythunkpos611= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l611;  if (!yy_Ticks5(ctx)) goto l611;  goto l473;
  l611:;	  ctx->pos= yypos611; ctx->thunkpos= yythunkpos611;
  }
  {  int yypos612= ctx->pos, yythunkpos612= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l613;  goto l612;
  l613:;	  ctx->pos= yypos612; ctx->thunkpos= yythunkpos612;  if (!yy_Newline(ctx)) goto l473;
  {  int yypos614= ctx->pos, yythunkpos614= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l614;  goto l473;
  l614:;	  ctx->pos= yypos614; ctx->thunkpos= yythunkpos614;
  }
  }
  l612:;	
  }
  l601:;	
  l599:;	
  {  int yypos600= ctx->pos, yythunkpos600= ctx->thunkpos;
  {  int yypos615= ctx->pos, yythunkpos615= ctx->thunkpos;
  {  int yypos619= ctx->pos, yythunkpos619= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l619;  goto l616;
  l619:;	  ctx->pos= yypos619; ctx->thunkpos= yythunkpos619;
  }  if (!yy_Nonspacechar(ctx)) goto l616;
  l617:;	
  {  int yypos618= ctx->pos, yythunkpos618= ctx->thunkpos;
  {  int yypos620= ctx->pos, yythunkpos620= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l620;  goto l618;
  l620:;	  ctx->pos= yypos620; ctx->thunkpos= yythunkpos620;
  }  if (!yy_Nonspacechar(ctx)) goto l618;  goto l617;
  l618:;	  ctx->pos= yypos618; ctx->thunkpos= yythunkpos618;
  }  goto l615;
  l616:;	  ctx->pos= yypos615; ctx->thunkpos= yythunkpos615;
  {  int yypos622= ctx->pos, yythunkpos622= ctx->thunkpos;  if (!yy_Ticks5(ctx)) goto l622;  goto l621;
  l622:;	  ctx->pos= yypos622; ctx->thunkpos= yythunkpos622;
  }  if (!yymatchChar(ctx, '`')) goto l621;
  l623:;	
  {  int yypos624= ctx->pos, yythunkpos624= ctx->thunkpos;  if (!yymatchChar(ctx, '`')) goto l624;  goto l623;
  l624:;	  ctx->pos= yypos624; ctx->thunkpos= yythunkpos624;
  }  goto l615;
  l621:;	  ctx->pos= yypos615; ctx->thunkpos= yythunkpos615;
  {  int yypos625= ctx->pos, yythunkpos625= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l625;  if (!yy_Ticks5(ctx)) goto l625;  goto l600;
  l625:;	  ctx->pos= yypos625; ctx->thunkpos= yythunkpos625;
  }
  {  int yypos626= ctx->pos, yythunkpos626= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l627;  goto l626;
  l627:;	  ctx->pos= yypos626; ctx->thunkpos= yythunkpos626;  if (!yy_Newline(ctx)) goto l600;
  {  int yypos628= ctx->pos, yythunkpos628= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l628;  goto l600;
  l628:;	  ctx->pos= yypos628; ctx->thunkpos= yythunkpos628;
  }
  }
  l626:;	
  }
  l615:;	  goto l599;
  l600:;	  ctx->pos= yypos600; ctx->thunkpos= yythunkpos600;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l473;  if (!yy_Sp(ctx)) goto l473;  if (!yy_Ticks5(ctx)) goto l473;
  }
  l474:;	  yyDo(ctx, yy_1_Code, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Code", ctx->buf+ctx->pos));
  return 1;
  l473:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Code", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_InlineNote(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "InlineNote"));  yyText(ctx, ctx->begin, ctx->end);  if (!( extension(EXT_NOTES) )) goto l629;  if (!yymatchString(ctx, "^[")) goto l629;  if (!yy_StartList(ctx)) goto l629;  yyDo(ctx, yySet, -1, 0);
  {  int yypos632= ctx->pos, yythunkpos632= ctx->thunkpos;  if (!yymatchChar(ctx, ']')) goto l632;  goto l629;
  l632:;	  ctx->pos= yypos632; ctx->thunkpos= yythunkpos632;
  }  if (!yy_Inline(ctx)) goto l629;  yyDo(ctx, yy_1_InlineNote, ctx->begin, ctx->end);
  l630:;	
  {  int yypos631= ctx->pos, yythunkpos631= ctx->thunkpos;
  {  int yypos633= ctx->pos, yythunkpos633= ctx->thunkpos;  if (!yymatchChar(ctx, ']')) goto l633;  goto l631;
  l633:;	  ctx->pos= yypos633; ctx->thunkpos= yythunkpos633;
  }  if (!yy_Inline(ctx)) goto l631;  yyDo(ctx, yy_1_InlineNote, ctx->begin, ctx->end);  goto l630;
  l631:;	  ctx->pos= yypos631; ctx->thunkpos= yythunkpos631;
  }  if (!yymatchChar(ctx, ']')) goto l629;  yyDo(ctx, yy_2_InlineNote, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "InlineNote", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l629:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "InlineNote", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_NoteReference(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "NoteReference"));  yyText(ctx, ctx->begin, ctx->end);  if (!( extension(EXT_NOTES) )) goto l634;  if (!yy_RawNoteReference(ctx)) goto l634;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_NoteReference, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "NoteReference", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l634:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "NoteReference", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Link(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Link"));
  {  int yypos636= ctx->pos, yythunkpos636= ctx->thunkpos;  if (!yy_ExplicitLink(ctx)) goto l637;  goto l636;
  l637:;	  ctx->pos= yypos636; ctx->thunkpos= yythunkpos636;  if (!yy_ReferenceLink(ctx)) goto l638;  goto l636;
  l638:;	  ctx->pos= yypos636; ctx->thunkpos= yythunkpos636;  if (!yy_AutoLink(ctx)) goto l635;
  }
  l636:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Link", ctx->buf+ctx->pos));
  return 1;
  l635:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Link", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Image(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Image"));  if (!yymatchChar(ctx, '!')) goto l639;
  {  int yypos640= ctx->pos, yythunkpos640= ctx->thunkpos;  if (!yy_ExplicitLink(ctx)) goto l641;  goto l640;
  l641:;	  ctx->pos= yypos640; ctx->thunkpos= yythunkpos640;  if (!yy_ReferenceLink(ctx)) goto l639;
  }
  l640:;	  yyDo(ctx, yy_1_Image, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Image", ctx->buf+ctx->pos));
  return 1;
  l639:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Image", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Emph(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Emph"));
  {  int yypos643= ctx->pos, yythunkpos643= ctx->thunkpos;  if (!yy_EmphStar(ctx)) goto l644;  goto l643;
  l644:;	  ctx->pos= yypos643; ctx->thunkpos= yythunkpos643;  if (!yy_EmphUl(ctx)) goto l642;
  }
  l643:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Emph", ctx->buf+ctx->pos));
  return 1;
  l642:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Emph", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Strong(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Strong"));
  {  int yypos646= ctx->pos, yythunkpos646= ctx->thunkpos;  if (!yy_StrongStar(ctx)) goto l647;  goto l646;
  l647:;	  ctx->pos= yypos646; ctx->thunkpos= yythunkpos646;  if (!yy_StrongUl(ctx)) goto l645;
  }
  l646:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Strong", ctx->buf+ctx->pos));
  return 1;
  l645:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Strong", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Space(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Space"));  if (!yy_Spacechar(ctx)) goto l648;
  l649:;	
  {  int yypos650= ctx->pos, yythunkpos650= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l650;  goto l649;
  l650:;	  ctx->pos= yypos650; ctx->thunkpos= yythunkpos650;
  }  yyDo(ctx, yy_1_Space, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Space", ctx->buf+ctx->pos));
  return 1;
  l648:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Space", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_UlOrStarLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "UlOrStarLine"));
  {  int yypos652= ctx->pos, yythunkpos652= ctx->thunkpos;  if (!yy_UlLine(ctx)) goto l653;  goto l652;
  l653:;	  ctx->pos= yypos652; ctx->thunkpos= yythunkpos652;  if (!yy_StarLine(ctx)) goto l651;
  }
  l652:;	  yyDo(ctx, yy_1_UlOrStarLine, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "UlOrStarLine", ctx->buf+ctx->pos));
  return 1;
  l651:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "UlOrStarLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Str(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "Str"));  if (!yy_StartList(ctx)) goto l654;  yyDo(ctx, yySet, -1, 0);  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l654;  if (!yy_NormalChar(ctx)) goto l654;
  l655:;	
  {  int yypos656= ctx->pos, yythunkpos656= ctx->thunkpos;  if (!yy_NormalChar(ctx)) goto l656;  goto l655;
  l656:;	  ctx->pos= yypos656; ctx->thunkpos= yythunkpos656;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l654;  yyDo(ctx, yy_1_Str, ctx->begin, ctx->end);
  l657:;	
  {  int yypos658= ctx->pos, yythunkpos658= ctx->thunkpos;  if (!yy_StrChunk(ctx)) goto l658;  yyDo(ctx, yy_2_Str, ctx->begin, ctx->end);  goto l657;
  l658:;	  ctx->pos= yypos658; ctx->thunkpos= yythunkpos658;
  }  yyDo(ctx, yy_3_Str, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Str", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l654:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Str", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_InStyleTags(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "InStyleTags"));  if (!yy_StyleOpen(ctx)) goto l659;
  l660:;	
  {  int yypos661= ctx->pos, yythunkpos661= ctx->thunkpos;
  {  int yypos662= ctx->pos, yythunkpos662= ctx->thunkpos;  if (!yy_StyleClose(ctx)) goto l662;  goto l661;
  l662:;	  ctx->pos= yypos662; ctx->thunkpos= yythunkpos662;
  }  if (!yymatchDot(ctx)) goto l661;  goto l660;
  l661:;	  ctx->pos= yypos661; ctx->thunkpos= yythunkpos661;
  }  if (!yy_StyleClose(ctx)) goto l659;
  yyprintf((stderr, "  ok   %s @ %s\n", "InStyleTags", ctx->buf+ctx->pos));
  return 1;
  l659:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "InStyleTags", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_StyleClose(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "StyleClose"));  if (!yymatchChar(ctx, '<')) goto l663;  if (!yy_Spnl(ctx)) goto l663;  if (!yymatchChar(ctx, '/')) goto l663;
  {  int yypos664= ctx->pos, yythunkpos664= ctx->thunkpos;  if (!yymatchString(ctx, "style")) goto l665;  goto l664;
  l665:;	  ctx->pos= yypos664; ctx->thunkpos= yythunkpos664;  if (!yymatchString(ctx, "STYLE")) goto l663;
  }
  l664:;	  if (!yy_Spnl(ctx)) goto l663;  if (!yymatchChar(ctx, '>')) goto l663;
  yyprintf((stderr, "  ok   %s @ %s\n", "StyleClose", ctx->buf+ctx->pos));
  return 1;
  l663:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "StyleClose", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_StyleOpen(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "StyleOpen"));  if (!yymatchChar(ctx, '<')) goto l666;  if (!yy_Spnl(ctx)) goto l666;
  {  int yypos667= ctx->pos, yythunkpos667= ctx->thunkpos;  if (!yymatchString(ctx, "style")) goto l668;  goto l667;
  l668:;	  ctx->pos= yypos667; ctx->thunkpos= yythunkpos667;  if (!yymatchString(ctx, "STYLE")) goto l666;
  }
  l667:;	  if (!yy_Spnl(ctx)) goto l666;
  l669:;	
  {  int yypos670= ctx->pos, yythunkpos670= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l670;  goto l669;
  l670:;	  ctx->pos= yypos670; ctx->thunkpos= yythunkpos670;
  }  if (!yymatchChar(ctx, '>')) goto l666;
  yyprintf((stderr, "  ok   %s @ %s\n", "StyleOpen", ctx->buf+ctx->pos));
  return 1;
  l666:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "StyleOpen", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockType(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockType"));
  {  int yypos672= ctx->pos, yythunkpos672= ctx->thunkpos;  if (!yymatchString(ctx, "address")) goto l673;  goto l672;
  l673:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "blockquote")) goto l674;  goto l672;
  l674:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "center")) goto l675;  goto l672;
  l675:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "dir")) goto l676;  goto l672;
  l676:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "div")) goto l677;  goto l672;
  l677:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "dl")) goto l678;  goto l672;
  l678:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "fieldset")) goto l679;  goto l672;
  l679:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "form")) goto l680;  goto l672;
  l680:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "h1")) goto l681;  goto l672;
  l681:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "h2")) goto l682;  goto l672;
  l682:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "h3")) goto l683;  goto l672;
  l683:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "h4")) goto l684;  goto l672;
  l684:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "h5")) goto l685;  goto l672;
  l685:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "h6")) goto l686;  goto l672;
  l686:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "hr")) goto l687;  goto l672;
  l687:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "isindex")) goto l688;  goto l672;
  l688:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "menu")) goto l689;  goto l672;
  l689:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "noframes")) goto l690;  goto l672;
  l690:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "noscript")) goto l691;  goto l672;
  l691:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "ol")) goto l692;  goto l672;
  l692:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchChar(ctx, 'p')) goto l693;  goto l672;
  l693:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "pre")) goto l694;  goto l672;
  l694:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "table")) goto l695;  goto l672;
  l695:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "ul")) goto l696;  goto l672;
  l696:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "dd")) goto l697;  goto l672;
  l697:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "dt")) goto l698;  goto l672;
  l698:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "frameset")) goto l699;  goto l672;
  l699:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "li")) goto l700;  goto l672;
  l700:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "tbody")) goto l701;  goto l672;
  l701:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "td")) goto l702;  goto l672;
  l702:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "tfoot")) goto l703;  goto l672;
  l703:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "th")) goto l704;  goto l672;
  l704:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "thead")) goto l705;  goto l672;
  l705:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "tr")) goto l706;  goto l672;
  l706:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "script")) goto l707;  goto l672;
  l707:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "ADDRESS")) goto l708;  goto l672;
  l708:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "BLOCKQUOTE")) goto l709;  goto l672;
  l709:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "CENTER")) goto l710;  goto l672;
  l710:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "DIR")) goto l711;  goto l672;
  l711:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "DIV")) goto l712;  goto l672;
  l712:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "DL")) goto l713;  goto l672;
  l713:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "FIELDSET")) goto l714;  goto l672;
  l714:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "FORM")) goto l715;  goto l672;
  l715:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "H1")) goto l716;  goto l672;
  l716:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "H2")) goto l717;  goto l672;
  l717:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "H3")) goto l718;  goto l672;
  l718:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "H4")) goto l719;  goto l672;
  l719:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "H5")) goto l720;  goto l672;
  l720:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "H6")) goto l721;  goto l672;
  l721:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "HR")) goto l722;  goto l672;
  l722:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "ISINDEX")) goto l723;  goto l672;
  l723:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "MENU")) goto l724;  goto l672;
  l724:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "NOFRAMES")) goto l725;  goto l672;
  l725:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "NOSCRIPT")) goto l726;  goto l672;
  l726:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "OL")) goto l727;  goto l672;
  l727:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchChar(ctx, 'P')) goto l728;  goto l672;
  l728:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "PRE")) goto l729;  goto l672;
  l729:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "TABLE")) goto l730;  goto l672;
  l730:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "UL")) goto l731;  goto l672;
  l731:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "DD")) goto l732;  goto l672;
  l732:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "DT")) goto l733;  goto l672;
  l733:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "FRAMESET")) goto l734;  goto l672;
  l734:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "LI")) goto l735;  goto l672;
  l735:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "TBODY")) goto l736;  goto l672;
  l736:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "TD")) goto l737;  goto l672;
  l737:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "TFOOT")) goto l738;  goto l672;
  l738:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "TH")) goto l739;  goto l672;
  l739:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "THEAD")) goto l740;  goto l672;
  l740:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "TR")) goto l741;  goto l672;
  l741:;	  ctx->pos= yypos672; ctx->thunkpos= yythunkpos672;  if (!yymatchString(ctx, "SCRIPT")) goto l671;
  }
  l672:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockType", ctx->buf+ctx->pos));
  return 1;
  l671:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockType", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockSelfClosing(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockSelfClosing"));  if (!yymatchChar(ctx, '<')) goto l742;  if (!yy_Spnl(ctx)) goto l742;  if (!yy_HtmlBlockType(ctx)) goto l742;  if (!yy_Spnl(ctx)) goto l742;
  l743:;	
  {  int yypos744= ctx->pos, yythunkpos744= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l744;  goto l743;
  l744:;	  ctx->pos= yypos744; ctx->thunkpos= yythunkpos744;
  }  if (!yymatchChar(ctx, '/')) goto l742;  if (!yy_Spnl(ctx)) goto l742;  if (!yymatchChar(ctx, '>')) goto l742;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockSelfClosing", ctx->buf+ctx->pos));
  return 1;
  l742:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockSelfClosing", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlComment(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlComment"));  if (!yymatchString(ctx, "<!--")) goto l745;
  l746:;	
  {  int yypos747= ctx->pos, yythunkpos747= ctx->thunkpos;
  {  int yypos748= ctx->pos, yythunkpos748= ctx->thunkpos;  if (!yymatchString(ctx, "-->")) goto l748;  goto l747;
  l748:;	  ctx->pos= yypos748; ctx->thunkpos= yythunkpos748;
  }  if (!yymatchDot(ctx)) goto l747;  goto l746;
  l747:;	  ctx->pos= yypos747; ctx->thunkpos= yythunkpos747;
  }  if (!yymatchString(ctx, "-->")) goto l745;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlComment", ctx->buf+ctx->pos));
  return 1;
  l745:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlComment", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockInTags(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockInTags"));
  {  int yypos750= ctx->pos, yythunkpos750= ctx->thunkpos;  if (!yy_HtmlBlockAddress(ctx)) goto l751;  goto l750;
  l751:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockBlockquote(ctx)) goto l752;  goto l750;
  l752:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockCenter(ctx)) goto l753;  goto l750;
  l753:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockDir(ctx)) goto l754;  goto l750;
  l754:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockDiv(ctx)) goto l755;  goto l750;
  l755:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockDl(ctx)) goto l756;  goto l750;
  l756:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockFieldset(ctx)) goto l757;  goto l750;
  l757:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockForm(ctx)) goto l758;  goto l750;
  l758:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockH1(ctx)) goto l759;  goto l750;
  l759:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockH2(ctx)) goto l760;  goto l750;
  l760:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockH3(ctx)) goto l761;  goto l750;
  l761:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockH4(ctx)) goto l762;  goto l750;
  l762:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockH5(ctx)) goto l763;  goto l750;
  l763:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockH6(ctx)) goto l764;  goto l750;
  l764:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockMenu(ctx)) goto l765;  goto l750;
  l765:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockNoframes(ctx)) goto l766;  goto l750;
  l766:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockNoscript(ctx)) goto l767;  goto l750;
  l767:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockOl(ctx)) goto l768;  goto l750;
  l768:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockP(ctx)) goto l769;  goto l750;
  l769:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockPre(ctx)) goto l770;  goto l750;
  l770:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockTable(ctx)) goto l771;  goto l750;
  l771:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockUl(ctx)) goto l772;  goto l750;
  l772:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockDd(ctx)) goto l773;  goto l750;
  l773:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockDt(ctx)) goto l774;  goto l750;
  l774:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockFrameset(ctx)) goto l775;  goto l750;
  l775:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockLi(ctx)) goto l776;  goto l750;
  l776:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockTbody(ctx)) goto l777;  goto l750;
  l777:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockTd(ctx)) goto l778;  goto l750;
  l778:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockTfoot(ctx)) goto l779;  goto l750;
  l779:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockTh(ctx)) goto l780;  goto l750;
  l780:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockThead(ctx)) goto l781;  goto l750;
  l781:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockTr(ctx)) goto l782;  goto l750;
  l782:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockScript(ctx)) goto l783;  goto l750;
  l783:;	  ctx->pos= yypos750; ctx->thunkpos= yythunkpos750;  if (!yy_HtmlBlockHead(ctx)) goto l749;
  }
  l750:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockInTags", ctx->buf+ctx->pos));
  return 1;
  l749:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockInTags", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockHead(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockHead"));  if (!yy_HtmlBlockOpenHead(ctx)) goto l784;
  l785:;	
  {  int yypos786= ctx->pos, yythunkpos786= ctx->thunkpos;
  {  int yypos787= ctx->pos, yythunkpos787= ctx->thunkpos;  if (!yy_HtmlBlockCloseHead(ctx)) goto l787;  goto l786;
  l787:;	  ctx->pos= yypos787; ctx->thunkpos= yythunkpos787;
  }  if (!yymatchDot(ctx)) goto l786;  goto l785;
  l786:;	  ctx->pos= yypos786; ctx->thunkpos= yythunkpos786;
  }  if (!yy_HtmlBlockCloseHead(ctx)) goto l784;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockHead", ctx->buf+ctx->pos));
  return 1;
  l784:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockHead", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseHead(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseHead"));  if (!yymatchChar(ctx, '<')) goto l788;  if (!yy_Spnl(ctx)) goto l788;  if (!yymatchChar(ctx, '/')) goto l788;
  {  int yypos789= ctx->pos, yythunkpos789= ctx->thunkpos;  if (!yymatchString(ctx, "head")) goto l790;  goto l789;
  l790:;	  ctx->pos= yypos789; ctx->thunkpos= yythunkpos789;  if (!yymatchString(ctx, "HEAD")) goto l788;
  }
  l789:;	  if (!yy_Spnl(ctx)) goto l788;  if (!yymatchChar(ctx, '>')) goto l788;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseHead", ctx->buf+ctx->pos));
  return 1;
  l788:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseHead", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenHead(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenHead"));  if (!yymatchChar(ctx, '<')) goto l791;  if (!yy_Spnl(ctx)) goto l791;
  {  int yypos792= ctx->pos, yythunkpos792= ctx->thunkpos;  if (!yymatchString(ctx, "head")) goto l793;  goto l792;
  l793:;	  ctx->pos= yypos792; ctx->thunkpos= yythunkpos792;  if (!yymatchString(ctx, "HEAD")) goto l791;
  }
  l792:;	  if (!yy_Spnl(ctx)) goto l791;
  l794:;	
  {  int yypos795= ctx->pos, yythunkpos795= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l795;  goto l794;
  l795:;	  ctx->pos= yypos795; ctx->thunkpos= yythunkpos795;
  }  if (!yymatchChar(ctx, '>')) goto l791;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenHead", ctx->buf+ctx->pos));
  return 1;
  l791:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenHead", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockScript(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockScript"));  if (!yy_HtmlBlockOpenScript(ctx)) goto l796;
  l797:;	
  {  int yypos798= ctx->pos, yythunkpos798= ctx->thunkpos;
  {  int yypos799= ctx->pos, yythunkpos799= ctx->thunkpos;  if (!yy_HtmlBlockCloseScript(ctx)) goto l799;  goto l798;
  l799:;	  ctx->pos= yypos799; ctx->thunkpos= yythunkpos799;
  }  if (!yymatchDot(ctx)) goto l798;  goto l797;
  l798:;	  ctx->pos= yypos798; ctx->thunkpos= yythunkpos798;
  }  if (!yy_HtmlBlockCloseScript(ctx)) goto l796;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockScript", ctx->buf+ctx->pos));
  return 1;
  l796:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockScript", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseScript(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseScript"));  if (!yymatchChar(ctx, '<')) goto l800;  if (!yy_Spnl(ctx)) goto l800;  if (!yymatchChar(ctx, '/')) goto l800;
  {  int yypos801= ctx->pos, yythunkpos801= ctx->thunkpos;  if (!yymatchString(ctx, "script")) goto l802;  goto l801;
  l802:;	  ctx->pos= yypos801; ctx->thunkpos= yythunkpos801;  if (!yymatchString(ctx, "SCRIPT")) goto l800;
  }
  l801:;	  if (!yy_Spnl(ctx)) goto l800;  if (!yymatchChar(ctx, '>')) goto l800;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseScript", ctx->buf+ctx->pos));
  return 1;
  l800:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseScript", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenScript(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenScript"));  if (!yymatchChar(ctx, '<')) goto l803;  if (!yy_Spnl(ctx)) goto l803;
  {  int yypos804= ctx->pos, yythunkpos804= ctx->thunkpos;  if (!yymatchString(ctx, "script")) goto l805;  goto l804;
  l805:;	  ctx->pos= yypos804; ctx->thunkpos= yythunkpos804;  if (!yymatchString(ctx, "SCRIPT")) goto l803;
  }
  l804:;	  if (!yy_Spnl(ctx)) goto l803;
  l806:;	
  {  int yypos807= ctx->pos, yythunkpos807= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l807;  goto l806;
  l807:;	  ctx->pos= yypos807; ctx->thunkpos= yythunkpos807;
  }  if (!yymatchChar(ctx, '>')) goto l803;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenScript", ctx->buf+ctx->pos));
  return 1;
  l803:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenScript", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockTr(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockTr"));  if (!yy_HtmlBlockOpenTr(ctx)) goto l808;
  l809:;	
  {  int yypos810= ctx->pos, yythunkpos810= ctx->thunkpos;
  {  int yypos811= ctx->pos, yythunkpos811= ctx->thunkpos;  if (!yy_HtmlBlockTr(ctx)) goto l812;  goto l811;
  l812:;	  ctx->pos= yypos811; ctx->thunkpos= yythunkpos811;
  {  int yypos813= ctx->pos, yythunkpos813= ctx->thunkpos;  if (!yy_HtmlBlockCloseTr(ctx)) goto l813;  goto l810;
  l813:;	  ctx->pos= yypos813; ctx->thunkpos= yythunkpos813;
  }  if (!yymatchDot(ctx)) goto l810;
  }
  l811:;	  goto l809;
  l810:;	  ctx->pos= yypos810; ctx->thunkpos= yythunkpos810;
  }  if (!yy_HtmlBlockCloseTr(ctx)) goto l808;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockTr", ctx->buf+ctx->pos));
  return 1;
  l808:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockTr", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseTr(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseTr"));  if (!yymatchChar(ctx, '<')) goto l814;  if (!yy_Spnl(ctx)) goto l814;  if (!yymatchChar(ctx, '/')) goto l814;
  {  int yypos815= ctx->pos, yythunkpos815= ctx->thunkpos;  if (!yymatchString(ctx, "tr")) goto l816;  goto l815;
  l816:;	  ctx->pos= yypos815; ctx->thunkpos= yythunkpos815;  if (!yymatchString(ctx, "TR")) goto l814;
  }
  l815:;	  if (!yy_Spnl(ctx)) goto l814;  if (!yymatchChar(ctx, '>')) goto l814;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseTr", ctx->buf+ctx->pos));
  return 1;
  l814:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseTr", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenTr(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenTr"));  if (!yymatchChar(ctx, '<')) goto l817;  if (!yy_Spnl(ctx)) goto l817;
  {  int yypos818= ctx->pos, yythunkpos818= ctx->thunkpos;  if (!yymatchString(ctx, "tr")) goto l819;  goto l818;
  l819:;	  ctx->pos= yypos818; ctx->thunkpos= yythunkpos818;  if (!yymatchString(ctx, "TR")) goto l817;
  }
  l818:;	  if (!yy_Spnl(ctx)) goto l817;
  l820:;	
  {  int yypos821= ctx->pos, yythunkpos821= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l821;  goto l820;
  l821:;	  ctx->pos= yypos821; ctx->thunkpos= yythunkpos821;
  }  if (!yymatchChar(ctx, '>')) goto l817;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenTr", ctx->buf+ctx->pos));
  return 1;
  l817:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenTr", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockThead(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockThead"));  if (!yy_HtmlBlockOpenThead(ctx)) goto l822;
  l823:;	
  {  int yypos824= ctx->pos, yythunkpos824= ctx->thunkpos;
  {  int yypos825= ctx->pos, yythunkpos825= ctx->thunkpos;  if (!yy_HtmlBlockThead(ctx)) goto l826;  goto l825;
  l826:;	  ctx->pos= yypos825; ctx->thunkpos= yythunkpos825;
  {  int yypos827= ctx->pos, yythunkpos827= ctx->thunkpos;  if (!yy_HtmlBlockCloseThead(ctx)) goto l827;  goto l824;
  l827:;	  ctx->pos= yypos827; ctx->thunkpos= yythunkpos827;
  }  if (!yymatchDot(ctx)) goto l824;
  }
  l825:;	  goto l823;
  l824:;	  ctx->pos= yypos824; ctx->thunkpos= yythunkpos824;
  }  if (!yy_HtmlBlockCloseThead(ctx)) goto l822;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockThead", ctx->buf+ctx->pos));
  return 1;
  l822:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockThead", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseThead(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseThead"));  if (!yymatchChar(ctx, '<')) goto l828;  if (!yy_Spnl(ctx)) goto l828;  if (!yymatchChar(ctx, '/')) goto l828;
  {  int yypos829= ctx->pos, yythunkpos829= ctx->thunkpos;  if (!yymatchString(ctx, "thead")) goto l830;  goto l829;
  l830:;	  ctx->pos= yypos829; ctx->thunkpos= yythunkpos829;  if (!yymatchString(ctx, "THEAD")) goto l828;
  }
  l829:;	  if (!yy_Spnl(ctx)) goto l828;  if (!yymatchChar(ctx, '>')) goto l828;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseThead", ctx->buf+ctx->pos));
  return 1;
  l828:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseThead", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenThead(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenThead"));  if (!yymatchChar(ctx, '<')) goto l831;  if (!yy_Spnl(ctx)) goto l831;
  {  int yypos832= ctx->pos, yythunkpos832= ctx->thunkpos;  if (!yymatchString(ctx, "thead")) goto l833;  goto l832;
  l833:;	  ctx->pos= yypos832; ctx->thunkpos= yythunkpos832;  if (!yymatchString(ctx, "THEAD")) goto l831;
  }
  l832:;	  if (!yy_Spnl(ctx)) goto l831;
  l834:;	
  {  int yypos835= ctx->pos, yythunkpos835= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l835;  goto l834;
  l835:;	  ctx->pos= yypos835; ctx->thunkpos= yythunkpos835;
  }  if (!yymatchChar(ctx, '>')) goto l831;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenThead", ctx->buf+ctx->pos));
  return 1;
  l831:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenThead", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockTh(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockTh"));  if (!yy_HtmlBlockOpenTh(ctx)) goto l836;
  l837:;	
  {  int yypos838= ctx->pos, yythunkpos838= ctx->thunkpos;
  {  int yypos839= ctx->pos, yythunkpos839= ctx->thunkpos;  if (!yy_HtmlBlockTh(ctx)) goto l840;  goto l839;
  l840:;	  ctx->pos= yypos839; ctx->thunkpos= yythunkpos839;
  {  int yypos841= ctx->pos, yythunkpos841= ctx->thunkpos;  if (!yy_HtmlBlockCloseTh(ctx)) goto l841;  goto l838;
  l841:;	  ctx->pos= yypos841; ctx->thunkpos= yythunkpos841;
  }  if (!yymatchDot(ctx)) goto l838;
  }
  l839:;	  goto l837;
  l838:;	  ctx->pos= yypos838; ctx->thunkpos= yythunkpos838;
  }  if (!yy_HtmlBlockCloseTh(ctx)) goto l836;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockTh", ctx->buf+ctx->pos));
  return 1;
  l836:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockTh", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseTh(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseTh"));  if (!yymatchChar(ctx, '<')) goto l842;  if (!yy_Spnl(ctx)) goto l842;  if (!yymatchChar(ctx, '/')) goto l842;
  {  int yypos843= ctx->pos, yythunkpos843= ctx->thunkpos;  if (!yymatchString(ctx, "th")) goto l844;  goto l843;
  l844:;	  ctx->pos= yypos843; ctx->thunkpos= yythunkpos843;  if (!yymatchString(ctx, "TH")) goto l842;
  }
  l843:;	  if (!yy_Spnl(ctx)) goto l842;  if (!yymatchChar(ctx, '>')) goto l842;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseTh", ctx->buf+ctx->pos));
  return 1;
  l842:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseTh", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenTh(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenTh"));  if (!yymatchChar(ctx, '<')) goto l845;  if (!yy_Spnl(ctx)) goto l845;
  {  int yypos846= ctx->pos, yythunkpos846= ctx->thunkpos;  if (!yymatchString(ctx, "th")) goto l847;  goto l846;
  l847:;	  ctx->pos= yypos846; ctx->thunkpos= yythunkpos846;  if (!yymatchString(ctx, "TH")) goto l845;
  }
  l846:;	  if (!yy_Spnl(ctx)) goto l845;
  l848:;	
  {  int yypos849= ctx->pos, yythunkpos849= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l849;  goto l848;
  l849:;	  ctx->pos= yypos849; ctx->thunkpos= yythunkpos849;
  }  if (!yymatchChar(ctx, '>')) goto l845;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenTh", ctx->buf+ctx->pos));
  return 1;
  l845:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenTh", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockTfoot(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockTfoot"));  if (!yy_HtmlBlockOpenTfoot(ctx)) goto l850;
  l851:;	
  {  int yypos852= ctx->pos, yythunkpos852= ctx->thunkpos;
  {  int yypos853= ctx->pos, yythunkpos853= ctx->thunkpos;  if (!yy_HtmlBlockTfoot(ctx)) goto l854;  goto l853;
  l854:;	  ctx->pos= yypos853; ctx->thunkpos= yythunkpos853;
  {  int yypos855= ctx->pos, yythunkpos855= ctx->thunkpos;  if (!yy_HtmlBlockCloseTfoot(ctx)) goto l855;  goto l852;
  l855:;	  ctx->pos= yypos855; ctx->thunkpos= yythunkpos855;
  }  if (!yymatchDot(ctx)) goto l852;
  }
  l853:;	  goto l851;
  l852:;	  ctx->pos= yypos852; ctx->thunkpos= yythunkpos852;
  }  if (!yy_HtmlBlockCloseTfoot(ctx)) goto l850;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockTfoot", ctx->buf+ctx->pos));
  return 1;
  l850:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockTfoot", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseTfoot(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseTfoot"));  if (!yymatchChar(ctx, '<')) goto l856;  if (!yy_Spnl(ctx)) goto l856;  if (!yymatchChar(ctx, '/')) goto l856;
  {  int yypos857= ctx->pos, yythunkpos857= ctx->thunkpos;  if (!yymatchString(ctx, "tfoot")) goto l858;  goto l857;
  l858:;	  ctx->pos= yypos857; ctx->thunkpos= yythunkpos857;  if (!yymatchString(ctx, "TFOOT")) goto l856;
  }
  l857:;	  if (!yy_Spnl(ctx)) goto l856;  if (!yymatchChar(ctx, '>')) goto l856;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseTfoot", ctx->buf+ctx->pos));
  return 1;
  l856:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseTfoot", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenTfoot(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenTfoot"));  if (!yymatchChar(ctx, '<')) goto l859;  if (!yy_Spnl(ctx)) goto l859;
  {  int yypos860= ctx->pos, yythunkpos860= ctx->thunkpos;  if (!yymatchString(ctx, "tfoot")) goto l861;  goto l860;
  l861:;	  ctx->pos= yypos860; ctx->thunkpos= yythunkpos860;  if (!yymatchString(ctx, "TFOOT")) goto l859;
  }
  l860:;	  if (!yy_Spnl(ctx)) goto l859;
  l862:;	
  {  int yypos863= ctx->pos, yythunkpos863= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l863;  goto l862;
  l863:;	  ctx->pos= yypos863; ctx->thunkpos= yythunkpos863;
  }  if (!yymatchChar(ctx, '>')) goto l859;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenTfoot", ctx->buf+ctx->pos));
  return 1;
  l859:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenTfoot", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockTd(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockTd"));  if (!yy_HtmlBlockOpenTd(ctx)) goto l864;
  l865:;	
  {  int yypos866= ctx->pos, yythunkpos866= ctx->thunkpos;
  {  int yypos867= ctx->pos, yythunkpos867= ctx->thunkpos;  if (!yy_HtmlBlockTd(ctx)) goto l868;  goto l867;
  l868:;	  ctx->pos= yypos867; ctx->thunkpos= yythunkpos867;
  {  int yypos869= ctx->pos, yythunkpos869= ctx->thunkpos;  if (!yy_HtmlBlockCloseTd(ctx)) goto l869;  goto l866;
  l869:;	  ctx->pos= yypos869; ctx->thunkpos= yythunkpos869;
  }  if (!yymatchDot(ctx)) goto l866;
  }
  l867:;	  goto l865;
  l866:;	  ctx->pos= yypos866; ctx->thunkpos= yythunkpos866;
  }  if (!yy_HtmlBlockCloseTd(ctx)) goto l864;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockTd", ctx->buf+ctx->pos));
  return 1;
  l864:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockTd", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseTd(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseTd"));  if (!yymatchChar(ctx, '<')) goto l870;  if (!yy_Spnl(ctx)) goto l870;  if (!yymatchChar(ctx, '/')) goto l870;
  {  int yypos871= ctx->pos, yythunkpos871= ctx->thunkpos;  if (!yymatchString(ctx, "td")) goto l872;  goto l871;
  l872:;	  ctx->pos= yypos871; ctx->thunkpos= yythunkpos871;  if (!yymatchString(ctx, "TD")) goto l870;
  }
  l871:;	  if (!yy_Spnl(ctx)) goto l870;  if (!yymatchChar(ctx, '>')) goto l870;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseTd", ctx->buf+ctx->pos));
  return 1;
  l870:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseTd", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenTd(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenTd"));  if (!yymatchChar(ctx, '<')) goto l873;  if (!yy_Spnl(ctx)) goto l873;
  {  int yypos874= ctx->pos, yythunkpos874= ctx->thunkpos;  if (!yymatchString(ctx, "td")) goto l875;  goto l874;
  l875:;	  ctx->pos= yypos874; ctx->thunkpos= yythunkpos874;  if (!yymatchString(ctx, "TD")) goto l873;
  }
  l874:;	  if (!yy_Spnl(ctx)) goto l873;
  l876:;	
  {  int yypos877= ctx->pos, yythunkpos877= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l877;  goto l876;
  l877:;	  ctx->pos= yypos877; ctx->thunkpos= yythunkpos877;
  }  if (!yymatchChar(ctx, '>')) goto l873;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenTd", ctx->buf+ctx->pos));
  return 1;
  l873:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenTd", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockTbody(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockTbody"));  if (!yy_HtmlBlockOpenTbody(ctx)) goto l878;
  l879:;	
  {  int yypos880= ctx->pos, yythunkpos880= ctx->thunkpos;
  {  int yypos881= ctx->pos, yythunkpos881= ctx->thunkpos;  if (!yy_HtmlBlockTbody(ctx)) goto l882;  goto l881;
  l882:;	  ctx->pos= yypos881; ctx->thunkpos= yythunkpos881;
  {  int yypos883= ctx->pos, yythunkpos883= ctx->thunkpos;  if (!yy_HtmlBlockCloseTbody(ctx)) goto l883;  goto l880;
  l883:;	  ctx->pos= yypos883; ctx->thunkpos= yythunkpos883;
  }  if (!yymatchDot(ctx)) goto l880;
  }
  l881:;	  goto l879;
  l880:;	  ctx->pos= yypos880; ctx->thunkpos= yythunkpos880;
  }  if (!yy_HtmlBlockCloseTbody(ctx)) goto l878;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockTbody", ctx->buf+ctx->pos));
  return 1;
  l878:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockTbody", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseTbody(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseTbody"));  if (!yymatchChar(ctx, '<')) goto l884;  if (!yy_Spnl(ctx)) goto l884;  if (!yymatchChar(ctx, '/')) goto l884;
  {  int yypos885= ctx->pos, yythunkpos885= ctx->thunkpos;  if (!yymatchString(ctx, "tbody")) goto l886;  goto l885;
  l886:;	  ctx->pos= yypos885; ctx->thunkpos= yythunkpos885;  if (!yymatchString(ctx, "TBODY")) goto l884;
  }
  l885:;	  if (!yy_Spnl(ctx)) goto l884;  if (!yymatchChar(ctx, '>')) goto l884;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseTbody", ctx->buf+ctx->pos));
  return 1;
  l884:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseTbody", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenTbody(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenTbody"));  if (!yymatchChar(ctx, '<')) goto l887;  if (!yy_Spnl(ctx)) goto l887;
  {  int yypos888= ctx->pos, yythunkpos888= ctx->thunkpos;  if (!yymatchString(ctx, "tbody")) goto l889;  goto l888;
  l889:;	  ctx->pos= yypos888; ctx->thunkpos= yythunkpos888;  if (!yymatchString(ctx, "TBODY")) goto l887;
  }
  l888:;	  if (!yy_Spnl(ctx)) goto l887;
  l890:;	
  {  int yypos891= ctx->pos, yythunkpos891= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l891;  goto l890;
  l891:;	  ctx->pos= yypos891; ctx->thunkpos= yythunkpos891;
  }  if (!yymatchChar(ctx, '>')) goto l887;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenTbody", ctx->buf+ctx->pos));
  return 1;
  l887:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenTbody", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockLi(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockLi"));  if (!yy_HtmlBlockOpenLi(ctx)) goto l892;
  l893:;	
  {  int yypos894= ctx->pos, yythunkpos894= ctx->thunkpos;
  {  int yypos895= ctx->pos, yythunkpos895= ctx->thunkpos;  if (!yy_HtmlBlockLi(ctx)) goto l896;  goto l895;
  l896:;	  ctx->pos= yypos895; ctx->thunkpos= yythunkpos895;
  {  int yypos897= ctx->pos, yythunkpos897= ctx->thunkpos;  if (!yy_HtmlBlockCloseLi(ctx)) goto l897;  goto l894;
  l897:;	  ctx->pos= yypos897; ctx->thunkpos= yythunkpos897;
  }  if (!yymatchDot(ctx)) goto l894;
  }
  l895:;	  goto l893;
  l894:;	  ctx->pos= yypos894; ctx->thunkpos= yythunkpos894;
  }  if (!yy_HtmlBlockCloseLi(ctx)) goto l892;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockLi", ctx->buf+ctx->pos));
  return 1;
  l892:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockLi", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseLi(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseLi"));  if (!yymatchChar(ctx, '<')) goto l898;  if (!yy_Spnl(ctx)) goto l898;  if (!yymatchChar(ctx, '/')) goto l898;
  {  int yypos899= ctx->pos, yythunkpos899= ctx->thunkpos;  if (!yymatchString(ctx, "li")) goto l900;  goto l899;
  l900:;	  ctx->pos= yypos899; ctx->thunkpos= yythunkpos899;  if (!yymatchString(ctx, "LI")) goto l898;
  }
  l899:;	  if (!yy_Spnl(ctx)) goto l898;  if (!yymatchChar(ctx, '>')) goto l898;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseLi", ctx->buf+ctx->pos));
  return 1;
  l898:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseLi", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenLi(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenLi"));  if (!yymatchChar(ctx, '<')) goto l901;  if (!yy_Spnl(ctx)) goto l901;
  {  int yypos902= ctx->pos, yythunkpos902= ctx->thunkpos;  if (!yymatchString(ctx, "li")) goto l903;  goto l902;
  l903:;	  ctx->pos= yypos902; ctx->thunkpos= yythunkpos902;  if (!yymatchString(ctx, "LI")) goto l901;
  }
  l902:;	  if (!yy_Spnl(ctx)) goto l901;
  l904:;	
  {  int yypos905= ctx->pos, yythunkpos905= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l905;  goto l904;
  l905:;	  ctx->pos= yypos905; ctx->thunkpos= yythunkpos905;
  }  if (!yymatchChar(ctx, '>')) goto l901;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenLi", ctx->buf+ctx->pos));
  return 1;
  l901:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenLi", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockFrameset(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockFrameset"));  if (!yy_HtmlBlockOpenFrameset(ctx)) goto l906;
  l907:;	
  {  int yypos908= ctx->pos, yythunkpos908= ctx->thunkpos;
  {  int yypos909= ctx->pos, yythunkpos909= ctx->thunkpos;  if (!yy_HtmlBlockFrameset(ctx)) goto l910;  goto l909;
  l910:;	  ctx->pos= yypos909; ctx->thunkpos= yythunkpos909;
  {  int yypos911= ctx->pos, yythunkpos911= ctx->thunkpos;  if (!yy_HtmlBlockCloseFrameset(ctx)) goto l911;  goto l908;
  l911:;	  ctx->pos= yypos911; ctx->thunkpos= yythunkpos911;
  }  if (!yymatchDot(ctx)) goto l908;
  }
  l909:;	  goto l907;
  l908:;	  ctx->pos= yypos908; ctx->thunkpos= yythunkpos908;
  }  if (!yy_HtmlBlockCloseFrameset(ctx)) goto l906;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockFrameset", ctx->buf+ctx->pos));
  return 1;
  l906:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockFrameset", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseFrameset(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseFrameset"));  if (!yymatchChar(ctx, '<')) goto l912;  if (!yy_Spnl(ctx)) goto l912;  if (!yymatchChar(ctx, '/')) goto l912;
  {  int yypos913= ctx->pos, yythunkpos913= ctx->thunkpos;  if (!yymatchString(ctx, "frameset")) goto l914;  goto l913;
  l914:;	  ctx->pos= yypos913; ctx->thunkpos= yythunkpos913;  if (!yymatchString(ctx, "FRAMESET")) goto l912;
  }
  l913:;	  if (!yy_Spnl(ctx)) goto l912;  if (!yymatchChar(ctx, '>')) goto l912;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseFrameset", ctx->buf+ctx->pos));
  return 1;
  l912:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseFrameset", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenFrameset(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenFrameset"));  if (!yymatchChar(ctx, '<')) goto l915;  if (!yy_Spnl(ctx)) goto l915;
  {  int yypos916= ctx->pos, yythunkpos916= ctx->thunkpos;  if (!yymatchString(ctx, "frameset")) goto l917;  goto l916;
  l917:;	  ctx->pos= yypos916; ctx->thunkpos= yythunkpos916;  if (!yymatchString(ctx, "FRAMESET")) goto l915;
  }
  l916:;	  if (!yy_Spnl(ctx)) goto l915;
  l918:;	
  {  int yypos919= ctx->pos, yythunkpos919= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l919;  goto l918;
  l919:;	  ctx->pos= yypos919; ctx->thunkpos= yythunkpos919;
  }  if (!yymatchChar(ctx, '>')) goto l915;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenFrameset", ctx->buf+ctx->pos));
  return 1;
  l915:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenFrameset", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockDt(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockDt"));  if (!yy_HtmlBlockOpenDt(ctx)) goto l920;
  l921:;	
  {  int yypos922= ctx->pos, yythunkpos922= ctx->thunkpos;
  {  int yypos923= ctx->pos, yythunkpos923= ctx->thunkpos;  if (!yy_HtmlBlockDt(ctx)) goto l924;  goto l923;
  l924:;	  ctx->pos= yypos923; ctx->thunkpos= yythunkpos923;
  {  int yypos925= ctx->pos, yythunkpos925= ctx->thunkpos;  if (!yy_HtmlBlockCloseDt(ctx)) goto l925;  goto l922;
  l925:;	  ctx->pos= yypos925; ctx->thunkpos= yythunkpos925;
  }  if (!yymatchDot(ctx)) goto l922;
  }
  l923:;	  goto l921;
  l922:;	  ctx->pos= yypos922; ctx->thunkpos= yythunkpos922;
  }  if (!yy_HtmlBlockCloseDt(ctx)) goto l920;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockDt", ctx->buf+ctx->pos));
  return 1;
  l920:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockDt", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseDt(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseDt"));  if (!yymatchChar(ctx, '<')) goto l926;  if (!yy_Spnl(ctx)) goto l926;  if (!yymatchChar(ctx, '/')) goto l926;
  {  int yypos927= ctx->pos, yythunkpos927= ctx->thunkpos;  if (!yymatchString(ctx, "dt")) goto l928;  goto l927;
  l928:;	  ctx->pos= yypos927; ctx->thunkpos= yythunkpos927;  if (!yymatchString(ctx, "DT")) goto l926;
  }
  l927:;	  if (!yy_Spnl(ctx)) goto l926;  if (!yymatchChar(ctx, '>')) goto l926;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseDt", ctx->buf+ctx->pos));
  return 1;
  l926:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseDt", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenDt(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenDt"));  if (!yymatchChar(ctx, '<')) goto l929;  if (!yy_Spnl(ctx)) goto l929;
  {  int yypos930= ctx->pos, yythunkpos930= ctx->thunkpos;  if (!yymatchString(ctx, "dt")) goto l931;  goto l930;
  l931:;	  ctx->pos= yypos930; ctx->thunkpos= yythunkpos930;  if (!yymatchString(ctx, "DT")) goto l929;
  }
  l930:;	  if (!yy_Spnl(ctx)) goto l929;
  l932:;	
  {  int yypos933= ctx->pos, yythunkpos933= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l933;  goto l932;
  l933:;	  ctx->pos= yypos933; ctx->thunkpos= yythunkpos933;
  }  if (!yymatchChar(ctx, '>')) goto l929;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenDt", ctx->buf+ctx->pos));
  return 1;
  l929:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenDt", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockDd(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockDd"));  if (!yy_HtmlBlockOpenDd(ctx)) goto l934;
  l935:;	
  {  int yypos936= ctx->pos, yythunkpos936= ctx->thunkpos;
  {  int yypos937= ctx->pos, yythunkpos937= ctx->thunkpos;  if (!yy_HtmlBlockDd(ctx)) goto l938;  goto l937;
  l938:;	  ctx->pos= yypos937; ctx->thunkpos= yythunkpos937;
  {  int yypos939= ctx->pos, yythunkpos939= ctx->thunkpos;  if (!yy_HtmlBlockCloseDd(ctx)) goto l939;  goto l936;
  l939:;	  ctx->pos= yypos939; ctx->thunkpos= yythunkpos939;
  }  if (!yymatchDot(ctx)) goto l936;
  }
  l937:;	  goto l935;
  l936:;	  ctx->pos= yypos936; ctx->thunkpos= yythunkpos936;
  }  if (!yy_HtmlBlockCloseDd(ctx)) goto l934;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockDd", ctx->buf+ctx->pos));
  return 1;
  l934:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockDd", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseDd(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseDd"));  if (!yymatchChar(ctx, '<')) goto l940;  if (!yy_Spnl(ctx)) goto l940;  if (!yymatchChar(ctx, '/')) goto l940;
  {  int yypos941= ctx->pos, yythunkpos941= ctx->thunkpos;  if (!yymatchString(ctx, "dd")) goto l942;  goto l941;
  l942:;	  ctx->pos= yypos941; ctx->thunkpos= yythunkpos941;  if (!yymatchString(ctx, "DD")) goto l940;
  }
  l941:;	  if (!yy_Spnl(ctx)) goto l940;  if (!yymatchChar(ctx, '>')) goto l940;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseDd", ctx->buf+ctx->pos));
  return 1;
  l940:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseDd", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenDd(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenDd"));  if (!yymatchChar(ctx, '<')) goto l943;  if (!yy_Spnl(ctx)) goto l943;
  {  int yypos944= ctx->pos, yythunkpos944= ctx->thunkpos;  if (!yymatchString(ctx, "dd")) goto l945;  goto l944;
  l945:;	  ctx->pos= yypos944; ctx->thunkpos= yythunkpos944;  if (!yymatchString(ctx, "DD")) goto l943;
  }
  l944:;	  if (!yy_Spnl(ctx)) goto l943;
  l946:;	
  {  int yypos947= ctx->pos, yythunkpos947= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l947;  goto l946;
  l947:;	  ctx->pos= yypos947; ctx->thunkpos= yythunkpos947;
  }  if (!yymatchChar(ctx, '>')) goto l943;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenDd", ctx->buf+ctx->pos));
  return 1;
  l943:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenDd", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockUl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockUl"));  if (!yy_HtmlBlockOpenUl(ctx)) goto l948;
  l949:;	
  {  int yypos950= ctx->pos, yythunkpos950= ctx->thunkpos;
  {  int yypos951= ctx->pos, yythunkpos951= ctx->thunkpos;  if (!yy_HtmlBlockUl(ctx)) goto l952;  goto l951;
  l952:;	  ctx->pos= yypos951; ctx->thunkpos= yythunkpos951;
  {  int yypos953= ctx->pos, yythunkpos953= ctx->thunkpos;  if (!yy_HtmlBlockCloseUl(ctx)) goto l953;  goto l950;
  l953:;	  ctx->pos= yypos953; ctx->thunkpos= yythunkpos953;
  }  if (!yymatchDot(ctx)) goto l950;
  }
  l951:;	  goto l949;
  l950:;	  ctx->pos= yypos950; ctx->thunkpos= yythunkpos950;
  }  if (!yy_HtmlBlockCloseUl(ctx)) goto l948;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockUl", ctx->buf+ctx->pos));
  return 1;
  l948:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockUl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseUl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseUl"));  if (!yymatchChar(ctx, '<')) goto l954;  if (!yy_Spnl(ctx)) goto l954;  if (!yymatchChar(ctx, '/')) goto l954;
  {  int yypos955= ctx->pos, yythunkpos955= ctx->thunkpos;  if (!yymatchString(ctx, "ul")) goto l956;  goto l955;
  l956:;	  ctx->pos= yypos955; ctx->thunkpos= yythunkpos955;  if (!yymatchString(ctx, "UL")) goto l954;
  }
  l955:;	  if (!yy_Spnl(ctx)) goto l954;  if (!yymatchChar(ctx, '>')) goto l954;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseUl", ctx->buf+ctx->pos));
  return 1;
  l954:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseUl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenUl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenUl"));  if (!yymatchChar(ctx, '<')) goto l957;  if (!yy_Spnl(ctx)) goto l957;
  {  int yypos958= ctx->pos, yythunkpos958= ctx->thunkpos;  if (!yymatchString(ctx, "ul")) goto l959;  goto l958;
  l959:;	  ctx->pos= yypos958; ctx->thunkpos= yythunkpos958;  if (!yymatchString(ctx, "UL")) goto l957;
  }
  l958:;	  if (!yy_Spnl(ctx)) goto l957;
  l960:;	
  {  int yypos961= ctx->pos, yythunkpos961= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l961;  goto l960;
  l961:;	  ctx->pos= yypos961; ctx->thunkpos= yythunkpos961;
  }  if (!yymatchChar(ctx, '>')) goto l957;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenUl", ctx->buf+ctx->pos));
  return 1;
  l957:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenUl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockTable(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockTable"));  if (!yy_HtmlBlockOpenTable(ctx)) goto l962;
  l963:;	
  {  int yypos964= ctx->pos, yythunkpos964= ctx->thunkpos;
  {  int yypos965= ctx->pos, yythunkpos965= ctx->thunkpos;  if (!yy_HtmlBlockTable(ctx)) goto l966;  goto l965;
  l966:;	  ctx->pos= yypos965; ctx->thunkpos= yythunkpos965;
  {  int yypos967= ctx->pos, yythunkpos967= ctx->thunkpos;  if (!yy_HtmlBlockCloseTable(ctx)) goto l967;  goto l964;
  l967:;	  ctx->pos= yypos967; ctx->thunkpos= yythunkpos967;
  }  if (!yymatchDot(ctx)) goto l964;
  }
  l965:;	  goto l963;
  l964:;	  ctx->pos= yypos964; ctx->thunkpos= yythunkpos964;
  }  if (!yy_HtmlBlockCloseTable(ctx)) goto l962;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockTable", ctx->buf+ctx->pos));
  return 1;
  l962:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockTable", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseTable(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseTable"));  if (!yymatchChar(ctx, '<')) goto l968;  if (!yy_Spnl(ctx)) goto l968;  if (!yymatchChar(ctx, '/')) goto l968;
  {  int yypos969= ctx->pos, yythunkpos969= ctx->thunkpos;  if (!yymatchString(ctx, "table")) goto l970;  goto l969;
  l970:;	  ctx->pos= yypos969; ctx->thunkpos= yythunkpos969;  if (!yymatchString(ctx, "TABLE")) goto l968;
  }
  l969:;	  if (!yy_Spnl(ctx)) goto l968;  if (!yymatchChar(ctx, '>')) goto l968;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseTable", ctx->buf+ctx->pos));
  return 1;
  l968:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseTable", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenTable(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenTable"));  if (!yymatchChar(ctx, '<')) goto l971;  if (!yy_Spnl(ctx)) goto l971;
  {  int yypos972= ctx->pos, yythunkpos972= ctx->thunkpos;  if (!yymatchString(ctx, "table")) goto l973;  goto l972;
  l973:;	  ctx->pos= yypos972; ctx->thunkpos= yythunkpos972;  if (!yymatchString(ctx, "TABLE")) goto l971;
  }
  l972:;	  if (!yy_Spnl(ctx)) goto l971;
  l974:;	
  {  int yypos975= ctx->pos, yythunkpos975= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l975;  goto l974;
  l975:;	  ctx->pos= yypos975; ctx->thunkpos= yythunkpos975;
  }  if (!yymatchChar(ctx, '>')) goto l971;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenTable", ctx->buf+ctx->pos));
  return 1;
  l971:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenTable", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockPre(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockPre"));  if (!yy_HtmlBlockOpenPre(ctx)) goto l976;
  l977:;	
  {  int yypos978= ctx->pos, yythunkpos978= ctx->thunkpos;
  {  int yypos979= ctx->pos, yythunkpos979= ctx->thunkpos;  if (!yy_HtmlBlockPre(ctx)) goto l980;  goto l979;
  l980:;	  ctx->pos= yypos979; ctx->thunkpos= yythunkpos979;
  {  int yypos981= ctx->pos, yythunkpos981= ctx->thunkpos;  if (!yy_HtmlBlockClosePre(ctx)) goto l981;  goto l978;
  l981:;	  ctx->pos= yypos981; ctx->thunkpos= yythunkpos981;
  }  if (!yymatchDot(ctx)) goto l978;
  }
  l979:;	  goto l977;
  l978:;	  ctx->pos= yypos978; ctx->thunkpos= yythunkpos978;
  }  if (!yy_HtmlBlockClosePre(ctx)) goto l976;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockPre", ctx->buf+ctx->pos));
  return 1;
  l976:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockPre", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockClosePre(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockClosePre"));  if (!yymatchChar(ctx, '<')) goto l982;  if (!yy_Spnl(ctx)) goto l982;  if (!yymatchChar(ctx, '/')) goto l982;
  {  int yypos983= ctx->pos, yythunkpos983= ctx->thunkpos;  if (!yymatchString(ctx, "pre")) goto l984;  goto l983;
  l984:;	  ctx->pos= yypos983; ctx->thunkpos= yythunkpos983;  if (!yymatchString(ctx, "PRE")) goto l982;
  }
  l983:;	  if (!yy_Spnl(ctx)) goto l982;  if (!yymatchChar(ctx, '>')) goto l982;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockClosePre", ctx->buf+ctx->pos));
  return 1;
  l982:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockClosePre", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenPre(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenPre"));  if (!yymatchChar(ctx, '<')) goto l985;  if (!yy_Spnl(ctx)) goto l985;
  {  int yypos986= ctx->pos, yythunkpos986= ctx->thunkpos;  if (!yymatchString(ctx, "pre")) goto l987;  goto l986;
  l987:;	  ctx->pos= yypos986; ctx->thunkpos= yythunkpos986;  if (!yymatchString(ctx, "PRE")) goto l985;
  }
  l986:;	  if (!yy_Spnl(ctx)) goto l985;
  l988:;	
  {  int yypos989= ctx->pos, yythunkpos989= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l989;  goto l988;
  l989:;	  ctx->pos= yypos989; ctx->thunkpos= yythunkpos989;
  }  if (!yymatchChar(ctx, '>')) goto l985;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenPre", ctx->buf+ctx->pos));
  return 1;
  l985:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenPre", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockP(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockP"));  if (!yy_HtmlBlockOpenP(ctx)) goto l990;
  l991:;	
  {  int yypos992= ctx->pos, yythunkpos992= ctx->thunkpos;
  {  int yypos993= ctx->pos, yythunkpos993= ctx->thunkpos;  if (!yy_HtmlBlockP(ctx)) goto l994;  goto l993;
  l994:;	  ctx->pos= yypos993; ctx->thunkpos= yythunkpos993;
  {  int yypos995= ctx->pos, yythunkpos995= ctx->thunkpos;  if (!yy_HtmlBlockCloseP(ctx)) goto l995;  goto l992;
  l995:;	  ctx->pos= yypos995; ctx->thunkpos= yythunkpos995;
  }  if (!yymatchDot(ctx)) goto l992;
  }
  l993:;	  goto l991;
  l992:;	  ctx->pos= yypos992; ctx->thunkpos= yythunkpos992;
  }  if (!yy_HtmlBlockCloseP(ctx)) goto l990;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockP", ctx->buf+ctx->pos));
  return 1;
  l990:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockP", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseP(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseP"));  if (!yymatchChar(ctx, '<')) goto l996;  if (!yy_Spnl(ctx)) goto l996;  if (!yymatchChar(ctx, '/')) goto l996;
  {  int yypos997= ctx->pos, yythunkpos997= ctx->thunkpos;  if (!yymatchChar(ctx, 'p')) goto l998;  goto l997;
  l998:;	  ctx->pos= yypos997; ctx->thunkpos= yythunkpos997;  if (!yymatchChar(ctx, 'P')) goto l996;
  }
  l997:;	  if (!yy_Spnl(ctx)) goto l996;  if (!yymatchChar(ctx, '>')) goto l996;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseP", ctx->buf+ctx->pos));
  return 1;
  l996:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseP", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenP(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenP"));  if (!yymatchChar(ctx, '<')) goto l999;  if (!yy_Spnl(ctx)) goto l999;
  {  int yypos1000= ctx->pos, yythunkpos1000= ctx->thunkpos;  if (!yymatchChar(ctx, 'p')) goto l1001;  goto l1000;
  l1001:;	  ctx->pos= yypos1000; ctx->thunkpos= yythunkpos1000;  if (!yymatchChar(ctx, 'P')) goto l999;
  }
  l1000:;	  if (!yy_Spnl(ctx)) goto l999;
  l1002:;	
  {  int yypos1003= ctx->pos, yythunkpos1003= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1003;  goto l1002;
  l1003:;	  ctx->pos= yypos1003; ctx->thunkpos= yythunkpos1003;
  }  if (!yymatchChar(ctx, '>')) goto l999;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenP", ctx->buf+ctx->pos));
  return 1;
  l999:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenP", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOl"));  if (!yy_HtmlBlockOpenOl(ctx)) goto l1004;
  l1005:;	
  {  int yypos1006= ctx->pos, yythunkpos1006= ctx->thunkpos;
  {  int yypos1007= ctx->pos, yythunkpos1007= ctx->thunkpos;  if (!yy_HtmlBlockOl(ctx)) goto l1008;  goto l1007;
  l1008:;	  ctx->pos= yypos1007; ctx->thunkpos= yythunkpos1007;
  {  int yypos1009= ctx->pos, yythunkpos1009= ctx->thunkpos;  if (!yy_HtmlBlockCloseOl(ctx)) goto l1009;  goto l1006;
  l1009:;	  ctx->pos= yypos1009; ctx->thunkpos= yythunkpos1009;
  }  if (!yymatchDot(ctx)) goto l1006;
  }
  l1007:;	  goto l1005;
  l1006:;	  ctx->pos= yypos1006; ctx->thunkpos= yythunkpos1006;
  }  if (!yy_HtmlBlockCloseOl(ctx)) goto l1004;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOl", ctx->buf+ctx->pos));
  return 1;
  l1004:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseOl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseOl"));  if (!yymatchChar(ctx, '<')) goto l1010;  if (!yy_Spnl(ctx)) goto l1010;  if (!yymatchChar(ctx, '/')) goto l1010;
  {  int yypos1011= ctx->pos, yythunkpos1011= ctx->thunkpos;  if (!yymatchString(ctx, "ol")) goto l1012;  goto l1011;
  l1012:;	  ctx->pos= yypos1011; ctx->thunkpos= yythunkpos1011;  if (!yymatchString(ctx, "OL")) goto l1010;
  }
  l1011:;	  if (!yy_Spnl(ctx)) goto l1010;  if (!yymatchChar(ctx, '>')) goto l1010;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseOl", ctx->buf+ctx->pos));
  return 1;
  l1010:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseOl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenOl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenOl"));  if (!yymatchChar(ctx, '<')) goto l1013;  if (!yy_Spnl(ctx)) goto l1013;
  {  int yypos1014= ctx->pos, yythunkpos1014= ctx->thunkpos;  if (!yymatchString(ctx, "ol")) goto l1015;  goto l1014;
  l1015:;	  ctx->pos= yypos1014; ctx->thunkpos= yythunkpos1014;  if (!yymatchString(ctx, "OL")) goto l1013;
  }
  l1014:;	  if (!yy_Spnl(ctx)) goto l1013;
  l1016:;	
  {  int yypos1017= ctx->pos, yythunkpos1017= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1017;  goto l1016;
  l1017:;	  ctx->pos= yypos1017; ctx->thunkpos= yythunkpos1017;
  }  if (!yymatchChar(ctx, '>')) goto l1013;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenOl", ctx->buf+ctx->pos));
  return 1;
  l1013:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenOl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockNoscript(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockNoscript"));  if (!yy_HtmlBlockOpenNoscript(ctx)) goto l1018;
  l1019:;	
  {  int yypos1020= ctx->pos, yythunkpos1020= ctx->thunkpos;
  {  int yypos1021= ctx->pos, yythunkpos1021= ctx->thunkpos;  if (!yy_HtmlBlockNoscript(ctx)) goto l1022;  goto l1021;
  l1022:;	  ctx->pos= yypos1021; ctx->thunkpos= yythunkpos1021;
  {  int yypos1023= ctx->pos, yythunkpos1023= ctx->thunkpos;  if (!yy_HtmlBlockCloseNoscript(ctx)) goto l1023;  goto l1020;
  l1023:;	  ctx->pos= yypos1023; ctx->thunkpos= yythunkpos1023;
  }  if (!yymatchDot(ctx)) goto l1020;
  }
  l1021:;	  goto l1019;
  l1020:;	  ctx->pos= yypos1020; ctx->thunkpos= yythunkpos1020;
  }  if (!yy_HtmlBlockCloseNoscript(ctx)) goto l1018;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockNoscript", ctx->buf+ctx->pos));
  return 1;
  l1018:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockNoscript", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseNoscript(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseNoscript"));  if (!yymatchChar(ctx, '<')) goto l1024;  if (!yy_Spnl(ctx)) goto l1024;  if (!yymatchChar(ctx, '/')) goto l1024;
  {  int yypos1025= ctx->pos, yythunkpos1025= ctx->thunkpos;  if (!yymatchString(ctx, "noscript")) goto l1026;  goto l1025;
  l1026:;	  ctx->pos= yypos1025; ctx->thunkpos= yythunkpos1025;  if (!yymatchString(ctx, "NOSCRIPT")) goto l1024;
  }
  l1025:;	  if (!yy_Spnl(ctx)) goto l1024;  if (!yymatchChar(ctx, '>')) goto l1024;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseNoscript", ctx->buf+ctx->pos));
  return 1;
  l1024:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseNoscript", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenNoscript(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenNoscript"));  if (!yymatchChar(ctx, '<')) goto l1027;  if (!yy_Spnl(ctx)) goto l1027;
  {  int yypos1028= ctx->pos, yythunkpos1028= ctx->thunkpos;  if (!yymatchString(ctx, "noscript")) goto l1029;  goto l1028;
  l1029:;	  ctx->pos= yypos1028; ctx->thunkpos= yythunkpos1028;  if (!yymatchString(ctx, "NOSCRIPT")) goto l1027;
  }
  l1028:;	  if (!yy_Spnl(ctx)) goto l1027;
  l1030:;	
  {  int yypos1031= ctx->pos, yythunkpos1031= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1031;  goto l1030;
  l1031:;	  ctx->pos= yypos1031; ctx->thunkpos= yythunkpos1031;
  }  if (!yymatchChar(ctx, '>')) goto l1027;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenNoscript", ctx->buf+ctx->pos));
  return 1;
  l1027:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenNoscript", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockNoframes(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockNoframes"));  if (!yy_HtmlBlockOpenNoframes(ctx)) goto l1032;
  l1033:;	
  {  int yypos1034= ctx->pos, yythunkpos1034= ctx->thunkpos;
  {  int yypos1035= ctx->pos, yythunkpos1035= ctx->thunkpos;  if (!yy_HtmlBlockNoframes(ctx)) goto l1036;  goto l1035;
  l1036:;	  ctx->pos= yypos1035; ctx->thunkpos= yythunkpos1035;
  {  int yypos1037= ctx->pos, yythunkpos1037= ctx->thunkpos;  if (!yy_HtmlBlockCloseNoframes(ctx)) goto l1037;  goto l1034;
  l1037:;	  ctx->pos= yypos1037; ctx->thunkpos= yythunkpos1037;
  }  if (!yymatchDot(ctx)) goto l1034;
  }
  l1035:;	  goto l1033;
  l1034:;	  ctx->pos= yypos1034; ctx->thunkpos= yythunkpos1034;
  }  if (!yy_HtmlBlockCloseNoframes(ctx)) goto l1032;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockNoframes", ctx->buf+ctx->pos));
  return 1;
  l1032:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockNoframes", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseNoframes(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseNoframes"));  if (!yymatchChar(ctx, '<')) goto l1038;  if (!yy_Spnl(ctx)) goto l1038;  if (!yymatchChar(ctx, '/')) goto l1038;
  {  int yypos1039= ctx->pos, yythunkpos1039= ctx->thunkpos;  if (!yymatchString(ctx, "noframes")) goto l1040;  goto l1039;
  l1040:;	  ctx->pos= yypos1039; ctx->thunkpos= yythunkpos1039;  if (!yymatchString(ctx, "NOFRAMES")) goto l1038;
  }
  l1039:;	  if (!yy_Spnl(ctx)) goto l1038;  if (!yymatchChar(ctx, '>')) goto l1038;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseNoframes", ctx->buf+ctx->pos));
  return 1;
  l1038:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseNoframes", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenNoframes(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenNoframes"));  if (!yymatchChar(ctx, '<')) goto l1041;  if (!yy_Spnl(ctx)) goto l1041;
  {  int yypos1042= ctx->pos, yythunkpos1042= ctx->thunkpos;  if (!yymatchString(ctx, "noframes")) goto l1043;  goto l1042;
  l1043:;	  ctx->pos= yypos1042; ctx->thunkpos= yythunkpos1042;  if (!yymatchString(ctx, "NOFRAMES")) goto l1041;
  }
  l1042:;	  if (!yy_Spnl(ctx)) goto l1041;
  l1044:;	
  {  int yypos1045= ctx->pos, yythunkpos1045= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1045;  goto l1044;
  l1045:;	  ctx->pos= yypos1045; ctx->thunkpos= yythunkpos1045;
  }  if (!yymatchChar(ctx, '>')) goto l1041;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenNoframes", ctx->buf+ctx->pos));
  return 1;
  l1041:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenNoframes", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockMenu(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockMenu"));  if (!yy_HtmlBlockOpenMenu(ctx)) goto l1046;
  l1047:;	
  {  int yypos1048= ctx->pos, yythunkpos1048= ctx->thunkpos;
  {  int yypos1049= ctx->pos, yythunkpos1049= ctx->thunkpos;  if (!yy_HtmlBlockMenu(ctx)) goto l1050;  goto l1049;
  l1050:;	  ctx->pos= yypos1049; ctx->thunkpos= yythunkpos1049;
  {  int yypos1051= ctx->pos, yythunkpos1051= ctx->thunkpos;  if (!yy_HtmlBlockCloseMenu(ctx)) goto l1051;  goto l1048;
  l1051:;	  ctx->pos= yypos1051; ctx->thunkpos= yythunkpos1051;
  }  if (!yymatchDot(ctx)) goto l1048;
  }
  l1049:;	  goto l1047;
  l1048:;	  ctx->pos= yypos1048; ctx->thunkpos= yythunkpos1048;
  }  if (!yy_HtmlBlockCloseMenu(ctx)) goto l1046;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockMenu", ctx->buf+ctx->pos));
  return 1;
  l1046:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockMenu", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseMenu(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseMenu"));  if (!yymatchChar(ctx, '<')) goto l1052;  if (!yy_Spnl(ctx)) goto l1052;  if (!yymatchChar(ctx, '/')) goto l1052;
  {  int yypos1053= ctx->pos, yythunkpos1053= ctx->thunkpos;  if (!yymatchString(ctx, "menu")) goto l1054;  goto l1053;
  l1054:;	  ctx->pos= yypos1053; ctx->thunkpos= yythunkpos1053;  if (!yymatchString(ctx, "MENU")) goto l1052;
  }
  l1053:;	  if (!yy_Spnl(ctx)) goto l1052;  if (!yymatchChar(ctx, '>')) goto l1052;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseMenu", ctx->buf+ctx->pos));
  return 1;
  l1052:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseMenu", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenMenu(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenMenu"));  if (!yymatchChar(ctx, '<')) goto l1055;  if (!yy_Spnl(ctx)) goto l1055;
  {  int yypos1056= ctx->pos, yythunkpos1056= ctx->thunkpos;  if (!yymatchString(ctx, "menu")) goto l1057;  goto l1056;
  l1057:;	  ctx->pos= yypos1056; ctx->thunkpos= yythunkpos1056;  if (!yymatchString(ctx, "MENU")) goto l1055;
  }
  l1056:;	  if (!yy_Spnl(ctx)) goto l1055;
  l1058:;	
  {  int yypos1059= ctx->pos, yythunkpos1059= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1059;  goto l1058;
  l1059:;	  ctx->pos= yypos1059; ctx->thunkpos= yythunkpos1059;
  }  if (!yymatchChar(ctx, '>')) goto l1055;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenMenu", ctx->buf+ctx->pos));
  return 1;
  l1055:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenMenu", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockH6(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockH6"));  if (!yy_HtmlBlockOpenH6(ctx)) goto l1060;
  l1061:;	
  {  int yypos1062= ctx->pos, yythunkpos1062= ctx->thunkpos;
  {  int yypos1063= ctx->pos, yythunkpos1063= ctx->thunkpos;  if (!yy_HtmlBlockH6(ctx)) goto l1064;  goto l1063;
  l1064:;	  ctx->pos= yypos1063; ctx->thunkpos= yythunkpos1063;
  {  int yypos1065= ctx->pos, yythunkpos1065= ctx->thunkpos;  if (!yy_HtmlBlockCloseH6(ctx)) goto l1065;  goto l1062;
  l1065:;	  ctx->pos= yypos1065; ctx->thunkpos= yythunkpos1065;
  }  if (!yymatchDot(ctx)) goto l1062;
  }
  l1063:;	  goto l1061;
  l1062:;	  ctx->pos= yypos1062; ctx->thunkpos= yythunkpos1062;
  }  if (!yy_HtmlBlockCloseH6(ctx)) goto l1060;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockH6", ctx->buf+ctx->pos));
  return 1;
  l1060:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockH6", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseH6(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseH6"));  if (!yymatchChar(ctx, '<')) goto l1066;  if (!yy_Spnl(ctx)) goto l1066;  if (!yymatchChar(ctx, '/')) goto l1066;
  {  int yypos1067= ctx->pos, yythunkpos1067= ctx->thunkpos;  if (!yymatchString(ctx, "h6")) goto l1068;  goto l1067;
  l1068:;	  ctx->pos= yypos1067; ctx->thunkpos= yythunkpos1067;  if (!yymatchString(ctx, "H6")) goto l1066;
  }
  l1067:;	  if (!yy_Spnl(ctx)) goto l1066;  if (!yymatchChar(ctx, '>')) goto l1066;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseH6", ctx->buf+ctx->pos));
  return 1;
  l1066:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseH6", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenH6(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenH6"));  if (!yymatchChar(ctx, '<')) goto l1069;  if (!yy_Spnl(ctx)) goto l1069;
  {  int yypos1070= ctx->pos, yythunkpos1070= ctx->thunkpos;  if (!yymatchString(ctx, "h6")) goto l1071;  goto l1070;
  l1071:;	  ctx->pos= yypos1070; ctx->thunkpos= yythunkpos1070;  if (!yymatchString(ctx, "H6")) goto l1069;
  }
  l1070:;	  if (!yy_Spnl(ctx)) goto l1069;
  l1072:;	
  {  int yypos1073= ctx->pos, yythunkpos1073= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1073;  goto l1072;
  l1073:;	  ctx->pos= yypos1073; ctx->thunkpos= yythunkpos1073;
  }  if (!yymatchChar(ctx, '>')) goto l1069;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenH6", ctx->buf+ctx->pos));
  return 1;
  l1069:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenH6", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockH5(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockH5"));  if (!yy_HtmlBlockOpenH5(ctx)) goto l1074;
  l1075:;	
  {  int yypos1076= ctx->pos, yythunkpos1076= ctx->thunkpos;
  {  int yypos1077= ctx->pos, yythunkpos1077= ctx->thunkpos;  if (!yy_HtmlBlockH5(ctx)) goto l1078;  goto l1077;
  l1078:;	  ctx->pos= yypos1077; ctx->thunkpos= yythunkpos1077;
  {  int yypos1079= ctx->pos, yythunkpos1079= ctx->thunkpos;  if (!yy_HtmlBlockCloseH5(ctx)) goto l1079;  goto l1076;
  l1079:;	  ctx->pos= yypos1079; ctx->thunkpos= yythunkpos1079;
  }  if (!yymatchDot(ctx)) goto l1076;
  }
  l1077:;	  goto l1075;
  l1076:;	  ctx->pos= yypos1076; ctx->thunkpos= yythunkpos1076;
  }  if (!yy_HtmlBlockCloseH5(ctx)) goto l1074;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockH5", ctx->buf+ctx->pos));
  return 1;
  l1074:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockH5", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseH5(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseH5"));  if (!yymatchChar(ctx, '<')) goto l1080;  if (!yy_Spnl(ctx)) goto l1080;  if (!yymatchChar(ctx, '/')) goto l1080;
  {  int yypos1081= ctx->pos, yythunkpos1081= ctx->thunkpos;  if (!yymatchString(ctx, "h5")) goto l1082;  goto l1081;
  l1082:;	  ctx->pos= yypos1081; ctx->thunkpos= yythunkpos1081;  if (!yymatchString(ctx, "H5")) goto l1080;
  }
  l1081:;	  if (!yy_Spnl(ctx)) goto l1080;  if (!yymatchChar(ctx, '>')) goto l1080;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseH5", ctx->buf+ctx->pos));
  return 1;
  l1080:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseH5", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenH5(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenH5"));  if (!yymatchChar(ctx, '<')) goto l1083;  if (!yy_Spnl(ctx)) goto l1083;
  {  int yypos1084= ctx->pos, yythunkpos1084= ctx->thunkpos;  if (!yymatchString(ctx, "h5")) goto l1085;  goto l1084;
  l1085:;	  ctx->pos= yypos1084; ctx->thunkpos= yythunkpos1084;  if (!yymatchString(ctx, "H5")) goto l1083;
  }
  l1084:;	  if (!yy_Spnl(ctx)) goto l1083;
  l1086:;	
  {  int yypos1087= ctx->pos, yythunkpos1087= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1087;  goto l1086;
  l1087:;	  ctx->pos= yypos1087; ctx->thunkpos= yythunkpos1087;
  }  if (!yymatchChar(ctx, '>')) goto l1083;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenH5", ctx->buf+ctx->pos));
  return 1;
  l1083:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenH5", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockH4(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockH4"));  if (!yy_HtmlBlockOpenH4(ctx)) goto l1088;
  l1089:;	
  {  int yypos1090= ctx->pos, yythunkpos1090= ctx->thunkpos;
  {  int yypos1091= ctx->pos, yythunkpos1091= ctx->thunkpos;  if (!yy_HtmlBlockH4(ctx)) goto l1092;  goto l1091;
  l1092:;	  ctx->pos= yypos1091; ctx->thunkpos= yythunkpos1091;
  {  int yypos1093= ctx->pos, yythunkpos1093= ctx->thunkpos;  if (!yy_HtmlBlockCloseH4(ctx)) goto l1093;  goto l1090;
  l1093:;	  ctx->pos= yypos1093; ctx->thunkpos= yythunkpos1093;
  }  if (!yymatchDot(ctx)) goto l1090;
  }
  l1091:;	  goto l1089;
  l1090:;	  ctx->pos= yypos1090; ctx->thunkpos= yythunkpos1090;
  }  if (!yy_HtmlBlockCloseH4(ctx)) goto l1088;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockH4", ctx->buf+ctx->pos));
  return 1;
  l1088:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockH4", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseH4(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseH4"));  if (!yymatchChar(ctx, '<')) goto l1094;  if (!yy_Spnl(ctx)) goto l1094;  if (!yymatchChar(ctx, '/')) goto l1094;
  {  int yypos1095= ctx->pos, yythunkpos1095= ctx->thunkpos;  if (!yymatchString(ctx, "h4")) goto l1096;  goto l1095;
  l1096:;	  ctx->pos= yypos1095; ctx->thunkpos= yythunkpos1095;  if (!yymatchString(ctx, "H4")) goto l1094;
  }
  l1095:;	  if (!yy_Spnl(ctx)) goto l1094;  if (!yymatchChar(ctx, '>')) goto l1094;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseH4", ctx->buf+ctx->pos));
  return 1;
  l1094:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseH4", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenH4(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenH4"));  if (!yymatchChar(ctx, '<')) goto l1097;  if (!yy_Spnl(ctx)) goto l1097;
  {  int yypos1098= ctx->pos, yythunkpos1098= ctx->thunkpos;  if (!yymatchString(ctx, "h4")) goto l1099;  goto l1098;
  l1099:;	  ctx->pos= yypos1098; ctx->thunkpos= yythunkpos1098;  if (!yymatchString(ctx, "H4")) goto l1097;
  }
  l1098:;	  if (!yy_Spnl(ctx)) goto l1097;
  l1100:;	
  {  int yypos1101= ctx->pos, yythunkpos1101= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1101;  goto l1100;
  l1101:;	  ctx->pos= yypos1101; ctx->thunkpos= yythunkpos1101;
  }  if (!yymatchChar(ctx, '>')) goto l1097;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenH4", ctx->buf+ctx->pos));
  return 1;
  l1097:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenH4", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockH3(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockH3"));  if (!yy_HtmlBlockOpenH3(ctx)) goto l1102;
  l1103:;	
  {  int yypos1104= ctx->pos, yythunkpos1104= ctx->thunkpos;
  {  int yypos1105= ctx->pos, yythunkpos1105= ctx->thunkpos;  if (!yy_HtmlBlockH3(ctx)) goto l1106;  goto l1105;
  l1106:;	  ctx->pos= yypos1105; ctx->thunkpos= yythunkpos1105;
  {  int yypos1107= ctx->pos, yythunkpos1107= ctx->thunkpos;  if (!yy_HtmlBlockCloseH3(ctx)) goto l1107;  goto l1104;
  l1107:;	  ctx->pos= yypos1107; ctx->thunkpos= yythunkpos1107;
  }  if (!yymatchDot(ctx)) goto l1104;
  }
  l1105:;	  goto l1103;
  l1104:;	  ctx->pos= yypos1104; ctx->thunkpos= yythunkpos1104;
  }  if (!yy_HtmlBlockCloseH3(ctx)) goto l1102;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockH3", ctx->buf+ctx->pos));
  return 1;
  l1102:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockH3", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseH3(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseH3"));  if (!yymatchChar(ctx, '<')) goto l1108;  if (!yy_Spnl(ctx)) goto l1108;  if (!yymatchChar(ctx, '/')) goto l1108;
  {  int yypos1109= ctx->pos, yythunkpos1109= ctx->thunkpos;  if (!yymatchString(ctx, "h3")) goto l1110;  goto l1109;
  l1110:;	  ctx->pos= yypos1109; ctx->thunkpos= yythunkpos1109;  if (!yymatchString(ctx, "H3")) goto l1108;
  }
  l1109:;	  if (!yy_Spnl(ctx)) goto l1108;  if (!yymatchChar(ctx, '>')) goto l1108;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseH3", ctx->buf+ctx->pos));
  return 1;
  l1108:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseH3", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenH3(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenH3"));  if (!yymatchChar(ctx, '<')) goto l1111;  if (!yy_Spnl(ctx)) goto l1111;
  {  int yypos1112= ctx->pos, yythunkpos1112= ctx->thunkpos;  if (!yymatchString(ctx, "h3")) goto l1113;  goto l1112;
  l1113:;	  ctx->pos= yypos1112; ctx->thunkpos= yythunkpos1112;  if (!yymatchString(ctx, "H3")) goto l1111;
  }
  l1112:;	  if (!yy_Spnl(ctx)) goto l1111;
  l1114:;	
  {  int yypos1115= ctx->pos, yythunkpos1115= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1115;  goto l1114;
  l1115:;	  ctx->pos= yypos1115; ctx->thunkpos= yythunkpos1115;
  }  if (!yymatchChar(ctx, '>')) goto l1111;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenH3", ctx->buf+ctx->pos));
  return 1;
  l1111:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenH3", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockH2(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockH2"));  if (!yy_HtmlBlockOpenH2(ctx)) goto l1116;
  l1117:;	
  {  int yypos1118= ctx->pos, yythunkpos1118= ctx->thunkpos;
  {  int yypos1119= ctx->pos, yythunkpos1119= ctx->thunkpos;  if (!yy_HtmlBlockH2(ctx)) goto l1120;  goto l1119;
  l1120:;	  ctx->pos= yypos1119; ctx->thunkpos= yythunkpos1119;
  {  int yypos1121= ctx->pos, yythunkpos1121= ctx->thunkpos;  if (!yy_HtmlBlockCloseH2(ctx)) goto l1121;  goto l1118;
  l1121:;	  ctx->pos= yypos1121; ctx->thunkpos= yythunkpos1121;
  }  if (!yymatchDot(ctx)) goto l1118;
  }
  l1119:;	  goto l1117;
  l1118:;	  ctx->pos= yypos1118; ctx->thunkpos= yythunkpos1118;
  }  if (!yy_HtmlBlockCloseH2(ctx)) goto l1116;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockH2", ctx->buf+ctx->pos));
  return 1;
  l1116:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockH2", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseH2(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseH2"));  if (!yymatchChar(ctx, '<')) goto l1122;  if (!yy_Spnl(ctx)) goto l1122;  if (!yymatchChar(ctx, '/')) goto l1122;
  {  int yypos1123= ctx->pos, yythunkpos1123= ctx->thunkpos;  if (!yymatchString(ctx, "h2")) goto l1124;  goto l1123;
  l1124:;	  ctx->pos= yypos1123; ctx->thunkpos= yythunkpos1123;  if (!yymatchString(ctx, "H2")) goto l1122;
  }
  l1123:;	  if (!yy_Spnl(ctx)) goto l1122;  if (!yymatchChar(ctx, '>')) goto l1122;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseH2", ctx->buf+ctx->pos));
  return 1;
  l1122:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseH2", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenH2(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenH2"));  if (!yymatchChar(ctx, '<')) goto l1125;  if (!yy_Spnl(ctx)) goto l1125;
  {  int yypos1126= ctx->pos, yythunkpos1126= ctx->thunkpos;  if (!yymatchString(ctx, "h2")) goto l1127;  goto l1126;
  l1127:;	  ctx->pos= yypos1126; ctx->thunkpos= yythunkpos1126;  if (!yymatchString(ctx, "H2")) goto l1125;
  }
  l1126:;	  if (!yy_Spnl(ctx)) goto l1125;
  l1128:;	
  {  int yypos1129= ctx->pos, yythunkpos1129= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1129;  goto l1128;
  l1129:;	  ctx->pos= yypos1129; ctx->thunkpos= yythunkpos1129;
  }  if (!yymatchChar(ctx, '>')) goto l1125;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenH2", ctx->buf+ctx->pos));
  return 1;
  l1125:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenH2", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockH1(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockH1"));  if (!yy_HtmlBlockOpenH1(ctx)) goto l1130;
  l1131:;	
  {  int yypos1132= ctx->pos, yythunkpos1132= ctx->thunkpos;
  {  int yypos1133= ctx->pos, yythunkpos1133= ctx->thunkpos;  if (!yy_HtmlBlockH1(ctx)) goto l1134;  goto l1133;
  l1134:;	  ctx->pos= yypos1133; ctx->thunkpos= yythunkpos1133;
  {  int yypos1135= ctx->pos, yythunkpos1135= ctx->thunkpos;  if (!yy_HtmlBlockCloseH1(ctx)) goto l1135;  goto l1132;
  l1135:;	  ctx->pos= yypos1135; ctx->thunkpos= yythunkpos1135;
  }  if (!yymatchDot(ctx)) goto l1132;
  }
  l1133:;	  goto l1131;
  l1132:;	  ctx->pos= yypos1132; ctx->thunkpos= yythunkpos1132;
  }  if (!yy_HtmlBlockCloseH1(ctx)) goto l1130;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockH1", ctx->buf+ctx->pos));
  return 1;
  l1130:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockH1", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseH1(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseH1"));  if (!yymatchChar(ctx, '<')) goto l1136;  if (!yy_Spnl(ctx)) goto l1136;  if (!yymatchChar(ctx, '/')) goto l1136;
  {  int yypos1137= ctx->pos, yythunkpos1137= ctx->thunkpos;  if (!yymatchString(ctx, "h1")) goto l1138;  goto l1137;
  l1138:;	  ctx->pos= yypos1137; ctx->thunkpos= yythunkpos1137;  if (!yymatchString(ctx, "H1")) goto l1136;
  }
  l1137:;	  if (!yy_Spnl(ctx)) goto l1136;  if (!yymatchChar(ctx, '>')) goto l1136;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseH1", ctx->buf+ctx->pos));
  return 1;
  l1136:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseH1", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenH1(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenH1"));  if (!yymatchChar(ctx, '<')) goto l1139;  if (!yy_Spnl(ctx)) goto l1139;
  {  int yypos1140= ctx->pos, yythunkpos1140= ctx->thunkpos;  if (!yymatchString(ctx, "h1")) goto l1141;  goto l1140;
  l1141:;	  ctx->pos= yypos1140; ctx->thunkpos= yythunkpos1140;  if (!yymatchString(ctx, "H1")) goto l1139;
  }
  l1140:;	  if (!yy_Spnl(ctx)) goto l1139;
  l1142:;	
  {  int yypos1143= ctx->pos, yythunkpos1143= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1143;  goto l1142;
  l1143:;	  ctx->pos= yypos1143; ctx->thunkpos= yythunkpos1143;
  }  if (!yymatchChar(ctx, '>')) goto l1139;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenH1", ctx->buf+ctx->pos));
  return 1;
  l1139:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenH1", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockForm(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockForm"));  if (!yy_HtmlBlockOpenForm(ctx)) goto l1144;
  l1145:;	
  {  int yypos1146= ctx->pos, yythunkpos1146= ctx->thunkpos;
  {  int yypos1147= ctx->pos, yythunkpos1147= ctx->thunkpos;  if (!yy_HtmlBlockForm(ctx)) goto l1148;  goto l1147;
  l1148:;	  ctx->pos= yypos1147; ctx->thunkpos= yythunkpos1147;
  {  int yypos1149= ctx->pos, yythunkpos1149= ctx->thunkpos;  if (!yy_HtmlBlockCloseForm(ctx)) goto l1149;  goto l1146;
  l1149:;	  ctx->pos= yypos1149; ctx->thunkpos= yythunkpos1149;
  }  if (!yymatchDot(ctx)) goto l1146;
  }
  l1147:;	  goto l1145;
  l1146:;	  ctx->pos= yypos1146; ctx->thunkpos= yythunkpos1146;
  }  if (!yy_HtmlBlockCloseForm(ctx)) goto l1144;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockForm", ctx->buf+ctx->pos));
  return 1;
  l1144:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockForm", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseForm(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseForm"));  if (!yymatchChar(ctx, '<')) goto l1150;  if (!yy_Spnl(ctx)) goto l1150;  if (!yymatchChar(ctx, '/')) goto l1150;
  {  int yypos1151= ctx->pos, yythunkpos1151= ctx->thunkpos;  if (!yymatchString(ctx, "form")) goto l1152;  goto l1151;
  l1152:;	  ctx->pos= yypos1151; ctx->thunkpos= yythunkpos1151;  if (!yymatchString(ctx, "FORM")) goto l1150;
  }
  l1151:;	  if (!yy_Spnl(ctx)) goto l1150;  if (!yymatchChar(ctx, '>')) goto l1150;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseForm", ctx->buf+ctx->pos));
  return 1;
  l1150:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseForm", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenForm(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenForm"));  if (!yymatchChar(ctx, '<')) goto l1153;  if (!yy_Spnl(ctx)) goto l1153;
  {  int yypos1154= ctx->pos, yythunkpos1154= ctx->thunkpos;  if (!yymatchString(ctx, "form")) goto l1155;  goto l1154;
  l1155:;	  ctx->pos= yypos1154; ctx->thunkpos= yythunkpos1154;  if (!yymatchString(ctx, "FORM")) goto l1153;
  }
  l1154:;	  if (!yy_Spnl(ctx)) goto l1153;
  l1156:;	
  {  int yypos1157= ctx->pos, yythunkpos1157= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1157;  goto l1156;
  l1157:;	  ctx->pos= yypos1157; ctx->thunkpos= yythunkpos1157;
  }  if (!yymatchChar(ctx, '>')) goto l1153;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenForm", ctx->buf+ctx->pos));
  return 1;
  l1153:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenForm", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockFieldset(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockFieldset"));  if (!yy_HtmlBlockOpenFieldset(ctx)) goto l1158;
  l1159:;	
  {  int yypos1160= ctx->pos, yythunkpos1160= ctx->thunkpos;
  {  int yypos1161= ctx->pos, yythunkpos1161= ctx->thunkpos;  if (!yy_HtmlBlockFieldset(ctx)) goto l1162;  goto l1161;
  l1162:;	  ctx->pos= yypos1161; ctx->thunkpos= yythunkpos1161;
  {  int yypos1163= ctx->pos, yythunkpos1163= ctx->thunkpos;  if (!yy_HtmlBlockCloseFieldset(ctx)) goto l1163;  goto l1160;
  l1163:;	  ctx->pos= yypos1163; ctx->thunkpos= yythunkpos1163;
  }  if (!yymatchDot(ctx)) goto l1160;
  }
  l1161:;	  goto l1159;
  l1160:;	  ctx->pos= yypos1160; ctx->thunkpos= yythunkpos1160;
  }  if (!yy_HtmlBlockCloseFieldset(ctx)) goto l1158;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockFieldset", ctx->buf+ctx->pos));
  return 1;
  l1158:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockFieldset", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseFieldset(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseFieldset"));  if (!yymatchChar(ctx, '<')) goto l1164;  if (!yy_Spnl(ctx)) goto l1164;  if (!yymatchChar(ctx, '/')) goto l1164;
  {  int yypos1165= ctx->pos, yythunkpos1165= ctx->thunkpos;  if (!yymatchString(ctx, "fieldset")) goto l1166;  goto l1165;
  l1166:;	  ctx->pos= yypos1165; ctx->thunkpos= yythunkpos1165;  if (!yymatchString(ctx, "FIELDSET")) goto l1164;
  }
  l1165:;	  if (!yy_Spnl(ctx)) goto l1164;  if (!yymatchChar(ctx, '>')) goto l1164;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseFieldset", ctx->buf+ctx->pos));
  return 1;
  l1164:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseFieldset", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenFieldset(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenFieldset"));  if (!yymatchChar(ctx, '<')) goto l1167;  if (!yy_Spnl(ctx)) goto l1167;
  {  int yypos1168= ctx->pos, yythunkpos1168= ctx->thunkpos;  if (!yymatchString(ctx, "fieldset")) goto l1169;  goto l1168;
  l1169:;	  ctx->pos= yypos1168; ctx->thunkpos= yythunkpos1168;  if (!yymatchString(ctx, "FIELDSET")) goto l1167;
  }
  l1168:;	  if (!yy_Spnl(ctx)) goto l1167;
  l1170:;	
  {  int yypos1171= ctx->pos, yythunkpos1171= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1171;  goto l1170;
  l1171:;	  ctx->pos= yypos1171; ctx->thunkpos= yythunkpos1171;
  }  if (!yymatchChar(ctx, '>')) goto l1167;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenFieldset", ctx->buf+ctx->pos));
  return 1;
  l1167:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenFieldset", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockDl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockDl"));  if (!yy_HtmlBlockOpenDl(ctx)) goto l1172;
  l1173:;	
  {  int yypos1174= ctx->pos, yythunkpos1174= ctx->thunkpos;
  {  int yypos1175= ctx->pos, yythunkpos1175= ctx->thunkpos;  if (!yy_HtmlBlockDl(ctx)) goto l1176;  goto l1175;
  l1176:;	  ctx->pos= yypos1175; ctx->thunkpos= yythunkpos1175;
  {  int yypos1177= ctx->pos, yythunkpos1177= ctx->thunkpos;  if (!yy_HtmlBlockCloseDl(ctx)) goto l1177;  goto l1174;
  l1177:;	  ctx->pos= yypos1177; ctx->thunkpos= yythunkpos1177;
  }  if (!yymatchDot(ctx)) goto l1174;
  }
  l1175:;	  goto l1173;
  l1174:;	  ctx->pos= yypos1174; ctx->thunkpos= yythunkpos1174;
  }  if (!yy_HtmlBlockCloseDl(ctx)) goto l1172;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockDl", ctx->buf+ctx->pos));
  return 1;
  l1172:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockDl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseDl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseDl"));  if (!yymatchChar(ctx, '<')) goto l1178;  if (!yy_Spnl(ctx)) goto l1178;  if (!yymatchChar(ctx, '/')) goto l1178;
  {  int yypos1179= ctx->pos, yythunkpos1179= ctx->thunkpos;  if (!yymatchString(ctx, "dl")) goto l1180;  goto l1179;
  l1180:;	  ctx->pos= yypos1179; ctx->thunkpos= yythunkpos1179;  if (!yymatchString(ctx, "DL")) goto l1178;
  }
  l1179:;	  if (!yy_Spnl(ctx)) goto l1178;  if (!yymatchChar(ctx, '>')) goto l1178;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseDl", ctx->buf+ctx->pos));
  return 1;
  l1178:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseDl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenDl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenDl"));  if (!yymatchChar(ctx, '<')) goto l1181;  if (!yy_Spnl(ctx)) goto l1181;
  {  int yypos1182= ctx->pos, yythunkpos1182= ctx->thunkpos;  if (!yymatchString(ctx, "dl")) goto l1183;  goto l1182;
  l1183:;	  ctx->pos= yypos1182; ctx->thunkpos= yythunkpos1182;  if (!yymatchString(ctx, "DL")) goto l1181;
  }
  l1182:;	  if (!yy_Spnl(ctx)) goto l1181;
  l1184:;	
  {  int yypos1185= ctx->pos, yythunkpos1185= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1185;  goto l1184;
  l1185:;	  ctx->pos= yypos1185; ctx->thunkpos= yythunkpos1185;
  }  if (!yymatchChar(ctx, '>')) goto l1181;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenDl", ctx->buf+ctx->pos));
  return 1;
  l1181:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenDl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockDiv(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockDiv"));  if (!yy_HtmlBlockOpenDiv(ctx)) goto l1186;
  l1187:;	
  {  int yypos1188= ctx->pos, yythunkpos1188= ctx->thunkpos;
  {  int yypos1189= ctx->pos, yythunkpos1189= ctx->thunkpos;  if (!yy_HtmlBlockDiv(ctx)) goto l1190;  goto l1189;
  l1190:;	  ctx->pos= yypos1189; ctx->thunkpos= yythunkpos1189;
  {  int yypos1191= ctx->pos, yythunkpos1191= ctx->thunkpos;  if (!yy_HtmlBlockCloseDiv(ctx)) goto l1191;  goto l1188;
  l1191:;	  ctx->pos= yypos1191; ctx->thunkpos= yythunkpos1191;
  }  if (!yymatchDot(ctx)) goto l1188;
  }
  l1189:;	  goto l1187;
  l1188:;	  ctx->pos= yypos1188; ctx->thunkpos= yythunkpos1188;
  }  if (!yy_HtmlBlockCloseDiv(ctx)) goto l1186;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockDiv", ctx->buf+ctx->pos));
  return 1;
  l1186:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockDiv", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseDiv(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseDiv"));  if (!yymatchChar(ctx, '<')) goto l1192;  if (!yy_Spnl(ctx)) goto l1192;  if (!yymatchChar(ctx, '/')) goto l1192;
  {  int yypos1193= ctx->pos, yythunkpos1193= ctx->thunkpos;  if (!yymatchString(ctx, "div")) goto l1194;  goto l1193;
  l1194:;	  ctx->pos= yypos1193; ctx->thunkpos= yythunkpos1193;  if (!yymatchString(ctx, "DIV")) goto l1192;
  }
  l1193:;	  if (!yy_Spnl(ctx)) goto l1192;  if (!yymatchChar(ctx, '>')) goto l1192;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseDiv", ctx->buf+ctx->pos));
  return 1;
  l1192:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseDiv", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenDiv(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenDiv"));  if (!yymatchChar(ctx, '<')) goto l1195;  if (!yy_Spnl(ctx)) goto l1195;
  {  int yypos1196= ctx->pos, yythunkpos1196= ctx->thunkpos;  if (!yymatchString(ctx, "div")) goto l1197;  goto l1196;
  l1197:;	  ctx->pos= yypos1196; ctx->thunkpos= yythunkpos1196;  if (!yymatchString(ctx, "DIV")) goto l1195;
  }
  l1196:;	  if (!yy_Spnl(ctx)) goto l1195;
  l1198:;	
  {  int yypos1199= ctx->pos, yythunkpos1199= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1199;  goto l1198;
  l1199:;	  ctx->pos= yypos1199; ctx->thunkpos= yythunkpos1199;
  }  if (!yymatchChar(ctx, '>')) goto l1195;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenDiv", ctx->buf+ctx->pos));
  return 1;
  l1195:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenDiv", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockDir(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockDir"));  if (!yy_HtmlBlockOpenDir(ctx)) goto l1200;
  l1201:;	
  {  int yypos1202= ctx->pos, yythunkpos1202= ctx->thunkpos;
  {  int yypos1203= ctx->pos, yythunkpos1203= ctx->thunkpos;  if (!yy_HtmlBlockDir(ctx)) goto l1204;  goto l1203;
  l1204:;	  ctx->pos= yypos1203; ctx->thunkpos= yythunkpos1203;
  {  int yypos1205= ctx->pos, yythunkpos1205= ctx->thunkpos;  if (!yy_HtmlBlockCloseDir(ctx)) goto l1205;  goto l1202;
  l1205:;	  ctx->pos= yypos1205; ctx->thunkpos= yythunkpos1205;
  }  if (!yymatchDot(ctx)) goto l1202;
  }
  l1203:;	  goto l1201;
  l1202:;	  ctx->pos= yypos1202; ctx->thunkpos= yythunkpos1202;
  }  if (!yy_HtmlBlockCloseDir(ctx)) goto l1200;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockDir", ctx->buf+ctx->pos));
  return 1;
  l1200:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockDir", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseDir(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseDir"));  if (!yymatchChar(ctx, '<')) goto l1206;  if (!yy_Spnl(ctx)) goto l1206;  if (!yymatchChar(ctx, '/')) goto l1206;
  {  int yypos1207= ctx->pos, yythunkpos1207= ctx->thunkpos;  if (!yymatchString(ctx, "dir")) goto l1208;  goto l1207;
  l1208:;	  ctx->pos= yypos1207; ctx->thunkpos= yythunkpos1207;  if (!yymatchString(ctx, "DIR")) goto l1206;
  }
  l1207:;	  if (!yy_Spnl(ctx)) goto l1206;  if (!yymatchChar(ctx, '>')) goto l1206;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseDir", ctx->buf+ctx->pos));
  return 1;
  l1206:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseDir", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenDir(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenDir"));  if (!yymatchChar(ctx, '<')) goto l1209;  if (!yy_Spnl(ctx)) goto l1209;
  {  int yypos1210= ctx->pos, yythunkpos1210= ctx->thunkpos;  if (!yymatchString(ctx, "dir")) goto l1211;  goto l1210;
  l1211:;	  ctx->pos= yypos1210; ctx->thunkpos= yythunkpos1210;  if (!yymatchString(ctx, "DIR")) goto l1209;
  }
  l1210:;	  if (!yy_Spnl(ctx)) goto l1209;
  l1212:;	
  {  int yypos1213= ctx->pos, yythunkpos1213= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1213;  goto l1212;
  l1213:;	  ctx->pos= yypos1213; ctx->thunkpos= yythunkpos1213;
  }  if (!yymatchChar(ctx, '>')) goto l1209;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenDir", ctx->buf+ctx->pos));
  return 1;
  l1209:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenDir", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCenter(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCenter"));  if (!yy_HtmlBlockOpenCenter(ctx)) goto l1214;
  l1215:;	
  {  int yypos1216= ctx->pos, yythunkpos1216= ctx->thunkpos;
  {  int yypos1217= ctx->pos, yythunkpos1217= ctx->thunkpos;  if (!yy_HtmlBlockCenter(ctx)) goto l1218;  goto l1217;
  l1218:;	  ctx->pos= yypos1217; ctx->thunkpos= yythunkpos1217;
  {  int yypos1219= ctx->pos, yythunkpos1219= ctx->thunkpos;  if (!yy_HtmlBlockCloseCenter(ctx)) goto l1219;  goto l1216;
  l1219:;	  ctx->pos= yypos1219; ctx->thunkpos= yythunkpos1219;
  }  if (!yymatchDot(ctx)) goto l1216;
  }
  l1217:;	  goto l1215;
  l1216:;	  ctx->pos= yypos1216; ctx->thunkpos= yythunkpos1216;
  }  if (!yy_HtmlBlockCloseCenter(ctx)) goto l1214;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCenter", ctx->buf+ctx->pos));
  return 1;
  l1214:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCenter", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseCenter(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseCenter"));  if (!yymatchChar(ctx, '<')) goto l1220;  if (!yy_Spnl(ctx)) goto l1220;  if (!yymatchChar(ctx, '/')) goto l1220;
  {  int yypos1221= ctx->pos, yythunkpos1221= ctx->thunkpos;  if (!yymatchString(ctx, "center")) goto l1222;  goto l1221;
  l1222:;	  ctx->pos= yypos1221; ctx->thunkpos= yythunkpos1221;  if (!yymatchString(ctx, "CENTER")) goto l1220;
  }
  l1221:;	  if (!yy_Spnl(ctx)) goto l1220;  if (!yymatchChar(ctx, '>')) goto l1220;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseCenter", ctx->buf+ctx->pos));
  return 1;
  l1220:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseCenter", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenCenter(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenCenter"));  if (!yymatchChar(ctx, '<')) goto l1223;  if (!yy_Spnl(ctx)) goto l1223;
  {  int yypos1224= ctx->pos, yythunkpos1224= ctx->thunkpos;  if (!yymatchString(ctx, "center")) goto l1225;  goto l1224;
  l1225:;	  ctx->pos= yypos1224; ctx->thunkpos= yythunkpos1224;  if (!yymatchString(ctx, "CENTER")) goto l1223;
  }
  l1224:;	  if (!yy_Spnl(ctx)) goto l1223;
  l1226:;	
  {  int yypos1227= ctx->pos, yythunkpos1227= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1227;  goto l1226;
  l1227:;	  ctx->pos= yypos1227; ctx->thunkpos= yythunkpos1227;
  }  if (!yymatchChar(ctx, '>')) goto l1223;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenCenter", ctx->buf+ctx->pos));
  return 1;
  l1223:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenCenter", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockBlockquote(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockBlockquote"));  if (!yy_HtmlBlockOpenBlockquote(ctx)) goto l1228;
  l1229:;	
  {  int yypos1230= ctx->pos, yythunkpos1230= ctx->thunkpos;
  {  int yypos1231= ctx->pos, yythunkpos1231= ctx->thunkpos;  if (!yy_HtmlBlockBlockquote(ctx)) goto l1232;  goto l1231;
  l1232:;	  ctx->pos= yypos1231; ctx->thunkpos= yythunkpos1231;
  {  int yypos1233= ctx->pos, yythunkpos1233= ctx->thunkpos;  if (!yy_HtmlBlockCloseBlockquote(ctx)) goto l1233;  goto l1230;
  l1233:;	  ctx->pos= yypos1233; ctx->thunkpos= yythunkpos1233;
  }  if (!yymatchDot(ctx)) goto l1230;
  }
  l1231:;	  goto l1229;
  l1230:;	  ctx->pos= yypos1230; ctx->thunkpos= yythunkpos1230;
  }  if (!yy_HtmlBlockCloseBlockquote(ctx)) goto l1228;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockBlockquote", ctx->buf+ctx->pos));
  return 1;
  l1228:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockBlockquote", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseBlockquote(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseBlockquote"));  if (!yymatchChar(ctx, '<')) goto l1234;  if (!yy_Spnl(ctx)) goto l1234;  if (!yymatchChar(ctx, '/')) goto l1234;
  {  int yypos1235= ctx->pos, yythunkpos1235= ctx->thunkpos;  if (!yymatchString(ctx, "blockquote")) goto l1236;  goto l1235;
  l1236:;	  ctx->pos= yypos1235; ctx->thunkpos= yythunkpos1235;  if (!yymatchString(ctx, "BLOCKQUOTE")) goto l1234;
  }
  l1235:;	  if (!yy_Spnl(ctx)) goto l1234;  if (!yymatchChar(ctx, '>')) goto l1234;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseBlockquote", ctx->buf+ctx->pos));
  return 1;
  l1234:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseBlockquote", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenBlockquote(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenBlockquote"));  if (!yymatchChar(ctx, '<')) goto l1237;  if (!yy_Spnl(ctx)) goto l1237;
  {  int yypos1238= ctx->pos, yythunkpos1238= ctx->thunkpos;  if (!yymatchString(ctx, "blockquote")) goto l1239;  goto l1238;
  l1239:;	  ctx->pos= yypos1238; ctx->thunkpos= yythunkpos1238;  if (!yymatchString(ctx, "BLOCKQUOTE")) goto l1237;
  }
  l1238:;	  if (!yy_Spnl(ctx)) goto l1237;
  l1240:;	
  {  int yypos1241= ctx->pos, yythunkpos1241= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1241;  goto l1240;
  l1241:;	  ctx->pos= yypos1241; ctx->thunkpos= yythunkpos1241;
  }  if (!yymatchChar(ctx, '>')) goto l1237;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenBlockquote", ctx->buf+ctx->pos));
  return 1;
  l1237:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenBlockquote", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockAddress(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockAddress"));  if (!yy_HtmlBlockOpenAddress(ctx)) goto l1242;
  l1243:;	
  {  int yypos1244= ctx->pos, yythunkpos1244= ctx->thunkpos;
  {  int yypos1245= ctx->pos, yythunkpos1245= ctx->thunkpos;  if (!yy_HtmlBlockAddress(ctx)) goto l1246;  goto l1245;
  l1246:;	  ctx->pos= yypos1245; ctx->thunkpos= yythunkpos1245;
  {  int yypos1247= ctx->pos, yythunkpos1247= ctx->thunkpos;  if (!yy_HtmlBlockCloseAddress(ctx)) goto l1247;  goto l1244;
  l1247:;	  ctx->pos= yypos1247; ctx->thunkpos= yythunkpos1247;
  }  if (!yymatchDot(ctx)) goto l1244;
  }
  l1245:;	  goto l1243;
  l1244:;	  ctx->pos= yypos1244; ctx->thunkpos= yythunkpos1244;
  }  if (!yy_HtmlBlockCloseAddress(ctx)) goto l1242;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockAddress", ctx->buf+ctx->pos));
  return 1;
  l1242:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockAddress", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockCloseAddress(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockCloseAddress"));  if (!yymatchChar(ctx, '<')) goto l1248;  if (!yy_Spnl(ctx)) goto l1248;  if (!yymatchChar(ctx, '/')) goto l1248;
  {  int yypos1249= ctx->pos, yythunkpos1249= ctx->thunkpos;  if (!yymatchString(ctx, "address")) goto l1250;  goto l1249;
  l1250:;	  ctx->pos= yypos1249; ctx->thunkpos= yythunkpos1249;  if (!yymatchString(ctx, "ADDRESS")) goto l1248;
  }
  l1249:;	  if (!yy_Spnl(ctx)) goto l1248;  if (!yymatchChar(ctx, '>')) goto l1248;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockCloseAddress", ctx->buf+ctx->pos));
  return 1;
  l1248:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockCloseAddress", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlAttribute(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlAttribute"));
  {  int yypos1254= ctx->pos, yythunkpos1254= ctx->thunkpos;  if (!yy_AlphanumericAscii(ctx)) goto l1255;  goto l1254;
  l1255:;	  ctx->pos= yypos1254; ctx->thunkpos= yythunkpos1254;  if (!yymatchChar(ctx, '-')) goto l1251;
  }
  l1254:;	
  l1252:;	
  {  int yypos1253= ctx->pos, yythunkpos1253= ctx->thunkpos;
  {  int yypos1256= ctx->pos, yythunkpos1256= ctx->thunkpos;  if (!yy_AlphanumericAscii(ctx)) goto l1257;  goto l1256;
  l1257:;	  ctx->pos= yypos1256; ctx->thunkpos= yythunkpos1256;  if (!yymatchChar(ctx, '-')) goto l1253;
  }
  l1256:;	  goto l1252;
  l1253:;	  ctx->pos= yypos1253; ctx->thunkpos= yythunkpos1253;
  }  if (!yy_Spnl(ctx)) goto l1251;
  {  int yypos1258= ctx->pos, yythunkpos1258= ctx->thunkpos;  if (!yymatchChar(ctx, '=')) goto l1258;  if (!yy_Spnl(ctx)) goto l1258;
  {  int yypos1260= ctx->pos, yythunkpos1260= ctx->thunkpos;  if (!yy_Quoted(ctx)) goto l1261;  goto l1260;
  l1261:;	  ctx->pos= yypos1260; ctx->thunkpos= yythunkpos1260;
  {  int yypos1264= ctx->pos, yythunkpos1264= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l1264;  goto l1258;
  l1264:;	  ctx->pos= yypos1264; ctx->thunkpos= yythunkpos1264;
  }  if (!yy_Nonspacechar(ctx)) goto l1258;
  l1262:;	
  {  int yypos1263= ctx->pos, yythunkpos1263= ctx->thunkpos;
  {  int yypos1265= ctx->pos, yythunkpos1265= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l1265;  goto l1263;
  l1265:;	  ctx->pos= yypos1265; ctx->thunkpos= yythunkpos1265;
  }  if (!yy_Nonspacechar(ctx)) goto l1263;  goto l1262;
  l1263:;	  ctx->pos= yypos1263; ctx->thunkpos= yythunkpos1263;
  }
  }
  l1260:;	  goto l1259;
  l1258:;	  ctx->pos= yypos1258; ctx->thunkpos= yythunkpos1258;
  }
  l1259:;	  if (!yy_Spnl(ctx)) goto l1251;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlAttribute", ctx->buf+ctx->pos));
  return 1;
  l1251:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlAttribute", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Spnl(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Spnl"));  if (!yy_Sp(ctx)) goto l1266;
  {  int yypos1267= ctx->pos, yythunkpos1267= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l1267;  if (!yy_Sp(ctx)) goto l1267;  goto l1268;
  l1267:;	  ctx->pos= yypos1267; ctx->thunkpos= yythunkpos1267;
  }
  l1268:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Spnl", ctx->buf+ctx->pos));
  return 1;
  l1266:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Spnl", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlockOpenAddress(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlockOpenAddress"));  if (!yymatchChar(ctx, '<')) goto l1269;  if (!yy_Spnl(ctx)) goto l1269;
  {  int yypos1270= ctx->pos, yythunkpos1270= ctx->thunkpos;  if (!yymatchString(ctx, "address")) goto l1271;  goto l1270;
  l1271:;	  ctx->pos= yypos1270; ctx->thunkpos= yythunkpos1270;  if (!yymatchString(ctx, "ADDRESS")) goto l1269;
  }
  l1270:;	  if (!yy_Spnl(ctx)) goto l1269;
  l1272:;	
  {  int yypos1273= ctx->pos, yythunkpos1273= ctx->thunkpos;  if (!yy_HtmlAttribute(ctx)) goto l1273;  goto l1272;
  l1273:;	  ctx->pos= yypos1273; ctx->thunkpos= yythunkpos1273;
  }  if (!yymatchChar(ctx, '>')) goto l1269;
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlockOpenAddress", ctx->buf+ctx->pos));
  return 1;
  l1269:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlockOpenAddress", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_OptionallyIndentedLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "OptionallyIndentedLine"));
  {  int yypos1275= ctx->pos, yythunkpos1275= ctx->thunkpos;  if (!yy_Indent(ctx)) goto l1275;  goto l1276;
  l1275:;	  ctx->pos= yypos1275; ctx->thunkpos= yythunkpos1275;
  }
  l1276:;	  if (!yy_Line(ctx)) goto l1274;
  yyprintf((stderr, "  ok   %s @ %s\n", "OptionallyIndentedLine", ctx->buf+ctx->pos));
  return 1;
  l1274:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "OptionallyIndentedLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Indent(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Indent"));
  {  int yypos1278= ctx->pos, yythunkpos1278= ctx->thunkpos;  if (!yymatchChar(ctx, '\t')) goto l1279;  goto l1278;
  l1279:;	  ctx->pos= yypos1278; ctx->thunkpos= yythunkpos1278;  if (!yymatchString(ctx, "    ")) goto l1277;
  }
  l1278:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Indent", ctx->buf+ctx->pos));
  return 1;
  l1277:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Indent", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ListBlockLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "ListBlockLine"));
  {  int yypos1281= ctx->pos, yythunkpos1281= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1281;  goto l1280;
  l1281:;	  ctx->pos= yypos1281; ctx->thunkpos= yythunkpos1281;
  }
  {  int yypos1282= ctx->pos, yythunkpos1282= ctx->thunkpos;
  {  int yypos1283= ctx->pos, yythunkpos1283= ctx->thunkpos;  if (!yy_Indent(ctx)) goto l1283;  goto l1284;
  l1283:;	  ctx->pos= yypos1283; ctx->thunkpos= yythunkpos1283;
  }
  l1284:;	
  {  int yypos1285= ctx->pos, yythunkpos1285= ctx->thunkpos;  if (!yy_Bullet(ctx)) goto l1286;  goto l1285;
  l1286:;	  ctx->pos= yypos1285; ctx->thunkpos= yythunkpos1285;  if (!yy_Enumerator(ctx)) goto l1282;
  }
  l1285:;	  goto l1280;
  l1282:;	  ctx->pos= yypos1282; ctx->thunkpos= yythunkpos1282;
  }
  {  int yypos1287= ctx->pos, yythunkpos1287= ctx->thunkpos;  if (!yy_HorizontalRule(ctx)) goto l1287;  goto l1280;
  l1287:;	  ctx->pos= yypos1287; ctx->thunkpos= yythunkpos1287;
  }  if (!yy_OptionallyIndentedLine(ctx)) goto l1280;
  yyprintf((stderr, "  ok   %s @ %s\n", "ListBlockLine", ctx->buf+ctx->pos));
  return 1;
  l1280:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ListBlockLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ListContinuationBlock(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "ListContinuationBlock"));  if (!yy_StartList(ctx)) goto l1288;  yyDo(ctx, yySet, -1, 0);  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l1288;
  l1289:;	
  {  int yypos1290= ctx->pos, yythunkpos1290= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1290;  goto l1289;
  l1290:;	  ctx->pos= yypos1290; ctx->thunkpos= yythunkpos1290;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l1288;  yyDo(ctx, yy_1_ListContinuationBlock, ctx->begin, ctx->end);  if (!yy_Indent(ctx)) goto l1288;  if (!yy_ListBlock(ctx)) goto l1288;  yyDo(ctx, yy_2_ListContinuationBlock, ctx->begin, ctx->end);
  l1291:;	
  {  int yypos1292= ctx->pos, yythunkpos1292= ctx->thunkpos;  if (!yy_Indent(ctx)) goto l1292;  if (!yy_ListBlock(ctx)) goto l1292;  yyDo(ctx, yy_2_ListContinuationBlock, ctx->begin, ctx->end);  goto l1291;
  l1292:;	  ctx->pos= yypos1292; ctx->thunkpos= yythunkpos1292;
  }  yyDo(ctx, yy_3_ListContinuationBlock, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ListContinuationBlock", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1288:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ListContinuationBlock", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ListBlock(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "ListBlock"));  if (!yy_StartList(ctx)) goto l1293;  yyDo(ctx, yySet, -1, 0);
  {  int yypos1294= ctx->pos, yythunkpos1294= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1294;  goto l1293;
  l1294:;	  ctx->pos= yypos1294; ctx->thunkpos= yythunkpos1294;
  }  if (!yy_Line(ctx)) goto l1293;  yyDo(ctx, yy_1_ListBlock, ctx->begin, ctx->end);
  l1295:;	
  {  int yypos1296= ctx->pos, yythunkpos1296= ctx->thunkpos;  if (!yy_ListBlockLine(ctx)) goto l1296;  yyDo(ctx, yy_2_ListBlock, ctx->begin, ctx->end);  goto l1295;
  l1296:;	  ctx->pos= yypos1296; ctx->thunkpos= yythunkpos1296;
  }  yyDo(ctx, yy_3_ListBlock, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ListBlock", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1293:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ListBlock", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ListItem(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "ListItem"));
  {  int yypos1298= ctx->pos, yythunkpos1298= ctx->thunkpos;  if (!yy_Bullet(ctx)) goto l1299;  goto l1298;
  l1299:;	  ctx->pos= yypos1298; ctx->thunkpos= yythunkpos1298;  if (!yy_Enumerator(ctx)) goto l1297;
  }
  l1298:;	  if (!yy_StartList(ctx)) goto l1297;  yyDo(ctx, yySet, -1, 0);  if (!yy_ListBlock(ctx)) goto l1297;  yyDo(ctx, yy_1_ListItem, ctx->begin, ctx->end);
  l1300:;	
  {  int yypos1301= ctx->pos, yythunkpos1301= ctx->thunkpos;  if (!yy_ListContinuationBlock(ctx)) goto l1301;  yyDo(ctx, yy_2_ListItem, ctx->begin, ctx->end);  goto l1300;
  l1301:;	  ctx->pos= yypos1301; ctx->thunkpos= yythunkpos1301;
  }  yyDo(ctx, yy_3_ListItem, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ListItem", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1297:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ListItem", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Enumerator(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Enumerator"));  if (!yy_NonindentSpace(ctx)) goto l1302;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l1302;
  l1303:;	
  {  int yypos1304= ctx->pos, yythunkpos1304= ctx->thunkpos;  if (!yymatchClass(ctx, (unsigned char *)"\000\000\000\000\000\000\377\003\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000")) goto l1304;  goto l1303;
  l1304:;	  ctx->pos= yypos1304; ctx->thunkpos= yythunkpos1304;
  }  if (!yymatchChar(ctx, '.')) goto l1302;  if (!yy_Spacechar(ctx)) goto l1302;
  l1305:;	
  {  int yypos1306= ctx->pos, yythunkpos1306= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l1306;  goto l1305;
  l1306:;	  ctx->pos= yypos1306; ctx->thunkpos= yythunkpos1306;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Enumerator", ctx->buf+ctx->pos));
  return 1;
  l1302:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Enumerator", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ListItemTight(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "ListItemTight"));
  {  int yypos1308= ctx->pos, yythunkpos1308= ctx->thunkpos;  if (!yy_Bullet(ctx)) goto l1309;  goto l1308;
  l1309:;	  ctx->pos= yypos1308; ctx->thunkpos= yythunkpos1308;  if (!yy_Enumerator(ctx)) goto l1307;
  }
  l1308:;	  if (!yy_StartList(ctx)) goto l1307;  yyDo(ctx, yySet, -1, 0);  if (!yy_ListBlock(ctx)) goto l1307;  yyDo(ctx, yy_1_ListItemTight, ctx->begin, ctx->end);
  l1310:;	
  {  int yypos1311= ctx->pos, yythunkpos1311= ctx->thunkpos;
  {  int yypos1312= ctx->pos, yythunkpos1312= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1312;  goto l1311;
  l1312:;	  ctx->pos= yypos1312; ctx->thunkpos= yythunkpos1312;
  }  if (!yy_ListContinuationBlock(ctx)) goto l1311;  yyDo(ctx, yy_2_ListItemTight, ctx->begin, ctx->end);  goto l1310;
  l1311:;	  ctx->pos= yypos1311; ctx->thunkpos= yythunkpos1311;
  }
  {  int yypos1313= ctx->pos, yythunkpos1313= ctx->thunkpos;  if (!yy_ListContinuationBlock(ctx)) goto l1313;  goto l1307;
  l1313:;	  ctx->pos= yypos1313; ctx->thunkpos= yythunkpos1313;
  }  yyDo(ctx, yy_3_ListItemTight, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ListItemTight", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1307:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ListItemTight", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ListLoose(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "ListLoose"));  if (!yy_StartList(ctx)) goto l1314;  yyDo(ctx, yySet, -2, 0);  if (!yy_ListItem(ctx)) goto l1314;  yyDo(ctx, yySet, -1, 0);
  l1317:;	
  {  int yypos1318= ctx->pos, yythunkpos1318= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1318;  goto l1317;
  l1318:;	  ctx->pos= yypos1318; ctx->thunkpos= yythunkpos1318;
  }  yyDo(ctx, yy_1_ListLoose, ctx->begin, ctx->end);
  l1315:;	
  {  int yypos1316= ctx->pos, yythunkpos1316= ctx->thunkpos;  if (!yy_ListItem(ctx)) goto l1316;  yyDo(ctx, yySet, -1, 0);
  l1319:;	
  {  int yypos1320= ctx->pos, yythunkpos1320= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1320;  goto l1319;
  l1320:;	  ctx->pos= yypos1320; ctx->thunkpos= yythunkpos1320;
  }  yyDo(ctx, yy_1_ListLoose, ctx->begin, ctx->end);  goto l1315;
  l1316:;	  ctx->pos= yypos1316; ctx->thunkpos= yythunkpos1316;
  }  yyDo(ctx, yy_2_ListLoose, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ListLoose", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l1314:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ListLoose", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_ListTight(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "ListTight"));  if (!yy_StartList(ctx)) goto l1321;  yyDo(ctx, yySet, -1, 0);  if (!yy_ListItemTight(ctx)) goto l1321;  yyDo(ctx, yy_1_ListTight, ctx->begin, ctx->end);
  l1322:;	
  {  int yypos1323= ctx->pos, yythunkpos1323= ctx->thunkpos;  if (!yy_ListItemTight(ctx)) goto l1323;  yyDo(ctx, yy_1_ListTight, ctx->begin, ctx->end);  goto l1322;
  l1323:;	  ctx->pos= yypos1323; ctx->thunkpos= yythunkpos1323;
  }
  l1324:;	
  {  int yypos1325= ctx->pos, yythunkpos1325= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1325;  goto l1324;
  l1325:;	  ctx->pos= yypos1325; ctx->thunkpos= yythunkpos1325;
  }
  {  int yypos1326= ctx->pos, yythunkpos1326= ctx->thunkpos;
  {  int yypos1327= ctx->pos, yythunkpos1327= ctx->thunkpos;  if (!yy_Bullet(ctx)) goto l1328;  goto l1327;
  l1328:;	  ctx->pos= yypos1327; ctx->thunkpos= yythunkpos1327;  if (!yy_Enumerator(ctx)) goto l1326;
  }
  l1327:;	  goto l1321;
  l1326:;	  ctx->pos= yypos1326; ctx->thunkpos= yythunkpos1326;
  }  yyDo(ctx, yy_2_ListTight, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "ListTight", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1321:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "ListTight", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Spacechar(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Spacechar"));
  {  int yypos1330= ctx->pos, yythunkpos1330= ctx->thunkpos;  if (!yymatchChar(ctx, ' ')) goto l1331;  goto l1330;
  l1331:;	  ctx->pos= yypos1330; ctx->thunkpos= yythunkpos1330;  if (!yymatchChar(ctx, '\t')) goto l1329;
  }
  l1330:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Spacechar", ctx->buf+ctx->pos));
  return 1;
  l1329:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Spacechar", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Bullet(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Bullet"));
  {  int yypos1333= ctx->pos, yythunkpos1333= ctx->thunkpos;  if (!yy_HorizontalRule(ctx)) goto l1333;  goto l1332;
  l1333:;	  ctx->pos= yypos1333; ctx->thunkpos= yythunkpos1333;
  }  if (!yy_NonindentSpace(ctx)) goto l1332;
  {  int yypos1334= ctx->pos, yythunkpos1334= ctx->thunkpos;  if (!yymatchChar(ctx, '+')) goto l1335;  goto l1334;
  l1335:;	  ctx->pos= yypos1334; ctx->thunkpos= yythunkpos1334;  if (!yymatchChar(ctx, '*')) goto l1336;  goto l1334;
  l1336:;	  ctx->pos= yypos1334; ctx->thunkpos= yythunkpos1334;  if (!yymatchChar(ctx, '-')) goto l1332;
  }
  l1334:;	  if (!yy_Spacechar(ctx)) goto l1332;
  l1337:;	
  {  int yypos1338= ctx->pos, yythunkpos1338= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l1338;  goto l1337;
  l1338:;	  ctx->pos= yypos1338; ctx->thunkpos= yythunkpos1338;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Bullet", ctx->buf+ctx->pos));
  return 1;
  l1332:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Bullet", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_VerbatimChunk(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "VerbatimChunk"));  if (!yy_StartList(ctx)) goto l1339;  yyDo(ctx, yySet, -1, 0);
  l1340:;	
  {  int yypos1341= ctx->pos, yythunkpos1341= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1341;  yyDo(ctx, yy_1_VerbatimChunk, ctx->begin, ctx->end);  goto l1340;
  l1341:;	  ctx->pos= yypos1341; ctx->thunkpos= yythunkpos1341;
  }  if (!yy_NonblankIndentedLine(ctx)) goto l1339;  yyDo(ctx, yy_2_VerbatimChunk, ctx->begin, ctx->end);
  l1342:;	
  {  int yypos1343= ctx->pos, yythunkpos1343= ctx->thunkpos;  if (!yy_NonblankIndentedLine(ctx)) goto l1343;  yyDo(ctx, yy_2_VerbatimChunk, ctx->begin, ctx->end);  goto l1342;
  l1343:;	  ctx->pos= yypos1343; ctx->thunkpos= yythunkpos1343;
  }  yyDo(ctx, yy_3_VerbatimChunk, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "VerbatimChunk", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1339:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "VerbatimChunk", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_IndentedLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "IndentedLine"));  if (!yy_Indent(ctx)) goto l1344;  if (!yy_Line(ctx)) goto l1344;
  yyprintf((stderr, "  ok   %s @ %s\n", "IndentedLine", ctx->buf+ctx->pos));
  return 1;
  l1344:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "IndentedLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_NonblankIndentedLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "NonblankIndentedLine"));
  {  int yypos1346= ctx->pos, yythunkpos1346= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1346;  goto l1345;
  l1346:;	  ctx->pos= yypos1346; ctx->thunkpos= yythunkpos1346;
  }  if (!yy_IndentedLine(ctx)) goto l1345;
  yyprintf((stderr, "  ok   %s @ %s\n", "NonblankIndentedLine", ctx->buf+ctx->pos));
  return 1;
  l1345:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "NonblankIndentedLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Line(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Line"));  if (!yy_RawLine(ctx)) goto l1347;  yyDo(ctx, yy_1_Line, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Line", ctx->buf+ctx->pos));
  return 1;
  l1347:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Line", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_BlockQuoteRaw(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "BlockQuoteRaw"));  if (!yy_StartList(ctx)) goto l1348;  yyDo(ctx, yySet, -1, 0);  if (!yymatchChar(ctx, '>')) goto l1348;
  {  int yypos1351= ctx->pos, yythunkpos1351= ctx->thunkpos;  if (!yymatchChar(ctx, ' ')) goto l1351;  goto l1352;
  l1351:;	  ctx->pos= yypos1351; ctx->thunkpos= yythunkpos1351;
  }
  l1352:;	  if (!yy_Line(ctx)) goto l1348;  yyDo(ctx, yy_1_BlockQuoteRaw, ctx->begin, ctx->end);
  l1353:;	
  {  int yypos1354= ctx->pos, yythunkpos1354= ctx->thunkpos;
  {  int yypos1355= ctx->pos, yythunkpos1355= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l1355;  goto l1354;
  l1355:;	  ctx->pos= yypos1355; ctx->thunkpos= yythunkpos1355;
  }
  {  int yypos1356= ctx->pos, yythunkpos1356= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1356;  goto l1354;
  l1356:;	  ctx->pos= yypos1356; ctx->thunkpos= yythunkpos1356;
  }  if (!yy_Line(ctx)) goto l1354;  yyDo(ctx, yy_2_BlockQuoteRaw, ctx->begin, ctx->end);  goto l1353;
  l1354:;	  ctx->pos= yypos1354; ctx->thunkpos= yythunkpos1354;
  }
  l1357:;	
  {  int yypos1358= ctx->pos, yythunkpos1358= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1358;  yyDo(ctx, yy_3_BlockQuoteRaw, ctx->begin, ctx->end);  goto l1357;
  l1358:;	  ctx->pos= yypos1358; ctx->thunkpos= yythunkpos1358;
  }
  l1349:;	
  {  int yypos1350= ctx->pos, yythunkpos1350= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l1350;
  {  int yypos1359= ctx->pos, yythunkpos1359= ctx->thunkpos;  if (!yymatchChar(ctx, ' ')) goto l1359;  goto l1360;
  l1359:;	  ctx->pos= yypos1359; ctx->thunkpos= yythunkpos1359;
  }
  l1360:;	  if (!yy_Line(ctx)) goto l1350;  yyDo(ctx, yy_1_BlockQuoteRaw, ctx->begin, ctx->end);
  l1361:;	
  {  int yypos1362= ctx->pos, yythunkpos1362= ctx->thunkpos;
  {  int yypos1363= ctx->pos, yythunkpos1363= ctx->thunkpos;  if (!yymatchChar(ctx, '>')) goto l1363;  goto l1362;
  l1363:;	  ctx->pos= yypos1363; ctx->thunkpos= yythunkpos1363;
  }
  {  int yypos1364= ctx->pos, yythunkpos1364= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1364;  goto l1362;
  l1364:;	  ctx->pos= yypos1364; ctx->thunkpos= yythunkpos1364;
  }  if (!yy_Line(ctx)) goto l1362;  yyDo(ctx, yy_2_BlockQuoteRaw, ctx->begin, ctx->end);  goto l1361;
  l1362:;	  ctx->pos= yypos1362; ctx->thunkpos= yythunkpos1362;
  }
  l1365:;	
  {  int yypos1366= ctx->pos, yythunkpos1366= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1366;  yyDo(ctx, yy_3_BlockQuoteRaw, ctx->begin, ctx->end);  goto l1365;
  l1366:;	  ctx->pos= yypos1366; ctx->thunkpos= yythunkpos1366;
  }  goto l1349;
  l1350:;	  ctx->pos= yypos1350; ctx->thunkpos= yythunkpos1350;
  }  yyDo(ctx, yy_4_BlockQuoteRaw, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "BlockQuoteRaw", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1348:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "BlockQuoteRaw", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Endline(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Endline"));
  {  int yypos1368= ctx->pos, yythunkpos1368= ctx->thunkpos;  if (!yy_LineBreak(ctx)) goto l1369;  goto l1368;
  l1369:;	  ctx->pos= yypos1368; ctx->thunkpos= yythunkpos1368;  if (!yy_TerminalEndline(ctx)) goto l1370;  goto l1368;
  l1370:;	  ctx->pos= yypos1368; ctx->thunkpos= yythunkpos1368;  if (!yy_NormalEndline(ctx)) goto l1367;
  }
  l1368:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Endline", ctx->buf+ctx->pos));
  return 1;
  l1367:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Endline", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_RawLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "RawLine"));
  {  int yypos1372= ctx->pos, yythunkpos1372= ctx->thunkpos;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l1373;
  l1374:;	
  {  int yypos1375= ctx->pos, yythunkpos1375= ctx->thunkpos;
  {  int yypos1376= ctx->pos, yythunkpos1376= ctx->thunkpos;  if (!yymatchChar(ctx, '\r')) goto l1376;  goto l1375;
  l1376:;	  ctx->pos= yypos1376; ctx->thunkpos= yythunkpos1376;
  }
  {  int yypos1377= ctx->pos, yythunkpos1377= ctx->thunkpos;  if (!yymatchChar(ctx, '\n')) goto l1377;  goto l1375;
  l1377:;	  ctx->pos= yypos1377; ctx->thunkpos= yythunkpos1377;
  }  if (!yymatchDot(ctx)) goto l1375;  goto l1374;
  l1375:;	  ctx->pos= yypos1375; ctx->thunkpos= yythunkpos1375;
  }  if (!yy_Newline(ctx)) goto l1373;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l1373;  goto l1372;
  l1373:;	  ctx->pos= yypos1372; ctx->thunkpos= yythunkpos1372;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l1371;  if (!yymatchDot(ctx)) goto l1371;
  l1378:;	
  {  int yypos1379= ctx->pos, yythunkpos1379= ctx->thunkpos;  if (!yymatchDot(ctx)) goto l1379;  goto l1378;
  l1379:;	  ctx->pos= yypos1379; ctx->thunkpos= yythunkpos1379;
  }  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l1371;  if (!yy_Eof(ctx)) goto l1371;
  }
  l1372:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "RawLine", ctx->buf+ctx->pos));
  return 1;
  l1371:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "RawLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SetextBottom2(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "SetextBottom2"));  if (!yymatchChar(ctx, '-')) goto l1380;
  l1381:;	
  {  int yypos1382= ctx->pos, yythunkpos1382= ctx->thunkpos;  if (!yymatchChar(ctx, '-')) goto l1382;  goto l1381;
  l1382:;	  ctx->pos= yypos1382; ctx->thunkpos= yythunkpos1382;
  }  if (!yy_Newline(ctx)) goto l1380;
  yyprintf((stderr, "  ok   %s @ %s\n", "SetextBottom2", ctx->buf+ctx->pos));
  return 1;
  l1380:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SetextBottom2", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SetextBottom1(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "SetextBottom1"));  if (!yymatchChar(ctx, '=')) goto l1383;
  l1384:;	
  {  int yypos1385= ctx->pos, yythunkpos1385= ctx->thunkpos;  if (!yymatchChar(ctx, '=')) goto l1385;  goto l1384;
  l1385:;	  ctx->pos= yypos1385; ctx->thunkpos= yythunkpos1385;
  }  if (!yy_Newline(ctx)) goto l1383;
  yyprintf((stderr, "  ok   %s @ %s\n", "SetextBottom1", ctx->buf+ctx->pos));
  return 1;
  l1383:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SetextBottom1", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SetextHeading2(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "SetextHeading2"));
  {  int yypos1387= ctx->pos, yythunkpos1387= ctx->thunkpos;  if (!yy_RawLine(ctx)) goto l1386;  if (!yy_SetextBottom2(ctx)) goto l1386;  ctx->pos= yypos1387; ctx->thunkpos= yythunkpos1387;
  }  if (!yy_StartList(ctx)) goto l1386;  yyDo(ctx, yySet, -1, 0);
  {  int yypos1390= ctx->pos, yythunkpos1390= ctx->thunkpos;  if (!yy_Endline(ctx)) goto l1390;  goto l1386;
  l1390:;	  ctx->pos= yypos1390; ctx->thunkpos= yythunkpos1390;
  }  if (!yy_Inline(ctx)) goto l1386;  yyDo(ctx, yy_1_SetextHeading2, ctx->begin, ctx->end);
  l1388:;	
  {  int yypos1389= ctx->pos, yythunkpos1389= ctx->thunkpos;
  {  int yypos1391= ctx->pos, yythunkpos1391= ctx->thunkpos;  if (!yy_Endline(ctx)) goto l1391;  goto l1389;
  l1391:;	  ctx->pos= yypos1391; ctx->thunkpos= yythunkpos1391;
  }  if (!yy_Inline(ctx)) goto l1389;  yyDo(ctx, yy_1_SetextHeading2, ctx->begin, ctx->end);  goto l1388;
  l1389:;	  ctx->pos= yypos1389; ctx->thunkpos= yythunkpos1389;
  }
  {  int yypos1392= ctx->pos, yythunkpos1392= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l1392;  goto l1393;
  l1392:;	  ctx->pos= yypos1392; ctx->thunkpos= yythunkpos1392;
  }
  l1393:;	  if (!yy_Newline(ctx)) goto l1386;  if (!yy_SetextBottom2(ctx)) goto l1386;  yyDo(ctx, yy_2_SetextHeading2, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "SetextHeading2", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1386:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SetextHeading2", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SetextHeading1(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "SetextHeading1"));
  {  int yypos1395= ctx->pos, yythunkpos1395= ctx->thunkpos;  if (!yy_RawLine(ctx)) goto l1394;  if (!yy_SetextBottom1(ctx)) goto l1394;  ctx->pos= yypos1395; ctx->thunkpos= yythunkpos1395;
  }  if (!yy_StartList(ctx)) goto l1394;  yyDo(ctx, yySet, -1, 0);
  {  int yypos1398= ctx->pos, yythunkpos1398= ctx->thunkpos;  if (!yy_Endline(ctx)) goto l1398;  goto l1394;
  l1398:;	  ctx->pos= yypos1398; ctx->thunkpos= yythunkpos1398;
  }  if (!yy_Inline(ctx)) goto l1394;  yyDo(ctx, yy_1_SetextHeading1, ctx->begin, ctx->end);
  l1396:;	
  {  int yypos1397= ctx->pos, yythunkpos1397= ctx->thunkpos;
  {  int yypos1399= ctx->pos, yythunkpos1399= ctx->thunkpos;  if (!yy_Endline(ctx)) goto l1399;  goto l1397;
  l1399:;	  ctx->pos= yypos1399; ctx->thunkpos= yythunkpos1399;
  }  if (!yy_Inline(ctx)) goto l1397;  yyDo(ctx, yy_1_SetextHeading1, ctx->begin, ctx->end);  goto l1396;
  l1397:;	  ctx->pos= yypos1397; ctx->thunkpos= yythunkpos1397;
  }
  {  int yypos1400= ctx->pos, yythunkpos1400= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l1400;  goto l1401;
  l1400:;	  ctx->pos= yypos1400; ctx->thunkpos= yythunkpos1400;
  }
  l1401:;	  if (!yy_Newline(ctx)) goto l1394;  if (!yy_SetextBottom1(ctx)) goto l1394;  yyDo(ctx, yy_2_SetextHeading1, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "SetextHeading1", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1394:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SetextHeading1", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_SetextHeading(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "SetextHeading"));
  {  int yypos1403= ctx->pos, yythunkpos1403= ctx->thunkpos;  if (!yy_SetextHeading1(ctx)) goto l1404;  goto l1403;
  l1404:;	  ctx->pos= yypos1403; ctx->thunkpos= yythunkpos1403;  if (!yy_SetextHeading2(ctx)) goto l1402;
  }
  l1403:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "SetextHeading", ctx->buf+ctx->pos));
  return 1;
  l1402:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "SetextHeading", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_AtxHeading(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "AtxHeading"));  if (!yy_AtxStart(ctx)) goto l1405;  yyDo(ctx, yySet, -2, 0);
  {  int yypos1406= ctx->pos, yythunkpos1406= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l1406;  goto l1407;
  l1406:;	  ctx->pos= yypos1406; ctx->thunkpos= yythunkpos1406;
  }
  l1407:;	  if (!yy_StartList(ctx)) goto l1405;  yyDo(ctx, yySet, -1, 0);  if (!yy_AtxInline(ctx)) goto l1405;  yyDo(ctx, yy_1_AtxHeading, ctx->begin, ctx->end);
  l1408:;	
  {  int yypos1409= ctx->pos, yythunkpos1409= ctx->thunkpos;  if (!yy_AtxInline(ctx)) goto l1409;  yyDo(ctx, yy_1_AtxHeading, ctx->begin, ctx->end);  goto l1408;
  l1409:;	  ctx->pos= yypos1409; ctx->thunkpos= yythunkpos1409;
  }
  {  int yypos1410= ctx->pos, yythunkpos1410= ctx->thunkpos;
  {  int yypos1412= ctx->pos, yythunkpos1412= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l1412;  goto l1413;
  l1412:;	  ctx->pos= yypos1412; ctx->thunkpos= yythunkpos1412;
  }
  l1413:;	
  l1414:;	
  {  int yypos1415= ctx->pos, yythunkpos1415= ctx->thunkpos;  if (!yymatchChar(ctx, '#')) goto l1415;  goto l1414;
  l1415:;	  ctx->pos= yypos1415; ctx->thunkpos= yythunkpos1415;
  }  if (!yy_Sp(ctx)) goto l1410;  goto l1411;
  l1410:;	  ctx->pos= yypos1410; ctx->thunkpos= yythunkpos1410;
  }
  l1411:;	  if (!yy_Newline(ctx)) goto l1405;  yyDo(ctx, yy_2_AtxHeading, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "AtxHeading", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l1405:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "AtxHeading", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_AtxStart(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "AtxStart"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l1416;
  {  int yypos1417= ctx->pos, yythunkpos1417= ctx->thunkpos;  if (!yymatchString(ctx, "######")) goto l1418;  goto l1417;
  l1418:;	  ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417;  if (!yymatchString(ctx, "#####")) goto l1419;  goto l1417;
  l1419:;	  ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417;  if (!yymatchString(ctx, "####")) goto l1420;  goto l1417;
  l1420:;	  ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417;  if (!yymatchString(ctx, "###")) goto l1421;  goto l1417;
  l1421:;	  ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417;  if (!yymatchString(ctx, "##")) goto l1422;  goto l1417;
  l1422:;	  ctx->pos= yypos1417; ctx->thunkpos= yythunkpos1417;  if (!yymatchChar(ctx, '#')) goto l1416;
  }
  l1417:;	  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l1416;  yyDo(ctx, yy_1_AtxStart, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "AtxStart", ctx->buf+ctx->pos));
  return 1;
  l1416:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "AtxStart", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Inline(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Inline"));
  {  int yypos1424= ctx->pos, yythunkpos1424= ctx->thunkpos;  if (!yy_Str(ctx)) goto l1425;  goto l1424;
  l1425:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Endline(ctx)) goto l1426;  goto l1424;
  l1426:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_UlOrStarLine(ctx)) goto l1427;  goto l1424;
  l1427:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Space(ctx)) goto l1428;  goto l1424;
  l1428:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Strong(ctx)) goto l1429;  goto l1424;
  l1429:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Emph(ctx)) goto l1430;  goto l1424;
  l1430:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Image(ctx)) goto l1431;  goto l1424;
  l1431:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Link(ctx)) goto l1432;  goto l1424;
  l1432:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_NoteReference(ctx)) goto l1433;  goto l1424;
  l1433:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_InlineNote(ctx)) goto l1434;  goto l1424;
  l1434:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Code(ctx)) goto l1435;  goto l1424;
  l1435:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_RawHtml(ctx)) goto l1436;  goto l1424;
  l1436:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Entity(ctx)) goto l1437;  goto l1424;
  l1437:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_EscapedChar(ctx)) goto l1438;  goto l1424;
  l1438:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Smart(ctx)) goto l1439;  goto l1424;
  l1439:;	  ctx->pos= yypos1424; ctx->thunkpos= yythunkpos1424;  if (!yy_Symbol(ctx)) goto l1423;
  }
  l1424:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Inline", ctx->buf+ctx->pos));
  return 1;
  l1423:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Inline", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Sp(yycontext *ctx)
{
  yyprintf((stderr, "%s\n", "Sp"));
  l1441:;	
  {  int yypos1442= ctx->pos, yythunkpos1442= ctx->thunkpos;  if (!yy_Spacechar(ctx)) goto l1442;  goto l1441;
  l1442:;	  ctx->pos= yypos1442; ctx->thunkpos= yythunkpos1442;
  }
  yyprintf((stderr, "  ok   %s @ %s\n", "Sp", ctx->buf+ctx->pos));
  return 1;
}
YY_RULE(int) yy_Newline(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Newline"));
  {  int yypos1444= ctx->pos, yythunkpos1444= ctx->thunkpos;  if (!yymatchChar(ctx, '\n')) goto l1445;  goto l1444;
  l1445:;	  ctx->pos= yypos1444; ctx->thunkpos= yythunkpos1444;  if (!yymatchChar(ctx, '\r')) goto l1443;
  {  int yypos1446= ctx->pos, yythunkpos1446= ctx->thunkpos;  if (!yymatchChar(ctx, '\n')) goto l1446;  goto l1447;
  l1446:;	  ctx->pos= yypos1446; ctx->thunkpos= yythunkpos1446;
  }
  l1447:;	
  }
  l1444:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Newline", ctx->buf+ctx->pos));
  return 1;
  l1443:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Newline", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_AtxInline(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "AtxInline"));
  {  int yypos1449= ctx->pos, yythunkpos1449= ctx->thunkpos;  if (!yy_Newline(ctx)) goto l1449;  goto l1448;
  l1449:;	  ctx->pos= yypos1449; ctx->thunkpos= yythunkpos1449;
  }
  {  int yypos1450= ctx->pos, yythunkpos1450= ctx->thunkpos;
  {  int yypos1451= ctx->pos, yythunkpos1451= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l1451;  goto l1452;
  l1451:;	  ctx->pos= yypos1451; ctx->thunkpos= yythunkpos1451;
  }
  l1452:;	
  l1453:;	
  {  int yypos1454= ctx->pos, yythunkpos1454= ctx->thunkpos;  if (!yymatchChar(ctx, '#')) goto l1454;  goto l1453;
  l1454:;	  ctx->pos= yypos1454; ctx->thunkpos= yythunkpos1454;
  }  if (!yy_Sp(ctx)) goto l1450;  if (!yy_Newline(ctx)) goto l1450;  goto l1448;
  l1450:;	  ctx->pos= yypos1450; ctx->thunkpos= yythunkpos1450;
  }  if (!yy_Inline(ctx)) goto l1448;
  yyprintf((stderr, "  ok   %s @ %s\n", "AtxInline", ctx->buf+ctx->pos));
  return 1;
  l1448:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "AtxInline", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Inlines(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "Inlines"));  if (!yy_StartList(ctx)) goto l1455;  yyDo(ctx, yySet, -2, 0);
  {  int yypos1458= ctx->pos, yythunkpos1458= ctx->thunkpos;
  {  int yypos1460= ctx->pos, yythunkpos1460= ctx->thunkpos;  if (!yy_Endline(ctx)) goto l1460;  goto l1459;
  l1460:;	  ctx->pos= yypos1460; ctx->thunkpos= yythunkpos1460;
  }  if (!yy_Inline(ctx)) goto l1459;  yyDo(ctx, yy_1_Inlines, ctx->begin, ctx->end);  goto l1458;
  l1459:;	  ctx->pos= yypos1458; ctx->thunkpos= yythunkpos1458;  if (!yy_Endline(ctx)) goto l1455;  yyDo(ctx, yySet, -1, 0);
  {  int yypos1461= ctx->pos, yythunkpos1461= ctx->thunkpos;  if (!yy_Inline(ctx)) goto l1455;  ctx->pos= yypos1461; ctx->thunkpos= yythunkpos1461;
  }  yyDo(ctx, yy_2_Inlines, ctx->begin, ctx->end);
  }
  l1458:;	
  l1456:;	
  {  int yypos1457= ctx->pos, yythunkpos1457= ctx->thunkpos;
  {  int yypos1462= ctx->pos, yythunkpos1462= ctx->thunkpos;
  {  int yypos1464= ctx->pos, yythunkpos1464= ctx->thunkpos;  if (!yy_Endline(ctx)) goto l1464;  goto l1463;
  l1464:;	  ctx->pos= yypos1464; ctx->thunkpos= yythunkpos1464;
  }  if (!yy_Inline(ctx)) goto l1463;  yyDo(ctx, yy_1_Inlines, ctx->begin, ctx->end);  goto l1462;
  l1463:;	  ctx->pos= yypos1462; ctx->thunkpos= yythunkpos1462;  if (!yy_Endline(ctx)) goto l1457;  yyDo(ctx, yySet, -1, 0);
  {  int yypos1465= ctx->pos, yythunkpos1465= ctx->thunkpos;  if (!yy_Inline(ctx)) goto l1457;  ctx->pos= yypos1465; ctx->thunkpos= yythunkpos1465;
  }  yyDo(ctx, yy_2_Inlines, ctx->begin, ctx->end);
  }
  l1462:;	  goto l1456;
  l1457:;	  ctx->pos= yypos1457; ctx->thunkpos= yythunkpos1457;
  }
  {  int yypos1466= ctx->pos, yythunkpos1466= ctx->thunkpos;  if (!yy_Endline(ctx)) goto l1466;  goto l1467;
  l1466:;	  ctx->pos= yypos1466; ctx->thunkpos= yythunkpos1466;
  }
  l1467:;	  yyDo(ctx, yy_3_Inlines, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Inlines", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l1455:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Inlines", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_NonindentSpace(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "NonindentSpace"));
  {  int yypos1469= ctx->pos, yythunkpos1469= ctx->thunkpos;  if (!yymatchString(ctx, "   ")) goto l1470;  goto l1469;
  l1470:;	  ctx->pos= yypos1469; ctx->thunkpos= yythunkpos1469;  if (!yymatchString(ctx, "  ")) goto l1471;  goto l1469;
  l1471:;	  ctx->pos= yypos1469; ctx->thunkpos= yythunkpos1469;  if (!yymatchChar(ctx, ' ')) goto l1472;  goto l1469;
  l1472:;	  ctx->pos= yypos1469; ctx->thunkpos= yythunkpos1469;  if (!yymatchString(ctx, "")) goto l1468;
  }
  l1469:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "NonindentSpace", ctx->buf+ctx->pos));
  return 1;
  l1468:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "NonindentSpace", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Plain(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "Plain"));  if (!yy_Inlines(ctx)) goto l1473;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_Plain, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Plain", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1473:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Plain", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Para(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "Para"));  if (!yy_NonindentSpace(ctx)) goto l1474;  if (!yy_Inlines(ctx)) goto l1474;  yyDo(ctx, yySet, -1, 0);  if (!yy_BlankLine(ctx)) goto l1474;
  l1475:;	
  {  int yypos1476= ctx->pos, yythunkpos1476= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1476;  goto l1475;
  l1476:;	  ctx->pos= yypos1476; ctx->thunkpos= yythunkpos1476;
  }  yyDo(ctx, yy_1_Para, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Para", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1474:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Para", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_StyleBlock(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "StyleBlock"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l1477;  if (!yy_InStyleTags(ctx)) goto l1477;  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l1477;
  l1478:;	
  {  int yypos1479= ctx->pos, yythunkpos1479= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1479;  goto l1478;
  l1479:;	  ctx->pos= yypos1479; ctx->thunkpos= yythunkpos1479;
  }  yyDo(ctx, yy_1_StyleBlock, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "StyleBlock", ctx->buf+ctx->pos));
  return 1;
  l1477:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "StyleBlock", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HtmlBlock(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HtmlBlock"));  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_BEGIN)) goto l1480;
  {  int yypos1481= ctx->pos, yythunkpos1481= ctx->thunkpos;  if (!yy_HtmlBlockInTags(ctx)) goto l1482;  goto l1481;
  l1482:;	  ctx->pos= yypos1481; ctx->thunkpos= yythunkpos1481;  if (!yy_HtmlComment(ctx)) goto l1483;  goto l1481;
  l1483:;	  ctx->pos= yypos1481; ctx->thunkpos= yythunkpos1481;  if (!yy_HtmlBlockSelfClosing(ctx)) goto l1480;
  }
  l1481:;	  yyText(ctx, ctx->begin, ctx->end);  if (!(YY_END)) goto l1480;  if (!yy_BlankLine(ctx)) goto l1480;
  l1484:;	
  {  int yypos1485= ctx->pos, yythunkpos1485= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1485;  goto l1484;
  l1485:;	  ctx->pos= yypos1485; ctx->thunkpos= yythunkpos1485;
  }  yyDo(ctx, yy_1_HtmlBlock, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "HtmlBlock", ctx->buf+ctx->pos));
  return 1;
  l1480:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HtmlBlock", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_BulletList(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "BulletList"));
  {  int yypos1487= ctx->pos, yythunkpos1487= ctx->thunkpos;  if (!yy_Bullet(ctx)) goto l1486;  ctx->pos= yypos1487; ctx->thunkpos= yythunkpos1487;
  }
  {  int yypos1488= ctx->pos, yythunkpos1488= ctx->thunkpos;  if (!yy_ListTight(ctx)) goto l1489;  goto l1488;
  l1489:;	  ctx->pos= yypos1488; ctx->thunkpos= yythunkpos1488;  if (!yy_ListLoose(ctx)) goto l1486;
  }
  l1488:;	  yyDo(ctx, yy_1_BulletList, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "BulletList", ctx->buf+ctx->pos));
  return 1;
  l1486:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "BulletList", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_OrderedList(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "OrderedList"));
  {  int yypos1491= ctx->pos, yythunkpos1491= ctx->thunkpos;  if (!yy_Enumerator(ctx)) goto l1490;  ctx->pos= yypos1491; ctx->thunkpos= yythunkpos1491;
  }
  {  int yypos1492= ctx->pos, yythunkpos1492= ctx->thunkpos;  if (!yy_ListTight(ctx)) goto l1493;  goto l1492;
  l1493:;	  ctx->pos= yypos1492; ctx->thunkpos= yythunkpos1492;  if (!yy_ListLoose(ctx)) goto l1490;
  }
  l1492:;	  yyDo(ctx, yy_1_OrderedList, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "OrderedList", ctx->buf+ctx->pos));
  return 1;
  l1490:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "OrderedList", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Heading(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Heading"));
  {  int yypos1495= ctx->pos, yythunkpos1495= ctx->thunkpos;  if (!yy_SetextHeading(ctx)) goto l1496;  goto l1495;
  l1496:;	  ctx->pos= yypos1495; ctx->thunkpos= yythunkpos1495;  if (!yy_AtxHeading(ctx)) goto l1494;
  }
  l1495:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Heading", ctx->buf+ctx->pos));
  return 1;
  l1494:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Heading", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_HorizontalRule(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "HorizontalRule"));  if (!yy_NonindentSpace(ctx)) goto l1497;
  {  int yypos1498= ctx->pos, yythunkpos1498= ctx->thunkpos;  if (!yymatchChar(ctx, '*')) goto l1499;  if (!yy_Sp(ctx)) goto l1499;  if (!yymatchChar(ctx, '*')) goto l1499;  if (!yy_Sp(ctx)) goto l1499;  if (!yymatchChar(ctx, '*')) goto l1499;
  l1500:;	
  {  int yypos1501= ctx->pos, yythunkpos1501= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l1501;  if (!yymatchChar(ctx, '*')) goto l1501;  goto l1500;
  l1501:;	  ctx->pos= yypos1501; ctx->thunkpos= yythunkpos1501;
  }  goto l1498;
  l1499:;	  ctx->pos= yypos1498; ctx->thunkpos= yythunkpos1498;  if (!yymatchChar(ctx, '-')) goto l1502;  if (!yy_Sp(ctx)) goto l1502;  if (!yymatchChar(ctx, '-')) goto l1502;  if (!yy_Sp(ctx)) goto l1502;  if (!yymatchChar(ctx, '-')) goto l1502;
  l1503:;	
  {  int yypos1504= ctx->pos, yythunkpos1504= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l1504;  if (!yymatchChar(ctx, '-')) goto l1504;  goto l1503;
  l1504:;	  ctx->pos= yypos1504; ctx->thunkpos= yythunkpos1504;
  }  goto l1498;
  l1502:;	  ctx->pos= yypos1498; ctx->thunkpos= yythunkpos1498;  if (!yymatchChar(ctx, '_')) goto l1497;  if (!yy_Sp(ctx)) goto l1497;  if (!yymatchChar(ctx, '_')) goto l1497;  if (!yy_Sp(ctx)) goto l1497;  if (!yymatchChar(ctx, '_')) goto l1497;
  l1505:;	
  {  int yypos1506= ctx->pos, yythunkpos1506= ctx->thunkpos;  if (!yy_Sp(ctx)) goto l1506;  if (!yymatchChar(ctx, '_')) goto l1506;  goto l1505;
  l1506:;	  ctx->pos= yypos1506; ctx->thunkpos= yythunkpos1506;
  }
  }
  l1498:;	  if (!yy_Sp(ctx)) goto l1497;  if (!yy_Newline(ctx)) goto l1497;  if (!yy_BlankLine(ctx)) goto l1497;
  l1507:;	
  {  int yypos1508= ctx->pos, yythunkpos1508= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1508;  goto l1507;
  l1508:;	  ctx->pos= yypos1508; ctx->thunkpos= yythunkpos1508;
  }  yyDo(ctx, yy_1_HorizontalRule, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "HorizontalRule", ctx->buf+ctx->pos));
  return 1;
  l1497:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "HorizontalRule", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Reference(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 3, 0);
  yyprintf((stderr, "%s\n", "Reference"));  if (!yy_NonindentSpace(ctx)) goto l1509;
  {  int yypos1510= ctx->pos, yythunkpos1510= ctx->thunkpos;  if (!yymatchString(ctx, "[]")) goto l1510;  goto l1509;
  l1510:;	  ctx->pos= yypos1510; ctx->thunkpos= yythunkpos1510;
  }  if (!yy_Label(ctx)) goto l1509;  yyDo(ctx, yySet, -3, 0);  if (!yymatchChar(ctx, ':')) goto l1509;  if (!yy_Spnl(ctx)) goto l1509;  if (!yy_RefSrc(ctx)) goto l1509;  yyDo(ctx, yySet, -2, 0);  if (!yy_RefTitle(ctx)) goto l1509;  yyDo(ctx, yySet, -1, 0);  if (!yy_BlankLine(ctx)) goto l1509;
  l1511:;	
  {  int yypos1512= ctx->pos, yythunkpos1512= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1512;  goto l1511;
  l1512:;	  ctx->pos= yypos1512; ctx->thunkpos= yythunkpos1512;
  }  yyDo(ctx, yy_1_Reference, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Reference", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 3, 0);
  return 1;
  l1509:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Reference", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Note(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 2, 0);
  yyprintf((stderr, "%s\n", "Note"));  yyText(ctx, ctx->begin, ctx->end);  if (!( extension(EXT_NOTES) )) goto l1513;  if (!yy_NonindentSpace(ctx)) goto l1513;  if (!yy_RawNoteReference(ctx)) goto l1513;  yyDo(ctx, yySet, -2, 0);  if (!yymatchChar(ctx, ':')) goto l1513;  if (!yy_Sp(ctx)) goto l1513;  if (!yy_StartList(ctx)) goto l1513;  yyDo(ctx, yySet, -1, 0);  if (!yy_RawNoteBlock(ctx)) goto l1513;  yyDo(ctx, yy_1_Note, ctx->begin, ctx->end);
  l1514:;	
  {  int yypos1515= ctx->pos, yythunkpos1515= ctx->thunkpos;
  {  int yypos1516= ctx->pos, yythunkpos1516= ctx->thunkpos;  if (!yy_Indent(ctx)) goto l1515;  ctx->pos= yypos1516; ctx->thunkpos= yythunkpos1516;
  }  if (!yy_RawNoteBlock(ctx)) goto l1515;  yyDo(ctx, yy_2_Note, ctx->begin, ctx->end);  goto l1514;
  l1515:;	  ctx->pos= yypos1515; ctx->thunkpos= yythunkpos1515;
  }  yyDo(ctx, yy_3_Note, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Note", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 2, 0);
  return 1;
  l1513:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Note", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Verbatim(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "Verbatim"));  if (!yy_StartList(ctx)) goto l1517;  yyDo(ctx, yySet, -1, 0);  if (!yy_VerbatimChunk(ctx)) goto l1517;  yyDo(ctx, yy_1_Verbatim, ctx->begin, ctx->end);
  l1518:;	
  {  int yypos1519= ctx->pos, yythunkpos1519= ctx->thunkpos;  if (!yy_VerbatimChunk(ctx)) goto l1519;  yyDo(ctx, yy_1_Verbatim, ctx->begin, ctx->end);  goto l1518;
  l1519:;	  ctx->pos= yypos1519; ctx->thunkpos= yythunkpos1519;
  }  yyDo(ctx, yy_2_Verbatim, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Verbatim", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1517:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Verbatim", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_BlockQuote(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "BlockQuote"));  if (!yy_BlockQuoteRaw(ctx)) goto l1520;  yyDo(ctx, yySet, -1, 0);  yyDo(ctx, yy_1_BlockQuote, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "BlockQuote", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1520:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "BlockQuote", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_BlankLine(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "BlankLine"));  if (!yy_Sp(ctx)) goto l1521;  if (!yy_Newline(ctx)) goto l1521;
  yyprintf((stderr, "  ok   %s @ %s\n", "BlankLine", ctx->buf+ctx->pos));
  return 1;
  l1521:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "BlankLine", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Block(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "Block"));
  l1523:;	
  {  int yypos1524= ctx->pos, yythunkpos1524= ctx->thunkpos;  if (!yy_BlankLine(ctx)) goto l1524;  goto l1523;
  l1524:;	  ctx->pos= yypos1524; ctx->thunkpos= yythunkpos1524;
  }
  {  int yypos1525= ctx->pos, yythunkpos1525= ctx->thunkpos;  if (!yy_BlockQuote(ctx)) goto l1526;  goto l1525;
  l1526:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_Verbatim(ctx)) goto l1527;  goto l1525;
  l1527:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_Note(ctx)) goto l1528;  goto l1525;
  l1528:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_Reference(ctx)) goto l1529;  goto l1525;
  l1529:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_HorizontalRule(ctx)) goto l1530;  goto l1525;
  l1530:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_Heading(ctx)) goto l1531;  goto l1525;
  l1531:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_OrderedList(ctx)) goto l1532;  goto l1525;
  l1532:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_BulletList(ctx)) goto l1533;  goto l1525;
  l1533:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_HtmlBlock(ctx)) goto l1534;  goto l1525;
  l1534:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_StyleBlock(ctx)) goto l1535;  goto l1525;
  l1535:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_Para(ctx)) goto l1536;  goto l1525;
  l1536:;	  ctx->pos= yypos1525; ctx->thunkpos= yythunkpos1525;  if (!yy_Plain(ctx)) goto l1522;
  }
  l1525:;	
  yyprintf((stderr, "  ok   %s @ %s\n", "Block", ctx->buf+ctx->pos));
  return 1;
  l1522:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Block", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_StartList(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "StartList"));
  {  int yypos1538= ctx->pos, yythunkpos1538= ctx->thunkpos;  if (!yymatchDot(ctx)) goto l1537;  ctx->pos= yypos1538; ctx->thunkpos= yythunkpos1538;
  }  yyDo(ctx, yy_1_StartList, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "StartList", ctx->buf+ctx->pos));
  return 1;
  l1537:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "StartList", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_BOM(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;
  yyprintf((stderr, "%s\n", "BOM"));  if (!yymatchString(ctx, "\357\273\277")) goto l1539;
  yyprintf((stderr, "  ok   %s @ %s\n", "BOM", ctx->buf+ctx->pos));
  return 1;
  l1539:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "BOM", ctx->buf+ctx->pos));
  return 0;
}
YY_RULE(int) yy_Doc(yycontext *ctx)
{  int yypos0= ctx->pos, yythunkpos0= ctx->thunkpos;  yyDo(ctx, yyPush, 1, 0);
  yyprintf((stderr, "%s\n", "Doc"));
  {  int yypos1541= ctx->pos, yythunkpos1541= ctx->thunkpos;  if (!yy_BOM(ctx)) goto l1541;  goto l1542;
  l1541:;	  ctx->pos= yypos1541; ctx->thunkpos= yythunkpos1541;
  }
  l1542:;	  if (!yy_StartList(ctx)) goto l1540;  yyDo(ctx, yySet, -1, 0);
  l1543:;	
  {  int yypos1544= ctx->pos, yythunkpos1544= ctx->thunkpos;  if (!yy_Block(ctx)) goto l1544;  yyDo(ctx, yy_1_Doc, ctx->begin, ctx->end);  goto l1543;
  l1544:;	  ctx->pos= yypos1544; ctx->thunkpos= yythunkpos1544;
  }  yyDo(ctx, yy_2_Doc, ctx->begin, ctx->end);
  yyprintf((stderr, "  ok   %s @ %s\n", "Doc", ctx->buf+ctx->pos));  yyDo(ctx, yyPop, 1, 0);
  return 1;
  l1540:;	  ctx->pos= yypos0; ctx->thunkpos= yythunkpos0;
  yyprintf((stderr, "  fail %s @ %s\n", "Doc", ctx->buf+ctx->pos));
  return 0;
}

#ifndef YY_PART

typedef int (*yyrule)(yycontext *ctx);

YY_PARSE(int) YYPARSEFROM(YY_CTX_PARAM_ yyrule yystart)
{
  int yyok;
  if (!yyctx->buflen)
    {
      yyctx->buflen= 1024;
      yyctx->buf= (char *)malloc(yyctx->buflen);
      yyctx->textlen= 1024;
      yyctx->text= (char *)malloc(yyctx->textlen);
      yyctx->thunkslen= 32;
      yyctx->thunks= (yythunk *)malloc(sizeof(yythunk) * yyctx->thunkslen);
      yyctx->valslen= 32;
      yyctx->vals= (YYSTYPE *)malloc(sizeof(YYSTYPE) * yyctx->valslen);
      yyctx->begin= yyctx->end= yyctx->pos= yyctx->limit= yyctx->thunkpos= 0;
    }
  yyctx->begin= yyctx->end= yyctx->pos;
  yyctx->thunkpos= 0;
  yyctx->val= yyctx->vals;
  yyok= yystart(yyctx);
  if (yyok) yyDone(yyctx);
  yyCommit(yyctx);
  return yyok;
}

YY_PARSE(int) YYPARSE(YY_CTX_PARAM)
{
  return YYPARSEFROM(YY_CTX_ARG_ yy_Doc);
}

#endif