summaryrefslogtreecommitdiff
path: root/asnstat/asnmacro.h
blob: 2d7fde2198726f1718bd2ae36277b54875cbc8cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
/***********************************************************************
*
**
*        Automatic header module from ASNTOOL
*
************************************************************************/

#ifndef _ASNTOOL_
#include <asn.h>
#endif

static char * asnfilename = "asnmacro.h11";
static AsnValxNode avnx[676] = {
    {20,"acronym" ,1,0.0,&avnx[1] } ,
    {20,"anamorph" ,2,0.0,&avnx[2] } ,
    {20,"authority" ,3,0.0,&avnx[3] } ,
    {20,"bio-material" ,4,0.0,&avnx[4] } ,
    {20,"biotype" ,5,0.0,&avnx[5] } ,
    {20,"biovar" ,6,0.0,&avnx[6] } ,
    {20,"breed" ,7,0.0,&avnx[7] } ,
    {20,"cell-line" ,8,0.0,&avnx[8] } ,
    {20,"cell-type" ,9,0.0,&avnx[9] } ,
    {20,"chemovar" ,10,0.0,&avnx[10] } ,
    {20,"chromosome" ,11,0.0,&avnx[11] } ,
    {20,"clone" ,12,0.0,&avnx[12] } ,
    {20,"clone-lib" ,13,0.0,&avnx[13] } ,
    {20,"collected-by" ,14,0.0,&avnx[14] } ,
    {20,"collection-date" ,15,0.0,&avnx[15] } ,
    {20,"common" ,16,0.0,&avnx[16] } ,
    {20,"common-name" ,17,0.0,&avnx[17] } ,
    {20,"country" ,18,0.0,&avnx[18] } ,
    {20,"cultivar" ,19,0.0,&avnx[19] } ,
    {20,"culture-collection" ,20,0.0,&avnx[20] } ,
    {20,"dev-stage" ,21,0.0,&avnx[21] } ,
    {20,"division" ,22,0.0,&avnx[22] } ,
    {20,"dosage" ,23,0.0,&avnx[23] } ,
    {20,"ecotype" ,24,0.0,&avnx[24] } ,
    {20,"endogenous-virus-name" ,25,0.0,&avnx[25] } ,
    {20,"environmental-sample" ,26,0.0,&avnx[26] } ,
    {20,"forma" ,27,0.0,&avnx[27] } ,
    {20,"forma-specialis" ,28,0.0,&avnx[28] } ,
    {20,"frequency" ,29,0.0,&avnx[29] } ,
    {20,"fwd-primer-name" ,30,0.0,&avnx[30] } ,
    {20,"fwd-primer-seq" ,31,0.0,&avnx[31] } ,
    {20,"gb-acronym" ,32,0.0,&avnx[32] } ,
    {20,"gb-anamorph" ,33,0.0,&avnx[33] } ,
    {20,"gb-synonym" ,34,0.0,&avnx[34] } ,
    {20,"genotype" ,35,0.0,&avnx[35] } ,
    {20,"germline" ,36,0.0,&avnx[36] } ,
    {20,"group" ,37,0.0,&avnx[37] } ,
    {20,"haplotype" ,38,0.0,&avnx[38] } ,
    {20,"identified-by" ,39,0.0,&avnx[39] } ,
    {20,"insertion-seq-name" ,40,0.0,&avnx[40] } ,
    {20,"isolate" ,41,0.0,&avnx[41] } ,
    {20,"isolation-source" ,42,0.0,&avnx[42] } ,
    {20,"lab-host" ,43,0.0,&avnx[43] } ,
    {20,"lat-lon" ,44,0.0,&avnx[44] } ,
    {20,"lineage" ,45,0.0,&avnx[45] } ,
    {20,"map" ,46,0.0,&avnx[46] } ,
    {20,"metagenome-source" ,47,0.0,&avnx[47] } ,
    {20,"metagenomic" ,48,0.0,&avnx[48] } ,
    {20,"old-lineage" ,49,0.0,&avnx[49] } ,
    {20,"old-name" ,50,0.0,&avnx[50] } ,
    {20,"orgmod-note" ,51,0.0,&avnx[51] } ,
    {20,"nat-host" ,52,0.0,&avnx[52] } ,
    {20,"pathovar" ,53,0.0,&avnx[53] } ,
    {20,"plasmid-name" ,54,0.0,&avnx[54] } ,
    {20,"plastid-name" ,55,0.0,&avnx[55] } ,
    {20,"pop-variant" ,56,0.0,&avnx[56] } ,
    {20,"rearranged" ,57,0.0,&avnx[57] } ,
    {20,"rev-primer-name" ,58,0.0,&avnx[58] } ,
    {20,"rev-primer-seq" ,59,0.0,&avnx[59] } ,
    {20,"segment" ,60,0.0,&avnx[60] } ,
    {20,"serogroup" ,61,0.0,&avnx[61] } ,
    {20,"serotype" ,62,0.0,&avnx[62] } ,
    {20,"serovar" ,63,0.0,&avnx[63] } ,
    {20,"sex" ,64,0.0,&avnx[64] } ,
    {20,"specimen-voucher" ,65,0.0,&avnx[65] } ,
    {20,"strain" ,66,0.0,&avnx[66] } ,
    {20,"subclone" ,67,0.0,&avnx[67] } ,
    {20,"subgroup" ,68,0.0,&avnx[68] } ,
    {20,"subsource-note" ,69,0.0,&avnx[69] } ,
    {20,"sub-species" ,70,0.0,&avnx[70] } ,
    {20,"substrain" ,71,0.0,&avnx[71] } ,
    {20,"subtype" ,72,0.0,&avnx[72] } ,
    {20,"synonym" ,73,0.0,&avnx[73] } ,
    {20,"taxname" ,74,0.0,&avnx[74] } ,
    {20,"teleomorph" ,75,0.0,&avnx[75] } ,
    {20,"tissue-lib" ,76,0.0,&avnx[76] } ,
    {20,"tissue-type" ,77,0.0,&avnx[77] } ,
    {20,"transgenic" ,78,0.0,&avnx[78] } ,
    {20,"transposon-name" ,79,0.0,&avnx[79] } ,
    {20,"type" ,80,0.0,&avnx[80] } ,
    {20,"variety" ,81,0.0,&avnx[81] } ,
    {20,"specimen-voucher-INST" ,82,0.0,&avnx[82] } ,
    {20,"specimen-voucher-COLL" ,83,0.0,&avnx[83] } ,
    {20,"specimen-voucher-SpecID" ,84,0.0,&avnx[84] } ,
    {20,"culture-collection-INST" ,85,0.0,&avnx[85] } ,
    {20,"culture-collection-COLL" ,86,0.0,&avnx[86] } ,
    {20,"culture-collection-SpecID" ,87,0.0,&avnx[87] } ,
    {20,"bio-material-INST" ,88,0.0,&avnx[88] } ,
    {20,"bio-material-COLL" ,89,0.0,&avnx[89] } ,
    {20,"bio-material-SpecID" ,90,0.0,&avnx[90] } ,
    {20,"all-notes" ,91,0.0,&avnx[91] } ,
    {20,"mating-type" ,92,0.0,&avnx[92] } ,
    {20,"linkage-group" ,93,0.0,&avnx[93] } ,
    {20,"haplogroup" ,94,0.0,&avnx[94] } ,
    {20,"all-quals" ,95,0.0,&avnx[95] } ,
    {20,"dbxref" ,96,0.0,&avnx[96] } ,
    {20,"taxid" ,97,0.0,&avnx[97] } ,
    {20,"all-primers" ,98,0.0,&avnx[98] } ,
    {20,"altitude" ,99,0.0,&avnx[99] } ,
    {20,"type-material" ,100,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[101] } ,
    {20,"genomic" ,1,0.0,&avnx[102] } ,
    {20,"chloroplast" ,2,0.0,&avnx[103] } ,
    {20,"chromoplast" ,3,0.0,&avnx[104] } ,
    {20,"kinetoplast" ,4,0.0,&avnx[105] } ,
    {20,"mitochondrion" ,5,0.0,&avnx[106] } ,
    {20,"plastid" ,6,0.0,&avnx[107] } ,
    {20,"macronuclear" ,7,0.0,&avnx[108] } ,
    {20,"extrachrom" ,8,0.0,&avnx[109] } ,
    {20,"plasmid" ,9,0.0,&avnx[110] } ,
    {20,"transposon" ,10,0.0,&avnx[111] } ,
    {20,"insertion-seq" ,11,0.0,&avnx[112] } ,
    {20,"cyanelle" ,12,0.0,&avnx[113] } ,
    {20,"proviral" ,13,0.0,&avnx[114] } ,
    {20,"virion" ,14,0.0,&avnx[115] } ,
    {20,"nucleomorph" ,15,0.0,&avnx[116] } ,
    {20,"apicoplast" ,16,0.0,&avnx[117] } ,
    {20,"leucoplast" ,17,0.0,&avnx[118] } ,
    {20,"proplastid" ,18,0.0,&avnx[119] } ,
    {20,"endogenous-virus" ,19,0.0,&avnx[120] } ,
    {20,"hydrogenosome" ,20,0.0,&avnx[121] } ,
    {20,"chromosome" ,21,0.0,&avnx[122] } ,
    {20,"chromatophore" ,22,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[124] } ,
    {20,"natural" ,1,0.0,&avnx[125] } ,
    {20,"natmut" ,2,0.0,&avnx[126] } ,
    {20,"mut" ,3,0.0,&avnx[127] } ,
    {20,"artificial" ,4,0.0,&avnx[128] } ,
    {20,"synthetic" ,5,0.0,&avnx[129] } ,
    {20,"other" ,255,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[131] } ,
    {20,"gene" ,1,0.0,&avnx[132] } ,
    {20,"org" ,2,0.0,&avnx[133] } ,
    {20,"cds" ,3,0.0,&avnx[134] } ,
    {20,"prot" ,4,0.0,&avnx[135] } ,
    {20,"preRNA" ,5,0.0,&avnx[136] } ,
    {20,"mRNA" ,6,0.0,&avnx[137] } ,
    {20,"tRNA" ,7,0.0,&avnx[138] } ,
    {20,"rRNA" ,8,0.0,&avnx[139] } ,
    {20,"snRNA" ,9,0.0,&avnx[140] } ,
    {20,"scRNA" ,10,0.0,&avnx[141] } ,
    {20,"otherRNA" ,11,0.0,&avnx[142] } ,
    {20,"pub" ,12,0.0,&avnx[143] } ,
    {20,"seq" ,13,0.0,&avnx[144] } ,
    {20,"imp" ,14,0.0,&avnx[145] } ,
    {20,"allele" ,15,0.0,&avnx[146] } ,
    {20,"attenuator" ,16,0.0,&avnx[147] } ,
    {20,"c-region" ,17,0.0,&avnx[148] } ,
    {20,"caat-signal" ,18,0.0,&avnx[149] } ,
    {20,"imp-CDS" ,19,0.0,&avnx[150] } ,
    {20,"conflict" ,20,0.0,&avnx[151] } ,
    {20,"d-loop" ,21,0.0,&avnx[152] } ,
    {20,"d-segment" ,22,0.0,&avnx[153] } ,
    {20,"enhancer" ,23,0.0,&avnx[154] } ,
    {20,"exon" ,24,0.0,&avnx[155] } ,
    {20,"gC-signal" ,25,0.0,&avnx[156] } ,
    {20,"iDNA" ,26,0.0,&avnx[157] } ,
    {20,"intron" ,27,0.0,&avnx[158] } ,
    {20,"j-segment" ,28,0.0,&avnx[159] } ,
    {20,"ltr" ,29,0.0,&avnx[160] } ,
    {20,"mat-peptide" ,30,0.0,&avnx[161] } ,
    {20,"misc-binding" ,31,0.0,&avnx[162] } ,
    {20,"misc-difference" ,32,0.0,&avnx[163] } ,
    {20,"misc-feature" ,33,0.0,&avnx[164] } ,
    {20,"misc-recomb" ,34,0.0,&avnx[165] } ,
    {20,"misc-RNA" ,35,0.0,&avnx[166] } ,
    {20,"misc-signal" ,36,0.0,&avnx[167] } ,
    {20,"misc-structure" ,37,0.0,&avnx[168] } ,
    {20,"modified-base" ,38,0.0,&avnx[169] } ,
    {20,"mutation" ,39,0.0,&avnx[170] } ,
    {20,"n-region" ,40,0.0,&avnx[171] } ,
    {20,"old-sequence" ,41,0.0,&avnx[172] } ,
    {20,"polyA-signal" ,42,0.0,&avnx[173] } ,
    {20,"polyA-site" ,43,0.0,&avnx[174] } ,
    {20,"precursor-RNA" ,44,0.0,&avnx[175] } ,
    {20,"prim-transcript" ,45,0.0,&avnx[176] } ,
    {20,"primer-bind" ,46,0.0,&avnx[177] } ,
    {20,"promoter" ,47,0.0,&avnx[178] } ,
    {20,"protein-bind" ,48,0.0,&avnx[179] } ,
    {20,"rbs" ,49,0.0,&avnx[180] } ,
    {20,"repeat-region" ,50,0.0,&avnx[181] } ,
    {20,"rep-origin" ,51,0.0,&avnx[182] } ,
    {20,"s-region" ,52,0.0,&avnx[183] } ,
    {20,"sig-peptide" ,53,0.0,&avnx[184] } ,
    {20,"source" ,54,0.0,&avnx[185] } ,
    {20,"stem-loop" ,55,0.0,&avnx[186] } ,
    {20,"sts" ,56,0.0,&avnx[187] } ,
    {20,"tata-signal" ,57,0.0,&avnx[188] } ,
    {20,"terminator" ,58,0.0,&avnx[189] } ,
    {20,"transit-peptide" ,59,0.0,&avnx[190] } ,
    {20,"unsure" ,60,0.0,&avnx[191] } ,
    {20,"v-region" ,61,0.0,&avnx[192] } ,
    {20,"v-segment" ,62,0.0,&avnx[193] } ,
    {20,"variation" ,63,0.0,&avnx[194] } ,
    {20,"virion" ,64,0.0,&avnx[195] } ,
    {20,"n3clip" ,65,0.0,&avnx[196] } ,
    {20,"n3UTR" ,66,0.0,&avnx[197] } ,
    {20,"n5clip" ,67,0.0,&avnx[198] } ,
    {20,"n5UTR" ,68,0.0,&avnx[199] } ,
    {20,"n10-signal" ,69,0.0,&avnx[200] } ,
    {20,"n35-signal" ,70,0.0,&avnx[201] } ,
    {20,"site-ref" ,71,0.0,&avnx[202] } ,
    {20,"region" ,72,0.0,&avnx[203] } ,
    {20,"comment" ,73,0.0,&avnx[204] } ,
    {20,"bond" ,74,0.0,&avnx[205] } ,
    {20,"site" ,75,0.0,&avnx[206] } ,
    {20,"rsite" ,76,0.0,&avnx[207] } ,
    {20,"user" ,77,0.0,&avnx[208] } ,
    {20,"txinit" ,78,0.0,&avnx[209] } ,
    {20,"num" ,79,0.0,&avnx[210] } ,
    {20,"psec-str" ,80,0.0,&avnx[211] } ,
    {20,"non-std-residue" ,81,0.0,&avnx[212] } ,
    {20,"het" ,82,0.0,&avnx[213] } ,
    {20,"biosrc" ,83,0.0,&avnx[214] } ,
    {20,"preprotein" ,84,0.0,&avnx[215] } ,
    {20,"mat-peptide-aa" ,85,0.0,&avnx[216] } ,
    {20,"sig-peptide-aa" ,86,0.0,&avnx[217] } ,
    {20,"transit-peptide-aa" ,87,0.0,&avnx[218] } ,
    {20,"snoRNA" ,88,0.0,&avnx[219] } ,
    {20,"gap" ,89,0.0,&avnx[220] } ,
    {20,"operon" ,90,0.0,&avnx[221] } ,
    {20,"oriT" ,91,0.0,&avnx[222] } ,
    {20,"ncRNA" ,92,0.0,&avnx[223] } ,
    {20,"tmRNA" ,93,0.0,&avnx[224] } ,
    {20,"mobile-element" ,94,0.0,&avnx[225] } ,
    {20,"regulatory" ,95,0.0,NULL } ,
    {20,"allele" ,1,0.0,&avnx[227] } ,
    {20,"activity" ,2,0.0,&avnx[228] } ,
    {20,"anticodon" ,3,0.0,&avnx[229] } ,
    {20,"bound-moiety" ,4,0.0,&avnx[230] } ,
    {20,"chromosome" ,5,0.0,&avnx[231] } ,
    {20,"citation" ,6,0.0,&avnx[232] } ,
    {20,"codon" ,7,0.0,&avnx[233] } ,
    {20,"codon-start" ,8,0.0,&avnx[234] } ,
    {20,"codons-recognized" ,9,0.0,&avnx[235] } ,
    {20,"compare" ,10,0.0,&avnx[236] } ,
    {20,"cons-splice" ,11,0.0,&avnx[237] } ,
    {20,"db-xref" ,12,0.0,&avnx[238] } ,
    {20,"description" ,13,0.0,&avnx[239] } ,
    {20,"direction" ,14,0.0,&avnx[240] } ,
    {20,"ec-number" ,15,0.0,&avnx[241] } ,
    {20,"environmental-sample" ,16,0.0,&avnx[242] } ,
    {20,"evidence" ,17,0.0,&avnx[243] } ,
    {20,"exception" ,18,0.0,&avnx[244] } ,
    {20,"experiment" ,19,0.0,&avnx[245] } ,
    {20,"focus" ,20,0.0,&avnx[246] } ,
    {20,"frequency" ,21,0.0,&avnx[247] } ,
    {20,"function" ,22,0.0,&avnx[248] } ,
    {20,"gene" ,23,0.0,&avnx[249] } ,
    {20,"gene-description" ,24,0.0,&avnx[250] } ,
    {20,"inference" ,25,0.0,&avnx[251] } ,
    {20,"label" ,26,0.0,&avnx[252] } ,
    {20,"locus-tag" ,27,0.0,&avnx[253] } ,
    {20,"map" ,28,0.0,&avnx[254] } ,
    {20,"mobile-element" ,29,0.0,&avnx[255] } ,
    {20,"mod-base" ,30,0.0,&avnx[256] } ,
    {20,"mol-type" ,31,0.0,&avnx[257] } ,
    {20,"ncRNA-class" ,32,0.0,&avnx[258] } ,
    {20,"note" ,33,0.0,&avnx[259] } ,
    {20,"number" ,34,0.0,&avnx[260] } ,
    {20,"old-locus-tag" ,35,0.0,&avnx[261] } ,
    {20,"operon" ,36,0.0,&avnx[262] } ,
    {20,"organism" ,37,0.0,&avnx[263] } ,
    {20,"organelle" ,38,0.0,&avnx[264] } ,
    {20,"partial" ,39,0.0,&avnx[265] } ,
    {20,"phenotype" ,40,0.0,&avnx[266] } ,
    {20,"plasmid" ,41,0.0,&avnx[267] } ,
    {20,"product" ,42,0.0,&avnx[268] } ,
    {20,"protein-id" ,43,0.0,&avnx[269] } ,
    {20,"pseudo" ,44,0.0,&avnx[270] } ,
    {20,"rearranged" ,45,0.0,&avnx[271] } ,
    {20,"replace" ,46,0.0,&avnx[272] } ,
    {20,"rpt-family" ,47,0.0,&avnx[273] } ,
    {20,"rpt-type" ,48,0.0,&avnx[274] } ,
    {20,"rpt-unit" ,49,0.0,&avnx[275] } ,
    {20,"rpt-unit-seq" ,50,0.0,&avnx[276] } ,
    {20,"rpt-unit-range" ,51,0.0,&avnx[277] } ,
    {20,"segment" ,52,0.0,&avnx[278] } ,
    {20,"sequenced-mol" ,53,0.0,&avnx[279] } ,
    {20,"standard-name" ,54,0.0,&avnx[280] } ,
    {20,"synonym" ,55,0.0,&avnx[281] } ,
    {20,"transcript-id" ,56,0.0,&avnx[282] } ,
    {20,"transgenic" ,57,0.0,&avnx[283] } ,
    {20,"translation" ,58,0.0,&avnx[284] } ,
    {20,"transl-except" ,59,0.0,&avnx[285] } ,
    {20,"transl-table" ,60,0.0,&avnx[286] } ,
    {20,"usedin" ,61,0.0,&avnx[287] } ,
    {20,"mobile-element-type" ,62,0.0,&avnx[288] } ,
    {20,"mobile-element-name" ,63,0.0,&avnx[289] } ,
    {20,"gene-comment" ,64,0.0,&avnx[290] } ,
    {20,"satellite" ,65,0.0,&avnx[291] } ,
    {20,"satellite-type" ,66,0.0,&avnx[292] } ,
    {20,"satellite-name" ,67,0.0,&avnx[293] } ,
    {20,"location" ,68,0.0,&avnx[294] } ,
    {20,"tag-peptide" ,69,0.0,&avnx[295] } ,
    {20,"mobile-element-type-type" ,70,0.0,&avnx[296] } ,
    {20,"name" ,71,0.0,&avnx[297] } ,
    {20,"pcr-conditions" ,72,0.0,&avnx[298] } ,
    {20,"regulatory-class" ,73,0.0,NULL } ,
    {3,NULL,1,0.0,NULL } ,
    {20,"contains" ,1,0.0,&avnx[301] } ,
    {20,"equals" ,2,0.0,&avnx[302] } ,
    {20,"starts" ,3,0.0,&avnx[303] } ,
    {20,"ends" ,4,0.0,&avnx[304] } ,
    {20,"inlist" ,5,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {20,"product" ,1,0.0,&avnx[319] } ,
    {20,"comment" ,2,0.0,&avnx[320] } ,
    {20,"codons-recognized" ,3,0.0,&avnx[321] } ,
    {20,"ncrna-class" ,4,0.0,&avnx[322] } ,
    {20,"anticodon" ,5,0.0,&avnx[323] } ,
    {20,"transcript-id" ,6,0.0,&avnx[324] } ,
    {20,"gene-locus" ,7,0.0,&avnx[325] } ,
    {20,"gene-description" ,8,0.0,&avnx[326] } ,
    {20,"gene-maploc" ,9,0.0,&avnx[327] } ,
    {20,"gene-locus-tag" ,10,0.0,&avnx[328] } ,
    {20,"gene-synonym" ,11,0.0,&avnx[329] } ,
    {20,"gene-comment" ,12,0.0,&avnx[330] } ,
    {20,"tag-peptide" ,13,0.0,NULL } ,
    {20,"cds-comment" ,1,0.0,&avnx[332] } ,
    {20,"gene-locus" ,2,0.0,&avnx[333] } ,
    {20,"gene-description" ,3,0.0,&avnx[334] } ,
    {20,"gene-comment" ,4,0.0,&avnx[335] } ,
    {20,"gene-allele" ,5,0.0,&avnx[336] } ,
    {20,"gene-maploc" ,6,0.0,&avnx[337] } ,
    {20,"gene-locus-tag" ,7,0.0,&avnx[338] } ,
    {20,"gene-synonym" ,8,0.0,&avnx[339] } ,
    {20,"gene-old-locus-tag" ,9,0.0,&avnx[340] } ,
    {20,"mrna-product" ,10,0.0,&avnx[341] } ,
    {20,"mrna-comment" ,11,0.0,&avnx[342] } ,
    {20,"prot-name" ,12,0.0,&avnx[343] } ,
    {20,"prot-description" ,13,0.0,&avnx[344] } ,
    {20,"prot-ec-number" ,14,0.0,&avnx[345] } ,
    {20,"prot-activity" ,15,0.0,&avnx[346] } ,
    {20,"prot-comment" ,16,0.0,&avnx[347] } ,
    {20,"mat-peptide-name" ,17,0.0,&avnx[348] } ,
    {20,"mat-peptide-description" ,18,0.0,&avnx[349] } ,
    {20,"mat-peptide-ec-number" ,19,0.0,&avnx[350] } ,
    {20,"mat-peptide-activity" ,20,0.0,&avnx[351] } ,
    {20,"mat-peptide-comment" ,21,0.0,&avnx[352] } ,
    {20,"cds-inference" ,22,0.0,&avnx[353] } ,
    {20,"gene-inference" ,23,0.0,&avnx[354] } ,
    {20,"codon-start" ,24,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[356] } ,
    {20,"genomic" ,1,0.0,&avnx[357] } ,
    {20,"precursor-RNA" ,2,0.0,&avnx[358] } ,
    {20,"mRNA" ,3,0.0,&avnx[359] } ,
    {20,"rRNA" ,4,0.0,&avnx[360] } ,
    {20,"tRNA" ,5,0.0,&avnx[361] } ,
    {20,"genomic-mRNA" ,6,0.0,&avnx[362] } ,
    {20,"cRNA" ,7,0.0,&avnx[363] } ,
    {20,"transcribed-RNA" ,8,0.0,&avnx[364] } ,
    {20,"ncRNA" ,9,0.0,&avnx[365] } ,
    {20,"transfer-messenger-RNA" ,10,0.0,&avnx[366] } ,
    {20,"macro-other" ,11,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[368] } ,
    {20,"standard" ,1,0.0,&avnx[369] } ,
    {20,"est" ,2,0.0,&avnx[370] } ,
    {20,"sts" ,3,0.0,&avnx[371] } ,
    {20,"survey" ,4,0.0,&avnx[372] } ,
    {20,"genetic-map" ,5,0.0,&avnx[373] } ,
    {20,"physical-map" ,6,0.0,&avnx[374] } ,
    {20,"derived" ,7,0.0,&avnx[375] } ,
    {20,"concept-trans" ,8,0.0,&avnx[376] } ,
    {20,"seq-pept" ,9,0.0,&avnx[377] } ,
    {20,"both" ,10,0.0,&avnx[378] } ,
    {20,"seq-pept-overlap" ,11,0.0,&avnx[379] } ,
    {20,"seq-pept-homol" ,12,0.0,&avnx[380] } ,
    {20,"concept-trans-a" ,13,0.0,&avnx[381] } ,
    {20,"htgs-1" ,14,0.0,&avnx[382] } ,
    {20,"htgs-2" ,15,0.0,&avnx[383] } ,
    {20,"htgs-3" ,16,0.0,&avnx[384] } ,
    {20,"fli-cDNA" ,17,0.0,&avnx[385] } ,
    {20,"htgs-0" ,18,0.0,&avnx[386] } ,
    {20,"htc" ,19,0.0,&avnx[387] } ,
    {20,"wgs" ,20,0.0,&avnx[388] } ,
    {20,"barcode" ,21,0.0,&avnx[389] } ,
    {20,"composite-wgs-htgs" ,22,0.0,&avnx[390] } ,
    {20,"tsa" ,23,0.0,&avnx[391] } ,
    {20,"targeted" ,24,0.0,&avnx[392] } ,
    {20,"other" ,25,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[394] } ,
    {20,"complete" ,1,0.0,&avnx[395] } ,
    {20,"partial" ,2,0.0,&avnx[396] } ,
    {20,"no-left" ,3,0.0,&avnx[397] } ,
    {20,"no-right" ,4,0.0,&avnx[398] } ,
    {20,"no-ends" ,5,0.0,&avnx[399] } ,
    {20,"has-left" ,6,0.0,&avnx[400] } ,
    {20,"has-right" ,7,0.0,&avnx[401] } ,
    {20,"other" ,6,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[403] } ,
    {20,"dna" ,1,0.0,&avnx[404] } ,
    {20,"rna" ,2,0.0,&avnx[405] } ,
    {20,"protein" ,3,0.0,&avnx[406] } ,
    {20,"nucleotide" ,4,0.0,&avnx[407] } ,
    {20,"other" ,5,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[409] } ,
    {20,"linear" ,1,0.0,&avnx[410] } ,
    {20,"circular" ,2,0.0,&avnx[411] } ,
    {20,"tandem" ,3,0.0,&avnx[412] } ,
    {20,"other" ,4,0.0,NULL } ,
    {20,"unknown" ,0,0.0,&avnx[414] } ,
    {20,"single" ,1,0.0,&avnx[415] } ,
    {20,"double" ,2,0.0,&avnx[416] } ,
    {20,"mixed" ,3,0.0,&avnx[417] } ,
    {20,"mixed-rev" ,4,0.0,&avnx[418] } ,
    {20,"other" ,5,0.0,NULL } ,
    {20,"cit" ,1,0.0,&avnx[420] } ,
    {20,"authors" ,2,0.0,&avnx[421] } ,
    {20,"journal" ,3,0.0,&avnx[422] } ,
    {20,"volume" ,4,0.0,&avnx[423] } ,
    {20,"issue" ,5,0.0,&avnx[424] } ,
    {20,"pages" ,6,0.0,&avnx[425] } ,
    {20,"date" ,7,0.0,&avnx[426] } ,
    {20,"serial-number" ,8,0.0,&avnx[427] } ,
    {20,"title" ,9,0.0,&avnx[428] } ,
    {20,"affiliation" ,10,0.0,&avnx[429] } ,
    {20,"affil-div" ,11,0.0,&avnx[430] } ,
    {20,"affil-city" ,12,0.0,&avnx[431] } ,
    {20,"affil-sub" ,13,0.0,&avnx[432] } ,
    {20,"affil-country" ,14,0.0,&avnx[433] } ,
    {20,"affil-street" ,15,0.0,&avnx[434] } ,
    {20,"affil-email" ,16,0.0,&avnx[435] } ,
    {20,"affil-fax" ,17,0.0,&avnx[436] } ,
    {20,"affil-phone" ,18,0.0,&avnx[437] } ,
    {20,"affil-zipcode" ,19,0.0,&avnx[438] } ,
    {20,"authors-initials" ,20,0.0,&avnx[439] } ,
    {20,"pmid" ,21,0.0,&avnx[440] } ,
    {20,"pub-class" ,22,0.0,NULL } ,
    {20,"genome-project-id" ,1,0.0,&avnx[442] } ,
    {20,"comment-descriptor" ,2,0.0,&avnx[443] } ,
    {20,"defline" ,3,0.0,&avnx[444] } ,
    {20,"keyword" ,4,0.0,NULL } ,
    {20,"trace-assembly" ,1,0.0,&avnx[446] } ,
    {20,"bio-sample" ,2,0.0,&avnx[447] } ,
    {20,"probe-db" ,3,0.0,&avnx[448] } ,
    {20,"sequence-read-archve" ,4,0.0,&avnx[449] } ,
    {20,"bio-project" ,5,0.0,&avnx[450] } ,
    {20,"assembly" ,6,0.0,NULL } ,
    {20,"replace-old" ,1,0.0,&avnx[452] } ,
    {20,"append-semi" ,2,0.0,&avnx[453] } ,
    {20,"append-space" ,3,0.0,&avnx[454] } ,
    {20,"append-colon" ,4,0.0,&avnx[455] } ,
    {20,"append-comma" ,5,0.0,&avnx[456] } ,
    {20,"append-none" ,6,0.0,&avnx[457] } ,
    {20,"prefix-semi" ,7,0.0,&avnx[458] } ,
    {20,"prefix-space" ,8,0.0,&avnx[459] } ,
    {20,"prefix-colon" ,9,0.0,&avnx[460] } ,
    {20,"prefix-comma" ,10,0.0,&avnx[461] } ,
    {20,"prefix-none" ,11,0.0,&avnx[462] } ,
    {20,"leave-old" ,12,0.0,&avnx[463] } ,
    {20,"add-qual" ,13,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"anywhere" ,0,0.0,&avnx[466] } ,
    {20,"beginning" ,1,0.0,&avnx[467] } ,
    {20,"end" ,2,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"none" ,0,0.0,&avnx[473] } ,
    {20,"tolower" ,1,0.0,&avnx[474] } ,
    {20,"toupper" ,2,0.0,&avnx[475] } ,
    {20,"firstcap" ,3,0.0,&avnx[476] } ,
    {20,"firstcaprestnochange" ,4,0.0,&avnx[477] } ,
    {20,"firstlower-restnochange" ,5,0.0,&avnx[478] } ,
    {20,"cap-word-space" ,6,0.0,&avnx[479] } ,
    {20,"cap-word-space-punc" ,7,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[489] } ,
    {20,"plus" ,1,0.0,&avnx[490] } ,
    {20,"minus" ,2,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[493] } ,
    {20,"nuc" ,1,0.0,&avnx[494] } ,
    {20,"prot" ,2,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"either" ,0,0.0,&avnx[497] } ,
    {20,"partial" ,1,0.0,&avnx[498] } ,
    {20,"complete" ,2,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[502] } ,
    {20,"single-interval" ,1,0.0,&avnx[503] } ,
    {20,"joined" ,2,0.0,&avnx[504] } ,
    {20,"ordered" ,3,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[506] } ,
    {20,"feature" ,1,0.0,&avnx[507] } ,
    {20,"descriptor" ,2,0.0,NULL } ,
    {20,"gene" ,1,0.0,&avnx[509] } ,
    {20,"mRNA" ,2,0.0,&avnx[510] } ,
    {20,"cds" ,3,0.0,&avnx[511] } ,
    {20,"prot" ,4,0.0,&avnx[512] } ,
    {20,"exon" ,5,0.0,&avnx[513] } ,
    {20,"mat-peptide" ,6,0.0,NULL } ,
    {2,NULL,1,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[516] } ,
    {20,"genomic" ,1,0.0,&avnx[517] } ,
    {20,"precursor-RNA" ,2,0.0,&avnx[518] } ,
    {20,"mRNA" ,3,0.0,&avnx[519] } ,
    {20,"rRNA" ,4,0.0,&avnx[520] } ,
    {20,"tRNA" ,5,0.0,&avnx[521] } ,
    {20,"genomic-mRNA" ,6,0.0,&avnx[522] } ,
    {20,"cRNA" ,7,0.0,&avnx[523] } ,
    {20,"transcribed-RNA" ,8,0.0,&avnx[524] } ,
    {20,"ncRNA" ,9,0.0,&avnx[525] } ,
    {20,"transfer-messenger-RNA" ,10,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[528] } ,
    {20,"minus-only" ,1,0.0,&avnx[529] } ,
    {20,"plus-only" ,2,0.0,&avnx[530] } ,
    {20,"at-least-one-minus" ,3,0.0,&avnx[531] } ,
    {20,"at-least-one-plus" ,4,0.0,&avnx[532] } ,
    {20,"no-minus" ,5,0.0,&avnx[533] } ,
    {20,"no-plus" ,6,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[535] } ,
    {20,"published" ,1,0.0,&avnx[536] } ,
    {20,"unpublished" ,2,0.0,&avnx[537] } ,
    {20,"in-press" ,3,0.0,&avnx[538] } ,
    {20,"submitter-block" ,4,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"dont-care" ,0,0.0,&avnx[542] } ,
    {20,"yes" ,1,0.0,&avnx[543] } ,
    {20,"no" ,2,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,1,0.0,NULL } ,
    {2,NULL,1,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {3,NULL,-1,0.0,NULL } ,
    {20,"disulfide" ,1,0.0,&avnx[556] } ,
    {20,"thioester" ,2,0.0,&avnx[557] } ,
    {20,"crosslink" ,3,0.0,&avnx[558] } ,
    {20,"thioether" ,4,0.0,&avnx[559] } ,
    {20,"other" ,5,0.0,NULL } ,
    {20,"active" ,1,0.0,&avnx[561] } ,
    {20,"binding" ,2,0.0,&avnx[562] } ,
    {20,"cleavage" ,3,0.0,&avnx[563] } ,
    {20,"inhibit" ,4,0.0,&avnx[564] } ,
    {20,"modified" ,5,0.0,&avnx[565] } ,
    {20,"glycosylation" ,6,0.0,&avnx[566] } ,
    {20,"myristoylation" ,7,0.0,&avnx[567] } ,
    {20,"mutagenized" ,8,0.0,&avnx[568] } ,
    {20,"metal-binding" ,9,0.0,&avnx[569] } ,
    {20,"phosphorylation" ,10,0.0,&avnx[570] } ,
    {20,"acetylation" ,11,0.0,&avnx[571] } ,
    {20,"amidation" ,12,0.0,&avnx[572] } ,
    {20,"methylation" ,13,0.0,&avnx[573] } ,
    {20,"hydroxylation" ,14,0.0,&avnx[574] } ,
    {20,"sulfatation" ,15,0.0,&avnx[575] } ,
    {20,"oxidative-deamination" ,16,0.0,&avnx[576] } ,
    {20,"pyrrolidone-carboxylic-acid" ,17,0.0,&avnx[577] } ,
    {20,"gamma-carboxyglutamic-acid" ,18,0.0,&avnx[578] } ,
    {20,"blocked" ,19,0.0,&avnx[579] } ,
    {20,"lipid-binding" ,20,0.0,&avnx[580] } ,
    {20,"np-binding" ,21,0.0,&avnx[581] } ,
    {20,"dna-binding" ,22,0.0,&avnx[582] } ,
    {20,"signal-peptide" ,23,0.0,&avnx[583] } ,
    {20,"transit-peptide" ,24,0.0,&avnx[584] } ,
    {20,"transmembrane-region" ,25,0.0,&avnx[585] } ,
    {20,"nitrosylation" ,26,0.0,&avnx[586] } ,
    {20,"other" ,27,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[588] } ,
    {20,"plus" ,1,0.0,&avnx[589] } ,
    {20,"minus" ,2,0.0,&avnx[590] } ,
    {20,"unknown" ,3,0.0,&avnx[591] } ,
    {20,"both" ,4,0.0,NULL } ,
    {20,"plus" ,1,0.0,&avnx[593] } ,
    {20,"minus" ,2,0.0,&avnx[594] } ,
    {20,"unknown" ,3,0.0,&avnx[595] } ,
    {20,"both" ,4,0.0,&avnx[596] } ,
    {20,"reverse" ,5,0.0,NULL } ,
    {20,"all" ,0,0.0,&avnx[598] } ,
    {20,"at-end" ,1,0.0,&avnx[599] } ,
    {20,"bad-start" ,2,0.0,&avnx[600] } ,
    {20,"frame-not-one" ,3,0.0,NULL } ,
    {20,"all" ,0,0.0,&avnx[602] } ,
    {20,"not-at-end" ,1,0.0,&avnx[603] } ,
    {20,"good-start" ,2,0.0,NULL } ,
    {20,"all" ,0,0.0,&avnx[605] } ,
    {20,"at-end" ,1,0.0,&avnx[606] } ,
    {20,"bad-end" ,2,0.0,NULL } ,
    {20,"all" ,0,0.0,&avnx[608] } ,
    {20,"not-at-end" ,1,0.0,&avnx[609] } ,
    {20,"good-end" ,2,0.0,NULL } ,
    {20,"all" ,0,0.0,&avnx[611] } ,
    {20,"at-end" ,1,0.0,NULL } ,
    {20,"all" ,0,0.0,&avnx[613] } ,
    {20,"not-at-end" ,1,0.0,NULL } ,
    {20,"join" ,1,0.0,&avnx[615] } ,
    {20,"order" ,2,0.0,&avnx[616] } ,
    {20,"merge" ,3,0.0,NULL } ,
    {20,"all" ,0,0.0,&avnx[618] } ,
    {20,"title" ,1,0.0,&avnx[619] } ,
    {20,"source" ,2,0.0,&avnx[620] } ,
    {20,"publication" ,3,0.0,&avnx[621] } ,
    {20,"comment" ,4,0.0,&avnx[622] } ,
    {20,"genbank" ,5,0.0,&avnx[623] } ,
    {20,"user" ,6,0.0,&avnx[624] } ,
    {20,"create-date" ,7,0.0,&avnx[625] } ,
    {20,"update-date" ,8,0.0,&avnx[626] } ,
    {20,"mol-info" ,9,0.0,&avnx[627] } ,
    {20,"structured-comment" ,10,0.0,&avnx[628] } ,
    {20,"genome-project-id" ,11,0.0,NULL } ,
    {20,"feature-list" ,1,0.0,&avnx[630] } ,
    {20,"complete-sequence" ,2,0.0,&avnx[631] } ,
    {20,"complete-genome" ,3,0.0,&avnx[632] } ,
    {20,"sequence" ,4,0.0,NULL } ,
    {3,NULL,2,0.0,NULL } ,
    {20,"use-comment-before-first-semicolon" ,1,0.0,&avnx[635] } ,
    {20,"look-for-noncoding-products" ,2,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {20,"short-to-long" ,1,0.0,&avnx[638] } ,
    {20,"long-to-short" ,2,0.0,&avnx[639] } ,
    {20,"alphabetical" ,3,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[641] } ,
    {20,"suppressing" ,1,0.0,&avnx[642] } ,
    {20,"non-suppressing" ,2,0.0,NULL } ,
    {20,"any" ,0,0.0,&avnx[644] } ,
    {20,"necessary" ,1,0.0,&avnx[645] } ,
    {20,"unnecessary" ,2,0.0,NULL } ,
    {20,"truncate-middle-initials" ,1,0.0,&avnx[647] } ,
    {20,"strip-suffix" ,2,0.0,&avnx[648] } ,
    {20,"move-middle-to-first" ,3,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {3,NULL,2,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,1,0.0,NULL } ,
    {20,"always" ,1,0.0,&avnx[654] } ,
    {20,"unless-pseudo" ,2,0.0,&avnx[655] } ,
    {20,"never" ,3,0.0,NULL } ,
    {3,NULL,0,0.0,NULL } ,
    {20,"none" ,0,0.0,&avnx[658] } ,
    {20,"typo" ,1,0.0,&avnx[659] } ,
    {20,"putative-typo" ,2,0.0,&avnx[660] } ,
    {20,"quickfix" ,3,0.0,&avnx[661] } ,
    {20,"no-organelle-for-prokaryote" ,4,0.0,&avnx[662] } ,
    {20,"might-be-nonfunctional" ,5,0.0,&avnx[663] } ,
    {20,"database" ,6,0.0,&avnx[664] } ,
    {20,"remove-organism-name" ,7,0.0,&avnx[665] } ,
    {20,"inappropriate-symbol" ,8,0.0,&avnx[666] } ,
    {20,"evolutionary-relationship" ,9,0.0,&avnx[667] } ,
    {20,"use-protein" ,10,0.0,&avnx[668] } ,
    {20,"hypothetical" ,11,0.0,&avnx[669] } ,
    {20,"british" ,12,0.0,&avnx[670] } ,
    {20,"description" ,13,0.0,&avnx[671] } ,
    {20,"gene" ,14,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } ,
    {2,NULL,0,0.0,NULL } };

static AsnType atx[678] = {
  {401, "AECR-action" ,1,0,0,0,0,1,0,0,NULL,&atx[48],&atx[1],0,&atx[314]} ,
  {0, "action" ,128,0,0,0,0,0,0,0,NULL,&atx[2],NULL,0,&atx[215]} ,
  {500, "Action-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[3],0,&atx[324]} ,
  {0, "apply" ,128,0,0,0,0,0,0,0,NULL,&atx[4],NULL,0,&atx[102]} ,
  {489, "Apply-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[5],0,&atx[103]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[6],NULL,0,&atx[99]} ,
  {473, "Field-type" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[7],0,&atx[269]} ,
  {0, "source-qual" ,128,0,0,0,0,0,0,0,NULL,&atx[8],NULL,0,&atx[20]} ,
  {434, "Source-qual-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[9],0,&atx[396]} ,
  {0, "textqual" ,128,0,0,0,0,0,0,0,NULL,&atx[10],NULL,0,&atx[12]} ,
  {430, "Source-qual" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[0],0,&atx[117]} ,
  {310, "ENUMERATED" ,0,10,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "location" ,128,1,0,0,0,0,0,0,NULL,&atx[13],NULL,0,&atx[14]} ,
  {432, "Source-location" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[100],0,&atx[15]} ,
  {0, "origin" ,128,2,0,0,0,0,0,0,NULL,&atx[15],NULL,0,&atx[16]} ,
  {433, "Source-origin" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[123],0,&atx[8]} ,
  {0, "gcode" ,128,3,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[18]} ,
  {302, "INTEGER" ,0,2,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "mgcode" ,128,4,0,0,0,0,0,0,NULL,&atx[17],NULL,0,NULL} ,
  {315, "CHOICE" ,0,-1,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "feature-field" ,128,1,0,0,0,0,0,0,NULL,&atx[21],NULL,0,&atx[57]} ,
  {423, "Feature-field" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[22],0,&atx[345]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[24]} ,
  {417, "Macro-feature-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[130],0,&atx[27]} ,
  {0, "field" ,128,1,0,0,0,0,0,0,NULL,&atx[25],NULL,0,NULL} ,
  {422, "Feat-qual-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[26],0,&atx[21]} ,
  {0, "legal-qual" ,128,0,0,0,0,0,0,0,NULL,&atx[27],NULL,0,&atx[28]} ,
  {418, "Feat-qual-legal" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[226],0,&atx[388]} ,
  {0, "illegal-qual" ,128,1,0,0,0,0,0,0,NULL,&atx[29],NULL,0,NULL} ,
  {408, "String-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[30],0,&atx[308]} ,
  {0, "match-text" ,128,0,0,1,0,0,0,0,NULL,&atx[31],NULL,0,&atx[32]} ,
  {323, "VisibleString" ,0,26,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "match-location" ,128,1,0,0,1,0,0,0,&avnx[299],&atx[33],NULL,0,&atx[34]} ,
  {405, "String-location" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[300],0,&atx[41]} ,
  {0, "case-sensitive" ,128,2,0,0,1,0,0,0,&avnx[305],&atx[35],NULL,0,&atx[36]} ,
  {301, "BOOLEAN" ,0,1,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "ignore-space" ,128,3,0,0,1,0,0,0,&avnx[306],&atx[35],NULL,0,&atx[37]} ,
  {0, "ignore-punct" ,128,4,0,0,1,0,0,0,&avnx[307],&atx[35],NULL,0,&atx[38]} ,
  {0, "ignore-words" ,128,5,0,1,0,0,0,0,NULL,&atx[39],NULL,0,&atx[49]} ,
  {407, "Word-substitution-set" ,1,0,0,0,0,0,0,0,NULL,&atx[45],&atx[40],0,&atx[29]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[41],NULL,0,NULL} ,
  {406, "Word-substitution" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[42],0,&atx[39]} ,
  {0, "word" ,128,0,0,1,0,0,0,0,NULL,&atx[31],NULL,0,&atx[43]} ,
  {0, "synonyms" ,128,1,0,1,0,0,0,0,NULL,&atx[45],&atx[44],0,&atx[46]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {314, "SET OF" ,0,17,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "case-sensitive" ,128,2,0,0,1,0,0,0,&avnx[308],&atx[35],NULL,0,&atx[47]} ,
  {0, "whole-word" ,128,3,0,0,1,0,0,0,&avnx[309],&atx[35],NULL,0,NULL} ,
  {311, "SEQUENCE" ,0,16,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "whole-word" ,128,6,0,0,1,0,0,0,&avnx[310],&atx[35],NULL,0,&atx[50]} ,
  {0, "not-present" ,128,7,0,0,1,0,0,0,&avnx[311],&atx[35],NULL,0,&atx[51]} ,
  {0, "is-all-caps" ,128,8,0,0,1,0,0,0,&avnx[312],&atx[35],NULL,0,&atx[52]} ,
  {0, "is-all-lower" ,128,9,0,0,1,0,0,0,&avnx[313],&atx[35],NULL,0,&atx[53]} ,
  {0, "is-all-punct" ,128,10,0,0,1,0,0,0,&avnx[314],&atx[35],NULL,0,&atx[54]} ,
  {0, "ignore-weasel" ,128,11,0,0,1,0,0,0,&avnx[315],&atx[35],NULL,0,&atx[55]} ,
  {0, "is-first-cap" ,128,12,0,0,1,0,0,0,&avnx[316],&atx[35],NULL,0,&atx[56]} ,
  {0, "is-first-each-cap" ,128,13,0,0,1,0,0,0,&avnx[317],&atx[35],NULL,0,NULL} ,
  {0, "rna-field" ,128,2,0,0,0,0,0,0,NULL,&atx[58],NULL,0,&atx[72]} ,
  {428, "Rna-qual" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[59],0,&atx[126]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[60],NULL,0,&atx[70]} ,
  {426, "Rna-feat-type" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[61],0,&atx[71]} ,
  {0, "any" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[63]} ,
  {305, "NULL" ,0,5,0,0,0,0,0,0,NULL,NULL,NULL,0,NULL} ,
  {0, "preRNA" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[64]} ,
  {0, "mRNA" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[65]} ,
  {0, "tRNA" ,128,3,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[66]} ,
  {0, "rRNA" ,128,4,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[67]} ,
  {0, "ncRNA" ,128,5,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[68]} ,
  {0, "tmRNA" ,128,6,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[69]} ,
  {0, "miscRNA" ,128,7,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "field" ,128,1,0,0,0,0,0,0,NULL,&atx[71],NULL,0,NULL} ,
  {427, "Rna-field" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[318],0,&atx[58]} ,
  {0, "cds-gene-prot" ,128,3,0,0,0,0,0,0,NULL,&atx[73],NULL,0,&atx[74]} ,
  {438, "CDSGeneProt-field" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[331],0,&atx[131]} ,
  {0, "molinfo-field" ,128,4,0,0,0,0,0,0,NULL,&atx[75],NULL,0,&atx[88]} ,
  {446, "Molinfo-field" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[76],0,&atx[137]} ,
  {0, "molecule" ,128,0,0,0,0,0,0,0,NULL,&atx[77],NULL,0,&atx[78]} ,
  {440, "Molecule-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[355],0,&atx[79]} ,
  {0, "technique" ,128,1,0,0,0,0,0,0,NULL,&atx[79],NULL,0,&atx[80]} ,
  {441, "Technique-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[367],0,&atx[81]} ,
  {0, "completedness" ,128,2,0,0,0,0,0,0,NULL,&atx[81],NULL,0,&atx[82]} ,
  {442, "Completedness-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[393],0,&atx[83]} ,
  {0, "mol-class" ,128,3,0,0,0,0,0,0,NULL,&atx[83],NULL,0,&atx[84]} ,
  {443, "Molecule-class-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[402],0,&atx[85]} ,
  {0, "topology" ,128,4,0,0,0,0,0,0,NULL,&atx[85],NULL,0,&atx[86]} ,
  {444, "Topology-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[408],0,&atx[87]} ,
  {0, "strand" ,128,5,0,0,0,0,0,0,NULL,&atx[87],NULL,0,NULL} ,
  {445, "Strand-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[413],0,&atx[75]} ,
  {0, "pub" ,128,5,0,0,0,0,0,0,NULL,&atx[89],NULL,0,&atx[90]} ,
  {456, "Publication-field" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[419],0,&atx[91]} ,
  {0, "struc-comment-field" ,128,6,0,0,0,0,0,0,NULL,&atx[91],NULL,0,&atx[95]} ,
  {457, "Structured-comment-field" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[92],0,&atx[161]} ,
  {0, "database" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[93]} ,
  {0, "named" ,128,1,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[94]} ,
  {0, "field-name" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "misc" ,128,7,0,0,0,0,0,0,NULL,&atx[96],NULL,0,&atx[97]} ,
  {459, "Misc-field" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[441],0,&atx[98]} ,
  {0, "dblink" ,128,8,0,0,0,0,0,0,NULL,&atx[98],NULL,0,NULL} ,
  {460, "DBLink-field-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[445],0,&atx[165]} ,
  {0, "value" ,128,1,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[100]} ,
  {0, "existing-text" ,128,2,0,0,0,0,0,0,NULL,&atx[101],NULL,0,NULL} ,
  {488, "ExistingTextOption" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[451],0,&atx[4]} ,
  {0, "edit" ,128,1,0,0,0,0,0,0,NULL,&atx[103],NULL,0,&atx[112]} ,
  {490, "Edit-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[104],0,&atx[171]} ,
  {0, "edit" ,128,0,0,0,0,0,0,0,NULL,&atx[105],NULL,0,&atx[111]} ,
  {486, "Field-edit" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[106],0,&atx[115]} ,
  {0, "find-txt" ,128,0,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[107]} ,
  {0, "repl-txt" ,128,1,0,1,0,0,0,0,NULL,&atx[31],NULL,0,&atx[108]} ,
  {0, "location" ,128,2,0,0,1,0,0,0,&avnx[464],&atx[109],NULL,0,&atx[110]} ,
  {485, "Field-edit-location" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[465],0,&atx[105]} ,
  {0, "case-insensitive" ,128,3,0,0,1,0,0,0,&avnx[468],&atx[35],NULL,0,NULL} ,
  {0, "field" ,128,1,0,0,0,0,0,0,NULL,&atx[6],NULL,0,NULL} ,
  {0, "convert" ,128,2,0,0,0,0,0,0,NULL,&atx[113],NULL,0,&atx[173]} ,
  {494, "Convert-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[114],0,&atx[174]} ,
  {0, "fields" ,128,0,0,0,0,0,0,0,NULL,&atx[115],NULL,0,&atx[168]} ,
  {487, "Field-pair-type" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[116],0,&atx[101]} ,
  {0, "source-qual" ,128,0,0,0,0,0,0,0,NULL,&atx[117],NULL,0,&atx[120]} ,
  {431, "Source-qual-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[118],0,&atx[13]} ,
  {0, "field-from" ,128,0,0,0,0,0,0,0,NULL,&atx[10],NULL,0,&atx[119]} ,
  {0, "field-to" ,128,1,0,0,0,0,0,0,NULL,&atx[10],NULL,0,NULL} ,
  {0, "feature-field" ,128,1,0,0,0,0,0,0,NULL,&atx[121],NULL,0,&atx[125]} ,
  {425, "Feature-field-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[122],0,&atx[60]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[123]} ,
  {0, "field-from" ,128,1,0,0,0,0,0,0,NULL,&atx[25],NULL,0,&atx[124]} ,
  {0, "field-to" ,128,2,0,0,0,0,0,0,NULL,&atx[25],NULL,0,NULL} ,
  {0, "rna-field" ,128,2,0,0,0,0,0,0,NULL,&atx[126],NULL,0,&atx[130]} ,
  {429, "Rna-qual-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[127],0,&atx[10]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[60],NULL,0,&atx[128]} ,
  {0, "field-from" ,128,1,0,0,0,0,0,0,NULL,&atx[71],NULL,0,&atx[129]} ,
  {0, "field-to" ,128,2,0,0,0,0,0,0,NULL,&atx[71],NULL,0,NULL} ,
  {0, "cds-gene-prot" ,128,3,0,0,0,0,0,0,NULL,&atx[131],NULL,0,&atx[134]} ,
  {439, "CDSGeneProt-field-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[132],0,&atx[77]} ,
  {0, "field-from" ,128,0,0,0,0,0,0,0,NULL,&atx[73],NULL,0,&atx[133]} ,
  {0, "field-to" ,128,1,0,0,0,0,0,0,NULL,&atx[73],NULL,0,NULL} ,
  {0, "molinfo-field" ,128,4,0,0,0,0,0,0,NULL,&atx[135],NULL,0,&atx[160]} ,
  {453, "Molinfo-field-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[136],0,&atx[513]} ,
  {0, "molecule" ,128,0,0,0,0,0,0,0,NULL,&atx[137],NULL,0,&atx[140]} ,
  {447, "Molinfo-molecule-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[138],0,&atx[141]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[77],NULL,0,&atx[139]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[77],NULL,0,NULL} ,
  {0, "technique" ,128,1,0,0,0,0,0,0,NULL,&atx[141],NULL,0,&atx[144]} ,
  {448, "Molinfo-technique-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[142],0,&atx[145]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[79],NULL,0,&atx[143]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[79],NULL,0,NULL} ,
  {0, "completedness" ,128,2,0,0,0,0,0,0,NULL,&atx[145],NULL,0,&atx[148]} ,
  {449, "Molinfo-completedness-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[146],0,&atx[149]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[81],NULL,0,&atx[147]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[81],NULL,0,NULL} ,
  {0, "mol-class" ,128,3,0,0,0,0,0,0,NULL,&atx[149],NULL,0,&atx[152]} ,
  {450, "Molinfo-mol-class-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[150],0,&atx[153]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[83],NULL,0,&atx[151]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[83],NULL,0,NULL} ,
  {0, "topology" ,128,4,0,0,0,0,0,0,NULL,&atx[153],NULL,0,&atx[156]} ,
  {451, "Molinfo-topology-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[154],0,&atx[157]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[85],NULL,0,&atx[155]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[85],NULL,0,NULL} ,
  {0, "strand" ,128,5,0,0,0,0,0,0,NULL,&atx[157],NULL,0,NULL} ,
  {452, "Molinfo-strand-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[158],0,&atx[135]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[87],NULL,0,&atx[159]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[87],NULL,0,NULL} ,
  {0, "struc-comment-field" ,128,5,0,0,0,0,0,0,NULL,&atx[161],NULL,0,&atx[164]} ,
  {458, "Structured-comment-field-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[162],0,&atx[96]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[91],NULL,0,&atx[163]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[91],NULL,0,NULL} ,
  {0, "dblink" ,128,6,0,0,0,0,0,0,NULL,&atx[165],NULL,0,NULL} ,
  {461, "DBLink-field-pair" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[166],0,&atx[285]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[98],NULL,0,&atx[167]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[98],NULL,0,NULL} ,
  {0, "strip-name" ,128,1,0,0,1,0,0,0,&avnx[469],&atx[35],NULL,0,&atx[169]} ,
  {0, "keep-original" ,128,2,0,0,1,0,0,0,&avnx[470],&atx[35],NULL,0,&atx[170]} ,
  {0, "capitalization" ,128,3,0,0,1,0,0,0,&avnx[471],&atx[171],NULL,0,&atx[172]} ,
  {491, "Cap-change" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[472],0,&atx[205]} ,
  {0, "existing-text" ,128,4,0,0,0,0,0,0,NULL,&atx[101],NULL,0,NULL} ,
  {0, "copy" ,128,3,0,0,0,0,0,0,NULL,&atx[174],NULL,0,&atx[177]} ,
  {495, "Copy-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[175],0,&atx[178]} ,
  {0, "fields" ,128,0,0,0,0,0,0,0,NULL,&atx[115],NULL,0,&atx[176]} ,
  {0, "existing-text" ,128,1,0,0,0,0,0,0,NULL,&atx[101],NULL,0,NULL} ,
  {0, "swap" ,128,4,0,0,0,0,0,0,NULL,&atx[178],NULL,0,&atx[180]} ,
  {496, "Swap-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[179],0,&atx[184]} ,
  {0, "fields" ,128,0,0,0,0,0,0,0,NULL,&atx[115],NULL,0,NULL} ,
  {0, "remove" ,128,5,0,0,0,0,0,0,NULL,&atx[181],NULL,0,&atx[183]} ,
  {498, "Remove-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[182],0,&atx[211]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[6],NULL,0,NULL} ,
  {0, "parse" ,128,6,0,0,0,0,0,0,NULL,&atx[184],NULL,0,&atx[210]} ,
  {497, "AECRParse-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[185],0,&atx[181]} ,
  {0, "portion" ,128,0,0,0,0,0,0,0,NULL,&atx[186],NULL,0,&atx[198]} ,
  {484, "Text-portion" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[187],0,&atx[109]} ,
  {0, "left-marker" ,128,0,0,1,0,0,0,0,NULL,&atx[188],NULL,0,&atx[192]} ,
  {483, "Text-marker" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[189],0,&atx[186]} ,
  {0, "free-text" ,128,0,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[190]} ,
  {0, "digits" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[191]} ,
  {0, "letters" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "include-left" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[193]} ,
  {0, "right-marker" ,128,2,0,1,0,0,0,0,NULL,&atx[188],NULL,0,&atx[194]} ,
  {0, "include-right" ,128,3,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[195]} ,
  {0, "inside" ,128,4,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[196]} ,
  {0, "case-sensitive" ,128,5,0,0,1,0,0,0,&avnx[480],&atx[35],NULL,0,&atx[197]} ,
  {0, "whole-word" ,128,6,0,0,1,0,0,0,&avnx[481],&atx[35],NULL,0,NULL} ,
  {0, "fields" ,128,1,0,0,0,0,0,0,NULL,&atx[115],NULL,0,&atx[199]} ,
  {0, "remove-from-parsed" ,128,2,0,0,1,0,0,0,&avnx[482],&atx[35],NULL,0,&atx[200]} ,
  {0, "remove-left" ,128,3,0,0,1,0,0,0,&avnx[483],&atx[35],NULL,0,&atx[201]} ,
  {0, "remove-right" ,128,4,0,0,1,0,0,0,&avnx[484],&atx[35],NULL,0,&atx[202]} ,
  {0, "transform" ,128,5,0,1,0,0,0,0,NULL,&atx[203],NULL,0,&atx[209]} ,
  {493, "Text-transform-set" ,1,0,0,0,0,0,0,0,NULL,&atx[45],&atx[204],0,&atx[113]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[205],NULL,0,NULL} ,
  {492, "Text-transform" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[206],0,&atx[203]} ,
  {0, "edit" ,128,0,0,0,0,0,0,0,NULL,&atx[105],NULL,0,&atx[207]} ,
  {0, "caps" ,128,1,0,0,0,0,0,0,NULL,&atx[171],NULL,0,&atx[208]} ,
  {0, "remove" ,128,2,0,0,0,0,0,0,NULL,&atx[186],NULL,0,NULL} ,
  {0, "existing-text" ,128,6,0,0,0,0,0,0,NULL,&atx[101],NULL,0,NULL} ,
  {0, "remove-outside" ,128,7,0,0,0,0,0,0,NULL,&atx[211],NULL,0,NULL} ,
  {499, "Remove-outside-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[212],0,&atx[2]} ,
  {0, "portion" ,128,0,0,0,0,0,0,0,NULL,&atx[186],NULL,0,&atx[213]} ,
  {0, "field" ,128,1,0,0,0,0,0,0,NULL,&atx[6],NULL,0,&atx[214]} ,
  {0, "remove-if-not-found" ,128,2,0,0,1,0,0,0,&avnx[485],&atx[35],NULL,0,NULL} ,
  {0, "also-change-mrna" ,128,1,0,0,1,0,0,0,&avnx[486],&atx[35],NULL,0,&atx[216]} ,
  {0, "constraint" ,128,2,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {482, "Constraint-choice-set" ,1,0,0,0,0,0,0,0,NULL,&atx[45],&atx[218],0,&atx[188]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[219],NULL,0,NULL} ,
  {481, "Constraint-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[220],0,&atx[217]} ,
  {0, "string" ,128,0,0,0,0,0,0,0,NULL,&atx[29],NULL,0,&atx[221]} ,
  {0, "location" ,128,1,0,0,0,0,0,0,NULL,&atx[222],NULL,0,&atx[238]} ,
  {415, "Location-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[223],0,&atx[248]} ,
  {0, "strand" ,128,0,0,0,1,0,0,0,&avnx[487],&atx[224],NULL,0,&atx[225]} ,
  {410, "Strand-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[488],0,&atx[226]} ,
  {0, "seq-type" ,128,1,0,0,1,0,0,0,&avnx[491],&atx[226],NULL,0,&atx[227]} ,
  {411, "Seqtype-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[492],0,&atx[228]} ,
  {0, "partial5" ,128,2,0,0,1,0,0,0,&avnx[495],&atx[228],NULL,0,&atx[229]} ,
  {412, "Partial-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[496],0,&atx[231]} ,
  {0, "partial3" ,128,3,0,0,1,0,0,0,&avnx[499],&atx[228],NULL,0,&atx[230]} ,
  {0, "location-type" ,128,4,0,0,1,0,0,0,&avnx[500],&atx[231],NULL,0,&atx[232]} ,
  {413, "Location-type-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[501],0,&atx[233]} ,
  {0, "end5" ,128,5,0,1,0,0,0,0,NULL,&atx[233],NULL,0,&atx[237]} ,
  {414, "Location-pos-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[234],0,&atx[222]} ,
  {0, "dist-from-end" ,128,0,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[235]} ,
  {0, "max-dist-from-end" ,128,1,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[236]} ,
  {0, "min-dist-from-end" ,128,2,0,0,0,0,0,0,NULL,&atx[17],NULL,0,NULL} ,
  {0, "end3" ,128,6,0,1,0,0,0,0,NULL,&atx[233],NULL,0,NULL} ,
  {0, "field" ,128,2,0,0,0,0,0,0,NULL,&atx[239],NULL,0,&atx[242]} ,
  {472, "Field-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[240],0,&atx[6]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[6],NULL,0,&atx[241]} ,
  {0, "string-constraint" ,128,1,0,0,0,0,0,0,NULL,&atx[29],NULL,0,NULL} ,
  {0, "source" ,128,3,0,0,0,0,0,0,NULL,&atx[243],NULL,0,&atx[249]} ,
  {467, "Source-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[244],0,&atx[259]} ,
  {0, "field1" ,128,0,0,1,0,0,0,0,NULL,&atx[8],NULL,0,&atx[245]} ,
  {0, "field2" ,128,1,0,1,0,0,0,0,NULL,&atx[8],NULL,0,&atx[246]} ,
  {0, "constraint" ,128,2,0,1,0,0,0,0,NULL,&atx[29],NULL,0,&atx[247]} ,
  {0, "type-constraint" ,128,3,0,1,0,0,0,0,NULL,&atx[248],NULL,0,NULL} ,
  {416, "Object-type-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[505],0,&atx[23]} ,
  {0, "cdsgeneprot-qual" ,128,4,0,0,0,0,0,0,NULL,&atx[250],NULL,0,&atx[256]} ,
  {471, "CDSGeneProt-qual-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[251],0,&atx[239]} ,
  {0, "field1" ,128,0,0,1,0,0,0,0,NULL,&atx[252],NULL,0,&atx[254]} ,
  {470, "CDSGeneProt-constraint-field" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[253],0,&atx[250]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[73],NULL,0,NULL} ,
  {0, "field2" ,128,1,0,1,0,0,0,0,NULL,&atx[252],NULL,0,&atx[255]} ,
  {0, "constraint" ,128,2,0,1,0,0,0,0,NULL,&atx[29],NULL,0,NULL} ,
  {0, "cdsgeneprot-pseudo" ,128,5,0,0,0,0,0,0,NULL,&atx[257],NULL,0,&atx[261]} ,
  {469, "CDSGeneProt-pseudo-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[258],0,&atx[252]} ,
  {0, "feature" ,128,0,0,0,0,0,0,0,NULL,&atx[259],NULL,0,&atx[260]} ,
  {468, "CDSGeneProt-feature-type-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[508],0,&atx[257]} ,
  {0, "is-pseudo" ,128,1,0,0,1,0,0,0,&avnx[514],&atx[35],NULL,0,NULL} ,
  {0, "sequence" ,128,6,0,0,0,0,0,0,NULL,&atx[262],NULL,0,&atx[282]} ,
  {478, "Sequence-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[263],0,&atx[312]} ,
  {0, "seqtype" ,128,0,0,1,0,0,0,0,NULL,&atx[264],NULL,0,&atx[271]} ,
  {475, "Sequence-constraint-mol-type-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[265],0,&atx[274]} ,
  {0, "any" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[266]} ,
  {0, "nucleotide" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[267]} ,
  {0, "dna" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[268]} ,
  {0, "rna" ,128,3,0,0,0,0,0,0,NULL,&atx[269],NULL,0,&atx[270]} ,
  {474, "Sequence-constraint-rnamol" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[515],0,&atx[264]} ,
  {0, "protein" ,128,4,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "id" ,128,1,0,1,0,0,0,0,NULL,&atx[29],NULL,0,&atx[272]} ,
  {0, "feature" ,128,2,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[273]} ,
  {0, "num-type-features" ,128,3,0,1,0,0,0,0,NULL,&atx[274],NULL,0,&atx[278]} ,
  {476, "Quantity-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[275],0,&atx[281]} ,
  {0, "equals" ,128,0,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[276]} ,
  {0, "greater-than" ,128,1,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[277]} ,
  {0, "less-than" ,128,2,0,0,0,0,0,0,NULL,&atx[17],NULL,0,NULL} ,
  {0, "num-features" ,128,4,0,1,0,0,0,0,NULL,&atx[274],NULL,0,&atx[279]} ,
  {0, "length" ,128,5,0,1,0,0,0,0,NULL,&atx[274],NULL,0,&atx[280]} ,
  {0, "strandedness" ,128,6,0,0,1,0,0,0,&avnx[526],&atx[281],NULL,0,NULL} ,
  {477, "Feature-strandedness-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[527],0,&atx[262]} ,
  {0, "pub" ,128,7,0,0,0,0,0,0,NULL,&atx[283],NULL,0,&atx[300]} ,
  {466, "Publication-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[284],0,&atx[243]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[285],NULL,0,&atx[286]} ,
  {462, "Pub-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[534],0,&atx[287]} ,
  {0, "field" ,128,1,0,1,0,0,0,0,NULL,&atx[287],NULL,0,&atx[290]} ,
  {463, "Pub-field-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[288],0,&atx[294]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[89],NULL,0,&atx[289]} ,
  {0, "constraint" ,128,1,0,0,0,0,0,0,NULL,&atx[29],NULL,0,NULL} ,
  {0, "special-field" ,128,2,0,1,0,0,0,0,NULL,&atx[291],NULL,0,NULL} ,
  {465, "Pub-field-special-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[292],0,&atx[283]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[89],NULL,0,&atx[293]} ,
  {0, "constraint" ,128,1,0,0,0,0,0,0,NULL,&atx[294],NULL,0,NULL} ,
  {464, "Pub-field-special-constraint-type" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[295],0,&atx[291]} ,
  {0, "is-present" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[296]} ,
  {0, "is-not-present" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[297]} ,
  {0, "is-all-caps" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[298]} ,
  {0, "is-all-lower" ,128,3,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[299]} ,
  {0, "is-all-punct" ,128,4,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "molinfo" ,128,8,0,0,0,0,0,0,NULL,&atx[301],NULL,0,&atx[304]} ,
  {455, "Molinfo-field-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[302],0,&atx[89]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[75],NULL,0,&atx[303]} ,
  {0, "is-not" ,128,1,0,0,1,0,0,0,&avnx[539],&atx[35],NULL,0,NULL} ,
  {0, "field-missing" ,128,9,0,0,0,0,0,0,NULL,&atx[6],NULL,0,&atx[305]} ,
  {0, "translation" ,128,10,0,0,0,0,0,0,NULL,&atx[306],NULL,0,NULL} ,
  {480, "Translation-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[307],0,&atx[219]} ,
  {0, "actual-strings" ,128,0,0,0,0,0,0,0,NULL,&atx[308],NULL,0,&atx[310]} ,
  {409, "String-constraint-set" ,1,0,0,0,0,0,0,0,NULL,&atx[45],&atx[309],0,&atx[224]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[29],NULL,0,NULL} ,
  {0, "transl-strings" ,128,1,0,0,0,0,0,0,NULL,&atx[308],NULL,0,&atx[311]} ,
  {0, "internal-stops" ,128,2,0,0,1,0,0,0,&avnx[540],&atx[312],NULL,0,&atx[313]} ,
  {479, "Match-type-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[541],0,&atx[306]} ,
  {0, "num-mismatches" ,128,3,0,1,0,0,0,0,NULL,&atx[274],NULL,0,NULL} ,
  {402, "Parse-action" ,1,0,0,0,0,1,0,0,NULL,&atx[48],&atx[315],0,&atx[354]} ,
  {0, "portion" ,128,0,0,0,0,0,0,0,NULL,&atx[186],NULL,0,&atx[316]} ,
  {0, "src" ,128,1,0,0,0,0,0,0,NULL,&atx[317],NULL,0,&atx[337]} ,
  {504, "Parse-src" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[318],0,&atx[341]} ,
  {0, "defline" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[319]} ,
  {0, "flatfile" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[320]} ,
  {0, "local-id" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[321]} ,
  {0, "org" ,128,3,0,0,0,0,0,0,NULL,&atx[322],NULL,0,&atx[328]} ,
  {502, "Parse-src-org" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[323],0,&atx[333]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[324],NULL,0,&atx[327]} ,
  {501, "Parse-src-org-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[325],0,&atx[322]} ,
  {0, "source-qual" ,128,0,0,0,0,0,0,0,NULL,&atx[10],NULL,0,&atx[326]} ,
  {0, "taxname-after-binomial" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "type" ,128,1,0,0,1,0,0,0,&avnx[544],&atx[248],NULL,0,NULL} ,
  {0, "comment" ,128,4,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[329]} ,
  {0, "bankit-comment" ,128,5,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[330]} ,
  {0, "structured-comment" ,128,6,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[331]} ,
  {0, "file-id" ,128,7,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[332]} ,
  {0, "general-id" ,128,8,0,0,0,0,0,0,NULL,&atx[333],NULL,0,NULL} ,
  {503, "Parse-src-general-id" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[334],0,&atx[317]} ,
  {0, "whole-text" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[335]} ,
  {0, "db" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[336]} ,
  {0, "tag" ,128,2,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {0, "dest" ,128,2,0,0,0,0,0,0,NULL,&atx[338],NULL,0,&atx[350]} ,
  {506, "Parse-dest" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[339],0,&atx[368]} ,
  {0, "defline" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[340]} ,
  {0, "org" ,128,1,0,0,0,0,0,0,NULL,&atx[341],NULL,0,&atx[344]} ,
  {505, "Parse-dst-org" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[342],0,&atx[338]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[8],NULL,0,&atx[343]} ,
  {0, "type" ,128,1,0,0,1,0,0,0,&avnx[545],&atx[248],NULL,0,NULL} ,
  {0, "featqual" ,128,2,0,0,0,0,0,0,NULL,&atx[345],NULL,0,&atx[348]} ,
  {424, "Feature-field-legal" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[346],0,&atx[121]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[347]} ,
  {0, "field" ,128,1,0,0,0,0,0,0,NULL,&atx[27],NULL,0,NULL} ,
  {0, "comment-descriptor" ,128,3,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[349]} ,
  {0, "dbxref" ,128,4,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {0, "capitalization" ,128,3,0,0,1,0,0,0,&avnx[546],&atx[171],NULL,0,&atx[351]} ,
  {0, "remove-from-parsed" ,128,4,0,0,1,0,0,0,&avnx[547],&atx[35],NULL,0,&atx[352]} ,
  {0, "transform" ,128,5,0,1,0,0,0,0,NULL,&atx[203],NULL,0,&atx[353]} ,
  {0, "existing-text" ,128,6,0,0,0,0,0,0,NULL,&atx[101],NULL,0,NULL} ,
  {403, "Macro-action-list" ,1,0,0,0,0,1,0,0,NULL,&atx[45],&atx[355],0,&atx[646]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[356],NULL,0,NULL} ,
  {573, "Macro-action-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[357],0,&atx[650]} ,
  {0, "aecr" ,128,0,0,0,0,0,0,0,NULL,&atx[0],NULL,0,&atx[358]} ,
  {0, "parse" ,128,1,0,0,0,0,0,0,NULL,&atx[314],NULL,0,&atx[359]} ,
  {0, "add-feature" ,128,2,0,0,0,0,0,0,NULL,&atx[360],NULL,0,&atx[403]} ,
  {511, "Apply-feature-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[361],0,&atx[404]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[362]} ,
  {0, "partial5" ,128,1,0,0,1,0,0,0,&avnx[548],&atx[35],NULL,0,&atx[363]} ,
  {0, "partial3" ,128,2,0,0,1,0,0,0,&avnx[549],&atx[35],NULL,0,&atx[364]} ,
  {0, "plus-strand" ,128,3,0,0,1,0,0,0,&avnx[550],&atx[35],NULL,0,&atx[365]} ,
  {0, "location" ,128,4,0,0,0,0,0,0,NULL,&atx[366],NULL,0,&atx[373]} ,
  {508, "Location-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[367],0,&atx[376]} ,
  {0, "interval" ,128,0,0,0,0,0,0,0,NULL,&atx[368],NULL,0,&atx[371]} ,
  {507, "Location-interval" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[369],0,&atx[366]} ,
  {0, "from" ,128,0,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[370]} ,
  {0, "to" ,128,1,0,0,0,0,0,0,NULL,&atx[17],NULL,0,NULL} ,
  {0, "whole-sequence" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[372]} ,
  {0, "point" ,128,2,0,0,0,0,0,0,NULL,&atx[17],NULL,0,NULL} ,
  {0, "seq-list" ,128,5,0,0,0,0,0,0,NULL,&atx[374],NULL,0,&atx[379]} ,
  {510, "Sequence-list-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[375],0,&atx[360]} ,
  {0, "list" ,128,0,0,0,0,0,0,0,NULL,&atx[376],NULL,0,&atx[378]} ,
  {509, "Sequence-list" ,1,0,0,0,0,0,0,0,NULL,&atx[45],&atx[377],0,&atx[374]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {0, "all" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "add-redundant" ,128,6,0,0,1,0,0,0,&avnx[551],&atx[35],NULL,0,&atx[380]} ,
  {0, "add-mrna" ,128,7,0,0,1,0,0,0,&avnx[552],&atx[35],NULL,0,&atx[381]} ,
  {0, "apply-to-parts" ,128,8,0,0,1,0,0,0,&avnx[553],&atx[35],NULL,0,&atx[382]} ,
  {0, "only-seg-num" ,128,9,0,0,1,0,0,0,&avnx[554],&atx[17],NULL,0,&atx[383]} ,
  {0, "fields" ,128,10,0,1,0,0,0,0,NULL,&atx[384],NULL,0,&atx[391]} ,
  {421, "Feat-qual-legal-set" ,1,0,0,0,0,0,0,0,NULL,&atx[45],&atx[385],0,&atx[25]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[386],NULL,0,NULL} ,
  {420, "Feat-qual-legal-val-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[387],0,&atx[384]} ,
  {0, "qual" ,128,0,0,0,0,0,0,0,NULL,&atx[388],NULL,0,NULL} ,
  {419, "Feat-qual-legal-val" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[389],0,&atx[386]} ,
  {0, "qual" ,128,0,0,0,0,0,0,0,NULL,&atx[27],NULL,0,&atx[390]} ,
  {0, "val" ,128,1,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {0, "src-fields" ,128,11,0,1,0,0,0,0,NULL,&atx[392],NULL,0,NULL} ,
  {437, "Source-qual-val-set" ,1,0,0,0,0,0,0,0,NULL,&atx[45],&atx[393],0,&atx[73]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[394],NULL,0,NULL} ,
  {436, "Source-qual-val-choice" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[395],0,&atx[392]} ,
  {0, "textqual" ,128,0,0,0,0,0,0,0,NULL,&atx[396],NULL,0,&atx[399]} ,
  {435, "Source-qual-text-val" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[397],0,&atx[394]} ,
  {0, "srcqual" ,128,0,0,0,0,0,0,0,NULL,&atx[10],NULL,0,&atx[398]} ,
  {0, "val" ,128,1,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {0, "location" ,128,1,0,0,0,0,0,0,NULL,&atx[13],NULL,0,&atx[400]} ,
  {0, "origin" ,128,2,0,0,0,0,0,0,NULL,&atx[15],NULL,0,&atx[401]} ,
  {0, "gcode" ,128,3,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[402]} ,
  {0, "mgcode" ,128,4,0,0,0,0,0,0,NULL,&atx[17],NULL,0,NULL} ,
  {0, "remove-feature" ,128,3,0,0,0,0,0,0,NULL,&atx[404],NULL,0,&atx[407]} ,
  {512, "Remove-feature-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[405],0,&atx[414]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[406]} ,
  {0, "constraint" ,128,1,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "convert-feature" ,128,4,0,0,0,0,0,0,NULL,&atx[408],NULL,0,&atx[431]} ,
  {519, "Convert-feature-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[409],0,&atx[439]} ,
  {0, "type-from" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[410]} ,
  {0, "type-to" ,128,1,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[411]} ,
  {0, "src-options" ,128,2,0,1,0,0,0,0,NULL,&atx[412],NULL,0,&atx[418]} ,
  {514, "Convert-feature-src-options" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[413],0,&atx[421]} ,
  {0, "cds" ,128,0,0,0,0,0,0,0,NULL,&atx[414],NULL,0,NULL} ,
  {513, "Convert-from-CDS-options" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[415],0,&atx[412]} ,
  {0, "remove-mRNA" ,128,0,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[416]} ,
  {0, "remove-gene" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[417]} ,
  {0, "remove-transcript-id" ,128,2,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "dst-options" ,128,3,0,1,0,0,0,0,NULL,&atx[419],NULL,0,&atx[429]} ,
  {518, "Convert-feature-dst-options" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[420],0,&atx[408]} ,
  {0, "bond" ,128,0,0,0,0,0,0,0,NULL,&atx[421],NULL,0,&atx[422]} ,
  {515, "Bond-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[555],0,&atx[423]} ,
  {0, "site" ,128,1,0,0,0,0,0,0,NULL,&atx[423],NULL,0,&atx[424]} ,
  {516, "Site-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[560],0,&atx[425]} ,
  {0, "region" ,128,2,0,0,0,0,0,0,NULL,&atx[425],NULL,0,&atx[427]} ,
  {517, "Region-type" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[426],0,&atx[419]} ,
  {0, "create-nucleotide" ,128,0,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "ncrna-class" ,128,3,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[428]} ,
  {0, "remove-original" ,128,4,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "leave-original" ,128,4,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[430]} ,
  {0, "src-feat-constraint" ,128,5,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "edit-location" ,128,5,0,0,0,0,0,0,NULL,&atx[432],NULL,0,&atx[476]} ,
  {535, "Edit-feature-location-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[433],0,&atx[511]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[434]} ,
  {0, "action" ,128,1,0,0,0,0,0,0,NULL,&atx[435],NULL,0,&atx[473]} ,
  {534, "Location-edit-type" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[436],0,&atx[432]} ,
  {0, "strand" ,128,0,0,0,0,0,0,0,NULL,&atx[437],NULL,0,&atx[442]} ,
  {522, "Edit-location-strand" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[438],0,&atx[445]} ,
  {0, "strand-from" ,128,0,0,0,0,0,0,0,NULL,&atx[439],NULL,0,&atx[440]} ,
  {520, "Feature-location-strand-from" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[587],0,&atx[441]} ,
  {0, "strand-to" ,128,1,0,0,0,0,0,0,NULL,&atx[441],NULL,0,NULL} ,
  {521, "Feature-location-strand-to" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[592],0,&atx[437]} ,
  {0, "set-5-partial" ,128,1,0,0,0,0,0,0,NULL,&atx[443],NULL,0,&atx[447]} ,
  {524, "Partial-5-set-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[444],0,&atx[448]} ,
  {0, "constraint" ,128,0,0,0,0,0,0,0,NULL,&atx[445],NULL,0,&atx[446]} ,
  {523, "Partial-5-set-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[597],0,&atx[443]} ,
  {0, "extend" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "clear-5-partial" ,128,2,0,0,0,0,0,0,NULL,&atx[448],NULL,0,&atx[449]} ,
  {525, "Partial-5-clear-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[601],0,&atx[452]} ,
  {0, "set-3-partial" ,128,3,0,0,0,0,0,0,NULL,&atx[450],NULL,0,&atx[454]} ,
  {527, "Partial-3-set-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[451],0,&atx[455]} ,
  {0, "constraint" ,128,0,0,0,0,0,0,0,NULL,&atx[452],NULL,0,&atx[453]} ,
  {526, "Partial-3-set-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[604],0,&atx[450]} ,
  {0, "extend" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "clear-3-partial" ,128,4,0,0,0,0,0,0,NULL,&atx[455],NULL,0,&atx[456]} ,
  {528, "Partial-3-clear-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[607],0,&atx[459]} ,
  {0, "set-both-partial" ,128,5,0,0,0,0,0,0,NULL,&atx[457],NULL,0,&atx[461]} ,
  {530, "Partial-both-set-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[458],0,&atx[462]} ,
  {0, "constraint" ,128,0,0,0,0,0,0,0,NULL,&atx[459],NULL,0,&atx[460]} ,
  {529, "Partial-both-set-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[610],0,&atx[457]} ,
  {0, "extend" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "clear-both-partial" ,128,6,0,0,0,0,0,0,NULL,&atx[462],NULL,0,&atx[463]} ,
  {531, "Partial-both-clear-constraint" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[612],0,&atx[464]} ,
  {0, "convert" ,128,7,0,0,0,0,0,0,NULL,&atx[464],NULL,0,&atx[465]} ,
  {532, "Convert-location-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[614],0,&atx[468]} ,
  {0, "extend-5" ,128,8,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[466]} ,
  {0, "extend-3" ,128,9,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[467]} ,
  {0, "extend-5-to-feat" ,128,10,0,0,0,0,0,0,NULL,&atx[468],NULL,0,&atx[472]} ,
  {533, "Extend-to-feature" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[469],0,&atx[435]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[470]} ,
  {0, "include-feat" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[471]} ,
  {0, "distance" ,128,2,0,1,0,0,0,0,NULL,&atx[274],NULL,0,NULL} ,
  {0, "extend-3-to-feat" ,128,11,0,0,0,0,0,0,NULL,&atx[468],NULL,0,NULL} ,
  {0, "retranslate-cds" ,128,2,0,1,0,0,0,0,NULL,&atx[35],NULL,0,&atx[474]} ,
  {0, "also-edit-gene" ,128,3,0,1,0,0,0,0,NULL,&atx[35],NULL,0,&atx[475]} ,
  {0, "constraint" ,128,4,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "remove-descriptor" ,128,6,0,0,0,0,0,0,NULL,&atx[477],NULL,0,&atx[481]} ,
  {538, "Remove-descriptor-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[478],0,&atx[486]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[479],NULL,0,&atx[480]} ,
  {537, "Descriptor-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[617],0,&atx[477]} ,
  {0, "constraint" ,128,1,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "autodef" ,128,7,0,0,0,0,0,0,NULL,&atx[482],NULL,0,&atx[489]} ,
  {541, "Autodef-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[483],0,&atx[496]} ,
  {0, "modifiers" ,128,0,0,1,0,0,0,0,NULL,&atx[45],&atx[484],0,&atx[485]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[10],NULL,0,NULL} ,
  {0, "clause-list-type" ,128,1,0,0,0,0,0,0,NULL,&atx[486],NULL,0,&atx[487]} ,
  {539, "Autodef-list-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[629],0,&atx[488]} ,
  {0, "misc-feat-parse-rule" ,128,2,0,0,1,0,0,0,&avnx[633],&atx[488],NULL,0,NULL} ,
  {540, "Autodef-misc-feat-parse-rule" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[634],0,&atx[482]} ,
  {0, "removesets" ,128,8,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[490]} ,
  {0, "trim-junk-from-primer-seq" ,128,9,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[491]} ,
  {0, "trim-stop-from-complete-cds" ,128,10,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[492]} ,
  {0, "fix-usa-and-states" ,128,11,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[493]} ,
  {0, "synchronize-cds-partials" ,128,12,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[494]} ,
  {0, "adjust-for-consensus-splice" ,128,13,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[495]} ,
  {0, "fix-pub-caps" ,128,14,0,0,0,0,0,0,NULL,&atx[496],NULL,0,&atx[503]} ,
  {542, "Fix-pub-caps-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[497],0,&atx[508]} ,
  {0, "title" ,128,0,0,1,0,0,0,0,NULL,&atx[35],NULL,0,&atx[498]} ,
  {0, "authors" ,128,1,0,1,0,0,0,0,NULL,&atx[35],NULL,0,&atx[499]} ,
  {0, "affiliation" ,128,2,0,1,0,0,0,0,NULL,&atx[35],NULL,0,&atx[500]} ,
  {0, "affil-country" ,128,3,0,1,0,0,0,0,NULL,&atx[35],NULL,0,&atx[501]} ,
  {0, "punct-only" ,128,4,0,0,1,0,0,0,&avnx[636],&atx[35],NULL,0,&atx[502]} ,
  {0, "constraint" ,128,5,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "remove-seg-gaps" ,128,15,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[504]} ,
  {0, "sort-fields" ,128,16,0,0,0,0,0,0,NULL,&atx[505],NULL,0,&atx[510]} ,
  {544, "Sort-fields-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[506],0,&atx[524]} ,
  {0, "field" ,128,0,0,0,0,0,0,0,NULL,&atx[6],NULL,0,&atx[507]} ,
  {0, "order" ,128,1,0,0,0,0,0,0,NULL,&atx[508],NULL,0,&atx[509]} ,
  {543, "Sort-order" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[637],0,&atx[505]} ,
  {0, "constraint" ,128,2,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "apply-molinfo-block" ,128,17,0,0,0,0,0,0,NULL,&atx[511],NULL,0,&atx[517]} ,
  {536, "Molinfo-block" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[512],0,&atx[479]} ,
  {0, "to-list" ,128,0,0,0,0,0,0,0,NULL,&atx[513],NULL,0,&atx[515]} ,
  {454, "Molinfo-field-list" ,1,0,0,0,0,0,0,0,NULL,&atx[45],&atx[514],0,&atx[301]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[75],NULL,0,NULL} ,
  {0, "from-list" ,128,1,0,1,0,0,0,0,NULL,&atx[513],NULL,0,&atx[516]} ,
  {0, "constraint" ,128,2,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "fix-caps" ,128,18,0,0,0,0,0,0,NULL,&atx[518],NULL,0,&atx[526]} ,
  {546, "Fix-caps-action" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[519],0,&atx[527]} ,
  {0, "pub" ,128,0,0,0,0,0,0,0,NULL,&atx[496],NULL,0,&atx[520]} ,
  {0, "src-country" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[521]} ,
  {0, "mouse-strain" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[522]} ,
  {0, "src-qual" ,128,3,0,0,0,0,0,0,NULL,&atx[10],NULL,0,&atx[523]} ,
  {0, "author" ,128,4,0,0,0,0,0,0,NULL,&atx[524],NULL,0,NULL} ,
  {545, "Fix-author-caps" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[525],0,&atx[518]} ,
  {0, "last-name-only" ,128,0,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "fix-format" ,128,19,0,0,0,0,0,0,NULL,&atx[527],NULL,0,&atx[532]} ,
  {547, "Fix-format-action" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[528],0,&atx[534]} ,
  {0, "collection-date" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[529]} ,
  {0, "lat-lon" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[530]} ,
  {0, "primers" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[531]} ,
  {0, "protein-name" ,128,3,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "fix-spell" ,128,20,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[533]} ,
  {0, "remove-duplicate-features" ,128,21,0,0,0,0,0,0,NULL,&atx[534],NULL,0,&atx[540]} ,
  {548, "Remove-duplicate-feature-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[535],0,&atx[549]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[536]} ,
  {0, "ignore-partials" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[537]} ,
  {0, "case-sensitive" ,128,2,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[538]} ,
  {0, "remove-proteins" ,128,3,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[539]} ,
  {0, "rd-constraint" ,128,4,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "remove-lineage-notes" ,128,22,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[541]} ,
  {0, "remove-xrefs" ,128,23,0,0,0,0,0,0,NULL,&atx[542],NULL,0,&atx[553]} ,
  {553, "Remove-xrefs-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[543],0,&atx[554]} ,
  {0, "xref-type" ,128,0,0,0,0,0,0,0,NULL,&atx[544],NULL,0,&atx[552]} ,
  {552, "Xref-type" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[545],0,&atx[542]} ,
  {0, "gene" ,128,0,0,0,0,0,0,0,NULL,&atx[546],NULL,0,NULL} ,
  {551, "Gene-xref-type" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[547],0,&atx[544]} ,
  {0, "feature" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[548]} ,
  {0, "suppression" ,128,1,0,0,0,0,0,0,NULL,&atx[549],NULL,0,&atx[550]} ,
  {549, "Gene-xref-suppression-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[640],0,&atx[551]} ,
  {0, "necessary" ,128,2,0,0,0,0,0,0,NULL,&atx[551],NULL,0,NULL} ,
  {550, "Gene-xref-necessary-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[643],0,&atx[546]} ,
  {0, "constraint" ,128,1,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "make-gene-xrefs" ,128,24,0,0,0,0,0,0,NULL,&atx[554],NULL,0,&atx[557]} ,
  {554, "Make-gene-xref-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[555],0,&atx[561]} ,
  {0, "feature" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[556]} ,
  {0, "constraint" ,128,1,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "make-bold-xrefs" ,128,25,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[558]} ,
  {0, "fix-author" ,128,26,0,0,0,0,0,0,NULL,&atx[559],NULL,0,&atx[563]} ,
  {556, "Author-fix-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[560],0,&atx[564]} ,
  {0, "fix-type" ,128,0,0,0,0,0,0,0,NULL,&atx[561],NULL,0,&atx[562]} ,
  {555, "Author-fix-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[646],0,&atx[559]} ,
  {0, "constraint" ,128,1,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "update-sequences" ,128,27,0,0,0,0,0,0,NULL,&atx[564],NULL,0,&atx[567]} ,
  {557, "Update-sequences-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[565],0,&atx[572]} ,
  {0, "filename" ,128,0,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[566]} ,
  {0, "add-cit-subs" ,128,1,0,0,1,0,0,0,&avnx[649],&atx[35],NULL,0,NULL} ,
  {0, "add-trans-splicing" ,128,28,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[568]} ,
  {0, "remove-invalid-ecnumbers" ,128,29,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[569]} ,
  {0, "create-tsa-ids" ,128,30,0,0,0,0,0,0,NULL,&atx[570],NULL,0,&atx[577]} ,
  {559, "Create-TSA-ids-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[571],0,&atx[578]} ,
  {0, "src" ,128,0,0,0,0,0,0,0,NULL,&atx[572],NULL,0,&atx[575]} ,
  {558, "Create-TSA-ids-src" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[573],0,&atx[570]} ,
  {0, "local-id" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[574]} ,
  {0, "defline" ,128,1,0,0,0,0,0,0,NULL,&atx[186],NULL,0,NULL} ,
  {0, "suffix" ,128,1,0,1,0,0,0,0,NULL,&atx[31],NULL,0,&atx[576]} ,
  {0, "id-text-portion" ,128,2,0,1,0,0,0,0,NULL,&atx[186],NULL,0,NULL} ,
  {0, "perform-autofix" ,128,31,0,0,0,0,0,0,NULL,&atx[578],NULL,0,&atx[580]} ,
  {560, "Autofix-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[579],0,&atx[581]} ,
  {0, "test-name" ,128,0,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {0, "fix-sets" ,128,32,0,0,0,0,0,0,NULL,&atx[581],NULL,0,&atx[585]} ,
  {561, "Fix-sets-action" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[582],0,&atx[591]} ,
  {0, "remove-single-item-set" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[583]} ,
  {0, "renormalize-nuc-prot-sets" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[584]} ,
  {0, "fix-pop-to-phy" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "apply-table" ,128,33,0,0,0,0,0,0,NULL,&atx[586],NULL,0,&atx[607]} ,
  {565, "Apply-table-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[587],0,&atx[614]} ,
  {0, "filename" ,128,0,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[588]} ,
  {0, "match-type" ,128,1,0,0,0,0,0,0,NULL,&atx[589],NULL,0,&atx[602]} ,
  {563, "Table-match" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[590],0,&atx[603]} ,
  {0, "match-type" ,128,0,0,0,0,0,0,0,NULL,&atx[591],NULL,0,&atx[601]} ,
  {562, "Table-match-type" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[592],0,&atx[589]} ,
  {0, "feature-id" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[593]} ,
  {0, "gene-locus-tag" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[594]} ,
  {0, "protein-id" ,128,2,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[595]} ,
  {0, "dbxref" ,128,3,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[596]} ,
  {0, "nuc-id" ,128,4,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[597]} ,
  {0, "src-qual" ,128,5,0,0,0,0,0,0,NULL,&atx[8],NULL,0,&atx[598]} ,
  {0, "protein-name" ,128,6,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[599]} ,
  {0, "bioproject" ,128,7,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[600]} ,
  {0, "any" ,128,8,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "match-location" ,128,1,0,0,1,0,0,0,&avnx[650],&atx[33],NULL,0,NULL} ,
  {0, "in-memory-table" ,128,2,0,1,0,0,0,0,NULL,&atx[603],NULL,0,&atx[605]} ,
  {564, "Apply-table-extra-data" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[604],0,&atx[586]} ,
  {0, "table" ,128,0,0,0,0,0,0,0,NULL,&atx[62],NULL,0,NULL} ,
  {0, "also-change-mrna" ,128,3,0,0,1,0,0,0,&avnx[651],&atx[35],NULL,0,&atx[606]} ,
  {0, "skip-blanks" ,128,4,0,0,1,0,0,0,&avnx[652],&atx[35],NULL,0,NULL} ,
  {0, "remove-sequences" ,128,34,0,0,0,0,0,0,NULL,&atx[608],NULL,0,&atx[610]} ,
  {568, "Remove-sequences-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[609],0,&atx[626]} ,
  {0, "constraint" ,128,0,0,0,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "propagate-sequence-technology" ,128,35,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[611]} ,
  {0, "add-file-descriptors" ,128,36,0,0,0,0,0,0,NULL,&atx[612],NULL,0,&atx[618]} ,
  {567, "Add-descriptor-list-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[613],0,&atx[608]} ,
  {0, "descriptor-list" ,128,0,0,0,0,0,0,0,NULL,&atx[614],NULL,0,&atx[617]} ,
  {566, "Add-file-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[615],0,&atx[612]} ,
  {0, "filename" ,128,0,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[616]} ,
  {0, "in-memory-table" ,128,1,0,1,0,0,0,0,NULL,&atx[603],NULL,0,NULL} ,
  {0, "constraint" ,128,1,0,1,0,0,0,0,NULL,&atx[217],NULL,0,NULL} ,
  {0, "propagate-missing-old-name" ,128,37,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[619]} ,
  {0, "autoapply-structured-comments" ,128,38,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[620]} ,
  {0, "reorder-structured-comments" ,128,39,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[621]} ,
  {0, "remove-duplicate-structured-comments" ,128,40,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[622]} ,
  {0, "lookup-taxonomy" ,128,41,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[623]} ,
  {0, "lookup-pubs" ,128,42,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[624]} ,
  {0, "trim-terminal-ns" ,128,43,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[625]} ,
  {0, "update-replaced-ecnumbers" ,128,44,0,0,0,0,0,0,NULL,&atx[626],NULL,0,&atx[630]} ,
  {569, "Update-replaced-ec-numbers-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[627],0,&atx[632]} ,
  {0, "delete-improper-format" ,128,0,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[628]} ,
  {0, "delete-unrecognized" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[629]} ,
  {0, "delete-multiple-replacement" ,128,2,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "instantiate-protein-titles" ,128,45,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[631]} ,
  {0, "retranslate-cds" ,128,46,0,0,0,0,0,0,NULL,&atx[632],NULL,0,&atx[634]} ,
  {570, "Retranslate-cds-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[633],0,&atx[642]} ,
  {0, "obey-stop-codon" ,128,0,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {0, "add-selenocysteine-except" ,128,47,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[635]} ,
  {0, "join-short-trnas" ,128,48,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[636]} ,
  {0, "adjust-features-for-gaps" ,128,49,0,0,0,0,0,0,NULL,&atx[637],NULL,0,NULL} ,
  {572, "Adjust-features-for-gaps-action" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[638],0,&atx[356]} ,
  {0, "type" ,128,0,0,0,0,0,0,0,NULL,&atx[23],NULL,0,&atx[639]} ,
  {0, "adjust-for-unknown-length-gaps" ,128,1,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[640]} ,
  {0, "adjust-for-known-length-gaps" ,128,2,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[641]} ,
  {0, "make-truncated-ends-partial" ,128,3,0,0,0,0,0,0,NULL,&atx[642],NULL,0,&atx[643]} ,
  {571, "Truncated-ends-partial-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[653],0,&atx[637]} ,
  {0, "trim-ends-in-gaps" ,128,4,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[644]} ,
  {0, "split-for-internal-gaps" ,128,5,0,0,0,0,0,0,NULL,&atx[35],NULL,0,&atx[645]} ,
  {0, "even-when-gaps-are-in-introns" ,128,6,0,0,0,0,0,0,NULL,&atx[35],NULL,0,NULL} ,
  {404, "Suspect-rule-set" ,1,0,0,0,0,1,0,0,NULL,&atx[45],&atx[647],0,&atx[33]} ,
  {0, NULL,1,-1,0,0,0,0,0,0,NULL,&atx[648],NULL,0,NULL} ,
  {579, "Suspect-rule" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[649],0,NULL} ,
  {0, "find" ,128,0,0,0,0,0,0,0,NULL,&atx[650],NULL,0,&atx[661]} ,
  {574, "Search-func" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[651],0,&atx[670]} ,
  {0, "string-constraint" ,128,0,0,0,0,0,0,0,NULL,&atx[29],NULL,0,&atx[652]} ,
  {0, "contains-plural" ,128,1,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[653]} ,
  {0, "n-or-more-brackets-or-parentheses" ,128,2,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[654]} ,
  {0, "three-numbers" ,128,3,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[655]} ,
  {0, "underscore" ,128,4,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[656]} ,
  {0, "prefix-and-numbers" ,128,5,0,0,0,0,0,0,NULL,&atx[31],NULL,0,&atx[657]} ,
  {0, "all-caps" ,128,6,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[658]} ,
  {0, "unbalanced-paren" ,128,7,0,0,0,0,0,0,NULL,&atx[62],NULL,0,&atx[659]} ,
  {0, "too-long" ,128,8,0,0,0,0,0,0,NULL,&atx[17],NULL,0,&atx[660]} ,
  {0, "has-term" ,128,9,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {0, "except" ,128,1,0,1,0,0,0,0,NULL,&atx[650],NULL,0,&atx[662]} ,
  {0, "feat-constraint" ,128,2,0,1,0,0,0,0,NULL,&atx[217],NULL,0,&atx[663]} ,
  {0, "rule-type" ,128,3,0,0,1,0,0,0,&avnx[656],&atx[664],NULL,0,&atx[665]} ,
  {578, "Fix-type" ,1,0,0,0,0,0,0,0,NULL,&atx[11],&avnx[657],0,&atx[648]} ,
  {0, "replace" ,128,4,0,1,0,0,0,0,NULL,&atx[666],NULL,0,&atx[676]} ,
  {577, "Replace-rule" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[667],0,&atx[664]} ,
  {0, "replace-func" ,128,0,0,0,0,0,0,0,NULL,&atx[668],NULL,0,&atx[675]} ,
  {576, "Replace-func" ,1,0,0,0,0,0,0,0,NULL,&atx[19],&atx[669],0,&atx[666]} ,
  {0, "simple-replace" ,128,0,0,0,0,0,0,0,NULL,&atx[670],NULL,0,&atx[674]} ,
  {575, "Simple-replace" ,1,0,0,0,0,0,0,0,NULL,&atx[48],&atx[671],0,&atx[668]} ,
  {0, "replace" ,128,0,0,1,0,0,0,0,NULL,&atx[31],NULL,0,&atx[672]} ,
  {0, "whole-string" ,128,1,0,0,1,0,0,0,&avnx[672],&atx[35],NULL,0,&atx[673]} ,
  {0, "weasel-to-putative" ,128,2,0,0,1,0,0,0,&avnx[673],&atx[35],NULL,0,NULL} ,
  {0, "haem-replace" ,128,1,0,0,0,0,0,0,NULL,&atx[31],NULL,0,NULL} ,
  {0, "move-to-note" ,128,1,0,0,1,0,0,0,&avnx[674],&atx[35],NULL,0,NULL} ,
  {0, "description" ,128,5,0,1,0,0,0,0,NULL,&atx[31],NULL,0,&atx[677]} ,
  {0, "fatal" ,128,6,0,0,1,0,0,0,&avnx[675],&atx[35],NULL,0,NULL} };

static AsnModule ampx[1] = {
  { "NCBI-Macro" , "asnmacro.h11",&atx[0],NULL,NULL,0,0} };

static AsnValxNodePtr avn = avnx;
static AsnTypePtr at = atx;
static AsnModulePtr amp = ampx;



/**************************************************
*
*    Defines for Module NCBI-Macro
*
**************************************************/

#define AECR_ACTION &at[0]
#define AECR_ACTION_action &at[1]
#define AECR_ACTION_also_change_mrna &at[215]
#define AECR_ACTION_constraint &at[216]

#define PARSE_ACTION &at[314]
#define PARSE_ACTION_portion &at[315]
#define PARSE_ACTION_src &at[316]
#define PARSE_ACTION_dest &at[337]
#define PARSE_ACTION_capitalization &at[350]
#define PARSE_ACTION_remove_from_parsed &at[351]
#define PARSE_ACTION_transform &at[352]
#define PARSE_ACTION_existing_text &at[353]

#define MACRO_ACTION_LIST &at[354]
#define MACRO_ACTION_LIST_E &at[355]

#define SUSPECT_RULE_SET &at[646]
#define SUSPECT_RULE_SET_E &at[647]

#define STRING_LOCATION &at[33]

#define WORD_SUBSTITUTION &at[41]
#define WORD_SUBSTITUTION_word &at[42]
#define WORD_SUBSTITUTION_synonyms &at[43]
#define WORD_SUBSTITUTION_synonyms_E &at[44]
#define WORD_SUBSTITUTION_case_sensitive &at[46]
#define WORD_SUBSTITUTION_whole_word &at[47]

#define WORD_SUBSTITUTION_SET &at[39]
#define WORD_SUBSTITUTION_SET_E &at[40]

#define STRING_CONSTRAINT &at[29]
#define STRING_CONSTRAINT_match_text &at[30]
#define STRING_CONSTRAINT_match_location &at[32]
#define STRING_CONSTRAINT_case_sensitive &at[34]
#define STRING_CONSTRAINT_ignore_space &at[36]
#define STRING_CONSTRAINT_ignore_punct &at[37]
#define STRING_CONSTRAINT_ignore_words &at[38]
#define STRING_CONSTRAINT_whole_word &at[49]
#define STRING_CONSTRAINT_not_present &at[50]
#define STRING_CONSTRAINT_is_all_caps &at[51]
#define STRING_CONSTRAINT_is_all_lower &at[52]
#define STRING_CONSTRAINT_is_all_punct &at[53]
#define STRING_CONSTRAINT_ignore_weasel &at[54]
#define STRING_CONSTRAINT_is_first_cap &at[55]
#define STRING_CONSTRAINT_is_first_each_cap &at[56]

#define STRING_CONSTRAINT_SET &at[308]
#define STRING_CONSTRAINT_SET_E &at[309]

#define STRAND_CONSTRAINT &at[224]

#define SEQTYPE_CONSTRAINT &at[226]

#define PARTIAL_CONSTRAINT &at[228]

#define LOCATION_TYPE_CONSTRAINT &at[231]

#define LOCATION_POS_CONSTRAINT &at[233]
#define LOCATION_POS_CONSTRAINT_dist_from_end &at[234]
#define LOCATION_POS_CONSTRAINT_max_dist_from_end &at[235]
#define LOCATION_POS_CONSTRAINT_min_dist_from_end &at[236]

#define LOCATION_CONSTRAINT &at[222]
#define LOCATION_CONSTRAINT_strand &at[223]
#define LOCATION_CONSTRAINT_seq_type &at[225]
#define LOCATION_CONSTRAINT_partial5 &at[227]
#define LOCATION_CONSTRAINT_partial3 &at[229]
#define LOCATION_CONSTRAINT_location_type &at[230]
#define LOCATION_CONSTRAINT_end5 &at[232]
#define LOCATION_CONSTRAINT_end3 &at[237]

#define OBJECT_TYPE_CONSTRAINT &at[248]

#define MACRO_FEATURE_TYPE &at[23]

#define FEAT_QUAL_LEGAL &at[27]

#define FEAT_QUAL_LEGAL_VAL &at[388]
#define FEAT_QUAL_LEGAL_VAL_qual &at[389]
#define FEAT_QUAL_LEGAL_VAL_val &at[390]

#define FEAT_QUAL_LEGAL_VAL_CHOICE &at[386]
#define FEAT_QUAL_LEGAL_VAL_CHOICE_qual &at[387]

#define FEAT_QUAL_LEGAL_SET &at[384]
#define FEAT_QUAL_LEGAL_SET_E &at[385]

#define FEAT_QUAL_CHOICE &at[25]
#define FEAT_QUAL_CHOICE_legal_qual &at[26]
#define FEAT_QUAL_CHOICE_illegal_qual &at[28]

#define FEATURE_FIELD &at[21]
#define FEATURE_FIELD_type &at[22]
#define FEATURE_FIELD_field &at[24]

#define FEATURE_FIELD_LEGAL &at[345]
#define FEATURE_FIELD_LEGAL_type &at[346]
#define FEATURE_FIELD_LEGAL_field &at[347]

#define FEATURE_FIELD_PAIR &at[121]
#define FEATURE_FIELD_PAIR_type &at[122]
#define FEATURE_FIELD_PAIR_field_from &at[123]
#define FEATURE_FIELD_PAIR_field_to &at[124]

#define RNA_FEAT_TYPE &at[60]
#define RNA_FEAT_TYPE_any &at[61]
#define RNA_FEAT_TYPE_preRNA &at[63]
#define RNA_FEAT_TYPE_mRNA &at[64]
#define RNA_FEAT_TYPE_tRNA &at[65]
#define RNA_FEAT_TYPE_rRNA &at[66]
#define RNA_FEAT_TYPE_ncRNA &at[67]
#define RNA_FEAT_TYPE_tmRNA &at[68]
#define RNA_FEAT_TYPE_miscRNA &at[69]

#define RNA_FIELD &at[71]

#define RNA_QUAL &at[58]
#define RNA_QUAL_type &at[59]
#define RNA_QUAL_field &at[70]

#define RNA_QUAL_PAIR &at[126]
#define RNA_QUAL_PAIR_type &at[127]
#define RNA_QUAL_PAIR_field_from &at[128]
#define RNA_QUAL_PAIR_field_to &at[129]

#define SOURCE_QUAL &at[10]

#define SOURCE_QUAL_PAIR &at[117]
#define SOURCE_QUAL_PAIR_field_from &at[118]
#define SOURCE_QUAL_PAIR_field_to &at[119]

#define SOURCE_LOCATION &at[13]

#define SOURCE_ORIGIN &at[15]

#define SOURCE_QUAL_CHOICE &at[8]
#define SOURCE_QUAL_CHOICE_textqual &at[9]
#define SOURCE_QUAL_CHOICE_location &at[12]
#define SOURCE_QUAL_CHOICE_origin &at[14]
#define SOURCE_QUAL_CHOICE_gcode &at[16]
#define SOURCE_QUAL_CHOICE_mgcode &at[18]

#define SOURCE_QUAL_TEXT_VAL &at[396]
#define SOURCE_QUAL_TEXT_VAL_srcqual &at[397]
#define SOURCE_QUAL_TEXT_VAL_val &at[398]

#define SOURCE_QUAL_VAL_CHOICE &at[394]
#define SOURCE_QUAL_VAL_CHOICE_textqual &at[395]
#define SOURCE_QUAL_VAL_CHOICE_location &at[399]
#define SOURCE_QUAL_VAL_CHOICE_origin &at[400]
#define SOURCE_QUAL_VAL_CHOICE_gcode &at[401]
#define SOURCE_QUAL_VAL_CHOICE_mgcode &at[402]

#define SOURCE_QUAL_VAL_SET &at[392]
#define SOURCE_QUAL_VAL_SET_E &at[393]

#define CDSGENEPROT_FIELD &at[73]

#define CDSGENEPROT_FIELD_PAIR &at[131]
#define CDSGENEPROT_FIELD_PAIR_field_from &at[132]
#define CDSGENEPROT_FIELD_PAIR_field_to &at[133]

#define MOLECULE_TYPE &at[77]

#define TECHNIQUE_TYPE &at[79]

#define COMPLETEDNESS_TYPE &at[81]

#define MOLECULE_CLASS_TYPE &at[83]

#define TOPOLOGY_TYPE &at[85]

#define STRAND_TYPE &at[87]

#define MOLINFO_FIELD &at[75]
#define MOLINFO_FIELD_molecule &at[76]
#define MOLINFO_FIELD_technique &at[78]
#define MOLINFO_FIELD_completedness &at[80]
#define MOLINFO_FIELD_mol_class &at[82]
#define MOLINFO_FIELD_topology &at[84]
#define MOLINFO_FIELD_strand &at[86]

#define MOLINFO_MOLECULE_PAIR &at[137]
#define MOLINFO_MOLECULE_PAIR_from &at[138]
#define MOLINFO_MOLECULE_PAIR_to &at[139]

#define MOLINFO_TECHNIQUE_PAIR &at[141]
#define MOLINFO_TECHNIQUE_PAIR_from &at[142]
#define MOLINFO_TECHNIQUE_PAIR_to &at[143]

#define MOLINFO_COMPLETEDNESS_PAIR &at[145]
#define MOLINFO_COMPLETEDNESS_PAIR_from &at[146]
#define MOLINFO_COMPLETEDNESS_PAIR_to &at[147]

#define MOLINFO_MOL_CLASS_PAIR &at[149]
#define MOLINFO_MOL_CLASS_PAIR_from &at[150]
#define MOLINFO_MOL_CLASS_PAIR_to &at[151]

#define MOLINFO_TOPOLOGY_PAIR &at[153]
#define MOLINFO_TOPOLOGY_PAIR_from &at[154]
#define MOLINFO_TOPOLOGY_PAIR_to &at[155]

#define MOLINFO_STRAND_PAIR &at[157]
#define MOLINFO_STRAND_PAIR_from &at[158]
#define MOLINFO_STRAND_PAIR_to &at[159]

#define MOLINFO_FIELD_PAIR &at[135]
#define MOLINFO_FIELD_PAIR_molecule &at[136]
#define MOLINFO_FIELD_PAIR_technique &at[140]
#define MOLINFO_FIELD_PAIR_completedness &at[144]
#define MOLINFO_FIELD_PAIR_mol_class &at[148]
#define MOLINFO_FIELD_PAIR_topology &at[152]
#define MOLINFO_FIELD_PAIR_strand &at[156]

#define MOLINFO_FIELD_LIST &at[513]
#define MOLINFO_FIELD_LIST_E &at[514]

#define MOLINFO_FIELD_CONSTRAINT &at[301]
#define MOLINFO_FIELD_CONSTRAINT_field &at[302]
#define MOLINFO_FIELD_CONSTRAINT_is_not &at[303]

#define PUBLICATION_FIELD &at[89]

#define STRUCTURED_COMMENT_FIELD &at[91]
#define STRUCTURED_COMMENT_FIELD_database &at[92]
#define STRUCTURED_COMMENT_FIELD_named &at[93]
#define STRUCTURED_COMMENT_FIELD_field_name &at[94]

#define STRUCTURED_COMMENT_FIELD_PAIR &at[161]
#define STRUCTURED_COMMENT_FIELD_PAIR_from &at[162]
#define STRUCTURED_COMMENT_FIELD_PAIR_to &at[163]

#define MISC_FIELD &at[96]

#define DBLINK_FIELD_TYPE &at[98]

#define DBLINK_FIELD_PAIR &at[165]
#define DBLINK_FIELD_PAIR_from &at[166]
#define DBLINK_FIELD_PAIR_to &at[167]

#define PUB_TYPE &at[285]

#define PUB_FIELD_CONSTRAINT &at[287]
#define PUB_FIELD_CONSTRAINT_field &at[288]
#define PUB_FIELD_CONSTRAINT_constraint &at[289]

#define PUB_FIELD_SPECIAL_CONSTRAINT_TYPE &at[294]
#define PUB_FIELD_SPECIAL_CONSTRAINT_TYPE_is_present &at[295]
#define PUB_FIELD_SPECIAL_CONSTRAINT_TYPE_is_not_present &at[296]
#define PUB_FIELD_SPECIAL_CONSTRAINT_TYPE_is_all_caps &at[297]
#define PUB_FIELD_SPECIAL_CONSTRAINT_TYPE_is_all_lower &at[298]
#define PUB_FIELD_SPECIAL_CONSTRAINT_TYPE_is_all_punct &at[299]

#define PUB_FIELD_SPECIAL_CONSTRAINT &at[291]
#define PUB_FIELD_SPECIAL_CONSTRAINT_field &at[292]
#define PUB_FIELD_SPECIAL_CONSTRAINT_constraint &at[293]

#define PUBLICATION_CONSTRAINT &at[283]
#define PUBLICATION_CONSTRAINT_type &at[284]
#define PUBLICATION_CONSTRAINT_field &at[286]
#define PUBLICATION_CONSTRAINT_special_field &at[290]

#define SOURCE_CONSTRAINT &at[243]
#define SOURCE_CONSTRAINT_field1 &at[244]
#define SOURCE_CONSTRAINT_field2 &at[245]
#define SOURCE_CONSTRAINT_constraint &at[246]
#define SOURCE_CONSTRAINT_type_constraint &at[247]

#define CDSGENEPROT_FEATURE_TYPE_CONSTRAINT &at[259]

#define CDSGENEPROT_PSEUDO_CONSTRAINT &at[257]
#define CDSGENEPROT_PSEUDO_CONSTRAINT_feature &at[258]
#define CDSGENEPROT_PSEUDO_CONSTRAINT_is_pseudo &at[260]

#define CDSGENEPROT_CONSTRAINT_FIELD &at[252]
#define CDSGENEPROT_CONSTRAINT_FIELD_field &at[253]

#define CDSGENEPROT_QUAL_CONSTRAINT &at[250]
#define CDSGENEPROT_QUAL_CONSTRAINT_field1 &at[251]
#define CDSGENEPROT_QUAL_CONSTRAINT_field2 &at[254]
#define CDSGENEPROT_QUAL_CONSTRAINT_constraint &at[255]

#define FIELD_CONSTRAINT &at[239]
#define FIELD_CONSTRAINT_field &at[240]
#define FIELD_CONSTRAINT_string_constraint &at[241]

#define FIELD_TYPE &at[6]
#define FIELD_TYPE_source_qual &at[7]
#define FIELD_TYPE_feature_field &at[20]
#define FIELD_TYPE_rna_field &at[57]
#define FIELD_TYPE_cds_gene_prot &at[72]
#define FIELD_TYPE_molinfo_field &at[74]
#define FIELD_TYPE_pub &at[88]
#define FIELD_TYPE_struc_comment_field &at[90]
#define FIELD_TYPE_misc &at[95]
#define FIELD_TYPE_dblink &at[97]

#define SEQUENCE_CONSTRAINT_RNAMOL &at[269]

#define SEQUENCE_CONSTRAINT_MOL_TYPE_CONSTRAINT &at[264]
#define SEQUENCE_CONSTRAINT_MOL_TYPE_CONSTRAINT_any &at[265]
#define SEQUENCE_CONSTRAINT_MOL_TYPE_CONSTRAINT_nucleotide &at[266]
#define SEQUENCE_CONSTRAINT_MOL_TYPE_CONSTRAINT_dna &at[267]
#define SEQUENCE_CONSTRAINT_MOL_TYPE_CONSTRAINT_rna &at[268]
#define SEQUENCE_CONSTRAINT_MOL_TYPE_CONSTRAINT_protein &at[270]

#define QUANTITY_CONSTRAINT &at[274]
#define QUANTITY_CONSTRAINT_equals &at[275]
#define QUANTITY_CONSTRAINT_greater_than &at[276]
#define QUANTITY_CONSTRAINT_less_than &at[277]

#define FEATURE_STRANDEDNESS_CONSTRAINT &at[281]

#define SEQUENCE_CONSTRAINT &at[262]
#define SEQUENCE_CONSTRAINT_seqtype &at[263]
#define SEQUENCE_CONSTRAINT_id &at[271]
#define SEQUENCE_CONSTRAINT_feature &at[272]
#define SEQUENCE_CONSTRAINT_num_type_features &at[273]
#define SEQUENCE_CONSTRAINT_num_features &at[278]
#define SEQUENCE_CONSTRAINT_length &at[279]
#define SEQUENCE_CONSTRAINT_strandedness &at[280]

#define MATCH_TYPE_CONSTRAINT &at[312]

#define TRANSLATION_CONSTRAINT &at[306]
#define TRANSLATION_CONSTRAINT_actual_strings &at[307]
#define TRANSLATION_CONSTRAINT_transl_strings &at[310]
#define TRANSLATION_CONSTRAINT_internal_stops &at[311]
#define TRANSLATION_CONSTRAINT_num_mismatches &at[313]

#define CONSTRAINT_CHOICE &at[219]
#define CONSTRAINT_CHOICE_string &at[220]
#define CONSTRAINT_CHOICE_location &at[221]
#define CONSTRAINT_CHOICE_field &at[238]
#define CONSTRAINT_CHOICE_source &at[242]
#define CONSTRAINT_CHOICE_cdsgeneprot_qual &at[249]
#define CONSTRAINT_CHOICE_cdsgeneprot_pseudo &at[256]
#define CONSTRAINT_CHOICE_sequence &at[261]
#define CONSTRAINT_CHOICE_pub &at[282]
#define CONSTRAINT_CHOICE_molinfo &at[300]
#define CONSTRAINT_CHOICE_field_missing &at[304]
#define CONSTRAINT_CHOICE_translation &at[305]

#define CONSTRAINT_CHOICE_SET &at[217]
#define CONSTRAINT_CHOICE_SET_E &at[218]

#define TEXT_MARKER &at[188]
#define TEXT_MARKER_free_text &at[189]
#define TEXT_MARKER_digits &at[190]
#define TEXT_MARKER_letters &at[191]

#define TEXT_PORTION &at[186]
#define TEXT_PORTION_left_marker &at[187]
#define TEXT_PORTION_include_left &at[192]
#define TEXT_PORTION_right_marker &at[193]
#define TEXT_PORTION_include_right &at[194]
#define TEXT_PORTION_inside &at[195]
#define TEXT_PORTION_case_sensitive &at[196]
#define TEXT_PORTION_whole_word &at[197]

#define FIELD_EDIT_LOCATION &at[109]

#define FIELD_EDIT &at[105]
#define FIELD_EDIT_find_txt &at[106]
#define FIELD_EDIT_repl_txt &at[107]
#define FIELD_EDIT_location &at[108]
#define FIELD_EDIT_case_insensitive &at[110]

#define FIELD_PAIR_TYPE &at[115]
#define FIELD_PAIR_TYPE_source_qual &at[116]
#define FIELD_PAIR_TYPE_feature_field &at[120]
#define FIELD_PAIR_TYPE_rna_field &at[125]
#define FIELD_PAIR_TYPE_cds_gene_prot &at[130]
#define FIELD_PAIR_TYPE_molinfo_field &at[134]
#define FIELD_PAIR_TYPE_struc_comment_field &at[160]
#define FIELD_PAIR_TYPE_dblink &at[164]

#define EXISTINGTEXTOPTION &at[101]

#define APPLY_ACTION &at[4]
#define APPLY_ACTION_field &at[5]
#define APPLY_ACTION_value &at[99]
#define APPLY_ACTION_existing_text &at[100]

#define EDIT_ACTION &at[103]
#define EDIT_ACTION_edit &at[104]
#define EDIT_ACTION_field &at[111]

#define CAP_CHANGE &at[171]

#define TEXT_TRANSFORM &at[205]
#define TEXT_TRANSFORM_edit &at[206]
#define TEXT_TRANSFORM_caps &at[207]
#define TEXT_TRANSFORM_remove &at[208]

#define TEXT_TRANSFORM_SET &at[203]
#define TEXT_TRANSFORM_SET_E &at[204]

#define CONVERT_ACTION &at[113]
#define CONVERT_ACTION_fields &at[114]
#define CONVERT_ACTION_strip_name &at[168]
#define CONVERT_ACTION_keep_original &at[169]
#define CONVERT_ACTION_capitalization &at[170]
#define CONVERT_ACTION_existing_text &at[172]

#define COPY_ACTION &at[174]
#define COPY_ACTION_fields &at[175]
#define COPY_ACTION_existing_text &at[176]

#define SWAP_ACTION &at[178]
#define SWAP_ACTION_fields &at[179]

#define AECRPARSE_ACTION &at[184]
#define AECRPARSE_ACTION_portion &at[185]
#define AECRPARSE_ACTION_fields &at[198]
#define AECRPARSE_ACTION_remove_from_parsed &at[199]
#define AECRPARSE_ACTION_remove_left &at[200]
#define AECRPARSE_ACTION_remove_right &at[201]
#define AECRPARSE_ACTION_transform &at[202]
#define AECRPARSE_ACTION_existing_text &at[209]

#define REMOVE_ACTION &at[181]
#define REMOVE_ACTION_field &at[182]

#define REMOVE_OUTSIDE_ACTION &at[211]
#define REMOVE_OUTSIDE_ACTION_portion &at[212]
#define REMOVE_OUTSIDE_ACTION_field &at[213]
#define REMOVE_OUTSIDE_ACTION_remove_if_not_found &at[214]

#define ACTION_CHOICE &at[2]
#define ACTION_CHOICE_apply &at[3]
#define ACTION_CHOICE_edit &at[102]
#define ACTION_CHOICE_convert &at[112]
#define ACTION_CHOICE_copy &at[173]
#define ACTION_CHOICE_swap &at[177]
#define ACTION_CHOICE_remove &at[180]
#define ACTION_CHOICE_parse &at[183]
#define ACTION_CHOICE_remove_outside &at[210]

#define PARSE_SRC_ORG_CHOICE &at[324]
#define PARSE_SRC_ORG_CHOICE_source_qual &at[325]
#define PARSE_SRC_ORG_CHOICE_taxname_after_binomial &at[326]

#define PARSE_SRC_ORG &at[322]
#define PARSE_SRC_ORG_field &at[323]
#define PARSE_SRC_ORG_type &at[327]

#define PARSE_SRC_GENERAL_ID &at[333]
#define PARSE_SRC_GENERAL_ID_whole_text &at[334]
#define PARSE_SRC_GENERAL_ID_db &at[335]
#define PARSE_SRC_GENERAL_ID_tag &at[336]

#define PARSE_SRC &at[317]
#define PARSE_SRC_defline &at[318]
#define PARSE_SRC_flatfile &at[319]
#define PARSE_SRC_local_id &at[320]
#define PARSE_SRC_org &at[321]
#define PARSE_SRC_comment &at[328]
#define PARSE_SRC_bankit_comment &at[329]
#define PARSE_SRC_structured_comment &at[330]
#define PARSE_SRC_file_id &at[331]
#define PARSE_SRC_general_id &at[332]

#define PARSE_DST_ORG &at[341]
#define PARSE_DST_ORG_field &at[342]
#define PARSE_DST_ORG_type &at[343]

#define PARSE_DEST &at[338]
#define PARSE_DEST_defline &at[339]
#define PARSE_DEST_org &at[340]
#define PARSE_DEST_featqual &at[344]
#define PARSE_DEST_comment_descriptor &at[348]
#define PARSE_DEST_dbxref &at[349]

#define LOCATION_INTERVAL &at[368]
#define LOCATION_INTERVAL_from &at[369]
#define LOCATION_INTERVAL_to &at[370]

#define LOCATION_CHOICE &at[366]
#define LOCATION_CHOICE_interval &at[367]
#define LOCATION_CHOICE_whole_sequence &at[371]
#define LOCATION_CHOICE_point &at[372]

#define SEQUENCE_LIST &at[376]
#define SEQUENCE_LIST_E &at[377]

#define SEQUENCE_LIST_CHOICE &at[374]
#define SEQUENCE_LIST_CHOICE_list &at[375]
#define SEQUENCE_LIST_CHOICE_all &at[378]

#define APPLY_FEATURE_ACTION &at[360]
#define APPLY_FEATURE_ACTION_type &at[361]
#define APPLY_FEATURE_ACTION_partial5 &at[362]
#define APPLY_FEATURE_ACTION_partial3 &at[363]
#define APPLY_FEATURE_ACTION_plus_strand &at[364]
#define APPLY_FEATURE_ACTION_location &at[365]
#define APPLY_FEATURE_ACTION_seq_list &at[373]
#define APPLY_FEATURE_ACTION_add_redundant &at[379]
#define APPLY_FEATURE_ACTION_add_mrna &at[380]
#define APPLY_FEATURE_ACTION_apply_to_parts &at[381]
#define APPLY_FEATURE_ACTION_only_seg_num &at[382]
#define APPLY_FEATURE_ACTION_fields &at[383]
#define APPLY_FEATURE_ACTION_src_fields &at[391]

#define REMOVE_FEATURE_ACTION &at[404]
#define REMOVE_FEATURE_ACTION_type &at[405]
#define REMOVE_FEATURE_ACTION_constraint &at[406]

#define CONVERT_FROM_CDS_OPTIONS &at[414]
#define CONVERT_FROM_CDS_OPTIONS_remove_mRNA &at[415]
#define CONVERT_FROM_CDS_OPTIONS_remove_gene &at[416]
#define CONVERT_FROM_CDS_OPTIONS_remove_transcript_id &at[417]

#define CONVERT_FEATURE_SRC_OPTIONS &at[412]
#define CONVERT_FEATURE_SRC_OPTIONS_cds &at[413]

#define BOND_TYPE &at[421]

#define SITE_TYPE &at[423]

#define REGION_TYPE &at[425]
#define REGION_TYPE_create_nucleotide &at[426]

#define CONVERT_FEATURE_DST_OPTIONS &at[419]
#define CONVERT_FEATURE_DST_OPTIONS_bond &at[420]
#define CONVERT_FEATURE_DST_OPTIONS_site &at[422]
#define CONVERT_FEATURE_DST_OPTIONS_region &at[424]
#define CONVERT_FEATURE_DST_OPTIONS_ncrna_class &at[427]
#define CONVERT_FEATURE_DST_OPTIONS_remove_original &at[428]

#define CONVERT_FEATURE_ACTION &at[408]
#define CONVERT_FEATURE_ACTION_type_from &at[409]
#define CONVERT_FEATURE_ACTION_type_to &at[410]
#define CONVERT_FEATURE_ACTION_src_options &at[411]
#define CONVERT_FEATURE_ACTION_dst_options &at[418]
#define CONVERT_FEATURE_ACTION_leave_original &at[429]
#define CONVERT_FEATURE_ACTION_src_feat_constraint &at[430]

#define FEATURE_LOCATION_STRAND_FROM &at[439]

#define FEATURE_LOCATION_STRAND_TO &at[441]

#define EDIT_LOCATION_STRAND &at[437]
#define EDIT_LOCATION_STRAND_strand_from &at[438]
#define EDIT_LOCATION_STRAND_strand_to &at[440]

#define PARTIAL_5_SET_CONSTRAINT &at[445]

#define PARTIAL_5_SET_ACTION &at[443]
#define PARTIAL_5_SET_ACTION_constraint &at[444]
#define PARTIAL_5_SET_ACTION_extend &at[446]

#define PARTIAL_5_CLEAR_CONSTRAINT &at[448]

#define PARTIAL_3_SET_CONSTRAINT &at[452]

#define PARTIAL_3_SET_ACTION &at[450]
#define PARTIAL_3_SET_ACTION_constraint &at[451]
#define PARTIAL_3_SET_ACTION_extend &at[453]

#define PARTIAL_3_CLEAR_CONSTRAINT &at[455]

#define PARTIAL_BOTH_SET_CONSTRAINT &at[459]

#define PARTIAL_BOTH_SET_ACTION &at[457]
#define PARTIAL_BOTH_SET_ACTION_constraint &at[458]
#define PARTIAL_BOTH_SET_ACTION_extend &at[460]

#define PARTIAL_BOTH_CLEAR_CONSTRAINT &at[462]

#define CONVERT_LOCATION_TYPE &at[464]

#define EXTEND_TO_FEATURE &at[468]
#define EXTEND_TO_FEATURE_type &at[469]
#define EXTEND_TO_FEATURE_include_feat &at[470]
#define EXTEND_TO_FEATURE_distance &at[471]

#define LOCATION_EDIT_TYPE &at[435]
#define LOCATION_EDIT_TYPE_strand &at[436]
#define LOCATION_EDIT_TYPE_set_5_partial &at[442]
#define LOCATION_EDIT_TYPE_clear_5_partial &at[447]
#define LOCATION_EDIT_TYPE_set_3_partial &at[449]
#define LOCATION_EDIT_TYPE_clear_3_partial &at[454]
#define LOCATION_EDIT_TYPE_set_both_partial &at[456]
#define LOCATION_EDIT_TYPE_clear_both_partial &at[461]
#define LOCATION_EDIT_TYPE_convert &at[463]
#define LOCATION_EDIT_TYPE_extend_5 &at[465]
#define LOCATION_EDIT_TYPE_extend_3 &at[466]
#define LOCATION_EDIT_TYPE_extend_5_to_feat &at[467]
#define LOCATION_EDIT_TYPE_extend_3_to_feat &at[472]

#define EDIT_FEATURE_LOCATION_ACTION &at[432]
#define EDIT_FEATURE_LOCATION_ACTION_type &at[433]
#define EDIT_FEATURE_LOCATION_ACTION_action &at[434]
#define EDIT_FEATURE_LOCATION_ACTION_retranslate_cds &at[473]
#define EDIT_FEATURE_LOCATION_ACTION_also_edit_gene &at[474]
#define EDIT_FEATURE_LOCATION_ACTION_constraint &at[475]

#define MOLINFO_BLOCK &at[511]
#define MOLINFO_BLOCK_to_list &at[512]
#define MOLINFO_BLOCK_from_list &at[515]
#define MOLINFO_BLOCK_constraint &at[516]

#define DESCRIPTOR_TYPE &at[479]

#define REMOVE_DESCRIPTOR_ACTION &at[477]
#define REMOVE_DESCRIPTOR_ACTION_type &at[478]
#define REMOVE_DESCRIPTOR_ACTION_constraint &at[480]

#define AUTODEF_LIST_TYPE &at[486]

#define AUTODEF_MISC_FEAT_PARSE_RULE &at[488]

#define AUTODEF_ACTION &at[482]
#define AUTODEF_ACTION_modifiers &at[483]
#define AUTODEF_ACTION_modifiers_E &at[484]
#define AUTODEF_ACTION_clause_list_type &at[485]
#define AUTODEF_ACTION_misc_feat_parse_rule &at[487]

#define FIX_PUB_CAPS_ACTION &at[496]
#define FIX_PUB_CAPS_ACTION_title &at[497]
#define FIX_PUB_CAPS_ACTION_authors &at[498]
#define FIX_PUB_CAPS_ACTION_affiliation &at[499]
#define FIX_PUB_CAPS_ACTION_affil_country &at[500]
#define FIX_PUB_CAPS_ACTION_punct_only &at[501]
#define FIX_PUB_CAPS_ACTION_constraint &at[502]

#define SORT_ORDER &at[508]

#define SORT_FIELDS_ACTION &at[505]
#define SORT_FIELDS_ACTION_field &at[506]
#define SORT_FIELDS_ACTION_order &at[507]
#define SORT_FIELDS_ACTION_constraint &at[509]

#define FIX_AUTHOR_CAPS &at[524]
#define FIX_AUTHOR_CAPS_last_name_only &at[525]

#define FIX_CAPS_ACTION &at[518]
#define FIX_CAPS_ACTION_pub &at[519]
#define FIX_CAPS_ACTION_src_country &at[520]
#define FIX_CAPS_ACTION_mouse_strain &at[521]
#define FIX_CAPS_ACTION_src_qual &at[522]
#define FIX_CAPS_ACTION_author &at[523]

#define FIX_FORMAT_ACTION &at[527]
#define FIX_FORMAT_ACTION_collection_date &at[528]
#define FIX_FORMAT_ACTION_lat_lon &at[529]
#define FIX_FORMAT_ACTION_primers &at[530]
#define FIX_FORMAT_ACTION_protein_name &at[531]

#define REMOVE_DUPLICATE_FEATURE_ACTION &at[534]
#define REMOVE_DUPLICATE_FEATURE_ACTION_type &at[535]
#define REMOVE_DUPLICATE_FEATURE_ACTION_ignore_partials &at[536]
#define REMOVE_DUPLICATE_FEATURE_ACTION_case_sensitive &at[537]
#define REMOVE_DUPLICATE_FEATURE_ACTION_remove_proteins &at[538]
#define REMOVE_DUPLICATE_FEATURE_ACTION_rd_constraint &at[539]

#define GENE_XREF_SUPPRESSION_TYPE &at[549]

#define GENE_XREF_NECESSARY_TYPE &at[551]

#define GENE_XREF_TYPE &at[546]
#define GENE_XREF_TYPE_feature &at[547]
#define GENE_XREF_TYPE_suppression &at[548]
#define GENE_XREF_TYPE_necessary &at[550]

#define XREF_TYPE &at[544]
#define XREF_TYPE_gene &at[545]

#define REMOVE_XREFS_ACTION &at[542]
#define REMOVE_XREFS_ACTION_xref_type &at[543]
#define REMOVE_XREFS_ACTION_constraint &at[552]

#define MAKE_GENE_XREF_ACTION &at[554]
#define MAKE_GENE_XREF_ACTION_feature &at[555]
#define MAKE_GENE_XREF_ACTION_constraint &at[556]

#define AUTHOR_FIX_TYPE &at[561]

#define AUTHOR_FIX_ACTION &at[559]
#define AUTHOR_FIX_ACTION_fix_type &at[560]
#define AUTHOR_FIX_ACTION_constraint &at[562]

#define UPDATE_SEQUENCES_ACTION &at[564]
#define UPDATE_SEQUENCES_ACTION_filename &at[565]
#define UPDATE_SEQUENCES_ACTION_add_cit_subs &at[566]

#define CREATE_TSA_IDS_SRC &at[572]
#define CREATE_TSA_IDS_SRC_local_id &at[573]
#define CREATE_TSA_IDS_SRC_defline &at[574]

#define CREATE_TSA_IDS_ACTION &at[570]
#define CREATE_TSA_IDS_ACTION_src &at[571]
#define CREATE_TSA_IDS_ACTION_suffix &at[575]
#define CREATE_TSA_IDS_ACTION_id_text_portion &at[576]

#define AUTOFIX_ACTION &at[578]
#define AUTOFIX_ACTION_test_name &at[579]

#define FIX_SETS_ACTION &at[581]
#define FIX_SETS_ACTION_remove_single_item_set &at[582]
#define FIX_SETS_ACTION_renormalize_nuc_prot_sets &at[583]
#define FIX_SETS_ACTION_fix_pop_to_phy &at[584]

#define TABLE_MATCH_TYPE &at[591]
#define TABLE_MATCH_TYPE_feature_id &at[592]
#define TABLE_MATCH_TYPE_gene_locus_tag &at[593]
#define TABLE_MATCH_TYPE_protein_id &at[594]
#define TABLE_MATCH_TYPE_dbxref &at[595]
#define TABLE_MATCH_TYPE_nuc_id &at[596]
#define TABLE_MATCH_TYPE_src_qual &at[597]
#define TABLE_MATCH_TYPE_protein_name &at[598]
#define TABLE_MATCH_TYPE_bioproject &at[599]
#define TABLE_MATCH_TYPE_any &at[600]

#define TABLE_MATCH &at[589]
#define TABLE_MATCH_match_type &at[590]
#define TABLE_MATCH_match_location &at[601]

#define APPLY_TABLE_EXTRA_DATA &at[603]
#define APPLY_TABLE_EXTRA_DATA_table &at[604]

#define APPLY_TABLE_ACTION &at[586]
#define APPLY_TABLE_ACTION_filename &at[587]
#define APPLY_TABLE_ACTION_match_type &at[588]
#define APPLY_TABLE_ACTION_in_memory_table &at[602]
#define APPLY_TABLE_ACTION_also_change_mrna &at[605]
#define APPLY_TABLE_ACTION_skip_blanks &at[606]

#define ADD_FILE_ACTION &at[614]
#define ADD_FILE_ACTION_filename &at[615]
#define ADD_FILE_ACTION_in_memory_table &at[616]

#define ADD_DESCRIPTOR_LIST_ACTION &at[612]
#define ADD_DESCRIPTOR_LIST_ACTION_descriptor_list &at[613]
#define ADD_DESCRIPTOR_LIST_ACTION_constraint &at[617]

#define REMOVE_SEQUENCES_ACTION &at[608]
#define REMOVE_SEQUENCES_ACTION_constraint &at[609]

#define UPDATE_REPLACED_EC_NUMBERS_ACTION &at[626]
#define UPDATE_REPLACED_EC_NUMBERS_ACTION_delete_improper_format &at[627]
#define UPDATE_REPLACED_EC_NUMBERS_ACTION_delete_unrecognized &at[628]
#define UPDATE_REPLACED_EC_NUMBERS_ACTION_delete_multiple_replacement &at[629]

#define RETRANSLATE_CDS_ACTION &at[632]
#define RETRANSLATE_CDS_ACTION_obey_stop_codon &at[633]

#define TRUNCATED_ENDS_PARTIAL_TYPE &at[642]

#define ADJUST_FEATURES_FOR_GAPS_ACTION &at[637]
#define ADJUST_FEATURES_FOR_GAPS_ACTION_type &at[638]
#define ADJUST_FEATURES_FOR_GAPS_ACTION_adjust_for_unknown_length_gaps &at[639]
#define ADJUST_FEATURES_FOR_GAPS_ACTION_adjust_for_known_length_gaps &at[640]
#define ADJUST_FEATURES_FOR_GAPS_ACTION_make_truncated_ends_partial &at[641]
#define ADJUST_FEATURES_FOR_GAPS_ACTION_trim_ends_in_gaps &at[643]
#define ADJUST_FEATURES_FOR_GAPS_ACTION_split_for_internal_gaps &at[644]
#define ADJUST_FEATURES_FOR_GAPS_ACTION_even_when_gaps_are_in_introns &at[645]

#define MACRO_ACTION_CHOICE &at[356]
#define MACRO_ACTION_CHOICE_aecr &at[357]
#define MACRO_ACTION_CHOICE_parse &at[358]
#define MACRO_ACTION_CHOICE_add_feature &at[359]
#define MACRO_ACTION_CHOICE_remove_feature &at[403]
#define MACRO_ACTION_CHOICE_convert_feature &at[407]
#define MACRO_ACTION_CHOICE_edit_location &at[431]
#define MACRO_ACTION_CHOICE_remove_descriptor &at[476]
#define MACRO_ACTION_CHOICE_autodef &at[481]
#define MACRO_ACTION_CHOICE_removesets &at[489]
#define MACRO_ACTION_CHOICE_trim_junk_from_primer_seq &at[490]
#define MACRO_ACTION_CHOICE_trim_stop_from_complete_cds &at[491]
#define MACRO_ACTION_CHOICE_fix_usa_and_states &at[492]
#define MACRO_ACTION_CHOICE_synchronize_cds_partials &at[493]
#define MACRO_ACTION_CHOICE_adjust_for_consensus_splice &at[494]
#define MACRO_ACTION_CHOICE_fix_pub_caps &at[495]
#define MACRO_ACTION_CHOICE_remove_seg_gaps &at[503]
#define MACRO_ACTION_CHOICE_sort_fields &at[504]
#define MACRO_ACTION_CHOICE_apply_molinfo_block &at[510]
#define MACRO_ACTION_CHOICE_fix_caps &at[517]
#define MACRO_ACTION_CHOICE_fix_format &at[526]
#define MACRO_ACTION_CHOICE_fix_spell &at[532]
#define MACRO_ACTION_CHOICE_remove_duplicate_features &at[533]
#define MACRO_ACTION_CHOICE_remove_lineage_notes &at[540]
#define MACRO_ACTION_CHOICE_remove_xrefs &at[541]
#define MACRO_ACTION_CHOICE_make_gene_xrefs &at[553]
#define MACRO_ACTION_CHOICE_make_bold_xrefs &at[557]
#define MACRO_ACTION_CHOICE_fix_author &at[558]
#define MACRO_ACTION_CHOICE_update_sequences &at[563]
#define MACRO_ACTION_CHOICE_add_trans_splicing &at[567]
#define MACRO_ACTION_CHOICE_remove_invalid_ecnumbers &at[568]
#define MACRO_ACTION_CHOICE_create_tsa_ids &at[569]
#define MACRO_ACTION_CHOICE_perform_autofix &at[577]
#define MACRO_ACTION_CHOICE_fix_sets &at[580]
#define MACRO_ACTION_CHOICE_apply_table &at[585]
#define MACRO_ACTION_CHOICE_remove_sequences &at[607]
#define MACRO_ACTION_CHOICE_propagate_sequence_technology &at[610]
#define MACRO_ACTION_CHOICE_add_file_descriptors &at[611]
#define MACRO_ACTION_CHOICE_propagate_missing_old_name &at[618]
#define MACRO_ACTION_CHOICE_autoapply_structured_comments &at[619]
#define MACRO_ACTION_CHOICE_reorder_structured_comments &at[620]
#define MACRO_ACTION_CHOICE_remove_duplicate_structured_comments &at[621]
#define MACRO_ACTION_CHOICE_lookup_taxonomy &at[622]
#define MACRO_ACTION_CHOICE_lookup_pubs &at[623]
#define MACRO_ACTION_CHOICE_trim_terminal_ns &at[624]
#define MACRO_ACTION_CHOICE_update_replaced_ecnumbers &at[625]
#define MACRO_ACTION_CHOICE_instantiate_protein_titles &at[630]
#define MACRO_ACTION_CHOICE_retranslate_cds &at[631]
#define MACRO_ACTION_CHOICE_add_selenocysteine_except &at[634]
#define MACRO_ACTION_CHOICE_join_short_trnas &at[635]
#define MACRO_ACTION_CHOICE_adjust_features_for_gaps &at[636]

#define SEARCH_FUNC &at[650]
#define SEARCH_FUNC_string_constraint &at[651]
#define SEARCH_FUNC_contains_plural &at[652]
#define SEARCH_FUNC_n_or_more_brackets_or_parentheses &at[653]
#define SEARCH_FUNC_three_numbers &at[654]
#define SEARCH_FUNC_underscore &at[655]
#define SEARCH_FUNC_prefix_and_numbers &at[656]
#define SEARCH_FUNC_all_caps &at[657]
#define SEARCH_FUNC_unbalanced_paren &at[658]
#define SEARCH_FUNC_too_long &at[659]
#define SEARCH_FUNC_has_term &at[660]

#define SIMPLE_REPLACE &at[670]
#define SIMPLE_REPLACE_replace &at[671]
#define SIMPLE_REPLACE_whole_string &at[672]
#define SIMPLE_REPLACE_weasel_to_putative &at[673]

#define REPLACE_FUNC &at[668]
#define REPLACE_FUNC_simple_replace &at[669]
#define REPLACE_FUNC_haem_replace &at[674]

#define REPLACE_RULE &at[666]
#define REPLACE_RULE_replace_func &at[667]
#define REPLACE_RULE_move_to_note &at[675]

#define FIX_TYPE &at[664]

#define SUSPECT_RULE &at[648]
#define SUSPECT_RULE_find &at[649]
#define SUSPECT_RULE_except &at[661]
#define SUSPECT_RULE_feat_constraint &at[662]
#define SUSPECT_RULE_rule_type &at[663]
#define SUSPECT_RULE_replace &at[665]
#define SUSPECT_RULE_description &at[676]
#define SUSPECT_RULE_fatal &at[677]