-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathobf2mcp.srg
12008 lines (12008 loc) · 942 KB
/
obf2mcp.srg
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
CL: a net/minecraft/src/EnumChatFormatting
CL: aa net/minecraft/src/ICommandManager
CL: aaa net/minecraft/src/IWorldAccess
CL: aac net/minecraft/src/WorldSettings
CL: aad net/minecraft/src/EnumGameType
CL: aae net/minecraft/src/IBlockAccess
CL: aaf net/minecraft/src/WorldType
CL: aag net/minecraft/src/EnumSkyBlock
CL: aah net/minecraft/src/SpawnerAnimals
CL: aai net/minecraft/src/Teleporter
CL: aaj net/minecraft/src/PortalPosition
CL: aak net/minecraft/src/ChunkCache
CL: aal net/minecraft/src/NextTickListEntry
CL: aam net/minecraft/src/BlockEventData
CL: aan net/minecraft/src/ChunkPosition
CL: aao net/minecraft/src/BiomeGenBeach
CL: aap net/minecraft/src/BiomeGenBase
CL: aaq net/minecraft/src/SpawnListEntry
CL: aar net/minecraft/src/BiomeCache
CL: aas net/minecraft/src/BiomeCacheBlock
CL: aat net/minecraft/src/BiomeDecorator
CL: aau net/minecraft/src/WorldChunkManager
CL: aav net/minecraft/src/BiomeGenDesert
CL: aaw net/minecraft/src/BiomeGenHills
CL: aax net/minecraft/src/WorldChunkManagerHell
CL: aay net/minecraft/src/BiomeGenForest
CL: aaz net/minecraft/src/BiomeGenHell
CL: ab net/minecraft/src/ICommandSender
CL: aba net/minecraft/src/BiomeGenSnow
CL: abb net/minecraft/src/BiomeGenJungle
CL: abc net/minecraft/src/BiomeGenMushroomIsland
CL: abd net/minecraft/src/BiomeGenOcean
CL: abe net/minecraft/src/BiomeGenPlains
CL: abg net/minecraft/src/BiomeGenRiver
CL: abh net/minecraft/src/BiomeGenSwamp
CL: abi net/minecraft/src/BiomeGenTaiga
CL: abj net/minecraft/src/BiomeGenEnd
CL: abk net/minecraft/src/BiomeEndDecorator
CL: abl net/minecraft/src/WorldGenWaterlily
CL: abn net/minecraft/src/IChunkProvider
CL: abo net/minecraft/src/NibbleArray
CL: abp net/minecraft/src/EmptyChunk
CL: abq net/minecraft/src/Chunk
CL: abr net/minecraft/src/ExtendedBlockStorage
CL: abs net/minecraft/src/NibbleArrayReader
CL: abv net/minecraft/src/IChunkLoader
CL: aby net/minecraft/src/ChunkLoader
CL: abz net/minecraft/src/AnvilConverterData
CL: ac net/minecraft/src/PlayerSelector
CL: aca net/minecraft/src/RegionFile
CL: acb net/minecraft/src/RegionFileChunkBuffer
CL: acc net/minecraft/src/RegionFileCache
CL: acd net/minecraft/src/AnvilChunkLoader
CL: ace net/minecraft/src/AnvilChunkLoaderPending
CL: ach net/minecraft/src/WorldProvider
CL: aci net/minecraft/src/WorldProviderHell
CL: acj net/minecraft/src/WorldProviderSurface
CL: ack net/minecraft/src/WorldProviderEnd
CL: acl net/minecraft/src/MapGenRavine
CL: acn net/minecraft/src/ChunkProviderFlat
CL: aco net/minecraft/src/ChunkProviderHell
CL: acp net/minecraft/src/MapGenCaves
CL: acq net/minecraft/src/MapGenBase
CL: acr net/minecraft/src/MapGenCavesHell
CL: acs net/minecraft/src/ChunkProviderGenerate
CL: act net/minecraft/src/ChunkProviderEnd
CL: acv net/minecraft/src/WorldGenBigTree
CL: acw net/minecraft/src/WorldGenForest
CL: acx net/minecraft/src/WorldGeneratorBonusChest
CL: acy net/minecraft/src/WorldGenCactus
CL: ad net/minecraft/src/CommandDefaultGameMode
CL: ada net/minecraft/src/WorldGenClay
CL: adb net/minecraft/src/WorldGenDeadBush
CL: adc net/minecraft/src/WorldGenDesertWells
CL: add net/minecraft/src/WorldGenerator
CL: ade net/minecraft/src/WorldGenFlowers
CL: adf net/minecraft/src/WorldGenShrub
CL: adg net/minecraft/src/WorldGenFire
CL: adh net/minecraft/src/WorldGenGlowStone2
CL: adi net/minecraft/src/WorldGenHellLava
CL: adk net/minecraft/src/WorldGenBigMushroom
CL: adl net/minecraft/src/WorldGenLakes
CL: adm net/minecraft/src/WorldGenGlowStone1
CL: adn net/minecraft/src/WorldGenHugeTrees
CL: ado net/minecraft/src/WorldGenDungeons
CL: adp net/minecraft/src/WorldGenMinable
CL: adq net/minecraft/src/WorldGenTaiga1
CL: adr net/minecraft/src/WorldGenPumpkin
CL: ads net/minecraft/src/WorldGenReed
CL: adt net/minecraft/src/WorldGenSand
CL: adu net/minecraft/src/WorldGenSpikes
CL: adv net/minecraft/src/WorldGenLiquids
CL: adw net/minecraft/src/WorldGenTaiga2
CL: adx net/minecraft/src/WorldGenSwamp
CL: ady net/minecraft/src/WorldGenTallGrass
CL: adz net/minecraft/src/WorldGenTrees
CL: ae net/minecraft/src/CommandEffect
CL: aea net/minecraft/src/WorldGenVines
CL: aeb net/minecraft/src/FlatGeneratorInfo
CL: aec net/minecraft/src/FlatLayerInfo
CL: aee net/minecraft/src/StructureBoundingBox
CL: aef net/minecraft/src/MapGenMineshaft
CL: aeg net/minecraft/src/StructureMineshaftPieces
CL: aeh net/minecraft/src/ComponentMineshaftCorridor
CL: aei net/minecraft/src/ComponentMineshaftCross
CL: aej net/minecraft/src/ComponentMineshaftRoom
CL: aek net/minecraft/src/ComponentMineshaftStairs
CL: ael net/minecraft/src/StructureMineshaftStart
CL: aem net/minecraft/src/MapGenNetherBridge
CL: aen net/minecraft/src/StructureNetherBridgeStart
CL: aeo net/minecraft/src/StructureNetherBridgePieces
CL: aep net/minecraft/src/ComponentNetherBridgeCrossing3
CL: aeq net/minecraft/src/ComponentNetherBridgeEnd
CL: aer net/minecraft/src/ComponentNetherBridgeStraight
CL: aes net/minecraft/src/ComponentNetherBridgeCorridor3
CL: aet net/minecraft/src/ComponentNetherBridgeCorridor4
CL: aeu net/minecraft/src/ComponentNetherBridgeEntrance
CL: aev net/minecraft/src/ComponentNetherBridgeCrossing2
CL: aew net/minecraft/src/ComponentNetherBridgeCorridor
CL: aex net/minecraft/src/ComponentNetherBridgeCorridor5
CL: aey net/minecraft/src/ComponentNetherBridgeCorridor2
CL: aez net/minecraft/src/ComponentNetherBridgeNetherStalkRoom
CL: af net/minecraft/src/CommandEnchant
CL: afa net/minecraft/src/ComponentNetherBridgeThrone
CL: afb net/minecraft/src/ComponentNetherBridgePiece
CL: afc net/minecraft/src/StructureNetherBridgePieceWeight
CL: afd net/minecraft/src/ComponentNetherBridgeCrossing
CL: afe net/minecraft/src/ComponentNetherBridgeStairs
CL: aff net/minecraft/src/ComponentNetherBridgeStartPiece
CL: afg net/minecraft/src/MapGenScatteredFeature
CL: afh net/minecraft/src/StructureScatteredFeatureStart
CL: afj net/minecraft/src/ComponentScatteredFeaturePieces2
CL: afk net/minecraft/src/ComponentScatteredFeatureDesertPyramid
CL: afl net/minecraft/src/ComponentScatteredFeatureJunglePyramid
CL: afm net/minecraft/src/StructureScatteredFeatureStones
CL: afn net/minecraft/src/ComponentScatteredFeature
CL: afo net/minecraft/src/ComponentScatteredFeatureSwampHut
CL: afp net/minecraft/src/MapGenStronghold
CL: afq net/minecraft/src/StructureStrongholdStart
CL: afr net/minecraft/src/StructureStrongholdPieces
CL: afs net/minecraft/src/StructureStrongholdPieceWeight2
CL: aft net/minecraft/src/StructureStrongholdPieceWeight3
CL: afu net/minecraft/src/EnumDoorHelper
CL: afv net/minecraft/src/ComponentStrongholdChestCorridor
CL: afw net/minecraft/src/ComponentStrongholdCorridor
CL: afx net/minecraft/src/ComponentStrongholdCrossing
CL: afy net/minecraft/src/ComponentStrongholdLeftTurn
CL: afz net/minecraft/src/ComponentStrongholdLibrary
CL: ag net/minecraft/src/CommandXP
CL: aga net/minecraft/src/StructureStrongholdPieceWeight
CL: agb net/minecraft/src/ComponentStrongholdPortalRoom
CL: agc net/minecraft/src/ComponentStrongholdPrison
CL: agd net/minecraft/src/ComponentStrongholdRightTurn
CL: age net/minecraft/src/ComponentStrongholdRoomCrossing
CL: agf net/minecraft/src/StructureStrongholdStones
CL: agg net/minecraft/src/ComponentStrongholdStairs
CL: agh net/minecraft/src/ComponentStrongholdStairs2
CL: agi net/minecraft/src/ComponentStrongholdStraight
CL: agj net/minecraft/src/ComponentStrongholdStairsStraight
CL: agk net/minecraft/src/ComponentStronghold
CL: agl net/minecraft/src/EnumDoor
CL: agm net/minecraft/src/MapGenStructure
CL: agn net/minecraft/src/CallableIsFeatureChunk
CL: ago net/minecraft/src/CallableChunkPosHash
CL: agp net/minecraft/src/CallableStructureType
CL: agq net/minecraft/src/StructureComponent
CL: agr net/minecraft/src/StructurePieceBlockSelector
CL: ags net/minecraft/src/StructureStart
CL: agt net/minecraft/src/MapGenVillage
CL: agu net/minecraft/src/StructureVillageStart
CL: agv net/minecraft/src/StructureVillagePieces
CL: agw net/minecraft/src/ComponentVillageHouse1
CL: agx net/minecraft/src/ComponentVillageField
CL: agy net/minecraft/src/ComponentVillageField2
CL: agz net/minecraft/src/ComponentVillageTorch
CL: ah net/minecraft/src/CommandDifficulty
CL: aha net/minecraft/src/StructureVillagePieceWeight
CL: ahb net/minecraft/src/ComponentVillageHall
CL: ahc net/minecraft/src/ComponentVillageHouse4_Garden
CL: ahd net/minecraft/src/ComponentVillageWoodHut
CL: ahe net/minecraft/src/ComponentVillageChurch
CL: ahf net/minecraft/src/ComponentVillageHouse2
CL: ahg net/minecraft/src/ComponentVillageStartPiece
CL: ahh net/minecraft/src/ComponentVillagePathGen
CL: ahi net/minecraft/src/ComponentVillageHouse3
CL: ahj net/minecraft/src/ComponentVillage
CL: ahk net/minecraft/src/ComponentVillageRoadPiece
CL: ahl net/minecraft/src/ComponentVillageWell
CL: ahp net/minecraft/src/NoiseGeneratorPerlin
CL: ahq net/minecraft/src/NoiseGeneratorOctaves
CL: ahv net/minecraft/src/NoiseGenerator
CL: ahw net/minecraft/src/MaterialLogic
CL: ahx net/minecraft/src/MaterialTransparent
CL: ahy net/minecraft/src/MaterialLiquid
CL: ahz net/minecraft/src/Material
CL: ai net/minecraft/src/CommandGameMode
CL: aia net/minecraft/src/MaterialWeb
CL: aib net/minecraft/src/MapColor
CL: aic net/minecraft/src/MaterialPortal
CL: aid net/minecraft/src/GenLayerAddIsland
CL: aie net/minecraft/src/GenLayerAddMushroomIsland
CL: aif net/minecraft/src/GenLayerAddSnow
CL: aig net/minecraft/src/GenLayerBiome
CL: aik net/minecraft/src/GenLayerFuzzyZoom
CL: ail net/minecraft/src/IntCache
CL: aim net/minecraft/src/GenLayerIsland
CL: ain net/minecraft/src/GenLayer
CL: aio net/minecraft/src/GenLayerHills
CL: aip net/minecraft/src/GenLayerRiverInit
CL: aiq net/minecraft/src/GenLayerRiver
CL: air net/minecraft/src/GenLayerRiverMix
CL: ais net/minecraft/src/GenLayerShore
CL: ait net/minecraft/src/GenLayerSmooth
CL: aiv net/minecraft/src/GenLayerSwampRivers
CL: aiy net/minecraft/src/GenLayerVoronoiZoom
CL: aiz net/minecraft/src/GenLayerZoom
CL: aj net/minecraft/src/CommandGameRule
CL: aja net/minecraft/src/Path
CL: ajb net/minecraft/src/PathPoint
CL: ajc net/minecraft/src/PathEntity
CL: ajd net/minecraft/src/PathFinder
CL: ajf net/minecraft/src/MapData
CL: ajg net/minecraft/src/MapInfo
CL: ajh net/minecraft/src/MapCoord
CL: aji net/minecraft/src/WorldSavedData
CL: ajj net/minecraft/src/AnvilSaveHandler
CL: ajk net/minecraft/src/AnvilSaveConverter
CL: ajl net/minecraft/src/AnvilSaveConverterFileFilter
CL: ajm net/minecraft/src/DerivedWorldInfo
CL: ajn net/minecraft/src/SaveHandler
CL: ajo net/minecraft/src/SaveFormatOld
CL: ajp net/minecraft/src/WorldInfo
CL: ajq net/minecraft/src/CallableLevelSeed
CL: ajr net/minecraft/src/CallableLevelGenerator
CL: ajs net/minecraft/src/CallableLevelGeneratorOptions
CL: ajt net/minecraft/src/CallableLevelSpawnLocation
CL: aju net/minecraft/src/CallableLevelTime
CL: ajv net/minecraft/src/CallableLevelDimension
CL: ajw net/minecraft/src/CallableLevelStorageVersion
CL: ajx net/minecraft/src/CallableLevelWeather
CL: ajy net/minecraft/src/CallableLevelGamemode
CL: ajz net/minecraft/src/ISaveHandler
CL: ak net/minecraft/src/CommandGive
CL: akc net/minecraft/src/ISaveFormat
CL: akn net/minecraft/src/IPlayerFileData
CL: ako net/minecraft/src/MapStorage
CL: akp net/minecraft/src/ThreadedFileIOBase
CL: akq net/minecraft/src/IThreadedFileIO
CL: aks net/minecraft/src/BlockAnvil
CL: akt net/minecraft/src/BlockContainer
CL: aku net/minecraft/src/BlockBasePressurePlate
CL: akv net/minecraft/src/BlockRailBase
CL: akw net/minecraft/src/BlockBaseRailLogic
CL: akx net/minecraft/src/BlockBeacon
CL: aky net/minecraft/src/BlockBed
CL: akz net/minecraft/src/BlockBookshelf
CL: al net/minecraft/src/CommandHelp
CL: ala net/minecraft/src/BlockBrewingStand
CL: alb net/minecraft/src/BlockFlower
CL: alc net/minecraft/src/BlockButton
CL: ald net/minecraft/src/BlockCactus
CL: ale net/minecraft/src/BlockCake
CL: alf net/minecraft/src/BlockCarrot
CL: alg net/minecraft/src/BlockCauldron
CL: alh net/minecraft/src/BlockChest
CL: ali net/minecraft/src/BlockClay
CL: alj net/minecraft/src/BlockCloth
CL: alk net/minecraft/src/BlockCocoa
CL: all net/minecraft/src/BlockCommandBlock
CL: alm net/minecraft/src/BlockComparator
CL: alo net/minecraft/src/BlockCrops
CL: alp net/minecraft/src/BlockDaylightDetector
CL: alq net/minecraft/src/BlockDeadBush
CL: alr net/minecraft/src/BlockDetectorRail
CL: als net/minecraft/src/BlockRedstoneLogic
CL: alt net/minecraft/src/BlockDirectional
CL: alu net/minecraft/src/BlockDirt
CL: alv net/minecraft/src/BlockDispenser
CL: alw net/minecraft/src/BlockDoor
CL: alx net/minecraft/src/BlockDropper
CL: aly net/minecraft/src/BlockDragonEgg
CL: alz net/minecraft/src/BlockEnchantmentTable
CL: am net/minecraft/src/CommandKill
CL: ama net/minecraft/src/BlockEnderChest
CL: amb net/minecraft/src/ITileEntityProvider
CL: amc net/minecraft/src/BlockFarmland
CL: amd net/minecraft/src/BlockFenceGate
CL: ame net/minecraft/src/BlockFence
CL: amf net/minecraft/src/BlockFire
CL: amg net/minecraft/src/BlockFlowerPot
CL: amh net/minecraft/src/BlockFurnace
CL: ami net/minecraft/src/BlockGlass
CL: amj net/minecraft/src/BlockGrass
CL: amk net/minecraft/src/BlockGravel
CL: aml net/minecraft/src/BlockHalfSlab
CL: amm net/minecraft/src/BlockBreakable
CL: amn net/minecraft/src/BlockSand
CL: amo net/minecraft/src/BlockSoulSand
CL: amp net/minecraft/src/BlockNetherrack
CL: amq net/minecraft/src/BlockHopper
CL: amr net/minecraft/src/BlockMushroomCap
CL: ams net/minecraft/src/BlockIce
CL: amt net/minecraft/src/BlockLadder
CL: amu net/minecraft/src/BlockLeaves
CL: amw net/minecraft/src/BlockLever
CL: amx net/minecraft/src/BlockGlowStone
CL: amy net/minecraft/src/BlockFluid
CL: amz net/minecraft/src/BlockFlowing
CL: an net/minecraft/src/CommandShowSeed
CL: ana net/minecraft/src/BlockStationary
CL: anb net/minecraft/src/BlockLockedChest
CL: anc net/minecraft/src/BlockMelon
CL: and net/minecraft/src/BlockOreStorage
CL: ane net/minecraft/src/BlockMobSpawner
CL: anf net/minecraft/src/BlockMushroom
CL: ang net/minecraft/src/BlockNote
CL: anh net/minecraft/src/BlockMycelium
CL: ani net/minecraft/src/BlockNetherStalk
CL: anj net/minecraft/src/BlockRedstoneTorch
CL: ank net/minecraft/src/RedstoneUpdateInfo
CL: anl net/minecraft/src/BlockObsidian
CL: anm net/minecraft/src/BlockOre
CL: ann net/minecraft/src/BlockPortal
CL: ano net/minecraft/src/BlockPotato
CL: anp net/minecraft/src/BlockPoweredOre
CL: anq net/minecraft/src/BlockRailPowered
CL: anr net/minecraft/src/BlockPressurePlate
CL: ans net/minecraft/src/EnumMobType
CL: ant net/minecraft/src/BlockPumpkin
CL: anu net/minecraft/src/BlockQuartz
CL: anv net/minecraft/src/BlockRail
CL: anw net/minecraft/src/BlockJukeBox
CL: anx net/minecraft/src/TileEntityRecordPlayer
CL: any net/minecraft/src/BlockRedstoneWire
CL: anz net/minecraft/src/BlockRedstoneOre
CL: aoa net/minecraft/src/BlockRedstoneLight
CL: aob net/minecraft/src/BlockReed
CL: aoc net/minecraft/src/BlockRedstoneRepeater
CL: aod net/minecraft/src/BlockSandStone
CL: aoe net/minecraft/src/BlockSapling
CL: aof net/minecraft/src/BlockSign
CL: aog net/minecraft/src/BlockSkull
CL: aoh net/minecraft/src/BlockStoneBrick
CL: aoi net/minecraft/src/BlockSnowBlock
CL: aoj net/minecraft/src/BlockSponge
CL: aok net/minecraft/src/BlockStairs
CL: aol net/minecraft/src/BlockStem
CL: aom net/minecraft/src/BlockButtonStone
CL: aon net/minecraft/src/BlockSilverfish
CL: aoo net/minecraft/src/BlockStep
CL: aop net/minecraft/src/BlockStone
CL: aoq net/minecraft/src/BlockTallGrass
CL: aor net/minecraft/src/BlockEndPortal
CL: aos net/minecraft/src/BlockEndPortalFrame
CL: aot net/minecraft/src/BlockPane
CL: aou net/minecraft/src/Block
CL: aov net/minecraft/src/StepSoundStone
CL: aow net/minecraft/src/StepSoundSand
CL: aox net/minecraft/src/StepSoundAnvil
CL: aoy net/minecraft/src/StepSound
CL: aoz net/minecraft/src/BlockTNT
CL: ap net/minecraft/src/CommandTime
CL: apa net/minecraft/src/BlockSnow
CL: apb net/minecraft/src/BlockTorch
CL: apc net/minecraft/src/BlockLeavesBase
CL: apd net/minecraft/src/BlockTrapDoor
CL: ape net/minecraft/src/BlockLog
CL: apf net/minecraft/src/BlockTripWireSource
CL: apg net/minecraft/src/BlockTripWire
CL: aph net/minecraft/src/BlockVine
CL: api net/minecraft/src/BlockWall
CL: apj net/minecraft/src/BlockLilyPad
CL: apk net/minecraft/src/BlockWeb
CL: apl net/minecraft/src/BlockPressurePlateWeighted
CL: apm net/minecraft/src/BlockButtonWood
CL: apn net/minecraft/src/BlockWoodSlab
CL: apo net/minecraft/src/BlockWood
CL: app net/minecraft/src/BlockWorkbench
CL: apq net/minecraft/src/TileEntityBeacon
CL: apr net/minecraft/src/TileEntityBrewingStand
CL: aps net/minecraft/src/TileEntityChest
CL: apt net/minecraft/src/TileEntityCommandBlock
CL: apu net/minecraft/src/TileEntityComparator
CL: apv net/minecraft/src/TileEntityDaylightDetector
CL: apw net/minecraft/src/TileEntityDispenser
CL: apx net/minecraft/src/TileEntityDropper
CL: apy net/minecraft/src/TileEntityEnchantmentTable
CL: apz net/minecraft/src/TileEntityEnderChest
CL: aq net/minecraft/src/CommandToggleDownfall
CL: aqa net/minecraft/src/TileEntityFurnace
CL: aqb net/minecraft/src/Hopper
CL: aqc net/minecraft/src/TileEntityHopper
CL: aqd net/minecraft/src/TileEntityMobSpawner
CL: aqe net/minecraft/src/TileEntityMobSpawnerLogic
CL: aqf net/minecraft/src/TileEntityNote
CL: aqg net/minecraft/src/TileEntitySign
CL: aqh net/minecraft/src/TileEntitySkull
CL: aqi net/minecraft/src/TileEntityEndPortal
CL: aqj net/minecraft/src/TileEntity
CL: aqk net/minecraft/src/CallableTileEntityName
CL: aql net/minecraft/src/CallableTileEntityID
CL: aqm net/minecraft/src/CallableTileEntityData
CL: aqn net/minecraft/src/BlockPistonBase
CL: aqo net/minecraft/src/BlockPistonExtension
CL: aqp net/minecraft/src/BlockPistonMoving
CL: aqq net/minecraft/src/TileEntityPiston
CL: aqr net/minecraft/src/AxisAlignedBB
CL: aqs net/minecraft/src/AABBLocalPool
CL: aqt net/minecraft/src/AABBPool
CL: aqu net/minecraft/src/MovingObjectPosition
CL: aqv net/minecraft/src/EnumMovingObjectType
CL: aqw net/minecraft/src/Vec3
CL: aqx net/minecraft/src/Vec3Pool
CL: aqy net/minecraft/src/ScoreObjective
CL: aqz net/minecraft/src/ScorePlayerTeam
CL: ar net/minecraft/src/CommandWeather
CL: ara net/minecraft/src/Score
CL: arb net/minecraft/src/ScoreComparator
CL: ard net/minecraft/src/Scoreboard
CL: are net/minecraft/src/ScoreboardSaveData
CL: arf net/minecraft/src/ScoreDummyCriteria
CL: arg net/minecraft/src/ScoreHealthCriteria
CL: arh net/minecraft/src/ScoreObjectiveCriteria
CL: ari org/bouncycastle/asn1/ASN1Encodable
CL: arj org/bouncycastle/asn1/ASN1Object
CL: ark org/bouncycastle/asn1/ASN1ObjectIdentifier
CL: arl org/bouncycastle/asn1/ASN1Primitive
CL: arm org/bouncycastle/asn1/DERObjectIdentifier
CL: arn org/bouncycastle/asn1/bc/BCObjectIdentifiers
CL: aro org/bouncycastle/asn1/pkcs/PKCSObjectIdentifiers
CL: arp org/bouncycastle/crypto/BlockCipher
CL: arq org/bouncycastle/crypto/BufferedBlockCipher
CL: ars org/bouncycastle/crypto/CipherParameters
CL: aru org/bouncycastle/crypto/DataLengthException
CL: arx org/bouncycastle/crypto/RuntimeCryptoException
CL: ary org/bouncycastle/crypto/StreamCipher
CL: arz org/bouncycastle/crypto/engines/AESFastEngine
CL: as net/minecraft/src/CommandException
CL: asa org/bouncycastle/crypto/io/CipherInputStream
CL: asb org/bouncycastle/crypto/io/CipherOutputStream
CL: asc org/bouncycastle/crypto/modes/CFBBlockCipher
CL: asd org/bouncycastle/crypto/params/KeyParameter
CL: ase org/bouncycastle/crypto/params/ParametersWithIV
CL: asf org/bouncycastle/jcajce/provider/config/ConfigurableProvider
CL: asg org/bouncycastle/jcajce/provider/config/ProviderConfiguration
CL: ash org/bouncycastle/jcajce/provider/config/ProviderConfigurationPermission
CL: asi org/bouncycastle/jcajce/provider/util/AlgorithmProvider
CL: asj org/bouncycastle/jce/provider/BouncyCastleProvider
CL: ask org/bouncycastle/jce/provider/BouncyCastleProviderAction
CL: asl org/bouncycastle/jce/provider/BouncyCastleProviderConfiguration
CL: asm org/bouncycastle/util/Strings
CL: at net/minecraft/src/NumberInvalidException
CL: au net/minecraft/src/SyntaxErrorException
CL: av net/minecraft/src/PlayerNotFoundException
CL: aw net/minecraft/src/CommandNotFoundException
CL: ax net/minecraft/src/WrongUsageException
CL: az net/minecraft/src/IBlockSource
CL: b net/minecraft/src/CrashReport
CL: ba net/minecraft/src/BlockSourceImpl
CL: bb net/minecraft/src/BehaviorDefaultDispenseItem
CL: bc net/minecraft/src/RegistryDefaulted
CL: bd net/minecraft/src/IBehaviorDispenseItem
CL: be net/minecraft/src/BehaviorDispenseItemProvider
CL: bf net/minecraft/src/EnumFacing
CL: bg net/minecraft/src/ILocatableSource
CL: bh net/minecraft/src/ILocation
CL: bi net/minecraft/src/IPosition
CL: bj net/minecraft/src/PositionImpl
CL: bk net/minecraft/src/IRegistry
CL: bl net/minecraft/src/RegistrySimple
CL: bo net/minecraft/src/StatCollector
CL: bp net/minecraft/src/StringTranslate
CL: bq net/minecraft/src/NBTTagByteArray
CL: br net/minecraft/src/NBTTagByte
CL: bs net/minecraft/src/NBTTagCompound
CL: bt net/minecraft/src/CallableTagCompound1
CL: bu net/minecraft/src/CallableTagCompound2
CL: bv net/minecraft/src/NBTTagDouble
CL: bw net/minecraft/src/NBTTagEnd
CL: bx net/minecraft/src/NBTTagFloat
CL: by net/minecraft/src/NBTTagIntArray
CL: bz net/minecraft/src/NBTTagInt
CL: c net/minecraft/src/CallableMinecraftVersion
CL: ca net/minecraft/src/NBTTagList
CL: cb net/minecraft/src/NBTTagLong
CL: cc net/minecraft/src/CompressedStreamTools
CL: cd net/minecraft/src/NBTTagShort
CL: ce net/minecraft/src/NBTTagString
CL: cf net/minecraft/src/NBTBase
CL: cg net/minecraft/src/INetworkManager
CL: ch net/minecraft/src/MemoryConnection
CL: ci net/minecraft/src/TcpConnection
CL: cj net/minecraft/src/TcpReaderThread
CL: ck net/minecraft/src/TcpWriterThread
CL: cl net/minecraft/src/TcpMasterThread
CL: cm net/minecraft/src/TcpMonitorThread
CL: cn net/minecraft/src/Packet23VehicleSpawn
CL: co net/minecraft/src/Packet26EntityExpOrb
CL: cp net/minecraft/src/Packet71Weather
CL: cq net/minecraft/src/Packet24MobSpawn
CL: cr net/minecraft/src/Packet25EntityPainting
CL: cs net/minecraft/src/Packet20NamedEntitySpawn
CL: ct net/minecraft/src/Packet18Animation
CL: cu net/minecraft/src/Packet200Statistic
CL: cv net/minecraft/src/Packet203AutoComplete
CL: cw net/minecraft/src/Packet3Chat
CL: cx net/minecraft/src/Packet52MultiBlockChange
CL: cy net/minecraft/src/Packet205ClientCommand
CL: cz net/minecraft/src/Packet204ClientInfo
CL: d net/minecraft/src/CallableOSInfo
CL: da net/minecraft/src/Packet2ClientProtocol
CL: db net/minecraft/src/Packet131MapData
CL: dc net/minecraft/src/Packet106Transaction
CL: dd net/minecraft/src/Packet108EnchantItem
CL: de net/minecraft/src/Packet102WindowClick
CL: df net/minecraft/src/Packet101CloseWindow
CL: dg net/minecraft/src/Packet100OpenWindow
CL: dh net/minecraft/src/Packet104WindowItems
CL: di net/minecraft/src/Packet105UpdateProgressbar
CL: dj net/minecraft/src/Packet103SetSlot
CL: dk net/minecraft/src/Packet250CustomPayload
CL: dl net/minecraft/src/Packet255KickDisconnect
CL: dm net/minecraft/src/Packet17Sleep
CL: dn net/minecraft/src/Packet38EntityStatus
CL: do net/minecraft/src/Packet60Explosion
CL: dp net/minecraft/src/Packet70GameEvent
CL: dq net/minecraft/src/Packet254ServerPing
CL: dr net/minecraft/src/Packet7UseEntity
CL: ds net/minecraft/src/Packet0KeepAlive
CL: dt net/minecraft/src/Packet51MapChunk
CL: du net/minecraft/src/Packet51MapChunkData
CL: dv net/minecraft/src/Packet56MapChunks
CL: dw net/minecraft/src/Packet61DoorChange
CL: dx net/minecraft/src/Packet63WorldParticles
CL: dy net/minecraft/src/Packet62LevelSound
CL: dz net/minecraft/src/Packet1Login
CL: e net/minecraft/src/CallableJavaInfo
CL: ea net/minecraft/src/Packet30Entity
CL: eb net/minecraft/src/Packet31RelEntityMove
CL: ec net/minecraft/src/Packet33RelEntityMoveLook
CL: ed net/minecraft/src/Packet32EntityLook
CL: ee net/minecraft/src/Packet10Flying
CL: ef net/minecraft/src/Packet11PlayerPosition
CL: eg net/minecraft/src/Packet13PlayerLookMove
CL: eh net/minecraft/src/Packet12PlayerLook
CL: ei net/minecraft/src/Packet
CL: ej net/minecraft/src/NetHandler
CL: ek net/minecraft/src/Packet202PlayerAbilities
CL: el net/minecraft/src/Packet14BlockDig
CL: em net/minecraft/src/Packet19EntityAction
CL: en net/minecraft/src/Packet201PlayerInfo
CL: ep net/minecraft/src/Packet29DestroyEntity
CL: eq net/minecraft/src/Packet42RemoveEntityEffect
CL: er net/minecraft/src/Packet9Respawn
CL: es net/minecraft/src/Packet35EntityHeadRotation
CL: et net/minecraft/src/Packet253ServerAuthData
CL: eu net/minecraft/src/Packet16BlockItemSwitch
CL: ev net/minecraft/src/Packet107CreativeSetSlot
CL: ew net/minecraft/src/Packet208SetDisplayObjective
CL: ex net/minecraft/src/Packet40EntityMetadata
CL: ey net/minecraft/src/Packet28EntityVelocity
CL: ez net/minecraft/src/Packet5PlayerInventory
CL: f net/minecraft/src/CallableJavaInfo2
CL: fa net/minecraft/src/Packet43Experience
CL: fb net/minecraft/src/Packet8UpdateHealth
CL: fc net/minecraft/src/Packet206SetObjective
CL: fd net/minecraft/src/Packet209SetPlayerTeam
CL: fe net/minecraft/src/Packet39AttachEntity
CL: ff net/minecraft/src/Packet207SetScore
CL: fg net/minecraft/src/Packet6SpawnPosition
CL: fh net/minecraft/src/Packet4UpdateTime
CL: fi net/minecraft/src/Packet252SharedKey
CL: fj net/minecraft/src/Packet130UpdateSign
CL: fk net/minecraft/src/Packet22Collect
CL: fl net/minecraft/src/Packet34EntityTeleport
CL: fm net/minecraft/src/Packet55BlockDestroy
CL: fn net/minecraft/src/Packet132TileEntityData
CL: fo net/minecraft/src/Packet54PlayNoteBlock
CL: fp net/minecraft/src/Packet53BlockChange
CL: fq net/minecraft/src/Packet41EntityEffect
CL: fr net/minecraft/src/Packet15Place
CL: fs net/minecraft/src/BehaviorProjectileDispense
CL: ft net/minecraft/src/BanEntry
CL: fu net/minecraft/src/BanList
CL: fv net/minecraft/src/ServerCommand
CL: fx net/minecraft/src/DispenserBehaviors
CL: fy net/minecraft/src/DispenserBehaviorArrow
CL: fz net/minecraft/src/DispenserBehaviorFilledBucket
CL: g net/minecraft/src/CallableMemoryInfo
CL: ga net/minecraft/src/DispenserBehaviorEmptyBucket
CL: gb net/minecraft/src/DispenserBehaviorFire
CL: gc net/minecraft/src/DispenserBehaviorDye
CL: gd net/minecraft/src/DispenserBehaviorTNT
CL: ge net/minecraft/src/DispenserBehaviorEgg
CL: gf net/minecraft/src/DispenserBehaviorSnowball
CL: gg net/minecraft/src/DispenserBehaviorExperience
CL: gh net/minecraft/src/DispenserBehaviorPotion
CL: gi net/minecraft/src/DispenserBehaviorPotionProjectile
CL: gj net/minecraft/src/DispenserBehaviorMobEgg
CL: gk net/minecraft/src/DispenserBehaviorFireworks
CL: gl net/minecraft/src/DispenserBehaviorFireball
CL: gm net/minecraft/src/DispenserBehaviorBoat
CL: gn net/minecraft/src/ConvertingProgressUpdate
CL: go net/minecraft/src/ThreadDedicatedServer
CL: gp net/minecraft/src/ThreadMinecraftServer
CL: gq net/minecraft/src/CallableIsServerModded
CL: gr net/minecraft/src/CallableServerProfiler
CL: gs net/minecraft/src/CallableServerMemoryStats
CL: gt net/minecraft/src/PlayerPositionComparator
CL: gu net/minecraft/src/ServerConfigurationManager
CL: gv net/minecraft/src/IServer
CL: gw net/minecraft/src/ServerScoreboard
CL: gx net/minecraft/src/PropertyManager
CL: gy net/minecraft/src/IUpdatePlayerListBox
CL: gz net/minecraft/src/CommandServerBanIp
CL: h net/minecraft/src/CallableJVMFlags
CL: ha net/minecraft/src/CommandServerBan
CL: hb net/minecraft/src/CommandServerSay
CL: hc net/minecraft/src/CommandClearInventory
CL: hd net/minecraft/src/CommandServerDeop
CL: he net/minecraft/src/CommandDebug
CL: hf net/minecraft/src/CommandServerEmote
CL: hg net/minecraft/src/CommandServerKick
CL: hh net/minecraft/src/CommandServerBanlist
CL: hi net/minecraft/src/CommandServerList
CL: hj net/minecraft/src/CommandServerMessage
CL: hk net/minecraft/src/CommandServerOp
CL: hl net/minecraft/src/CommandServerPardonIp
CL: hm net/minecraft/src/CommandServerPardon
CL: hn net/minecraft/src/CommandServerPublishLocal
CL: ho net/minecraft/src/CommandServerSaveAll
CL: hp net/minecraft/src/CommandServerSaveOff
CL: hq net/minecraft/src/CommandServerSaveOn
CL: hr net/minecraft/src/ServerCommandScoreboard
CL: hs net/minecraft/src/ServerCommandManager
CL: ht net/minecraft/src/CommandSetSpawnpoint
CL: hu net/minecraft/src/CommandServerStop
CL: hv net/minecraft/src/CommandServerTp
CL: hw net/minecraft/src/ServerCommandTestFor
CL: hx net/minecraft/src/CommandServerWhitelist
CL: hy net/minecraft/src/DedicatedPlayerList
CL: hz net/minecraft/src/DedicatedServer
CL: i net/minecraft/src/CallableCrashMemoryReport
CL: ia net/minecraft/src/DedicatedServerSleepThread
CL: ib net/minecraft/src/DedicatedServerCommandThread
CL: ic net/minecraft/src/CallableType
CL: id net/minecraft/src/CallableServerType
CL: ie net/minecraft/src/DedicatedServerListenThread
CL: if net/minecraft/src/ServerListenThread
CL: ig net/minecraft/src/ServerGUI
CL: ih net/minecraft/src/ServerWindowAdapter
CL: ii net/minecraft/src/ServerGuiCommandListener
CL: ij net/minecraft/src/ServerGuiFocusAdapter
CL: ik net/minecraft/src/PlayerListBox
CL: il net/minecraft/src/GuiStatsComponent
CL: im net/minecraft/src/GuiStatsListener
CL: in net/minecraft/src/GuiLogOutputHandler
CL: io net/minecraft/src/GuiLogFormatter
CL: iq net/minecraft/src/DemoWorldServer
CL: ir net/minecraft/src/DemoWorldManager
CL: is net/minecraft/src/WorldServerMulti
CL: it net/minecraft/src/EntityTracker
CL: iu net/minecraft/src/CallableEntityTracker
CL: iv net/minecraft/src/WorldManager
CL: iw net/minecraft/src/PlayerManager
CL: ix net/minecraft/src/PlayerInstance
CL: iy net/minecraft/src/ChunkProviderServer
CL: iz net/minecraft/src/WorldServer
CL: j net/minecraft/src/CallableSuspiciousClasses
CL: ja net/minecraft/src/ServerBlockEvent
CL: jb net/minecraft/src/ServerBlockEventList
CL: jc net/minecraft/src/EntityPlayerMP
CL: jd net/minecraft/src/ItemInWorldManager
CL: je net/minecraft/src/EntityTrackerEntry
CL: jf net/minecraft/src/NetLoginHandler
CL: jg net/minecraft/src/ThreadLoginVerifier
CL: jh net/minecraft/src/NetServerHandler
CL: ji net/minecraft/src/CallablePacketID
CL: jj net/minecraft/src/CallablePacketClass
CL: jk net/minecraft/src/NetworkListenThread
CL: jl net/minecraft/src/RConOutputStream
CL: jm net/minecraft/src/RConUtils
CL: jn net/minecraft/src/RConConsoleSource
CL: jo net/minecraft/src/RConThreadBase
CL: jp net/minecraft/src/RConThreadQuery
CL: jq net/minecraft/src/RConThreadQueryAuth
CL: jr net/minecraft/src/RConThreadClient
CL: jt net/minecraft/src/RConThreadMain
CL: ju net/minecraft/src/Achievement
CL: jv net/minecraft/src/AchievementList
CL: jx net/minecraft/src/StatBasic
CL: jy net/minecraft/src/StatCrafting
CL: k net/minecraft/src/ComparatorClassSorter
CL: ka net/minecraft/src/StatBase
CL: kb net/minecraft/src/StatTypeSimple
CL: kc net/minecraft/src/StatTypeTime
CL: kd net/minecraft/src/StatTypeDistance
CL: ke net/minecraft/src/IStatType
CL: kf net/minecraft/src/StatList
CL: kg net/minecraft/src/AchievementMap
CL: kh net/minecraft/src/LogAgent
CL: ki net/minecraft/src/LogAgentINNER1
CL: kj net/minecraft/src/LogFormatter
CL: kl net/minecraft/src/CryptManager
CL: kn net/minecraft/src/HttpUtil
CL: kq net/minecraft/src/LowerStringMap
CL: kr net/minecraft/src/IntHashMap
CL: ks net/minecraft/src/IntHashMapEntry
CL: ku net/minecraft/src/ILogAgent
CL: kv net/minecraft/src/LongHashMap
CL: kw net/minecraft/src/LongHashMapEntry
CL: kx net/minecraft/src/MathHelper
CL: ky net/minecraft/src/PacketCount
CL: l net/minecraft/src/CallableIntCache
CL: la net/minecraft/src/Profiler
CL: lb net/minecraft/src/ProfilerResult
CL: lc net/minecraft/src/IProgressUpdate
CL: lf net/minecraft/src/StringUtils
CL: lm net/minecraft/src/Tuple
CL: ln net/minecraft/src/WeightedRandom
CL: lo net/minecraft/src/WeightedRandomItem
CL: lp net/minecraft/src/WeightedRandomChestContent
CL: ls net/minecraft/src/InventoryLargeChest
CL: lt net/minecraft/src/IInventory
CL: lu net/minecraft/src/IInvBasic
CL: lx net/minecraft/src/Icon
CL: lz net/minecraft/src/InventoryBasic
CL: m net/minecraft/src/CrashReportCategory
CL: ma net/minecraft/src/PlayerUsageSnooper
CL: mb net/minecraft/src/PlayerUsageSnooperThread
CL: mc net/minecraft/src/IPlayerUsage
CL: md net/minecraft/src/ISidedInventory
CL: me net/minecraft/src/CombatEntry
CL: mf net/minecraft/src/CombatTracker
CL: mg net/minecraft/src/DamageSource
CL: mh net/minecraft/src/EntityDamageSource
CL: mi net/minecraft/src/EntityDamageSourceIndirect
CL: mj net/minecraft/src/PotionHealth
CL: mk net/minecraft/src/Potion
CL: ml net/minecraft/src/PotionEffect
CL: mm net/minecraft/src/EntityAgeable
CL: mn net/minecraft/src/IAnimals
CL: mp net/minecraft/src/Entity
CL: mq net/minecraft/src/CallableEntityType
CL: mr net/minecraft/src/CallableEntityName
CL: ms net/minecraft/src/EnumEntitySizeHelper
CL: mt net/minecraft/src/EnumEntitySize
CL: mv net/minecraft/src/EntityList
CL: mw net/minecraft/src/EntityEggInfo
CL: my net/minecraft/src/IEntitySelector
CL: mz net/minecraft/src/EntitySelectorAlive
CL: n net/minecraft/src/CallableBlockType
CL: na net/minecraft/src/EntitySelectorInventory
CL: nb net/minecraft/src/EntitySelectorArmoredMob
CL: nc net/minecraft/src/EntityXPOrb
CL: nd net/minecraft/src/EntityFlying
CL: ne net/minecraft/src/EntityHanging
CL: net/minecraft/server/MinecraftServer net/minecraft/server/MinecraftServer
CL: nf net/minecraft/src/EntityItemFrame
CL: ng net/minecraft/src/EntityLiving
CL: nh net/minecraft/src/EnumCreatureType
CL: ni net/minecraft/src/EnumCreatureAttribute
CL: nj net/minecraft/src/EntityPainting
CL: nk net/minecraft/src/EnumArt
CL: nl net/minecraft/src/EntityCreature
CL: nm net/minecraft/src/DataWatcher
CL: nn net/minecraft/src/WatchableObject
CL: no net/minecraft/src/EntityTameable
CL: np net/minecraft/src/EntityBodyHelper
CL: nr net/minecraft/src/EntityJumpHelper
CL: ns net/minecraft/src/EntityLookHelper
CL: nt net/minecraft/src/EntityMoveHelper
CL: nu net/minecraft/src/EntityAIAvoidEntity
CL: nv net/minecraft/src/EntityAIAvoidEntitySelector
CL: nw net/minecraft/src/EntityAIBeg
CL: nx net/minecraft/src/EntityAIBreakDoor
CL: ny net/minecraft/src/EntityAIMate
CL: nz net/minecraft/src/EntityAIControlledByPlayer
CL: o net/minecraft/src/CallableBlockDataValue
CL: oa net/minecraft/src/EntityAIDoorInteract
CL: ob net/minecraft/src/EntityAIEatGrass
CL: oc net/minecraft/src/EntityAIFleeSun
CL: od net/minecraft/src/EntityAISwimming
CL: oe net/minecraft/src/EntityAIFollowOwner
CL: of net/minecraft/src/EntityAIFollowParent
CL: og net/minecraft/src/EntityAIBase
CL: oh net/minecraft/src/EntityAITasks
CL: oi net/minecraft/src/EntityAITaskEntry
CL: oj net/minecraft/src/EntityAIWatchClosest2
CL: ok net/minecraft/src/EntityAILeapAtTarget
CL: ol net/minecraft/src/EntityAIWatchClosest
CL: om net/minecraft/src/EntityAILookAtTradePlayer
CL: on net/minecraft/src/EntityAIVillagerMate
CL: oo net/minecraft/src/EntityAIAttackOnCollide
CL: op net/minecraft/src/EntityAIMoveIndoors
CL: oq net/minecraft/src/EntityAIMoveThroughVillage
CL: or net/minecraft/src/EntityAIMoveTwardsRestriction
CL: os net/minecraft/src/EntityAIMoveTowardsTarget
CL: ot net/minecraft/src/EntityAIOcelotAttack
CL: ou net/minecraft/src/EntityAIOcelotSit
CL: ov net/minecraft/src/EntityAILookAtVillager
CL: ow net/minecraft/src/EntityAIOpenDoor
CL: ox net/minecraft/src/EntityAIPanic
CL: oy net/minecraft/src/EntityAIPlay
CL: oz net/minecraft/src/EntityAILookIdle
CL: p net/minecraft/src/CallableBlockLocation
CL: pa net/minecraft/src/EntityAIWander
CL: pb net/minecraft/src/EntityAIArrowAttack
CL: pc net/minecraft/src/EntityAIRestrictOpenDoor
CL: pd net/minecraft/src/EntityAIRestrictSun
CL: pe net/minecraft/src/EntityAISit
CL: pf net/minecraft/src/EntityAICreeperSwell
CL: pg net/minecraft/src/EntityAIFollowGolem
CL: ph net/minecraft/src/EntityAITempt
CL: pi net/minecraft/src/EntityAITradePlayer
CL: pj net/minecraft/src/EntityAIDefendVillage
CL: pk net/minecraft/src/EntityAIHurtByTarget
CL: pl net/minecraft/src/EntityAINearestAttackableTarget
CL: pm net/minecraft/src/EntityAINearestAttackableTargetSorter
CL: pn net/minecraft/src/EntityAITargetNonTamed
CL: po net/minecraft/src/EntityAIOwnerHurtByTarget
CL: pp net/minecraft/src/EntityAIOwnerHurtTarget
CL: pq net/minecraft/src/EntityAITarget
CL: pr net/minecraft/src/PathNavigate
CL: ps net/minecraft/src/EntitySenses
CL: pt net/minecraft/src/RandomPositionGenerator
CL: pu net/minecraft/src/VillageDoorInfo
CL: pv net/minecraft/src/Village
CL: pw net/minecraft/src/VillageAgressor
CL: px net/minecraft/src/VillageSiege
CL: py net/minecraft/src/VillageCollection
CL: pz net/minecraft/src/EntityAmbientCreature
CL: q net/minecraft/src/CrashReportCategoryEntry
CL: qa net/minecraft/src/EntityBat
CL: qb net/minecraft/src/EntityAnimal
CL: qc net/minecraft/src/EntityChicken
CL: qd net/minecraft/src/EntityCow
CL: qe net/minecraft/src/EntityGolem
CL: qf net/minecraft/src/EntityMooshroom
CL: qg net/minecraft/src/EntityOcelot
CL: qh net/minecraft/src/EntityPig
CL: qi net/minecraft/src/EntitySheep
CL: qj net/minecraft/src/ContainerSheep
CL: qk net/minecraft/src/EntitySnowman
CL: ql net/minecraft/src/EntitySquid
CL: qm net/minecraft/src/EntityIronGolem
CL: qn net/minecraft/src/EntityWaterMob
CL: qo net/minecraft/src/EntityWolf
CL: qq net/minecraft/src/IEntityMultiPart
CL: qr net/minecraft/src/EntityDragonPart
CL: qs net/minecraft/src/EntityEnderCrystal
CL: qt net/minecraft/src/EntityDragon
CL: qv net/minecraft/src/EntityWither
CL: qw net/minecraft/src/EntityWitherAttackFilter
CL: qx net/minecraft/src/EntityWeatherEffect
CL: qy net/minecraft/src/EntityLightningBolt
CL: qz net/minecraft/src/EntityBoat
CL: r net/minecraft/src/Direction
CL: ra net/minecraft/src/EntityFallingSand
CL: rb net/minecraft/src/EntityItem
CL: rc net/minecraft/src/EntityMinecart
CL: rd net/minecraft/src/EntityMinecartChest
CL: re net/minecraft/src/EntityMinecartContainer
CL: rf net/minecraft/src/EntityMinecartFurnace
CL: rg net/minecraft/src/EntityMinecartHopper
CL: rh net/minecraft/src/EntityMinecartEmpty
CL: ri net/minecraft/src/EntityMinecartMobSpawner
CL: rj net/minecraft/src/EntityMinecartMobSpawnerLogic
CL: rk net/minecraft/src/EntityMinecartTNT
CL: rl net/minecraft/src/EntityTNTPrimed
CL: rm net/minecraft/src/EntityBlaze
CL: rn net/minecraft/src/EntityCaveSpider
CL: ro net/minecraft/src/EntityCreeper
CL: rp net/minecraft/src/EntityEnderman
CL: rq net/minecraft/src/IMob
CL: rr net/minecraft/src/FilterIMob
CL: rs net/minecraft/src/EntityGhast
CL: rt net/minecraft/src/EntityGiantZombie
CL: ru net/minecraft/src/EntityMagmaCube
CL: rv net/minecraft/src/EntityMob
CL: rw net/minecraft/src/EntityPigZombie
CL: rx net/minecraft/src/IRangedAttackMob
CL: ry net/minecraft/src/EntitySilverfish
CL: rz net/minecraft/src/EntitySkeleton
CL: s net/minecraft/src/Facing
CL: sa net/minecraft/src/EntitySlime
CL: sb net/minecraft/src/EntitySpider
CL: sc net/minecraft/src/EntityWitch
CL: sd net/minecraft/src/EntityZombie
CL: sf net/minecraft/src/INpc
CL: sg net/minecraft/src/EntityVillager
CL: sh net/minecraft/src/PlayerCapabilities
CL: si net/minecraft/src/InventoryPlayer
CL: sj net/minecraft/src/CallableItemName
CL: sk net/minecraft/src/EntityPlayer
CL: sl net/minecraft/src/EnumStatus
CL: sm net/minecraft/src/EntityArrow
CL: sn net/minecraft/src/EntityEnderEye
CL: so net/minecraft/src/EntityFireball
CL: sp net/minecraft/src/EntityFireworkRocket
CL: sq net/minecraft/src/EntityFishHook
CL: sr net/minecraft/src/EntityLargeFireball
CL: ss net/minecraft/src/IProjectile
CL: st net/minecraft/src/EntitySmallFireball
CL: su net/minecraft/src/EntitySnowball
CL: sv net/minecraft/src/EntityThrowable
CL: sw net/minecraft/src/EntityEgg
CL: sx net/minecraft/src/EntityEnderPearl
CL: sy net/minecraft/src/EntityExpBottle
CL: sz net/minecraft/src/EntityPotion
CL: t net/minecraft/src/ChunkCoordinates
CL: ta net/minecraft/src/EntityWitherSkull
CL: tc net/minecraft/src/FoodStats
CL: td net/minecraft/src/Container
CL: te net/minecraft/src/ContainerBeacon
CL: tf net/minecraft/src/SlotBeacon
CL: tg net/minecraft/src/ContainerBrewingStand
CL: th net/minecraft/src/SlotBrewingStandIngredient
CL: ti net/minecraft/src/SlotBrewingStandPotion
CL: tj net/minecraft/src/ICrafting
CL: tk net/minecraft/src/ContainerChest
CL: tl net/minecraft/src/InventoryCrafting
CL: tm net/minecraft/src/ContainerWorkbench
CL: tn net/minecraft/src/ContainerEnchantment
CL: to net/minecraft/src/SlotEnchantmentTable
CL: tp net/minecraft/src/SlotEnchantment
CL: tq net/minecraft/src/ContainerFurnace
CL: tr net/minecraft/src/SlotFurnace
CL: ts net/minecraft/src/ContainerHopper
CL: tt net/minecraft/src/ContainerPlayer
CL: tu net/minecraft/src/SlotArmor
CL: tw net/minecraft/src/InventoryMerchant
CL: tx net/minecraft/src/ContainerMerchant
CL: ty net/minecraft/src/SlotMerchantResult
CL: tz net/minecraft/src/InventoryEnderChest
CL: u net/minecraft/src/ReportedException
CL: ua net/minecraft/src/ContainerRepair
CL: ub net/minecraft/src/InventoryRepair
CL: uc net/minecraft/src/SlotRepair
CL: ud net/minecraft/src/InventoryCraftResult
CL: ue net/minecraft/src/SlotCrafting
CL: uf net/minecraft/src/Slot
CL: ug net/minecraft/src/ContainerDispenser
CL: uh net/minecraft/src/ItemAnvilBlock
CL: ui net/minecraft/src/ItemArmor
CL: uj net/minecraft/src/BehaviorDispenseArmor
CL: uk net/minecraft/src/EnumArmorMaterial
CL: ul net/minecraft/src/ItemBlockWithMetadata
CL: um net/minecraft/src/ItemBed
CL: un net/minecraft/src/ItemBoat
CL: uo net/minecraft/src/ItemBook
CL: up net/minecraft/src/ItemGlassBottle
CL: uq net/minecraft/src/ItemBow
CL: ur net/minecraft/src/ItemSoup
CL: us net/minecraft/src/ItemBucket
CL: ut net/minecraft/src/ItemCarrotOnAStick
CL: uu net/minecraft/src/ItemCloth
CL: uv net/minecraft/src/ItemCoal
CL: uw net/minecraft/src/ItemColored
CL: ux net/minecraft/src/ItemMapBase
CL: uy net/minecraft/src/CreativeTabs
CL: uz net/minecraft/src/CreativeTabBlock
CL: v net/minecraft/src/ChatAllowedCharacters
CL: va net/minecraft/src/CreativeTabBrewing
CL: vb net/minecraft/src/CreativeTabMaterial
CL: vc net/minecraft/src/CreativeTabInventory
CL: vd net/minecraft/src/CreativeTabDeco
CL: ve net/minecraft/src/CreativeTabRedstone
CL: vf net/minecraft/src/CreativeTabTransport
CL: vg net/minecraft/src/CreativeTabMisc
CL: vh net/minecraft/src/CreativeTabSearch
CL: vi net/minecraft/src/CreativeTabFood
CL: vj net/minecraft/src/CreativeTabTools
CL: vk net/minecraft/src/CreativeTabCombat
CL: vl net/minecraft/src/ItemTool
CL: vm net/minecraft/src/ItemDoor
CL: vn net/minecraft/src/ItemDye
CL: vo net/minecraft/src/ItemEgg
CL: vp net/minecraft/src/ItemEmptyMap
CL: vq net/minecraft/src/ItemEnchantedBook
CL: vr net/minecraft/src/ItemEnderEye
CL: vs net/minecraft/src/ItemEnderPearl
CL: vt net/minecraft/src/ItemExpBottle
CL: vu net/minecraft/src/ItemFireball
CL: vv net/minecraft/src/ItemFireworkCharge
CL: vw net/minecraft/src/ItemFirework
CL: vx net/minecraft/src/ItemFishingRod
CL: vy net/minecraft/src/ItemFlintAndSteel
CL: vz net/minecraft/src/ItemFood
CL: w net/minecraft/src/IAdminCommand
CL: wa net/minecraft/src/ItemAppleGold
CL: wb net/minecraft/src/ItemHangingEntity
CL: wc net/minecraft/src/ItemAxe
CL: wd net/minecraft/src/ItemHoe
CL: we net/minecraft/src/Item
CL: wf net/minecraft/src/EnumToolMaterial
CL: wg net/minecraft/src/ItemStack
CL: wh net/minecraft/src/ItemLeaves
CL: wi net/minecraft/src/ItemMap
CL: wj net/minecraft/src/ItemBucketMilk