summaryrefslogtreecommitdiffstats
path: root/mappings/bukkit-1.13-cl.csrg
blob: cd4190d9f002f86f07ca146e985346296453a005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
# (c) 2018 SpigotMC Pty. Ltd.
a EnumChatFormat
aa CriterionTriggerBrewedPotion
aaa DataConverterShulkerBoxItem
aab DataConverterSpawnEgg
aac DataConverterItemStackEnchantment
aad DataConverterMap
aae DataConverterFlattenSpawnEgg
aaf DataConverterFlatten
aag DataConverterPotionWater
aah DataConverterBook
aai DataConverterLeaves
aaj DataConverterLevelDataGeneratorOptions
aak DataConverterWorldGenSettings
aal DataConverterMobSpawner
aam DataConverterNamedEntity
aan DataConverterObjectiveDisplayName
aao DataConverterObjectiveRenderType
aap DataConverterVBO
aaq DataConverterKeybind
aar DataConverterKeybind2
aas DataConverterLang
aat DataConverterRecipes
aau DataConverterRecipeRename
aav DataConverterTypes
aaw DataConverterCoralFan
aax DataConverterCoral
aay DataConverterVillage
aaz DataConverterEntityNameAbstract
ab CriterionTriggerChangedDimension
aba DataConverterEntityRenameAbstract
abb DataConverterStatistic
abc DataConverterSwimStats
abd DataConverterTeamDisplayName
abe DataConverterVillagerTrade
abf DataConverterShoulderEntity
abi DataConverterSchemaNamed
abj DataConverterSchemaV100
abk DataConverterSchemaV102
abl DataConverterSchemaV1022
abm DataConverterSchemaV106
abn DataConverterSchemaV107
abo DataConverterSchemaV1125
abp DataConverterSchemaV135
abq DataConverterSchemaV143
abr DataConverterSchemaV1451
abs DataConverterSchemaV1451_1
abt DataConverterSchemaV1451_2
abu DataConverterSchemaV1451_3
abv DataConverterSchemaV1451_4
abw DataConverterSchemaV1451_5
abx DataConverterSchemaV1451_6
aby DataConverterSchemaV1451_7
abz DataConverterSchemaV1460
ac CriterionTriggerChanneledLightning
aca DataConverterSchemaV1466
acb DataConverterSchemaV1470
acc DataConverterSchemaV1481
acd DataConverterSchemaV1483
ace DataConverterSchemaV1486
acf DataConverterSchemaV1510
acg DataConverterSchemaV501
ach DataConverterSchemaV700
aci DataConverterSchemaV701
acj DataConverterSchemaV702
ack DataConverterSchemaV703
acl DataConverterSchemaV704
acm DataConverterSchemaV705
acn DataConverterSchemaV808
aco DataConverterSchemaV99
acq NamedIncrementingThreadFactory
acr Scheduler
acs IAsyncTaskHandler
act SchedulerBatch
acu SchedulerTask
acw WorldUpgraderIterator
acx WorldUpgrader
acz BossBattle
acz$a BossBattle$BarColor
acz$b BossBattle$BarStyle
ad CriterionTriggerConstructBeacon
ada InventoryLargeChest
adb IInventory
adc ContainerUtil
add IInventoryListener
ade InventoryUtils
adf EnumDifficulty
adg DifficultyDamageScaler
adh EnumHand
adi ITileEntityContainer
adj EnumInteractionResult
adk InteractionResultWrapper
adm ChestLock
adn ITileInventory
ado INamableTileEntity
adp ILootable
adq InventorySubcontainer
adr MojangStatisticsGenerator
ads IMojangStatistics
adt IWorldInventory
adu CombatEntry
adv CombatMath
adw CombatTracker
adx DamageSource
ady EntityDamageSource
adz EntityDamageSourceIndirect
ae CriterionTriggerConsumeItem
aea DamageSourceNetherBed
aec MobEffectAbsorption
aed MobEffectAttackDamage
aee MobEffectHealthBoost
aef InstantMobEffect
aeg MobEffectList
aeh MobEffect
aei MobEffectUtil
aej MobEffects
ael EntityAgeable
aem EntityAreaEffectCloud
aen IAnimal
aeo Entity
aer IEntitySelector
aer$a IEntitySelector$EntitySelectorEquipable
aes EntityTypes
aet EnumItemSlot
aet$a EnumItemSlot$Function
aeu EntityExperienceOrb
aev EntityFlying
aew EnumMainHand
aex EntityLiving
aey EntityInsentient
aez EnumCreatureType
af CriterionTriggerCuredZombieVillager
afa EnumMonsterType
afb EnumMoveType
afc EntityOwnable
afd EntityCreature
aff IJumpable
afg GroupDataEntity
afh EntityPositionTypes
afh$b EntityPositionTypes$Surface
afi EntityTameableAnimal
afj IAttribute
afk AttributeInstance
afl AttributeModifier
afm AttributeBase
afn AttributeMapBase
afo AttributeModifiable
afp AttributeMapServer
afq AttributeRanged
afs EntityAIBodyControl
afu ControllerLookDolphin
afv ControllerMoveFlying
afw ControllerJump
afx ControllerLook
afy ControllerMove
afy$a ControllerMove$Operation
ag CriterionConditionDamage
aga PathfinderGoalAvoidTarget
agb PathfinderGoalBeg
agc PathfinderGoalBoat
agd PathfinderGoalBreakDoor
age PathfinderGoalBreath
agf PathfinderGoalBreed
agg PathfinderGoalDoorInteract
agh PathfinderGoalEatTile
agi PathfinderGoalFleeSun
agj PathfinderGoalFloat
agk PathfinderGoalFollowBoat
agl PathfinderGoalFishSchool
agm PathfinderGoalFollowEntity
agn PathfinderGoalFollowOwnerParrot
ago PathfinderGoalFollowOwner
agp PathfinderGoalFollowParent
agq PathfinderGoal
agr PathfinderGoalSelector
agr$a PathfinderGoalSelector$PathfinderGoalSelectorItem
ags PathfinderGoalVillagerFarm
agt PathfinderGoalInteract
agu PathfinderGoalWaterJump
agv PathfinderGoalPerch
agw PathfinderGoalLeapAtTarget
agx PathfinderGoalLlamaFollow
agy PathfinderGoalLookAtPlayer
agz PathfinderGoalLookAtTradingPlayer
ah CriterionConditionDamageSource
aha PathfinderGoalMakeLove
ahb PathfinderGoalMeleeAttack
ahc PathfinderGoalMoveIndoors
ahd PathfinderGoalMoveThroughVillage
ahe PathfinderGoalGotoTarget
ahf PathfinderGoalMoveTowardsRestriction
ahg PathfinderGoalMoveTowardsTarget
ahh PathfinderGoalOcelotAttack
ahi PathfinderGoalJumpOnBlock
ahj PathfinderGoalOfferFlower
ahk PathfinderGoalOpenDoor
ahl PathfinderGoalPanic
ahm PathfinderGoalPlay
ahn PathfinderGoalRandomLookaround
aho PathfinderGoalRandomStroll
ahp PathfinderGoalRandomSwim
ahq PathfinderGoalArrowAttack
ahr PathfinderGoalBowShoot
ahs PathfinderGoalRemoveBlock
aht PathfinderGoalRestrictOpenDoor
ahu PathfinderGoalRestrictSun
ahv PathfinderGoalTame
ahw PathfinderGoalSit
ahx PathfinderGoalSwell
ahy PathfinderGoalTakeFlower
ahz PathfinderGoalTempt
ai CriterionConditionDistance
aia PathfinderGoalTradeWithPlayer
aib PathfinderGoalWater
aic PathfinderGoalInteractVillagers
aid PathfinderGoalRandomFly
aie PathfinderGoalRandomStrollLand
aif PathfinderGoalZombieAttack
aih PathfinderGoalDefendVillage
aii PathfinderGoalHurtByTarget
aij PathfinderGoalNearestAttackableTargetInsentient
aik PathfinderGoalTargetNearestPlayer
ail PathfinderGoalNearestAttackableTarget
ail$a PathfinderGoalNearestAttackableTarget$DistanceComparator
aim PathfinderGoalRandomTargetNonTamed
ain PathfinderGoalOwnerHurtByTarget
aio PathfinderGoalOwnerHurtTarget
aip PathfinderGoalTarget
air NavigationFlying
ais Navigation
ait NavigationAbstract
aiu NavigationListener
aiv NavigationSpider
aiw NavigationGuardian
aiy EntitySenses
aj CriterionTriggerEffectsChanged
aja RandomPositionGenerator
ajc VillageDoor
ajd Village
ajd$a Village$Aggressor
aje VillageSiege
ajf PersistentVillage
ajh EntityAmbient
aji EntityBat
ajk EntityFish
ajl EntityGolem
ajm EntityAnimal
ajn EntityChicken
ajo EntityCod
ajp EntityCow
ajq EntityDolphin
ajr EntityBird
ajs EntityIronGolem
ajt EntityMushroomCow
aju EntityOcelot
ajv EntityParrot
ajw EntityPig
ajx EntityPolarBear
ajy EntityPufferFish
ajz EntityRabbit
ajz$a EntityRabbit$PathfinderGoalKillerRabbitMeleeAttack
ajz$b EntityRabbit$PathfinderGoalRabbitAvoidTarget
ajz$c EntityRabbit$GroupDataRabbit
ajz$d EntityRabbit$ControllerJumpRabbit
ajz$e EntityRabbit$ControllerMoveRabbit
ajz$f EntityRabbit$PathfinderGoalRabbitPanic
ajz$g EntityRabbit$PathfinderGoalEatCarrots
ak CriterionTriggerEnchantedItem
aka EntitySalmon
akb EntitySheep
akc EntityPerchable
akd EntitySnowman
ake EntitySquid
ake$b EntitySquid$PathfinderGoalSquid
akf EntityTropicalFish
akg EntityTurtle
akh EntityWaterAnimal
aki EntityWolf
akj EntityHorseChestedAbstract
akk EntityHorseAbstract
akl EntityHorseDonkey
akm EntityHorse
akn EnumHorseArmor
ako EntityLlama
akp EntityHorseMule
akq EntityHorseSkeleton
akr PathfinderGoalHorseTrap
aks EntityHorseZombie
akw IComplex
akx EntityComplexPart
aky EntityEnderCrystal
akz EntityEnderDragon
al CriterionConditionEnchantments
alb AbstractDragonController
alc AbstractDragonControllerLanded
ald DragonControllerCharge
ale DragonControllerDying
alf DragonControllerHold
alg DragonControllerHover
alh DragonControllerLandingFly
ali DragonControllerLanding
alj IDragonController
alk DragonControllerLandedAttack
all DragonControllerLandedFlame
alm DragonControllerLandedSearch
aln DragonControllerStrafe
alo DragonControllerFly
alp DragonControllerPhase
alq DragonControllerManager
alt EntityWither
alv EntityArmorStand
alw EntityHanging
alx EntityItemFrame
aly EntityLeash
alz Paintings
am CriterionTriggerEnterBlock
ama EntityPainting
amc EntityFishingHook
amc$a EntityFishingHook$HookState
ame EntityWeather
amf EntityLightning
amh EntityFallingBlock
ami EntityItem
amj EntityTNTPrimed
aml EntityIllagerAbstract
amm EntitySkeletonAbstract
amn EntityBlaze
amn$a EntityBlaze$PathfinderGoalBlazeFireball
amo EntityCaveSpider
amp EntityCreeper
amq EntityDrowned
amr EntityGuardianElder
ams EntityEnderman
ams$a EntityEnderman$PathfinderGoalEndermanPlaceBlock
ams$b EntityEnderman$PathfinderGoalPlayerWhoLookedAtTarget
ams$c EntityEnderman$PathfinderGoalEndermanPickupBlock
amt EntityEndermite
amu IMonster
amv EntityEvoker
amw EntityGhast
amw$a EntityGhast$PathfinderGoalGhastMoveTowardsTarget
amw$b EntityGhast$ControllerGhast
amw$c EntityGhast$PathfinderGoalGhastAttackTarget
amw$d EntityGhast$PathfinderGoalGhastIdleMove
amx EntityGiantZombie
amy EntityGuardian
amy$a EntityGuardian$PathfinderGoalGuardianAttack
amy$b EntityGuardian$EntitySelectorGuardianTargetHumanSquid
amy$c EntityGuardian$ControllerMoveGuardian
amz EntityZombieHusk
an CriterionTriggerEntityHurtPlayer
ana EntityIllagerIllusioner
anb EntityMagmaCube
anc EntityMonster
and EntityPhantom
and$a EntityPhantom$AttackPhase
ane EntityPigZombie
ane$a EntityPigZombie$PathfinderGoalAnger
ane$b EntityPigZombie$PathfinderGoalAngerOther
anf IRangedEntity
ang GenericAttributes
anh EntityShulker
ani EntitySilverfish
ani$a EntitySilverfish$PathfinderGoalSilverfishHideInBlock
ani$b EntitySilverfish$PathfinderGoalSilverfishWakeOthers
anj EntitySkeleton
ank EntitySlime
ank$a EntitySlime$PathfinderGoalSlimeNearestPlayer
ank$b EntitySlime$PathfinderGoalSlimeRandomJump
ank$c EntitySlime$PathfinderGoalSlimeIdle
ank$d EntitySlime$ControllerMoveSlime
ank$e EntitySlime$PathfinderGoalSlimeRandomDirection
anl EntityIllagerWizard
anl$a EntityIllagerWizard$Spell
anm EntitySpider
anm$a EntitySpider$PathfinderGoalSpiderMeleeAttack
anm$b EntitySpider$GroupDataSpider
anm$c EntitySpider$PathfinderGoalSpiderNearestAttackableTarget
ann EntitySkeletonStray
ano EntityVex
anp EntityVindicator
anq EntityWitch
anr EntitySkeletonWither
ans EntityZombie
ans$b EntityZombie$GroupDataZombie
ant EntityZombieVillager
anw NPC
anx EntityVillager
anx$a EntityVillager$MerchantRecipeOptionBuy
anx$b EntityVillager$MerchantRecipeOptionBook
anx$c EntityVillager$MerchantRecipeOptionEnchant
anx$d EntityVillager$MerchantRecipeOptionProcess
anx$e EntityVillager$MerchantRecipeOptionSell
anx$f EntityVillager$IMerchantRecipeOption
anx$g EntityVillager$MerchantOptionRandomRange
ao CriterionConditionEntity
aoa PlayerAbilities
aob PlayerInventory
aoc EntityHuman
aoc$a EntityHuman$EnumBedResult
aoc$b EntityHuman$EnumChatVisibility
aoe AutoRecipeStackManager
aog EntityArrow
aog$a EntityArrow$PickupStatus
aoh EntityFireball
aoi EntityTippedArrow
aoj EntityDragonFireball
aok EntityEvokerFangs
aol EntityEnderSignal
aom EntityFireworks
aon EntityLargeFireball
aoo EntityLlamaSpit
aop IProjectile
aoq ProjectileHelper
aor EntityShulkerBullet
aos EntitySmallFireball
aot EntitySnowball
aou EntitySpectralArrow
aov EntityProjectile
aow EntityEgg
aox EntityEnderPearl
aoy EntityThrownExpBottle
aoz EntityPotion
ap CriterionConditionEntityType
apa EntityThrownTrident
apb EntityWitherSkull
apd EntityMinecartAbstract
apd$a EntityMinecartAbstract$EnumMinecartType
ape EntityMinecartContainer
apf EntityBoat
apf$a EntityBoat$EnumStatus
apf$b EntityBoat$EnumBoatType
apg EntityMinecartRideable
aph EntityMinecartChest
api EntityMinecartCommandBlock
apj EntityMinecartFurnace
apk EntityMinecartHopper
apl EntityMinecartMobSpawner
apm EntityMinecartTNT
app FoodMetaData
apr Container
aps ContainerAnvil
apt ContainerBeacon
apt$a ContainerBeacon$SlotBeacon
apu ContainerBrewingStand
apu$b ContainerBrewingStand$SlotBrewing
apu$c ContainerBrewingStand$SlotPotionBottle
apv ContainerChest
apw InventoryClickType
apx ICrafting
apy InventoryCrafting
apz ContainerWorkbench
aq CriterionTriggerFilledBucket
aqa ContainerDispenser
aqb ContainerEnchantTable
aqc SlotFurnaceFuel
aqd ContainerFurnace
aqe SlotFurnaceResult
aqf ContainerHopper
aqg InventoryHorseChest
aqh ContainerHorse
aqi ContainerPlayer
aqj InventoryMerchant
aqk ContainerMerchant
aql SlotMerchantResult
aqm InventoryEnderChest
aqn ContainerRecipeBook
aqo RecipeHolder
aqp InventoryCraftResult
aqq SlotResult
aqr ContainerShulkerBox
aqs SlotShulkerBox
aqt Slot
aqu AutoRecipeOutput
aqw ItemAir
aqx ItemArmor
aqy ArmorMaterial
aqz EnumArmorMaterial
ar CriterionTriggerFishingRodHooked
ara ItemArmorStand
arb ItemArrow
arc ItemAxe
ard ItemBanner
are ItemBed
arf ItemBlock
arg BlockActionContext
arh ItemBoat
ari ItemBoneMeal
arj ItemBook
ark ItemGlassBottle
arl ItemBow
arm ItemSoup
arn ItemBucket
aro ItemCarrotStick
arp ItemChorusFruit
arq ItemClock
arr ItemCocoa
ars ItemCompass
art ItemWorldMapBase
aru CreativeModeTab
arv ItemDebugStick
arw ItemTool
arx ItemBisected
ary EnumColor
arz ItemDye
as CriterionTriggerImpossible
asa ItemArmorColorable
asb ItemEgg
asc ItemElytra
asd ItemMapEmpty
ase ItemEnchantedBook
asf ItemFireworks
asf ItemGoldenAppleEnchanted
asg ItemEndCrystal
ash ItemEnderEye
asi ItemEnderPearl
asj ItemExpBottle
ask ItemFireball
asl ItemFireworks
asl$a ItemFireworks$EffectType
asm ItemFireworksCharge
asn ItemFishBucket
aso ItemFish
aso$a ItemFish$EnumFish
asp ItemFishingRod
asq ItemFlintAndSteel
asr ItemFood
ass ItemRestricted
ast ItemGoldenApple
asu ItemHanging
asv ItemHoe
asw Item
asw$a Item$Info
asx ItemCooldown
asx$a ItemCooldown$Info
asy ItemItemFrame
asz IDynamicTexture
at CriterionTriggerInventoryChanged
ata ItemStack
atb Items
atc ItemKnowledgeBook
atd ItemLeash
ate ItemLingeringPotion
atf ItemWorldMap
atg ItemMilkBucket
ath ItemMinecart
ati ItemNameTag
atj ItemPickaxe
atk ItemSkullPlayer
atl ItemPotion
atm EnumItemRarity
atn ItemRecord
ato ItemSaddle
atp ItemSeedFood
atq ItemSeeds
atr ItemCooldownPlayer
ats ItemShears
att ItemShield
atu ItemSpade
atv ItemSign
atw ItemNetherStar
atx ItemSnowball
aty ItemMonsterEgg
atz ItemSpectralArrow
au CriterionTriggerItemDurabilityChanged
aua ItemSplashPotion
aub ItemBlockWallable
auc ItemString
aud ItemSword
aue ToolMaterial
auf ItemToolMaterial
aug EnumToolMaterial
auh ItemTippedArrow
auj ItemTrident
auk EnumAnimation
aul ItemActionContext
aum ItemWaterLily
aun ItemBookAndQuill
auo ItemWrittenBook
aup PotionRegistry
auq PotionBrewer
auq$a PotionBrewer$PredicatedCombination
aur PotionUtil
aus Potions
auu RecipeArmorDye
auv RecipeBannerAdd
auw RecipeBannerDuplicate
auy RecipeBookClone
auz IRecipeComplex
av CriterionConditionItem
ava RecipeFireworks
avb RecipeFireworksFade
avc RecipeFireworksStar
avd RecipeItemStack
avd$a RecipeItemStack$StackProvider
avd$c RecipeItemStack$Provider
ave RecipeMapClone
avf RecipeMapExtend
avg IRecipe
avh CraftingManager
avi RecipeSerializer
avj RecipeSerializers
avk RecipeRepair
avl ShapedRecipes
avm ShapelessRecipes
avn RecipiesShield
avo RecipeShulkerBox
avp FurnaceRecipe
avq RecipeTippedArrow
avs EnchantmentArrowDamage
avt EnchantmentFlameArrows
avu EnchantmentInfiniteArrows
avv EnchantmentArrowKnockback
avw EnchantmentBinding
avx EnchantmentWeaponDamage
avy EnchantmentDurability
avz EnchantmentDigging
aw CriterionTriggerKilled
awa Enchantment
awa$a Enchantment$Rarity
awb EnchantmentSlotType
awc EnchantmentManager
awc$a EnchantmentManager$EnchantmentModifierArthropods
awc$b EnchantmentManager$EnchantmentModifierThorns
awc$c EnchantmentManager$EnchantmentModifier
awc$d EnchantmentManager$EnchantmentModifierDamage
awc$e EnchantmentManager$EnchantmentModifierProtection
awd WeightedRandomEnchant
awe Enchantments
awf EnchantmentFire
awg EnchantmentLure
awh EnchantmentFrostWalker
awi EnchantmentKnockback
awj EnchantmentLootBonus
awk EnchantmentMending
awl EnchantmentOxygen
awm EnchantmentProtection
awm$a EnchantmentProtection$DamageType
awn EnchantmentSweeping
awo EnchantmentThorns
awp EnchantmentTridentChanneling
awq EnchantmentTridentImpaling
awr EnchantmentTridentLoyalty
aws EnchantmentTridentRiptide
awt EnchantmentSilkTouch
awu EnchantmentVanishing
awv EnchantmentDepthStrider
aww EnchantmentWaterWorker
awz IMerchant
ax CriterionTriggerLevitation
axa MerchantRecipe
axb MerchantRecipeList
axd CommandBlockListenerAbstract
axe MobSpawnerAbstract
axf BlockActionData
axg IBlockAccess
axh TextureType
axi ChunkCoordIntPair
axl ExpiringMap
axm Explosion
axo GameRules
axo$a GameRules$GameRuleValue
axo$c GameRules$EnumGameRuleType
axp EnumGamemode
axr IMaterial
axs World
axt GeneratorAccess
axu ExceptionWorldConflict
axv IWorldAccess
axw IWorldReader
axx WorldSettings
axy IIBlockAccess
axz WorldType
ay CriterionConditionLocation
aya IWorldWriter
ayb EnumSkyBlock
ayc SpawnerCreature
ayd PortalTravelAgent
ayd$a PortalTravelAgent$ChunkCoordinatesPortal
aye ChunkCache
ayf TickListServer
ayg MobSpawnerData
ayh TickList
ayi NextTickListEntry
ayj TickListPriority
ayk BiomeMesa
ayl BiomeMesaPlataeuClear
aym BiomeBeach
ayn BiomeBase
ayn$b BiomeBase$Geography
ayn$c BiomeBase$EnumTemperature
ayn$d BiomeBase$Precipitation
ayn$e BiomeBase$BiomeMeta
ayo BiomeCache
ayp WorldChunkManager
ayq BiomeLayoutConfiguration
ayr BiomeLayout
ays Biomes
ayt BiomeBirchForest
ayu BiomeBirchForestHills
ayv WorldChunkManagerCheckerBoard
ayw BiomeLayoutCheckerboardConfiguration
ayx BiomeColdOcean
ayy BiomeRoofedForest
ayz BiomeRoofedForestMutated
az CriterionTriggerLocation
aza BiomeColdDeepOcean
azb BiomeFrozenDeepOcean
azc BiomeLukewarmDeepOcean
azd BiomeDeepOcean
aze BiomeWarmDeepOcean
azf BiomeDesert
azg BiomeDesertHills
azh BiomeDesertMutated
azi BiomeTheEndBarrenIsland
azj BiomeTheEndHighIsland
azk BiomeTheEndMediumIsland
azl BiomeMesaBryce
azm WorldChunkManagerHell
azn BiomeLayoutFixedConfiguration
azo BiomeForest
azp BiomeFlowerForest
azq BiomeFrozenOcean
azr BiomeFrozenRiver
azs BiomeMegaSpruceTaiga
azt BiomeRedwoodTaigaHillsMutated
azu BiomeMegaTaiga
azv BiomeMegaTaigaHills
azw BiomeExtremeHillsMutated
azx BiomeIcePlainsSpikes
azy BiomeJungle
azz BiomeJungleEdge
b CrashReport
ba CriterionConditionValue
baa BiomeJungleHills
bab BiomeLukewarmOcean
bac BiomeMesaPlateauClearMutated
bad BiomeExtremeHillsWithTreesMutated
bae BiomeJungleMutated
baf BiomeJungleEdgeMutated
bag BiomeMesaPlateauMutated
bah BiomeBigHills
bai BiomeExtremeHillsEdge
baj BiomeMushrooms
bak BiomeMushroomIslandShore
bak BiomeMushroomIslandShore
bal BiomeHell
bam BiomeOcean
ban WorldChunkManagerOverworld
bao BiomeLayoutOverworldConfiguration
bap BiomePlains
baq BiomeRiver
bar BiomeSavanna
bas BiomeSavannaPlateau
bat BiomeSavannaMutated
bau BiomeSavannaPlateauMutated
bav BiomeTheEndFloatingIslands
baw BiomeColdBeach
bax BiomeIceMountains
bay BiomeColdTaiga
baz BiomeColdTaigaHills
bb CriterionConditionMobEffect
bba BiomeColdTaigaMutated
bbb BiomeIcePlains
bbc BiomeStoneBeach
bbd BiomeSunflowerPlains
bbe BiomeSwamp
bbf BiomeSwamplandMutated
bbg BiomeTaiga
bbh BiomeTaigaHills
bbi BiomeTaigaMutated
bbj BiomeBirchForestMutated
bbk BiomeBirchForestHillsMutated
bbl BiomeTheEnd
bbm WorldChunkManagerTheEnd
bbn BiomeLayoutTheEndConfiguration
bbo BiomeVoid
bbp BiomeWarmOcean
bbq BiomeMesaPlataeu
bbr BiomeForestHills
bbs BiomeExtremeHillsWithTrees
bbu BlockBannerAbstract
bbv BlockSkullAbstract
bbw BlockAir
bbx BlockAnvil
bbx$a BlockAnvil$TileEntityContainerAnvil
bby BlockStemAttached
bbz BlockBanner
bc CriterionConditionNBT
bca BlockBarrier
bcb BlockCoralFanAbstract
bcc BlockCoralFanWallAbstract
bcd BlockTileEntity
bce BlockPressurePlateAbstract
bcf BlockMinecartTrackAbstract
bcg BlockBeacon
bch BlockBed
bci BlockBeetroot
bcj Block
bcj$b Block$EnumRandomOffset
bcj$c Block$Info
bck Blocks
bcl BlockBlueIce
bcm IBlockFragilePlantElement
bcn BlockBookshelf
bco BlockBrewingStand
bcp BlockBubbleColumn
bcq IFluidSource
bcr BlockPlant
bcs BlockButtonAbstract
bct BlockCactus
bcu BlockCake
bcv BlockCarrots
bcw BlockPumpkinCarved
bcx BlockCauldron
bcy BlockChest
bcz BlockChorusFlower
bd CriterionTriggerNetherTravel
bda BlockChorusFruit
bdb BlockClay
bdc BlockCocoa
bdd BlockCommand
bde BlockRedstoneComparator
bdf BlockConcretePowder
bdg BlockConduit
bdh BlockCoral
bdi BlockCoralFan
bdj BlockCoralPlant
bdk BlockCoralFanWall
bdl BlockWorkbench
bdl$a BlockWorkbench$TileEntityContainerWorkbench
bdm BlockCrops
bdn BlockTall
bdo BlockDaylightDetector
bdp BlockDeadBush
bdq BlockMinecartDetector
bdr BlockDiodeAbstract
bds BlockDirectional
bdt BlockDispenser
bdu BlockDoor
bdv BlockTallPlant
bdw BlockDragonEgg
bdx BlockDropper
bdy BlockEnchantmentTable
bdz BlockEndGateway
be CriterionTriggerPlacedBlock
bea BlockEnderPortal
beb BlockEnderPortalFrame
bec BlockEndRod
bed BlockEnderChest
bee ITileEntity
bef BlockAttachable
beg BlockFalling
beh BlockSoil
bei BlockFence
bej BlockFenceGate
bek BlockFire
bel BlockFlowers
bem BlockFlowerPot
ben BlockIceFrost
beo BlockFurnace
bep BlockGlass
beq BlockGlassPane
ber BlockGlazedTerracotta
bes BlockLightStone
bet BlockGrass
beu BlockGrassPath
bev BlockGravel
bew BlockHalfTransparent
bex BlockHay
bey BlockHopper
bez BlockFacingHorizontal
bf CriterionTriggerPlayerHurtEntity
bfa BlockHugeMushroom
bfb BlockIce
bfc BlockMonsterEggs
bfd BlockIronBars
bfe BlockJukeBox
bff BlockKelp
bfg BlockKelpPlant
bfh BlockLadder
bfi BlockLeaves
bfk BlockLever
bfl BlockFluids
bfm IFluidContainer
bfn BlockLogAbstract
bfo BlockMagma
bfp BlockMelon
bfq EnumBlockMirror
bfr BlockMushroom
bfs BlockMycel
bft BlockPortal
bft$a BlockPortal$Shape
bfu BlockNetherWart
bfv BlockNoDrop
bfw BlockNote
bfx BlockObserver
bfy BlockOre
bfz BlockPackedIce
bg CriterionTriggerRecipeUnlocked
bga BlockSprawling
bgb BlockSkullPlayer
bgc BlockSkullPlayerWall
bgd BlockPotatoes
bge BlockPowered
bgf BlockPoweredRail
bgg BlockPressurePlateBinary
bgg$a BlockPressurePlateBinary$EnumMobType
bgh BlockPumpkin
bgi BlockMinecartTrack
bgj MinecartTrackLogic
bgk BlockRedstoneOre
bgl BlockRedstoneWire
bgm BlockRedstoneLamp
bgn BlockRedstoneTorch
bgn$a BlockRedstoneTorch$RedstoneUpdateInfo
bgo BlockRedstoneTorchWall
bgp EnumRenderType
bgq BlockRepeater
bgr BlockRotatable
bgs EnumBlockRotation
bgt BlockSand
bgu BlockSapling
bgv BlockSeaLantern
bgw BlockSeaPickle
bgx BlockSeaGrass
bgy BlockTallPlantShearable
bgz BlockShulkerBox
bh CriterionTriggerSummonedEntity
bha BlockSign
bhb BlockSkull
bhb$b BlockSkull$Type
bhc BlockStepAbstract
bhd BlockSlime
bhe BlockSnowBlock
bhf BlockSnow
bhg BlockDirtSnow
bhh BlockSlowSand
bhi SoundEffectType
bhj BlockMobSpawner
bhk BlockSponge
bhl BlockDirtSnowSpreadable
bhm BlockStainedGlass
bhn BlockStainedGlassPane
bho BlockStairs
bhp BlockFloorSign
bhq BlockStem
bhr BlockStemmed
bhs BlockStone
bht BlockStoneButton
bhu BlockStructure
bhv BlockStructureVoid
bhw BlockReed
bhx BlockTallPlantFlower
bhy BlockLongGrass
bhz BlockTallSeaGrass
bi CriterionTriggerTamedAnimal
bia BlockTNT
bib BlockTorch
bic BlockTrapdoor
bid BlockChestTrapped
bie BlockTripwire
bif BlockTripwireHook
big BlockTurtleEgg
bih BlockVine
bii BlockBannerWall
bij BlockCobbleWall
bik BlockWallSign
bil BlockSkullWall
bim BlockTorchWall
bin BlockWaterLily
bio BlockWeb
bip BlockPressurePlateWeighted
biq BlockWetSponge
bir BlockWitherSkull
bis BlockWitherSkullWall
bit BlockWoodButton
biu BlockCarpet
biv TileEntityBanner
biw EnumBannerPatternType
bix TileEntityBeacon
bix$a TileEntityBeacon$BeaconColorTracker
biy TileEntityBed
biz TileEntity
bj CriterionTriggerTick
bja TileEntityTypes
bjb TileEntityBrewingStand
bjc TileEntityChest
bjd TileEntityCommand
bjd$a TileEntityCommand$Type
bje TileEntityComparator
bjf TileEntityConduit
bjg TileEntityLightDetector
bjh TileEntityDispenser
bji TileEntityDropper
bjj TileEntityEnchantTable
bjk TileEntityEnderChest
bjl TileEntityFurnace
bjm IHopper
bjn TileEntityHopper
bjo TileEntityJukeBox
bjq TileEntityContainer
bjr TileEntityLootable
bjs TileEntityShulkerBox
bjs$a TileEntityShulkerBox$AnimationPhase
bjt TileEntitySign
bju TileEntitySkull
bjv TileEntityMobSpawner
bjw TileEntityStructure
bjw$a TileEntityStructure$UpdateType
bjx TileEntityEndGateway
bjy TileEntityEnderPortal
bjz TileEntityChestTrapped
bk CriterionTriggerVillagerTrade
bkb WorldGenMegaTreeProvider
bkc WorldGenTreeProvider
bkd WorldGenTreeProviderAcacia
bke WorldGenTreeProviderBirch
bkf WorldGenMegaTreeProviderDarkOak
bkg WorldGenMegaTreeProviderJungle
bkh WorldGenTreeProviderOak
bki WorldGenTreeProviderSpruce
bkl BlockPistonMoving
bkm BlockPiston
bkn BlockPistonExtension
bko TileEntityPiston
bkp PistonExtendsChecker
bkr BlockDataAbstract
bks EnumBlockFaceShape
bkt IBlockData
bku BlockData
bkv BlockStateList
bkw IBlockDataHolder
bky ShapeDetectorBlock
bkz ShapeDetector
bkz$a ShapeDetector$BlockLoader
bkz$b ShapeDetector$ShapeDetectorCollection
bl CriterionTriggerUsedEnderEye
bla ShapeDetectorBuilder
blc PredicateBlockType
bld PredicateBlock
ble MaterialPredicate
blf BlockPredicate
blg BlockStatePredicate
blh PredicateBlocks
bli PredicateBlockLightTransmission
blj PredicateBlockLiquid
blk PredicateBlockNotSolidOrLiquid
bll PredicateBlockSolid
blm PredicateBlockTag
blo BlockState
blp BlockPropertyAttachPosition
blq BlockPropertyBedPart
blr BlockProperties
bls BlockStateBoolean
blt BlockPropertyChestType
blu BlockPropertyComparatorMode
blv BlockStateDirection
blw BlockPropertyDoorHinge
blx BlockPropertyDoubleBlockHalf
bly BlockStateEnum
blz BlockPropertyHalf
bm CriterionTriggerUsedTotem
bma BlockStateInteger
bmb BlockPropertyInstrument
bmc BlockPropertyPistonType
bmd IBlockState
bme BlockPropertyTrackPosition
bmf BlockPropertyRedstoneSide
bmg BlockPropertySlabType
bmh BlockPropertyStairsShape
bmi BlockPropertyStructureMode
bmk IWorldBorderListener
bml EnumWorldBorderState
bmm WorldBorder
bmo IChunkAccess
bmp ChunkGenerator
bmq ChunkGeneratorAbstract
bmr ChunkGeneratorFactory
bms ChunkGeneratorType
bmt IChunkProvider
bmu ChunkStatus
bmu$a ChunkStatus$Type
bmv NibbleArray
bmx DataPaletteGlobal
bmy DataPaletteHash
bmz ProtoChunkExtension
bn CriterionConditionRange
bna Chunk
bna$a Chunk$EnumTileEntityState
bnb ChunkSection
bnc DataPaletteLinear
bne OldNibbleArray
bnf DataPalette
bng DataPaletteExpandable
bnh DataPaletteBlock
bni ProtoChunk
bnj ProtoChunkTickList
bnk ChunkConverter
bnk$b ChunkConverter$Type
bnm ChunkRegionLoader
bnn IChunkLoader
bnp OldChunkLoader
bnp$a OldChunkLoader$OldChunk
bnq RegionFile
bnq$a RegionFile$ChunkBuffer
bnr RegionFileCache
bnt WorldProvider
bnu DimensionManager
bnv WorldProviderHell
bnw WorldProviderNormal
bnx EnumDragonRespawn
bny EnderDragonBattle
bny$a EnderDragonBattle$LoadState
bnz WorldProviderTheEnd
boc GeneratorSettingsDefault
bod GeneratorSettings
boe GeneratorSettingsDebug
bof ChunkProviderDebug
bog ChunkProviderFlat
boh WorldGenStage
boh$a WorldGenStage$Features
boh$b WorldGenStage$Decoration
boi HeightMap
boi$a HeightMap$Type
boi$b HeightMap$Use
boj GeneratorSettingsNether
bok ChunkProviderHell
bol GeneratorSettingsOverworld
bom ChunkProviderGenerate
bon MobSpawnerPhantom
boo GeneratorSettingsEnd
bop ChunkProviderTheEnd
boq SeededRandom
bor WorldGenTreeAbstract
bos WorldGenBigTree
bos$a WorldGenBigTree$Position
bot WorldGenForest
bou WorldGenFeatureBlockOffsetConfiguration
bov WorldGenTaigaStructure
bow WorldGenFeatureBlueIce
box WorldGenBonusChest
boy WorldGenBuriedTreasureConfiguration
boz WorldGenBuriedTreasure
bpa WorldGenFeatureMushroomConfiguration
bpb WorldGenMushrooms
bpc WorldGenCactus
bpd WorldGenFeatureChorusPlant
bpe WorldGenFeatureComposite
bpf WorldGenFeatureCoralClaw
bpg WorldGenFeatureCoral
bph WorldGenFeatureCoralMushroom
bpi WorldGenFeatureCoralTree
bpj WorldGenFeatureChanceDecorator
bpk WorldGenFeatureChanceDecoratorHeight
bpl WorldGenFeatureKelpConfiguration
bpm WorldGenDeadBush
bpn WorldGenFeatureChanceDecoratorRangeConfiguration
bpo WorldGenFeatureDecoratorConfiguration
bpp WorldGenFeatureChanceDecoratorCountConfiguration
bpq WorldGenFeatureDecoratorNoiseConfiguration
bpr WorldGenFeatureFlower
bps WorldGenFeatureDesertPyramidConfiguration
bpt WorldGenFeatureDesertPyramid
bpu WorldGenDesertWell
bpv WorldGenFeatureCircleConfiguration
bpw WorldGenFeatureCircle
bpx WorldGenFeatureDoublePlantConfiguration
bpy WorldGenTallPlant
bpz WorldGenEndCityConfiguration
bq CommandExceptionProvider
bqa WorldGenEndCity
bqb WorldGenEndGatewayConfiguration
bqc WorldGenEndGateway
bqd WorldGenEndIsland
bqe WorldGenEndTrophy
bqf WorldGenerator
bqg WorldGenFeatureConfiguration
bqh WorldGenFeatureRadiusConfiguration
bqi WorldGenFeatureCompositeFlower
bqj WorldGenFlowers
bqk WorldGenFeatureFlowerForest
bql WorldGenFossils
bqm WorldGenGroundBush
bqn WorldGenFire
bqo WorldGenFeatureHellFlowingLavaConfiguration
bqp WorldGenHellLava
bqq WorldGenHugeMushroomBrown
bqr WorldGenHugeMushroomRed
bqs WorldGenPackedIce1
bqt WorldGenPackedIce2
bqu WorldGenFeatureIceburgConfiguration
bqv WorldGenFeatureIceburg
bqw WorldGenFeatureIglooConfiguration
bqx WorldGenFeatureIgloo
bqy WorldGenFeatureJungleGrass
bqz WorldGenFeatureJunglePyramidConfiguration
br CustomFunction
bra WorldGenFeatureJunglePyramid
brb WorldGenFeatureJungleTree
brc WorldGenFeatureKelp
brd WorldGenFeatureLakeConfiguration
bre WorldGenLakes
brf WorldGenLightStone1
brg WorldGenJungleTree
brh WorldGenMegaTree
bri WorldGenMegaTreeAbstract
brj WorldGenMelon
brk WorldGenMineshaftConfiguration
brl WorldGenMineshaft
brl$b WorldGenMineshaft$Type
brm WorldGenDungeons
brn WorldGenNetherConfiguration
bro WorldGenNether
brp WorldGenFeatureDecoratorEmptyConfiguration
brq WorldGenFeatureEmptyConfiguration
brr WorldGenMonumentConfiguration
brs WorldGenMonument
brt WorldGenFeatureOceanRuinConfiguration
bru WorldGenFeatureOreConfiguration
brv WorldGenMinable
brw WorldGenTaiga1
brx WorldGenFeatureFlowerPlain
bry WorldGenFeatureConfigurationChance
brz WorldGenPumpkin
bs CommandException
bsa WorldGenFeatureChoiceConfiguration
bsb WorldGenFeatureChoice
bsc WorldGenFeatureRandomChoiceConfiguration
bsd WorldGenFeatureRandom
bse WorldGenFeatureRandomConfiguration
bsf WorldGenFeatureRandomScattered
bsg WorldGenFeatureRandomChoice
bsh WorldGenReed
bsi WorldGenFeatureReplaceBlockConfiguration
bsj WorldGenFeatureReplaceBlock
bsk WorldGenForestTree
bsl WorldGenAcaciaTree
bsm WorldGenFeatureSeaPickel
bsn WorldGenFeatureSeaGrass
bso WorldGenFeatureSeaGrassConfiguration
bsp WorldGenFeatureShipwreckConfiguration
bsq WorldGenFeatureShipwreck
bsr WorldGenFeatureBlockConfiguration
bss WorldGenFeatureBlock
bst WorldGenFeatureRandom2
bsu WorldGenFeatureRandom2Configuration
bsv WorldGenFeatureIceSnow
bsw WorldGenEnder
bsw$a WorldGenEnder$Spike
bsx WorldGenFeatureFlowingConfiguration
bsy WorldGenLiquids
bsz WorldGenTaiga2
bt ICommandListener
bta WorldGenFeatureStrongholdConfiguration
btb WorldGenStronghold
btc StructureGenerator
btd WorldGenFeatureFlowerSwamp
bte WorldGenSwampTree
btf WorldGenFeatureSwampHutConfiguration
btg WorldGenFeatureSwampHut
bth WorldGenFeatureTaigaGrass
bti WorldGenFeatureTallGrassConfiguration
btj WorldGenGrass
btk WorldGenTrees
btl WorldGenFeatureVillageConfiguration
btm WorldGenVillage
btn WorldGenVines
bto WorldGenFeatureEndPlatform
btp WorldGenWaterLily
btq WorldGenMansionConfiguration
btr WorldGenWoodlandMansion
btt WorldGenFlatLayerInfo
btu GeneratorSettingsFlat
btx WorldGenDecoratorCarveMask
bty WorldGenDecoratorChance
btz WorldGenDecoratorChanceHeight
bu CommandListenerWrapper
bua WorldGenDecoratorChancePass
bub WorldGenDecoratorSkyVisibleBiased
buc WorldGenDecoratorChorusPlant
bud WorldGenDecoratorHeightBiased
bue WorldGenDecoratorHeightAverage
buf WorldGenDecoratorHeightDouble
bug WorldGenDecoratorHeight64
buh WorldGenDecoratorHeight32
bui WorldGenDecoratorHeight
buj WorldGenDecoratorSkyVisible
buk WorldGenDecoratorHeightBiased2
bul WorldGenDecoratorHeightExtraChance
bum WorldGenDecoratorCarveMaskConfiguration
bun WorldGenDecoratorChanceConfiguration
buo WorldGenDecoratorFrequencyConfiguration
bup WorldGenDecoratorFrequencyChanceConfiguration
buq WorldGenDecoratorFrequencyExtraChanceConfiguration
bur WorldGenDecoratorNoiseConfiguration
bus WorldGenDecoratorRangeConfiguration
but WorldGenDecoratorHeightAverageConfiguration
buu WorldGenDecoratorEmerald
buv WorldGenDecoratorEndGateway
buw WorldGenDecoratorEndIsland
bux WorldGenDecorator
buy WorldGenDecoratorForestRock
buz WorldGenDecoratorIceburg
bv CommandDispatcher
bva WorldGenDecoratorLakeChanceConfiguration
bvb WorldGenDecoratorLakeLava
bvc WorldGenDecoratorLakeWater
bvd WorldGenDecoratorDungeonConfiguration
bve WorldGenDecoratorDungeon
bvf WorldGenDecoratorNoiseHeight32
bvg WorldGenDecoratorNoiseHeightDouble
bvh WorldGenDecoratorEmpty
bvi WorldGenDecoratorRoofedTree
bvj WorldGenDecoratorSpike
bvk WorldGenDecoratorSolidTop
bvl WorldGenDecoratorSolidTopNoise
bvm WorldGenDecoratorSolidTopHeight
bvn WorldGenDecoratorNetherChance
bvo WorldGenDecoratorNetherHeight
bvp WorldGenDecoratorNetherFire
bvq WorldGenDecoratorNetherGlowstone
bvr WorldGenDecoratorNetherMagma
bvs WorldGenDecoratorNetherRandomCount
bvv WorldGenCarverAbstract
bvw StructureBoundingBox
bvx WorldGenBuriedTreasurePieces
bvy WorldGenCanyon
bvz WorldGenCaves
bw ICompletionProvider
bwa WorldGenCarverWrapper
bwb WorldGenDesertPyramidPiece
bwc WorldGenEndCityPieces
bwc$a WorldGenEndCityPieces$Piece
bwc$b WorldGenEndCityPieces$PieceGenerator
bwd WorldGenCavesHell
bwe WorldGenIglooPiece
bwf WorldGenJunglePyramidPiece
bwg PersistentStructureLegacy
bwh WorldGenMineshaftPieces
bwh$a WorldGenMineshaftPieces$WorldGenMineshaftCorridor
bwh$b WorldGenMineshaftPieces$WorldGenMineshaftCross
bwh$d WorldGenMineshaftPieces$WorldGenMineshaftRoom
bwh$e WorldGenMineshaftPieces$WorldGenMineshaftStairs
bwi WorldGenNetherPieces
bwi$a WorldGenNetherPieces$WorldGenNetherPiece1
bwi$b WorldGenNetherPieces$WorldGenNetherPiece2
bwi$c WorldGenNetherPieces$WorldGenNetherPiece3
bwi$d WorldGenNetherPieces$WorldGenNetherPiece4
bwi$e WorldGenNetherPieces$WorldGenNetherPiece5
bwi$f WorldGenNetherPieces$WorldGenNetherPiece6
bwi$g WorldGenNetherPieces$WorldGenNetherPiece7
bwi$h WorldGenNetherPieces$WorldGenNetherPiece8
bwi$i WorldGenNetherPieces$WorldGenNetherPiece9
bwi$j WorldGenNetherPieces$WorldGenNetherPiece10
bwi$k WorldGenNetherPieces$WorldGenNetherPiece11
bwi$l WorldGenNetherPieces$WorldGenNetherPiece12
bwi$m WorldGenNetherPieces$WorldGenNetherPiece
bwi$n WorldGenNetherPieces$WorldGenNetherPieceWeight
bwi$o WorldGenNetherPieces$WorldGenNetherPiece13
bwi$p WorldGenNetherPieces$WorldGenNetherPiece14
bwi$q WorldGenNetherPieces$WorldGenNetherPiece15
bwj WorldGenMonumentPieces
bwj$a WorldGenMonumentPieces$WorldGenMonumentPieceSelector7
bwj$b WorldGenMonumentPieces$WorldGenMonumentPieceSelector6
bwj$c WorldGenMonumentPieces$WorldGenMonumentPieceSelector5
bwj$d WorldGenMonumentPieces$WorldGenMonumentPieceSelector4
bwj$e WorldGenMonumentPieces$WorldGenMonumentPieceSelector3
bwj$f WorldGenMonumentPieces$WorldGenMonumentPieceSelector2
bwj$g WorldGenMonumentPieces$WorldGenMonumentPieceSelector1
bwj$h WorldGenMonumentPieces$WorldGenMonumentPiece1
bwj$i WorldGenMonumentPieces$IWorldGenMonumentPieceSelector
bwj$j WorldGenMonumentPieces$WorldGenMonumentPiece2
bwj$k WorldGenMonumentPieces$WorldGenMonumentPiece3
bwj$l WorldGenMonumentPieces$WorldGenMonumentPiece4
bwj$m WorldGenMonumentPieces$WorldGenMonumentPiece5
bwj$n WorldGenMonumentPieces$WorldGenMonumentPiece6
bwj$o WorldGenMonumentPieces$WorldGenMonumentPiece7
bwj$p WorldGenMonumentPieces$WorldGenMonumentPieceEntry
bwj$q WorldGenMonumentPieces$WorldGenMonumentPiecePenthouse
bwj$r WorldGenMonumentPieces$WorldGenMonumentPiece
bwj$s WorldGenMonumentPieces$WorldGenMonumentPieceSimple
bwj$t WorldGenMonumentPieces$WorldGenMonumentPieceSimpleT
bwj$u WorldGenMonumentPieces$WorldGenMonumentPiece8
bwj$v WorldGenMonumentPieces$WorldGenMonumentStateTracker
bwk WorldGenFeatureOceanRuin
bwk$b WorldGenFeatureOceanRuin$Temperature
bwl WorldGenFeatureOceanRuinPieces
bwm WorldGenScatteredPiece
bwn WorldGenShipwreck
bwo WorldGenStrongholdPieces
bwo$a WorldGenStrongholdPieces$WorldGenStrongholdChestCorridor
bwo$b WorldGenStrongholdPieces$WorldGenStrongholdCorridor
bwo$c WorldGenStrongholdPieces$WorldGenStrongholdCrossing
bwo$d WorldGenStrongholdPieces$WorldGenStrongholdLeftTurn
bwo$e WorldGenStrongholdPieces$WorldGenStrongholdLibrary
bwo$f WorldGenStrongholdPieces$WorldGenStrongholdPieceWeight
bwo$g WorldGenStrongholdPieces$WorldGenStrongholdPortalRoom
bwo$h WorldGenStrongholdPieces$WorldGenStrongholdPrison
bwo$i WorldGenStrongholdPieces$WorldGenStrongholdRightTurn
bwo$j WorldGenStrongholdPieces$WorldGenStrongholdRoomCrossing
bwo$k WorldGenStrongholdPieces$WorldGenStrongholdStones
bwo$l WorldGenStrongholdPieces$WorldGenStrongholdStairs2
bwo$m WorldGenStrongholdPieces$WorldGenStrongholdStart
bwo$n WorldGenStrongholdPieces$WorldGenStrongholdStairs
bwo$o WorldGenStrongholdPieces$WorldGenStrongholdStairsStraight
bwo$p WorldGenStrongholdPieces$WorldGenStrongholdPiece
bwo$p$a WorldGenStrongholdPieces$WorldGenStrongholdPiece$WorldGenStrongholdDoorType
bwp WorldGenFactory
bwq PersistentIndexed
bws StructurePiece
bws$a StructurePiece$StructurePieceBlockSelector
bwt StructureStart
bwu WorldGenWitchHut
bwv DefinedStructurePiece
bww WorldGenCanyonOcean
bwx WorldGenCavesOcean
bwy WorldGenVillagePieces
bwy$a WorldGenVillagePieces$WorldGenVillageLibrary
bwy$b WorldGenVillagePieces$WorldGenVillageFarm2
bwy$c WorldGenVillagePieces$WorldGenVillageFarm
bwy$d WorldGenVillagePieces$WorldGenVillageLight
bwy$e WorldGenVillagePieces$WorldGenVillagePieceWeight
bwy$f WorldGenVillagePieces$WorldGenVillageButcher
bwy$g WorldGenVillagePieces$WorldGenVillageHouse
bwy$h WorldGenVillagePieces$WorldGenVillageHut
bwy$i WorldGenVillagePieces$WorldGenVillageTemple
bwy$j WorldGenVillagePieces$WorldGenVillageBlacksmith
bwy$k WorldGenVillagePieces$WorldGenVillageStartPiece
bwy$l WorldGenVillagePieces$WorldGenVillageRoad
bwy$m WorldGenVillagePieces$WorldGenVillageHouse2
bwy$n WorldGenVillagePieces$Material
bwy$o WorldGenVillagePieces$WorldGenVillagePiece
bwy$p WorldGenVillagePieces$WorldGenVillageRoadPiece
bwy$q WorldGenVillagePieces$WorldGenVillageWell
bwz WorldGenWoodlandMansionPieces
bx ArgumentChatFormat
bxa WorldGenCarver
bxc DefinedStructureProcessorRotation
bxd DefinedStructureManager
bxe DefinedStructureInfo
bxf DefinedStructureProcessor
bxg DefinedStructure
bxg$b DefinedStructure$BlockInfo
bxg$c DefinedStructure$EntityInfo
bxi WorldGenSurfaceComposite
bxj WorldGenSurfaceDefaultBlock
bxk WorldGenSurfaceExtremeHillMutated
bxl WorldGenSurfaceExtremeHills
bxm WorldGenSurfaceFrozenOcean
bxn WorldGenSurfaceMesaBryce
bxo WorldGenSurfaceMesaForest
bxp WorldGenSurfaceMesa
bxq WorldGenSurfaceNether
bxr WorldGenSurfaceEmpty
bxs WorldGenSurfaceSavannaMutated
bxt WorldGenSurface
bxu WorldGenSurfaceConfigurationBase
bxv WorldGenSurfaceConfiguration
bxw WorldGenSurfaceSwamp
bxx WorldGenSurfaceTaigaMega
bxz NoiseGeneratorPerlin
by ArgumentChatComponent
bya NoiseGeneratorOctaves
byb NoiseGenerator3
byc NoiseGenerator3Handler
byd NoiseGenerator
byf LightEngine
byg LightEngineBlock
byh ILightEngine
byi LightEngineSky
byk FluidTypeEmpty
byl FluidTypeFlowing
bym FluidType
byn Fluid
byo FluidImpl
byp FluidTypes
byq FluidTypeLava
byr Material
bys MaterialMapColor
byt EnumPistonReaction
byu FluidTypeWater
byw Area
byx AreaDimension
byy AreaFactory
byz AreaLazy
bz ArgumentAnchor
bz$a ArgumentAnchor$Anchor
bzb AreaContextTransformed
bzc WorldGenContext
bzd WorldGenContextLayer
bze WorldGenContextArea
bzg GenLayerDeepOcean
bzh GenLayerSpecial
bzh$a GenLayerSpecial$Special1
bzh$b GenLayerSpecial$Special2
bzh$c GenLayerSpecial$Special3
bzi GenLayerIsland
bzj GenLayerMushroomIsland
bzk GenLayerTopSoil
bzl GenLayerDesert
bzm GenLayerBiome
bzn LayerIsland
bzo GenLayer
bzp GenLayers
bzq GenLayerOceanEdge
bzr GenLayerOcean
bzs GenLayerPlains
bzt GenLayerRegionHills
bzu GenLayerIcePlains
bzv GenLayerCleaner
bzw GenLayerRiver
bzx GenLayerRiverMix
bzy GenLayerMushroomShore
bzz GenLayerSmooth
c CrashReportSystemDetails
c$a CrashReportSystemDetails$CrashReportDetail
ca ArgumentEntity
caa GenLayerZoomVoronoi
cab GenLayerZoom
cad AreaTransformer1
cae AreaTransformer2
caf AreaTransformer3
cag AreaTransformer4
cah AreaTransformer5
cai AreaTransformer6
caj AreaTransformer7
cak AreaTransformerIdentity
cal AreaTransformerOffset1
cam AreaTransformer
can AreaTransformer8
caq Path
car PathType
cas PathfinderFlying
cat PathPoint
cau PathfinderAbstract
cav PathEntity
caw PathMode
cax Pathfinder
cay PathfinderWater
caz PathfinderTurtle
cb ArgumentEntitySummon
cba PathfinderNormal
cbe RunnableSaveScoreboard
cbf PersistentBase
cbg MapIconBanner
cbh MapIcon
cbh$a MapIcon$Type
cbi WorldMap
cbi$a WorldMap$WorldMapHumanTracker
cbl ServerNBTManager
cbm WorldLoaderServer
cbn SecondaryWorldData
cbo WorldNBTStorage
cbp WorldLoader
cbq WorldData
cbr IDataManager
cbt Convertable
cbx IPlayerFileData
cbz PersistentCollection
cc ArgumentProfile
cca LootTables
ccb LootSelectorEmpty
ccc LootItem
ccd LootSelector
cce LotoSelectorEntry
ccf LootTable
ccg LootTableInfo
ccg$b LootTableInfo$EntityTarget
cch LootSelectorLootTable
cci LootTableRegistry
ccj LootValueBounds
cck LootItemFunctionEnchant
ccl LootEnchantLevel
ccm LootItemFunctionExplorationMap
ccn LootItemFunction
cco LootItemFunctions
ccp LootEnchantFunction
ccq LootItemFunctionSetAttribute
ccr LootItemFunctionSetCount
ccs LootItemFunctionSetDamage
cct LootItemFunctionSetName
ccu LootItemFunctionSetTag
ccv LootItemFunctionSmelt
ccy LootItemConditionEntityScore
ccz LootItemCondition
cd ArgumentEnchantment
cda LootItemConditions
cdb LootItemConditionEntityProperty
cdc LootItemConditionKilledByPlayer
cdd LootItemConditionRandomChance
cde LootItemConditionRandomChanceWithLooting
cdg LootEntityProperties
cdh LootEntityProperty
cdi LootEntityPropertyOnFire
cdl FileIOThread
cdm IAsyncChunkSaver
cdp AxisAlignedBB
cdq MovingObjectPosition
cdq$a MovingObjectPosition$EnumMovingObjectType
cdr FluidCollisionOption
cds Vec2F
cdt Vec3D
cdv VoxelShapeArray
cdw VoxelShapeBitSet
cdx OperatorBoolean
cdy VoxelShapeCubePoint
cdz VoxelShapeCube
ce ArgumentChat
cea VoxelShapeCubeMerger
ceb VoxelShapeDiscrete
cec VoxelShapeMergerIdentical
ced VoxelShapeMerger
cee VoxelShapeMergerList
cef DoubleListRange
ceg VoxelShapeMergerDisjoint
ceh DoubleListOffset
cei VoxelShapes
cej VoxelShapeSlice
cek VoxelShapeDiscreteSlice
cel VoxelShape
cem VoxelShapeWorldRegion
ceo ScoreboardObjective
cep ScoreboardTeam
ceq ScoreboardScore
cer Scoreboard
ces PersistentScoreboard
cet ScoreboardTeamBase
cet$a ScoreboardTeamBase$EnumTeamPush
cet$b ScoreboardTeamBase$EnumNameTagVisibility
ceu IScoreboardCriteria
ceu$a IScoreboardCriteria$EnumScoreboardHealthDisplay
cf ArgumentMobEffect
cg ArgumentNBTTag
ch ArgumentNBTKey
ci ArgumentScoreboardObjective
cj ArgumentScoreboardCriteria
ck ArgumentMathOperation
cl ArgumentParticle
cm ArgumentCriterionValue
cn ArgumentMinecraftKeyRegistered
co ArgumentScoreholder
cp ArgumentScoreboardSlot
cq ArgumentInventorySlot
cr ArgumentScoreboardTeam
cs ArgumentTileLocation
ct ArgumentBlockPredicate
cu ArgumentTile
cv ArgumentBlock
cx ArgumentPosition
cy IVectorPosition
cz ArgumentVectorPosition
d CrashReportCallable
da ArgumentRotation
db ArgumentRotationAxis
dc ArgumentVec2
dd ArgumentVec3
de ArgumentParserPosition
df VectorPosition
dh ArgumentTag
di ArgumentItemStack
dj ArgumentPredicateItemStack
dk ArgumentParserItemStack
dl ArgumentItemPredicate
dp EntitySelector
dq ArgumentParserSelector
dr PlayerSelector
dw ArgumentSerializer
dx ArgumentRegistry
dy ArgumentSerializerVoid
dz CompletionProviders
e DefaultUncaughtExceptionHandler
ea ArgumentSerializers
eb ArgumentSerializerDouble
ec ArgumentSerializerFloat
ed ArgumentSerializerInteger
ee ArgumentSerializerString
eh EnumAxisCycle
ej BlockPosition
ej$a BlockPosition$MutableBlockPosition
ek ISourceBlock
el SourceBlock
em DispenseBehaviorItem
en RegistryBlocks
eo RegistryDefault
ep EnumDirection
ep$a EnumDirection$EnumAxis
ep$b EnumDirection$EnumAxisDirection
ep$c EnumDirection$EnumDirectionLimit
eq EnumDirection8
er IDispenseBehavior
es Registry
et RegistryBlockID
eu ILocationSource
ev ISource
ew MapGeneratorUtils
ex RegistryMaterials
ey NonNullList
ez IPosition
f ThreadNamedUncaughtExceptionHandler
fa Position
fb IRegistry
fc Vector3f
fd RegistrySimple
ff BaseBlockPosition
fh ParticleParamBlock
fi ParticleParamRedstone
fj ParticleParamItem
fk ParticleParam
fl Particle
fm Particles
fn ParticleType
fp DebugReportGenerator
fq DebugReportProvider
fr HashCache
fs DebugReportAdvancement
ft DebugReportAdvancementAdventure
fu DebugReportAdvancementHusbandry
fv DebugReportAdvancementNether
fw DebugReportAdvancementStory
fx DebugReportAdvancementTheEnd
fz DebugReportBlocks
ga DebugReportCommands
gb DebugReportItems
ge DebugReportRecipeData
gf DebugReportRecipe
gg DebugReportRecipeShaped
gh DebugReportRecipeShapeless
gi DebugReportRecipeFurnace
gj DebugReportRecipeSpecial
gl DebugReportNBT
gm DebugReportMojangson
go DebugReportTagsBlock
gp DebugReportFluidTags
gq DebugReportTagsItem
gr DebugReportTags
gt LocaleLanguage
gv NBTTagByteArray
gw NBTTagByte
gx NBTList
gy NBTTagCompound
gz NBTTagDouble
h ReportedException
ha NBTTagEnd
hb NBTTagFloat
hc NBTTagIntArray
hd NBTTagInt
he NBTTagList
hf NBTTagLongArray
hg NBTTagLong
hh NBTReadLimiter
hi NBTCompressedStreamTools
hj DynamicOpsNBT
hk GameProfileSerializer
hl NBTNumber
hm NBTTagShort
hn NBTTagString
ho NBTBase
hp MojangsonParser
hr PacketEncryptionHandler
hs PacketDecrypter
ht PacketEncrypter
hu PacketDecompressor
hv PacketCompressor
hw NetworkManager
hw$a NetworkManager$QueuedPacket
hx EnumProtocol
hy PacketDataSerializer
hz PacketDecoder
i ResourceKeyInvalidException
ia PacketEncoder
ib PacketListener
ic SkipEncodeException
id PacketSplitter
ie PacketPrepender
ig ChatBaseComponent
ih ChatMessageType
ii ChatClickable
ii$a ChatClickable$EnumClickAction
ij IChatBaseComponent
ij$a IChatBaseComponent$ChatSerializer
ik ChatComponentUtils
il ChatHoverable
il$a ChatHoverable$EnumHoverAction
im ChatComponentKeybind
in ChatComponentScore
io ChatComponentSelector
ip ChatModifier
ip$a ChatModifier$ChatModifierSerializer
iq ChatComponentText
ir ChatMessage
is ChatMessageException
iv Packet
iw EnumProtocolDirection
ix PlayerConnectionUtils
iy PacketListenerPlayOut
iz PacketPlayOutSpawnEntity
j SharedConstants
ja PacketPlayOutSpawnEntityExperienceOrb
jb PacketPlayOutSpawnEntityWeather
jc PacketPlayOutSpawnEntityLiving
jd PacketPlayOutSpawnEntityPainting
je PacketPlayOutNamedEntitySpawn
jf PacketPlayOutAnimation
jg PacketPlayOutStatistic
jh PacketPlayOutBlockBreakAnimation
ji PacketPlayOutTileEntityData
jj PacketPlayOutBlockAction
jk PacketPlayOutBlockChange
jl PacketPlayOutBoss
jl$a PacketPlayOutBoss$Action
jm PacketPlayOutServerDifficulty
jn PacketPlayOutChat
jo PacketPlayOutMultiBlockChange
jo$a PacketPlayOutMultiBlockChange$MultiBlockChangeInfo
jp PacketPlayOutTabComplete
jq PacketPlayOutCommands
jr PacketPlayOutTransaction
js PacketPlayOutCloseWindow
jt PacketPlayOutOpenWindow
ju PacketPlayOutWindowItems
jv PacketPlayOutWindowData
jw PacketPlayOutSetSlot
jx PacketPlayOutSetCooldown
jy PacketPlayOutCustomPayload
jz PacketPlayOutCustomSoundEffect
k SystemUtils
k$a SystemUtils$OS
ka PacketPlayOutKickDisconnect
kb PacketPlayOutEntityStatus
kc PacketPlayOutExplosion
kd PacketPlayOutUnloadChunk
ke PacketPlayOutGameStateChange
kf PacketPlayOutKeepAlive
kg PacketPlayOutMapChunk
kh PacketPlayOutWorldEvent
ki PacketPlayOutWorldParticles
kj PacketPlayOutLogin
kk PacketPlayOutMap
kl PacketPlayOutEntity
kl$a PacketPlayOutEntity$PacketPlayOutRelEntityMove
kl$b PacketPlayOutEntity$PacketPlayOutRelEntityMoveLook
kl$c PacketPlayOutEntity$PacketPlayOutEntityLook
km PacketPlayOutVehicleMove
kn PacketPlayOutOpenSignEditor
ko PacketPlayOutAutoRecipe
kp PacketPlayOutAbilities
kq PacketPlayOutCombatEvent
kq$a PacketPlayOutCombatEvent$EnumCombatEventType
kr PacketPlayOutPlayerInfo
kr$a PacketPlayOutPlayerInfo$EnumPlayerInfoAction
kr$b PacketPlayOutPlayerInfo$PlayerInfoData
ks PacketPlayOutLookAt
kt PacketPlayOutPosition
kt$a PacketPlayOutPosition$EnumPlayerTeleportFlags
ku PacketPlayOutBed
kv PacketPlayOutRecipes
kv$a PacketPlayOutRecipes$Action
kw PacketPlayOutEntityDestroy
kx PacketPlayOutRemoveEntityEffect
ky PacketPlayOutResourcePackSend
kz PacketPlayOutRespawn
l Advancement
l$a Advancement$SerializedAdvancement
la PacketPlayOutEntityHeadRotation
lb PacketPlayOutSelectAdvancementTab
lc PacketPlayOutWorldBorder
lc$a PacketPlayOutWorldBorder$EnumWorldBorderAction
ld PacketPlayOutCamera
le PacketPlayOutHeldItemSlot
lf PacketPlayOutScoreboardDisplayObjective
lg PacketPlayOutEntityMetadata
lh PacketPlayOutAttachEntity
li PacketPlayOutEntityVelocity
lj PacketPlayOutEntityEquipment
lk PacketPlayOutExperience
ll PacketPlayOutUpdateHealth
lm PacketPlayOutScoreboardObjective
ln PacketPlayOutMount
lo PacketPlayOutScoreboardTeam
lp PacketPlayOutScoreboardScore
lq PacketPlayOutSpawnPosition
lr PacketPlayOutUpdateTime
ls PacketPlayOutTitle
ls$a PacketPlayOutTitle$EnumTitleAction
lt PacketPlayOutNamedSoundEffect
lu PacketPlayOutStopSound
lv PacketPlayOutPlayerListHeaderFooter
lw PacketPlayOutNBTQuery
lx PacketPlayOutCollect
ly PacketPlayOutEntityTeleport
lz PacketPlayOutAdvancements
m Advancements
ma PacketPlayOutUpdateAttributes
ma$a PacketPlayOutUpdateAttributes$AttributeSnapshot
mb PacketPlayOutEntityEffect
mc PacketPlayOutRecipeUpdate
md PacketPlayOutTags
me PacketListenerPlayIn
mf PacketPlayInTeleportAccept
mg PacketPlayInTileNBTQuery
mh PacketPlayInChat
mi PacketPlayInClientCommand
mi$a PacketPlayInClientCommand$EnumClientCommand
mj PacketPlayInSettings
mk PacketPlayInTabComplete
ml PacketPlayInTransaction
mm PacketPlayInEnchantItem
mn PacketPlayInWindowClick
mo PacketPlayInCloseWindow
mp PacketPlayInCustomPayload
mq PacketPlayInBEdit
mr PacketPlayInEntityNBTQuery
ms PacketPlayInUseEntity
ms$a PacketPlayInUseEntity$EnumEntityUseAction
mt PacketPlayInKeepAlive
mu PacketPlayInFlying
mu$a PacketPlayInFlying$PacketPlayInPosition
mu$b PacketPlayInFlying$PacketPlayInPositionLook
mu$c PacketPlayInFlying$PacketPlayInLook
mv PacketPlayInVehicleMove
mw PacketPlayInBoatMove
mx PacketPlayInPickItem
my PacketPlayInAutoRecipe
mz PacketPlayInAbilities
n AdvancementProgress
na PacketPlayInBlockDig
na$a PacketPlayInBlockDig$EnumPlayerDigType
nb PacketPlayInEntityAction
nb$a PacketPlayInEntityAction$EnumPlayerAction
nc PacketPlayInSteerVehicle
nd PacketPlayInRecipeDisplayed
nd$a PacketPlayInRecipeDisplayed$Status
ne PacketPlayInItemName
nf PacketPlayInResourcePackStatus
nf$a PacketPlayInResourcePackStatus$EnumResourcePackStatus
ng PacketPlayInAdvancements
ng$a PacketPlayInAdvancements$Status
nh PacketPlayInTrSel
ni PacketPlayInBeacon
nj PacketPlayInHeldItemSlot
nk PacketPlayInSetCommandBlock
nl PacketPlayInSetCommandMinecart
nm PacketPlayInSetCreativeSlot
nn PacketPlayInStruct
no PacketPlayInUpdateSign
np PacketPlayInArmAnimation
nq PacketPlayInSpectate
nr PacketPlayInUseItem
ns PacketPlayInBlockPlace
nu PacketHandshakingInSetProtocol
nv PacketHandshakingInListener
nx PacketLoginOutListener
ny PacketLoginOutCustomPayload
nz PacketLoginOutSuccess
o AdvancementRewards
oa PacketLoginOutEncryptionBegin
ob PacketLoginOutSetCompression
oc PacketLoginOutDisconnect
od PacketLoginInListener
oe PacketLoginInCustomPayload
of PacketLoginInStart
og PacketLoginInEncryptionBegin
oj PacketStatusOutListener
ok PacketStatusOutPong
ol PacketStatusOutServerInfo
om ServerPing
om$a ServerPing$ServerPingPlayerSample
om$a$a ServerPing$ServerPingPlayerSample$Serializer
om$b ServerPing$Serializer
om$c ServerPing$ServerData
om$c$a ServerPing$ServerData$Serializer
on PacketStatusInListener
oo PacketStatusInPing
op PacketStatusInStart
or DataWatcherObject
os DataWatcherSerializer
ot DataWatcherRegistry
ou DataWatcher
ou$a DataWatcher$Item
oy AutoRecipeAbstract
oz AutoRecipe
p CriterionTriggers
pa AutoRecipeFurnace
pc MinecraftKey
pe DispenseBehaviorProjectile
pf DispenserRegistry
ph ServerCommand
pj DebugOutputStream
pk EULA
pl RedirectStream
pm AdvancementDataPlayer
pn CancelledPacketHandleException
po AdvancementDataWorld
pp CustomFunctionData
pq IMinecraftServer
pr ScoreboardServer
pr$a ScoreboardServer$Action
ps PropertyManager
pt ITickable
pu BossBattleCustom
pv BossBattleCustomData
px CommandAdvancement
px$a CommandAdvancement$Action
px$b CommandAdvancement$Filter
py CommandBanIp
pz CommandBanList
q Criterion
qa CommandBan
qb CommmandBossBar
qc CommandClear
qd CommandClone
qd$a CommandClone$CommandCloneStoredTileEntity
qd$b CommandClone$Mode
qe CommandDatapack
qf CommandDeop
qg CommandDebug
qh CommandGamemodeDefault
qi CommandDifficulty
qj CommandEffect
qk CommandMe
ql CommandEnchant
qm CommandExecute
qn CommandXp
qn$a CommandXp$Unit
qo CommandFill
qo$a CommandFill$Mode
qp CommandFunction
qq CommandGamemode
qr CommandGamerule
qs CommandGive
qt CommandHelp
qu CommandKick
qv CommandKill
qw CommandList
qx CommandLocate
qy CommandTell
qz CommandOp
r CriterionProgress
ra CommandPardon
rb CommandPardonIP
rc CommandParticle
rd CommandPlaySound
re CommandPublish
rf CommandRecipe
rg CommandReload
rh CommandReplaceItem
ri CommandSaveAll
rj CommandSaveOff
rk CommandSaveOn
rl CommandSay
rm CommandScoreboard
rn CommandSeed
ro CommandSetBlock
ro$a CommandSetBlock$Filter
ro$b CommandSetBlock$Mode
rp CommandIdleTimeout
rq CommandSpawnpoint
rr CommandSetWorldSpawn
rs CommandSpreadPlayers
rt CommandStop
ru CommandStopSound
rv CommandSummon
rw CommandTag
rx CommandTeam
ry CommandTeleport
rz CommandTellRaw
s CriterionTrigger
sa CommandTime
sb CommandTitle
sc CommandTrigger
sd CommandWeather
se CommandWhitelist
sf CommandWorldBorder
sg CommandDataAccessorTile
sh CommandDataAccessor
si CommandData
sj CommandDataAccessorEntity
sm DedicatedPlayerList
sn DedicatedServer
so ThreadWatchdog
sq ServerGUI
sr PlayerListBox
ss GuiStatsComponent
sv DemoWorldServer
sw DemoPlayerInteractManager
sx SecondaryWorldServer
sy EntityTracker
sz ChunkMap
t CriterionInstance
ta BossBattleServer
tb ChunkProviderServer
tc WorldServer
td WorldManager
te EntityPlayer
tf PlayerInteractManager
tg EntityTrackerEntry
th RegionLimitedWorldAccess
ti TickListWorldGen
tj PlayerChunk
tk PlayerChunkMap
tn ChunkTaskBase
to ChunkTaskCarve
tp ChunkTask
tq ChunkTaskDecorate
tr ChunkTaskNull
ts ChunkTaskFinalize
tt ChunkTaskLight
tu ChunkTaskLiquidCarve
tv ChunkTaskSpawnMobs
tw ChunkTaskScheduler
ty LegacyPingHandler
u AdvancementDisplay
ua ServerConnection
ub PlayerConnection
uc HandshakeListener
ud LoginListener
ud$a LoginListener$EnumProtocolState
ue PacketStatusListener
uh ResourcePackAbstract
ui ResourcePackFile
uj ResourcePackFolder
uk IResourcePack
ul EnumResourcePackType
um ResourceNotFoundException
un ResourcePackVanilla
uo ResourcePackMetaParser
up ResourcePackInfo
uq ResourcePackInfoDeserializer
uu ResourcePackSourceFolder
uv EnumResourcePackVersion
uw ResourcePackRepository
ux ResourcePackSource
uy ResourcePackSourceVanilla
uz ResourcePackLoader
uz$a ResourcePackLoader$Position
v AdvancementFrameType
vb ResourceManagerFallback
vc IReloadableResourceManager
vd IResource
ve IResourceManager
vf IResourcePackListener
vg ResourceManager
vh Resource
vj ExpirableListEntry
vk UserCache
vk$a UserCache$UserCacheEntry
vk$b UserCache$BanEntrySerializer
vl IpBanList
vm IpBanEntry
vn NameReferencingFileConverter
vn$a NameReferencingFileConverter$FileConversionException
vo PlayerList
vp OpList
vq OpListEntry
vr JsonListEntry
vs JsonList
vs$a JsonList$JsonListEntrySerializer
vt GameProfileBanList
vu GameProfileBanEntry
vv WhiteList
vw WhiteListEntry
vy RemoteStatusReply
vz StatusChallengeUtils
w AdvancementRequirements
wa RemoteControlCommandListener
wc RemoteConnectionThread
wd RemoteStatusListener
wd$a RemoteStatusListener$RemoteStatusChallenge
we RemoteControlSession
wf RemoteControlListener
wh SoundEffect
wi SoundEffects
wj SoundCategory
wl RecipeBook
wm RecipeBookServer
wn ServerStatisticManager
wo Statistic
wp Counter
wq StatisticWrapper
wr StatisticList
ws StatisticManager
wu TagsBlock
wv TagsFluid
ww TagsItem
wx TagsServer
wy Tag
wz Tags
x AdvancementTree
xa TagRegistry
xc DataBits
xd EntitySlice
xf RegistryID
xg MinecraftEncryption
xi ChatDeserializer
xj HttpUtilities
xk InsensitiveStringMap
xl IntHashMap
xl$a IntHashMap$IntHashMapEntry
xm LazyInitVar
xo ChatTypeAdapterFactory
xp MathHelper
xq MethodProfiler
xq$a MethodProfiler$ProfilerInfo
xr IProgressUpdate
xt INamable
xu UtilColor
xv Tuple
xw WeightedRandom
xw$a WeightedRandom$WeightedRandomChoice
xx DataConverterRegistry
xy DataConverterAddChoices
xz DataConverterAdvancement
y CriterionInstanceAbstract
ya DataConverterBedBlock
yb DataConverterBedItem
yc DataConverterBiome
yd DataConverterBannerColour
ye DataConverterPiston
yf DataConverterCustomNameTile
yg DataConverterTileEntity
yh DataConverterJukeBox
yi DataConverterBlockEntityKeepPacked
yj DataConverterShulkerBoxBlock
yk DataConverterSignText
yl DataConverterBlockName
ym DataConverterBlockRename
yn DataConverterFlattenData
yo DataConverterFlattenState
yp ChunkConverterPalette
yp$b ChunkConverterPalette$Direction
yp$b$a ChunkConverterPalette$Direction$Axis
yp$b$b ChunkConverterPalette$Direction$AxisDirection
yq DataConverterChunkStructuresTemplateRename
yr DataConverterProtoChunk
ys DataConverterColorlessShulkerEntity
yt DataConverterArmorStand
yu DataConverterEntityBlockState
yv DataConverterEntityCodSalmon
yw DataConverterCustomNameEntity
yx DataConverterGuardian
yy DataConverterEquipment
yz DataConverterHealth
z CriterionTriggerBredAnimals
za DataConverterSaddle
zb DataConverterHorse
zc DataConverterEntity
zd DataConverterItemFrame
ze DataConverterMinecart
zf DataConverterHanging
zg DataConverterPainting
zh DataConverterEntityPufferfish
zi DataConverterDropChances
zj DataConverterEntityName
zk DataConverterRiding
zl DataConverterShulker
zm DataConverterSkeleton
zn DataConverterUUID
zo DataConverterEntityRename
zp DataConverterEntityTippedArrow
zq DataConverterWolf
zr DataConverterZombieType
zs DataConverterZombie
zt DataConverterHeightmapRenaming
zu DataConverterIglooMetadataRemoval
zv DataConverterBanner
zw DataConverterCustomNameItem
zx DataConverterMaterialId
zy DataConverterPotionId
zz DataConverterItemName