forked from Conquest-Reforged/WorldConverter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmappings.txt
1659 lines (1659 loc) · 171 KB
/
mappings.txt
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
minecraft:air -> minecraft:air
minecraft:stone[variant=stone] -> minecraft:stone
minecraft:stone[variant=granite] -> minecraft:granite
minecraft:stone[variant=smooth_granite] -> minecraft:polished_granite
minecraft:stone[variant=diorite] -> minecraft:diorite
minecraft:stone[variant=smooth_diorite] -> minecraft:polished_diorite
minecraft:stone[variant=andesite] -> minecraft:andesite
minecraft:stone[variant=smooth_andesite] -> minecraft:polished_andesite
minecraft:grass[snowy=false] -> minecraft:grass_block[snowy=false]
minecraft:dirt[variant=dirt,snowy=false] -> minecraft:dirt
minecraft:dirt[variant=coarse_dirt,snowy=false] -> minecraft:coarse_dirt
minecraft:dirt[variant=podzol,snowy=false] -> minecraft:podzol[snowy=false]
minecraft:cobblestone -> minecraft:cobblestone
minecraft:planks[variant=oak] -> minecraft:oak_planks
minecraft:planks[variant=spruce] -> minecraft:spruce_planks
minecraft:planks[variant=birch] -> minecraft:birch_planks
minecraft:planks[variant=jungle] -> minecraft:jungle_planks
minecraft:planks[variant=acacia] -> minecraft:acacia_planks
minecraft:planks[variant=dark_oak] -> minecraft:dark_oak_planks
minecraft:sapling[stage=0,type=oak] -> minecraft:oak_sapling[stage=0]
minecraft:sapling[stage=0,type=spruce] -> minecraft:spruce_sapling[stage=0]
minecraft:sapling[stage=0,type=birch] -> minecraft:birch_sapling[stage=0]
minecraft:sapling[stage=0,type=jungle] -> minecraft:jungle_sapling[stage=0]
minecraft:sapling[stage=0,type=acacia] -> minecraft:acacia_sapling[stage=0]
minecraft:sapling[stage=0,type=dark_oak] -> minecraft:dark_oak_sapling[stage=0]
minecraft:sapling[stage=1,type=oak] -> minecraft:oak_sapling[stage=1]
minecraft:sapling[stage=1,type=spruce] -> minecraft:spruce_sapling[stage=1]
minecraft:sapling[stage=1,type=birch] -> minecraft:birch_sapling[stage=1]
minecraft:sapling[stage=1,type=jungle] -> minecraft:jungle_sapling[stage=1]
minecraft:sapling[stage=1,type=acacia] -> minecraft:acacia_sapling[stage=1]
minecraft:sapling[stage=1,type=dark_oak] -> minecraft:dark_oak_sapling[stage=1]
minecraft:bedrock -> minecraft:bedrock
minecraft:flowing_water[level=0] -> minecraft:water[level=0]
minecraft:flowing_water[level=1] -> minecraft:water[level=1]
minecraft:flowing_water[level=2] -> minecraft:water[level=2]
minecraft:flowing_water[level=3] -> minecraft:water[level=3]
minecraft:flowing_water[level=4] -> minecraft:water[level=4]
minecraft:flowing_water[level=5] -> minecraft:water[level=5]
minecraft:flowing_water[level=6] -> minecraft:water[level=6]
minecraft:flowing_water[level=7] -> minecraft:water[level=7]
minecraft:flowing_water[level=8] -> minecraft:water[level=8]
minecraft:flowing_water[level=9] -> minecraft:water[level=9]
minecraft:flowing_water[level=10] -> minecraft:water[level=10]
minecraft:flowing_water[level=11] -> minecraft:water[level=11]
minecraft:flowing_water[level=12] -> minecraft:water[level=12]
minecraft:flowing_water[level=13] -> minecraft:water[level=13]
minecraft:flowing_water[level=14] -> minecraft:water[level=14]
minecraft:flowing_water[level=15] -> minecraft:water[level=15]
minecraft:water[level=0] -> minecraft:water[level=0]
minecraft:water[level=1] -> minecraft:water[level=1]
minecraft:water[level=2] -> minecraft:water[level=2]
minecraft:water[level=3] -> minecraft:water[level=3]
minecraft:water[level=4] -> minecraft:water[level=4]
minecraft:water[level=5] -> minecraft:water[level=5]
minecraft:water[level=6] -> minecraft:water[level=6]
minecraft:water[level=7] -> minecraft:water[level=7]
minecraft:water[level=8] -> minecraft:water[level=8]
minecraft:water[level=9] -> minecraft:water[level=9]
minecraft:water[level=10] -> minecraft:water[level=10]
minecraft:water[level=11] -> minecraft:water[level=11]
minecraft:water[level=12] -> minecraft:water[level=12]
minecraft:water[level=13] -> minecraft:water[level=13]
minecraft:water[level=14] -> minecraft:water[level=14]
minecraft:water[level=15] -> minecraft:water[level=15]
minecraft:flowing_lava[level=0] -> minecraft:lava[level=0]
minecraft:flowing_lava[level=1] -> minecraft:lava[level=1]
minecraft:flowing_lava[level=2] -> minecraft:lava[level=2]
minecraft:flowing_lava[level=3] -> minecraft:lava[level=3]
minecraft:flowing_lava[level=4] -> minecraft:lava[level=4]
minecraft:flowing_lava[level=5] -> minecraft:lava[level=5]
minecraft:flowing_lava[level=6] -> minecraft:lava[level=6]
minecraft:flowing_lava[level=7] -> minecraft:lava[level=7]
minecraft:flowing_lava[level=8] -> minecraft:lava[level=8]
minecraft:flowing_lava[level=9] -> minecraft:lava[level=9]
minecraft:flowing_lava[level=10] -> minecraft:lava[level=10]
minecraft:flowing_lava[level=11] -> minecraft:lava[level=11]
minecraft:flowing_lava[level=12] -> minecraft:lava[level=12]
minecraft:flowing_lava[level=13] -> minecraft:lava[level=13]
minecraft:flowing_lava[level=14] -> minecraft:lava[level=14]
minecraft:flowing_lava[level=15] -> minecraft:lava[level=15]
minecraft:lava[level=0] -> minecraft:lava[level=0]
minecraft:lava[level=1] -> minecraft:lava[level=1]
minecraft:lava[level=2] -> minecraft:lava[level=2]
minecraft:lava[level=3] -> minecraft:lava[level=3]
minecraft:lava[level=4] -> minecraft:lava[level=4]
minecraft:lava[level=5] -> minecraft:lava[level=5]
minecraft:lava[level=6] -> minecraft:lava[level=6]
minecraft:lava[level=7] -> minecraft:lava[level=7]
minecraft:lava[level=8] -> minecraft:lava[level=8]
minecraft:lava[level=9] -> minecraft:lava[level=9]
minecraft:lava[level=10] -> minecraft:lava[level=10]
minecraft:lava[level=11] -> minecraft:lava[level=11]
minecraft:lava[level=12] -> minecraft:lava[level=12]
minecraft:lava[level=13] -> minecraft:lava[level=13]
minecraft:lava[level=14] -> minecraft:lava[level=14]
minecraft:lava[level=15] -> minecraft:lava[level=15]
minecraft:sand[variant=sand] -> minecraft:sand
minecraft:sand[variant=red_sand] -> minecraft:red_sand
minecraft:gravel -> minecraft:gravel
minecraft:gold_ore -> minecraft:gold_ore
minecraft:iron_ore -> minecraft:iron_ore
minecraft:coal_ore -> minecraft:coal_ore
minecraft:log[variant=oak,axis=y] -> minecraft:oak_log[axis=y]
minecraft:log[variant=spruce,axis=y] -> minecraft:spruce_log[axis=y]
minecraft:log[variant=birch,axis=y] -> minecraft:birch_log[axis=y]
minecraft:log[variant=jungle,axis=y] -> minecraft:jungle_log[axis=y]
minecraft:log[variant=oak,axis=x] -> minecraft:oak_log[axis=x]
minecraft:log[variant=spruce,axis=x] -> minecraft:spruce_log[axis=x]
minecraft:log[variant=birch,axis=x] -> minecraft:birch_log[axis=x]
minecraft:log[variant=jungle,axis=x] -> minecraft:jungle_log[axis=x]
minecraft:log[variant=oak,axis=z] -> minecraft:oak_log[axis=z]
minecraft:log[variant=spruce,axis=z] -> minecraft:spruce_log[axis=z]
minecraft:log[variant=birch,axis=z] -> minecraft:birch_log[axis=z]
minecraft:log[variant=jungle,axis=z] -> minecraft:jungle_log[axis=z]
minecraft:log[variant=oak,axis=none] -> minecraft:oak_wood[axis=y]
minecraft:log[variant=spruce,axis=none] -> minecraft:spruce_wood[axis=y]
minecraft:log[variant=birch,axis=none] -> minecraft:birch_wood[axis=y]
minecraft:log[variant=jungle,axis=none] -> minecraft:jungle_wood[axis=y]
minecraft:leaves[check_decay=false,decayable=true,variant=oak] -> minecraft:oak_leaves[distance=7,persistent=false]
minecraft:leaves[check_decay=false,decayable=true,variant=spruce] -> minecraft:spruce_leaves[distance=7,persistent=false]
minecraft:leaves[check_decay=false,decayable=true,variant=birch] -> minecraft:birch_leaves[distance=7,persistent=false]
minecraft:leaves[check_decay=false,decayable=true,variant=jungle] -> minecraft:jungle_leaves[distance=7,persistent=false]
minecraft:leaves[check_decay=false,decayable=false,variant=oak] -> minecraft:oak_leaves[distance=7,persistent=true]
minecraft:leaves[check_decay=false,decayable=false,variant=spruce] -> minecraft:spruce_leaves[distance=7,persistent=true]
minecraft:leaves[check_decay=false,decayable=false,variant=birch] -> minecraft:birch_leaves[distance=7,persistent=true]
minecraft:leaves[check_decay=false,decayable=false,variant=jungle] -> minecraft:jungle_leaves[distance=7,persistent=true]
minecraft:leaves[check_decay=true,decayable=true,variant=oak] -> minecraft:oak_leaves[distance=7,persistent=false]
minecraft:leaves[check_decay=true,decayable=true,variant=spruce] -> minecraft:spruce_leaves[distance=7,persistent=false]
minecraft:leaves[check_decay=true,decayable=true,variant=birch] -> minecraft:birch_leaves[distance=7,persistent=false]
minecraft:leaves[check_decay=true,decayable=true,variant=jungle] -> minecraft:jungle_leaves[distance=7,persistent=false]
minecraft:leaves[check_decay=true,decayable=false,variant=oak] -> minecraft:oak_leaves[distance=7,persistent=true]
minecraft:leaves[check_decay=true,decayable=false,variant=spruce] -> minecraft:spruce_leaves[distance=7,persistent=true]
minecraft:leaves[check_decay=true,decayable=false,variant=birch] -> minecraft:birch_leaves[distance=7,persistent=true]
minecraft:leaves[check_decay=true,decayable=false,variant=jungle] -> minecraft:jungle_leaves[distance=7,persistent=true]
minecraft:sponge[wet=false] -> minecraft:sponge
minecraft:sponge[wet=true] -> minecraft:wet_sponge
minecraft:glass -> minecraft:glass
minecraft:lapis_ore -> minecraft:lapis_ore
minecraft:lapis_block -> minecraft:lapis_block
minecraft:dispenser[triggered=false,facing=down] -> minecraft:dispenser[triggered=false,facing=down]
minecraft:dispenser[triggered=false,facing=up] -> minecraft:dispenser[triggered=false,facing=up]
minecraft:dispenser[triggered=false,facing=north] -> minecraft:dispenser[triggered=false,facing=north]
minecraft:dispenser[triggered=false,facing=south] -> minecraft:dispenser[triggered=false,facing=south]
minecraft:dispenser[triggered=false,facing=west] -> minecraft:dispenser[triggered=false,facing=west]
minecraft:dispenser[triggered=false,facing=east] -> minecraft:dispenser[triggered=false,facing=east]
minecraft:dispenser[triggered=true,facing=down] -> minecraft:dispenser[triggered=true,facing=down]
minecraft:dispenser[triggered=true,facing=up] -> minecraft:dispenser[triggered=true,facing=up]
minecraft:dispenser[triggered=true,facing=north] -> minecraft:dispenser[triggered=true,facing=north]
minecraft:dispenser[triggered=true,facing=south] -> minecraft:dispenser[triggered=true,facing=south]
minecraft:dispenser[triggered=true,facing=west] -> minecraft:dispenser[triggered=true,facing=west]
minecraft:dispenser[triggered=true,facing=east] -> minecraft:dispenser[triggered=true,facing=east]
minecraft:sandstone[type=sandstone] -> minecraft:sandstone
minecraft:sandstone[type=chiseled_sandstone] -> minecraft:chiseled_sandstone
minecraft:sandstone[type=smooth_sandstone] -> minecraft:cut_sandstone
minecraft:noteblock -> minecraft:note_block[note=0,powered=false,instrument=harp]
minecraft:bed[part=foot,facing=south,occupied=false] -> minecraft:red_bed[part=foot,facing=south,occupied=false]
minecraft:bed[part=foot,facing=west,occupied=false] -> minecraft:red_bed[part=foot,facing=west,occupied=false]
minecraft:bed[part=foot,facing=north,occupied=false] -> minecraft:red_bed[part=foot,facing=north,occupied=false]
minecraft:bed[part=foot,facing=east,occupied=false] -> minecraft:red_bed[part=foot,facing=east,occupied=false]
minecraft:bed[part=head,facing=south,occupied=false] -> minecraft:red_bed[part=head,facing=south,occupied=false]
minecraft:bed[part=head,facing=west,occupied=false] -> minecraft:red_bed[part=head,facing=west,occupied=false]
minecraft:bed[part=head,facing=north,occupied=false] -> minecraft:red_bed[part=head,facing=north,occupied=false]
minecraft:bed[part=head,facing=east,occupied=false] -> minecraft:red_bed[part=head,facing=east,occupied=false]
minecraft:bed[part=head,facing=south,occupied=true] -> minecraft:red_bed[part=head,facing=south,occupied=true]
minecraft:bed[part=head,facing=west,occupied=true] -> minecraft:red_bed[part=head,facing=west,occupied=true]
minecraft:bed[part=head,facing=north,occupied=true] -> minecraft:red_bed[part=head,facing=north,occupied=true]
minecraft:bed[part=head,facing=east,occupied=true] -> minecraft:red_bed[part=head,facing=east,occupied=true]
minecraft:golden_rail[powered=false,shape=north_south] -> minecraft:powered_rail[powered=false,shape=north_south]
minecraft:golden_rail[powered=false,shape=east_west] -> minecraft:powered_rail[powered=false,shape=east_west]
minecraft:golden_rail[powered=false,shape=ascending_east] -> minecraft:powered_rail[powered=false,shape=ascending_east]
minecraft:golden_rail[powered=false,shape=ascending_west] -> minecraft:powered_rail[powered=false,shape=ascending_west]
minecraft:golden_rail[powered=false,shape=ascending_north] -> minecraft:powered_rail[powered=false,shape=ascending_north]
minecraft:golden_rail[powered=false,shape=ascending_south] -> minecraft:powered_rail[powered=false,shape=ascending_south]
minecraft:golden_rail[powered=true,shape=north_south] -> minecraft:powered_rail[powered=true,shape=north_south]
minecraft:golden_rail[powered=true,shape=east_west] -> minecraft:powered_rail[powered=true,shape=east_west]
minecraft:golden_rail[powered=true,shape=ascending_east] -> minecraft:powered_rail[powered=true,shape=ascending_east]
minecraft:golden_rail[powered=true,shape=ascending_west] -> minecraft:powered_rail[powered=true,shape=ascending_west]
minecraft:golden_rail[powered=true,shape=ascending_north] -> minecraft:powered_rail[powered=true,shape=ascending_north]
minecraft:golden_rail[powered=true,shape=ascending_south] -> minecraft:powered_rail[powered=true,shape=ascending_south]
minecraft:detector_rail[powered=false,shape=north_south] -> minecraft:detector_rail[powered=false,shape=north_south]
minecraft:detector_rail[powered=false,shape=east_west] -> minecraft:detector_rail[powered=false,shape=east_west]
minecraft:detector_rail[powered=false,shape=ascending_east] -> minecraft:detector_rail[powered=false,shape=ascending_east]
minecraft:detector_rail[powered=false,shape=ascending_west] -> minecraft:detector_rail[powered=false,shape=ascending_west]
minecraft:detector_rail[powered=false,shape=ascending_north] -> minecraft:detector_rail[powered=false,shape=ascending_north]
minecraft:detector_rail[powered=false,shape=ascending_south] -> minecraft:detector_rail[powered=false,shape=ascending_south]
minecraft:detector_rail[powered=true,shape=north_south] -> minecraft:detector_rail[powered=true,shape=north_south]
minecraft:detector_rail[powered=true,shape=east_west] -> minecraft:detector_rail[powered=true,shape=east_west]
minecraft:detector_rail[powered=true,shape=ascending_east] -> minecraft:detector_rail[powered=true,shape=ascending_east]
minecraft:detector_rail[powered=true,shape=ascending_west] -> minecraft:detector_rail[powered=true,shape=ascending_west]
minecraft:detector_rail[powered=true,shape=ascending_north] -> minecraft:detector_rail[powered=true,shape=ascending_north]
minecraft:detector_rail[powered=true,shape=ascending_south] -> minecraft:detector_rail[powered=true,shape=ascending_south]
minecraft:sticky_piston[facing=down,extended=false] -> minecraft:sticky_piston[facing=down,extended=false]
minecraft:sticky_piston[facing=up,extended=false] -> minecraft:sticky_piston[facing=up,extended=false]
minecraft:sticky_piston[facing=north,extended=false] -> minecraft:sticky_piston[facing=north,extended=false]
minecraft:sticky_piston[facing=south,extended=false] -> minecraft:sticky_piston[facing=south,extended=false]
minecraft:sticky_piston[facing=west,extended=false] -> minecraft:sticky_piston[facing=west,extended=false]
minecraft:sticky_piston[facing=east,extended=false] -> minecraft:sticky_piston[facing=east,extended=false]
minecraft:sticky_piston[facing=down,extended=true] -> minecraft:sticky_piston[facing=down,extended=true]
minecraft:sticky_piston[facing=up,extended=true] -> minecraft:sticky_piston[facing=up,extended=true]
minecraft:sticky_piston[facing=north,extended=true] -> minecraft:sticky_piston[facing=north,extended=true]
minecraft:sticky_piston[facing=south,extended=true] -> minecraft:sticky_piston[facing=south,extended=true]
minecraft:sticky_piston[facing=west,extended=true] -> minecraft:sticky_piston[facing=west,extended=true]
minecraft:sticky_piston[facing=east,extended=true] -> minecraft:sticky_piston[facing=east,extended=true]
minecraft:web -> minecraft:cobweb
minecraft:tallgrass[type=dead_bush] -> minecraft:dead_bush
minecraft:tallgrass[type=tall_grass] -> minecraft:grass
minecraft:tallgrass[type=fern] -> minecraft:fern
minecraft:deadbush -> minecraft:dead_bush
minecraft:piston[facing=down,extended=false] -> minecraft:piston[facing=down,extended=false]
minecraft:piston[facing=up,extended=false] -> minecraft:piston[facing=up,extended=false]
minecraft:piston[facing=north,extended=false] -> minecraft:piston[facing=north,extended=false]
minecraft:piston[facing=south,extended=false] -> minecraft:piston[facing=south,extended=false]
minecraft:piston[facing=west,extended=false] -> minecraft:piston[facing=west,extended=false]
minecraft:piston[facing=east,extended=false] -> minecraft:piston[facing=east,extended=false]
minecraft:piston[facing=down,extended=true] -> minecraft:piston[facing=down,extended=true]
minecraft:piston[facing=up,extended=true] -> minecraft:piston[facing=up,extended=true]
minecraft:piston[facing=north,extended=true] -> minecraft:piston[facing=north,extended=true]
minecraft:piston[facing=south,extended=true] -> minecraft:piston[facing=south,extended=true]
minecraft:piston[facing=west,extended=true] -> minecraft:piston[facing=west,extended=true]
minecraft:piston[facing=east,extended=true] -> minecraft:piston[facing=east,extended=true]
minecraft:piston_head[facing=down,short=false,type=normal] -> minecraft:piston_head[facing=down,short=false,type=normal]
minecraft:piston_head[facing=up,short=false,type=normal] -> minecraft:piston_head[facing=up,short=false,type=normal]
minecraft:piston_head[facing=north,short=false,type=normal] -> minecraft:piston_head[facing=north,short=false,type=normal]
minecraft:piston_head[facing=south,short=false,type=normal] -> minecraft:piston_head[facing=south,short=false,type=normal]
minecraft:piston_head[facing=west,short=false,type=normal] -> minecraft:piston_head[facing=west,short=false,type=normal]
minecraft:piston_head[facing=east,short=false,type=normal] -> minecraft:piston_head[facing=east,short=false,type=normal]
minecraft:piston_head[facing=down,short=false,type=sticky] -> minecraft:piston_head[facing=down,short=false,type=sticky]
minecraft:piston_head[facing=up,short=false,type=sticky] -> minecraft:piston_head[facing=up,short=false,type=sticky]
minecraft:piston_head[facing=north,short=false,type=sticky] -> minecraft:piston_head[facing=north,short=false,type=sticky]
minecraft:piston_head[facing=south,short=false,type=sticky] -> minecraft:piston_head[facing=south,short=false,type=sticky]
minecraft:piston_head[facing=west,short=false,type=sticky] -> minecraft:piston_head[facing=west,short=false,type=sticky]
minecraft:piston_head[facing=east,short=false,type=sticky] -> minecraft:piston_head[facing=east,short=false,type=sticky]
minecraft:wool[color=white] -> minecraft:white_wool
minecraft:wool[color=orange] -> minecraft:orange_wool
minecraft:wool[color=magenta] -> minecraft:magenta_wool
minecraft:wool[color=lightblue] -> minecraft:air
minecraft:wool[color=yellow] -> minecraft:yellow_wool
minecraft:wool[color=lime] -> minecraft:lime_wool
minecraft:wool[color=pink] -> minecraft:pink_wool
minecraft:wool[color=gray] -> minecraft:gray_wool
minecraft:wool[color=silver] -> minecraft:light_gray_wool
minecraft:wool[color=cyan] -> minecraft:cyan_wool
minecraft:wool[color=purple] -> minecraft:purple_wool
minecraft:wool[color=blue] -> minecraft:blue_wool
minecraft:wool[color=brown] -> minecraft:brown_wool
minecraft:wool[color=green] -> minecraft:green_wool
minecraft:wool[color=red] -> minecraft:red_wool
minecraft:wool[color=black] -> minecraft:black_wool
minecraft:piston_extension[facing=down,type=normal] -> minecraft:moving_piston[facing=down,type=normal]
minecraft:piston_extension[facing=up,type=normal] -> minecraft:moving_piston[facing=up,type=normal]
minecraft:piston_extension[facing=north,type=normal] -> minecraft:moving_piston[facing=north,type=normal]
minecraft:piston_extension[facing=south,type=normal] -> minecraft:moving_piston[facing=south,type=normal]
minecraft:piston_extension[facing=west,type=normal] -> minecraft:moving_piston[facing=west,type=normal]
minecraft:piston_extension[facing=east,type=normal] -> minecraft:moving_piston[facing=east,type=normal]
minecraft:piston_extension[facing=down,type=sticky] -> minecraft:moving_piston[facing=down,type=sticky]
minecraft:piston_extension[facing=up,type=sticky] -> minecraft:moving_piston[facing=up,type=sticky]
minecraft:piston_extension[facing=north,type=sticky] -> minecraft:moving_piston[facing=north,type=sticky]
minecraft:piston_extension[facing=south,type=sticky] -> minecraft:moving_piston[facing=south,type=sticky]
minecraft:piston_extension[facing=west,type=sticky] -> minecraft:moving_piston[facing=west,type=sticky]
minecraft:piston_extension[facing=east,type=sticky] -> minecraft:moving_piston[facing=east,type=sticky]
minecraft:yellow_flower[type=dandelion] -> minecraft:dandelion
minecraft:red_flower[type=poppy] -> minecraft:poppy
minecraft:red_flower[type=blue_orchid] -> minecraft:blue_orchid
minecraft:red_flower[type=allium] -> minecraft:allium
minecraft:red_flower[type=houstonia] -> minecraft:azure_bluet
minecraft:red_flower[type=red_tulip] -> minecraft:red_tulip
minecraft:red_flower[type=orange_tulip] -> minecraft:orange_tulip
minecraft:red_flower[type=white_tulip] -> minecraft:white_tulip
minecraft:red_flower[type=pink_tulip] -> minecraft:pink_tulip
minecraft:red_flower[type=oxeye_daisy] -> minecraft:oxeye_daisy
minecraft:brown_mushroom -> minecraft:brown_mushroom
minecraft:red_mushroom -> minecraft:red_mushroom
minecraft:gold_block -> minecraft:gold_block
minecraft:iron_block -> minecraft:iron_block
minecraft:double_stone_slab[seamless=false,variant=stone] -> minecraft:smooth_stone_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=false,variant=sandstone] -> minecraft:sandstone_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=false,variant=wood_old] -> minecraft:petrified_oak_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=false,variant=cobblestone] -> minecraft:cobblestone_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=false,variant=brick] -> minecraft:brick_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=false,variant=stone_brick] -> minecraft:stone_brick_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=false,variant=nether_brick] -> minecraft:nether_brick_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=false,variant=quartz] -> minecraft:quartz_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=true,variant=stone] -> minecraft:smooth_stone
minecraft:double_stone_slab[seamless=true,variant=sandstone] -> minecraft:smooth_sandstone
minecraft:double_stone_slab[seamless=true,variant=wood_old] -> minecraft:petrified_oak_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=true,variant=cobblestone] -> minecraft:cobblestone_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=true,variant=brick] -> minecraft:brick_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=true,variant=stone_brick] -> minecraft:stone_brick_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=true,variant=nether_brick] -> minecraft:nether_brick_slab[waterlogged=false,type=double]
minecraft:double_stone_slab[seamless=true,variant=quartz] -> minecraft:smooth_quartz
minecraft:stone_slab[half=bottom,variant=stone] -> minecraft:smooth_stone_slab[waterlogged=false,type=bottom]
minecraft:stone_slab[half=bottom,variant=sandstone] -> minecraft:sandstone_slab[waterlogged=false,type=bottom]
minecraft:stone_slab[half=bottom,variant=wood_old] -> minecraft:petrified_oak_slab[waterlogged=false,type=bottom]
minecraft:stone_slab[half=bottom,variant=cobblestone] -> minecraft:cobblestone_slab[waterlogged=false,type=bottom]
minecraft:stone_slab[half=bottom,variant=brick] -> minecraft:brick_slab[waterlogged=false,type=bottom]
minecraft:stone_slab[half=bottom,variant=stone_brick] -> minecraft:stone_brick_slab[waterlogged=false,type=bottom]
minecraft:stone_slab[half=bottom,variant=nether_brick] -> minecraft:nether_brick_slab[waterlogged=false,type=bottom]
minecraft:stone_slab[half=bottom,variant=quartz] -> minecraft:quartz_slab[waterlogged=false,type=bottom]
minecraft:stone_slab[half=top,variant=stone] -> minecraft:smooth_stone_slab[waterlogged=false,type=top]
minecraft:stone_slab[half=top,variant=sandstone] -> minecraft:sandstone_slab[waterlogged=false,type=top]
minecraft:stone_slab[half=top,variant=wood_old] -> minecraft:petrified_oak_slab[waterlogged=false,type=top]
minecraft:stone_slab[half=top,variant=cobblestone] -> minecraft:cobblestone_slab[waterlogged=false,type=top]
minecraft:stone_slab[half=top,variant=brick] -> minecraft:brick_slab[waterlogged=false,type=top]
minecraft:stone_slab[half=top,variant=stone_brick] -> minecraft:stone_brick_slab[waterlogged=false,type=top]
minecraft:stone_slab[half=top,variant=nether_brick] -> minecraft:nether_brick_slab[waterlogged=false,type=top]
minecraft:stone_slab[half=top,variant=quartz] -> minecraft:quartz_slab[waterlogged=false,type=top]
minecraft:brick_block -> minecraft:bricks
minecraft:tnt[explode=false] -> minecraft:tnt[unstable=false]
minecraft:tnt[explode=true] -> minecraft:tnt[unstable=true]
minecraft:bookshelf -> minecraft:bookshelf
minecraft:mossy_cobblestone -> minecraft:mossy_cobblestone
minecraft:obsidian -> minecraft:obsidian
minecraft:torch[facing=east] -> minecraft:wall_torch[facing=east]
minecraft:torch[facing=west] -> minecraft:wall_torch[facing=west]
minecraft:torch[facing=south] -> minecraft:wall_torch[facing=south]
minecraft:torch[facing=north] -> minecraft:wall_torch[facing=north]
minecraft:torch[facing=up] -> minecraft:torch
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=0] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=0]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=1] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=1]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=2] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=2]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=3] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=3]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=4] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=4]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=5] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=5]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=6] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=6]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=7] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=7]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=8] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=8]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=9] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=9]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=10] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=10]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=11] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=11]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=12] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=12]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=13] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=13]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=14] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=14]
minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=15] -> minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=15]
minecraft:mob_spawner -> minecraft:spawner
minecraft:oak_stairs[half=bottom,shape=straight,facing=east] -> minecraft:oak_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:oak_stairs[half=bottom,shape=straight,facing=west] -> minecraft:oak_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:oak_stairs[half=bottom,shape=straight,facing=south] -> minecraft:oak_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:oak_stairs[half=bottom,shape=straight,facing=north] -> minecraft:oak_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:oak_stairs[half=top,shape=straight,facing=east] -> minecraft:oak_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:oak_stairs[half=top,shape=straight,facing=west] -> minecraft:oak_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:oak_stairs[half=top,shape=straight,facing=south] -> minecraft:oak_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:oak_stairs[half=top,shape=straight,facing=north] -> minecraft:oak_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:chest[facing=north] -> minecraft:chest[waterlogged=false,facing=north,type=single]
minecraft:chest[facing=south] -> minecraft:chest[waterlogged=false,facing=south,type=single]
minecraft:chest[facing=west] -> minecraft:chest[waterlogged=false,facing=west,type=single]
minecraft:chest[facing=east] -> minecraft:chest[waterlogged=false,facing=east,type=single]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=0] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=0]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=1] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=1]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=2] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=2]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=3] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=3]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=4] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=4]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=5] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=5]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=6] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=6]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=7] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=7]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=8] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=8]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=9] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=9]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=10] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=10]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=11] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=11]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=12] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=12]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=13] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=13]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=14] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=14]
minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=15] -> minecraft:redstone_wire[east=none,south=none,north=none,west=none,power=15]
minecraft:diamond_ore -> minecraft:diamond_ore
minecraft:diamond_block -> minecraft:diamond_block
minecraft:crafting_table -> minecraft:crafting_table
minecraft:wheat[age=0] -> minecraft:wheat[age=0]
minecraft:wheat[age=1] -> minecraft:wheat[age=1]
minecraft:wheat[age=2] -> minecraft:wheat[age=2]
minecraft:wheat[age=3] -> minecraft:wheat[age=3]
minecraft:wheat[age=4] -> minecraft:wheat[age=4]
minecraft:wheat[age=5] -> minecraft:wheat[age=5]
minecraft:wheat[age=6] -> minecraft:wheat[age=6]
minecraft:wheat[age=7] -> minecraft:wheat[age=7]
minecraft:farmland[moisture=0] -> minecraft:farmland[moisture=0]
minecraft:farmland[moisture=1] -> minecraft:farmland[moisture=1]
minecraft:farmland[moisture=2] -> minecraft:farmland[moisture=2]
minecraft:farmland[moisture=3] -> minecraft:farmland[moisture=3]
minecraft:farmland[moisture=4] -> minecraft:farmland[moisture=4]
minecraft:farmland[moisture=5] -> minecraft:farmland[moisture=5]
minecraft:farmland[moisture=6] -> minecraft:farmland[moisture=6]
minecraft:farmland[moisture=7] -> minecraft:farmland[moisture=7]
minecraft:furnace[facing=north] -> minecraft:furnace[lit=false,facing=north]
minecraft:furnace[facing=south] -> minecraft:furnace[lit=false,facing=south]
minecraft:furnace[facing=west] -> minecraft:furnace[lit=false,facing=west]
minecraft:furnace[facing=east] -> minecraft:furnace[lit=false,facing=east]
minecraft:lit_furnace[facing=north] -> minecraft:furnace[lit=true,facing=north]
minecraft:lit_furnace[facing=south] -> minecraft:furnace[lit=true,facing=south]
minecraft:lit_furnace[facing=west] -> minecraft:furnace[lit=true,facing=west]
minecraft:lit_furnace[facing=east] -> minecraft:furnace[lit=true,facing=east]
minecraft:standing_sign[rotation=0] -> minecraft:oak_sign[waterlogged=false,rotation=0]
minecraft:standing_sign[rotation=1] -> minecraft:oak_sign[waterlogged=false,rotation=1]
minecraft:standing_sign[rotation=2] -> minecraft:oak_sign[waterlogged=false,rotation=2]
minecraft:standing_sign[rotation=3] -> minecraft:oak_sign[waterlogged=false,rotation=3]
minecraft:standing_sign[rotation=4] -> minecraft:oak_sign[waterlogged=false,rotation=4]
minecraft:standing_sign[rotation=5] -> minecraft:oak_sign[waterlogged=false,rotation=5]
minecraft:standing_sign[rotation=6] -> minecraft:oak_sign[waterlogged=false,rotation=6]
minecraft:standing_sign[rotation=7] -> minecraft:oak_sign[waterlogged=false,rotation=7]
minecraft:standing_sign[rotation=8] -> minecraft:oak_sign[waterlogged=false,rotation=8]
minecraft:standing_sign[rotation=9] -> minecraft:oak_sign[waterlogged=false,rotation=9]
minecraft:standing_sign[rotation=10] -> minecraft:oak_sign[waterlogged=false,rotation=10]
minecraft:standing_sign[rotation=11] -> minecraft:oak_sign[waterlogged=false,rotation=11]
minecraft:standing_sign[rotation=12] -> minecraft:oak_sign[waterlogged=false,rotation=12]
minecraft:standing_sign[rotation=13] -> minecraft:oak_sign[waterlogged=false,rotation=13]
minecraft:standing_sign[rotation=14] -> minecraft:oak_sign[waterlogged=false,rotation=14]
minecraft:standing_sign[rotation=15] -> minecraft:oak_sign[waterlogged=false,rotation=15]
minecraft:wooden_door[hinge=left,half=lower,powered=false,facing=east,open=false] -> minecraft:oak_door[hinge=right,half=lower,powered=false,facing=east,open=false]
minecraft:wooden_door[hinge=left,half=lower,powered=false,facing=south,open=false] -> minecraft:oak_door[hinge=right,half=lower,powered=false,facing=south,open=false]
minecraft:wooden_door[hinge=left,half=lower,powered=false,facing=west,open=false] -> minecraft:oak_door[hinge=right,half=lower,powered=false,facing=west,open=false]
minecraft:wooden_door[hinge=left,half=lower,powered=false,facing=north,open=false] -> minecraft:oak_door[hinge=right,half=lower,powered=false,facing=north,open=false]
minecraft:wooden_door[hinge=left,half=lower,powered=false,facing=east,open=true] -> minecraft:oak_door[hinge=right,half=lower,powered=false,facing=east,open=true]
minecraft:wooden_door[hinge=left,half=lower,powered=false,facing=south,open=true] -> minecraft:oak_door[hinge=right,half=lower,powered=false,facing=south,open=true]
minecraft:wooden_door[hinge=left,half=lower,powered=false,facing=west,open=true] -> minecraft:oak_door[hinge=right,half=lower,powered=false,facing=west,open=true]
minecraft:wooden_door[hinge=left,half=lower,powered=false,facing=north,open=true] -> minecraft:oak_door[hinge=right,half=lower,powered=false,facing=north,open=true]
minecraft:wooden_door[hinge=left,half=upper,powered=false,facing=north,open=false] -> minecraft:oak_door[hinge=left,half=upper,powered=false,facing=east,open=false]
minecraft:wooden_door[hinge=right,half=upper,powered=false,facing=north,open=false] -> minecraft:oak_door[hinge=right,half=upper,powered=false,facing=east,open=false]
minecraft:wooden_door[hinge=left,half=upper,powered=true,facing=north,open=false] -> minecraft:oak_door[hinge=left,half=upper,powered=true,facing=east,open=false]
minecraft:wooden_door[hinge=right,half=upper,powered=true,facing=north,open=false] -> minecraft:oak_door[hinge=right,half=upper,powered=true,facing=east,open=false]
minecraft:ladder[facing=north] -> minecraft:ladder[waterlogged=false,facing=north]
minecraft:ladder[facing=south] -> minecraft:ladder[waterlogged=false,facing=south]
minecraft:ladder[facing=west] -> minecraft:ladder[waterlogged=false,facing=west]
minecraft:ladder[facing=east] -> minecraft:ladder[waterlogged=false,facing=east]
minecraft:rail[shape=north_south] -> minecraft:rail[shape=north_south]
minecraft:rail[shape=east_west] -> minecraft:rail[shape=east_west]
minecraft:rail[shape=ascending_east] -> minecraft:rail[shape=ascending_east]
minecraft:rail[shape=ascending_west] -> minecraft:rail[shape=ascending_west]
minecraft:rail[shape=ascending_north] -> minecraft:rail[shape=ascending_north]
minecraft:rail[shape=ascending_south] -> minecraft:rail[shape=ascending_south]
minecraft:rail[shape=south_east] -> minecraft:rail[shape=south_east]
minecraft:rail[shape=south_west] -> minecraft:rail[shape=south_west]
minecraft:rail[shape=north_west] -> minecraft:rail[shape=north_west]
minecraft:rail[shape=north_east] -> minecraft:rail[shape=north_east]
minecraft:stone_stairs[half=bottom,shape=straight,facing=east] -> minecraft:cobblestone_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:stone_stairs[half=bottom,shape=straight,facing=west] -> minecraft:cobblestone_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:stone_stairs[half=bottom,shape=straight,facing=south] -> minecraft:cobblestone_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:stone_stairs[half=bottom,shape=straight,facing=north] -> minecraft:cobblestone_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:stone_stairs[half=top,shape=straight,facing=east] -> minecraft:cobblestone_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:stone_stairs[half=top,shape=straight,facing=west] -> minecraft:cobblestone_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:stone_stairs[half=top,shape=straight,facing=south] -> minecraft:cobblestone_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:stone_stairs[half=top,shape=straight,facing=north] -> minecraft:cobblestone_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:wall_sign[facing=north] -> minecraft:oak_wall_sign[waterlogged=false,facing=north]
minecraft:wall_sign[facing=south] -> minecraft:oak_wall_sign[waterlogged=false,facing=south]
minecraft:wall_sign[facing=west] -> minecraft:oak_wall_sign[waterlogged=false,facing=west]
minecraft:wall_sign[facing=east] -> minecraft:oak_wall_sign[waterlogged=false,facing=east]
minecraft:lever[powered=false,facing=down_x] -> minecraft:lever[face=ceiling,powered=false,facing=west]
minecraft:lever[powered=false,facing=east] -> minecraft:lever[face=wall,powered=false,facing=east]
minecraft:lever[powered=false,facing=west] -> minecraft:lever[face=wall,powered=false,facing=west]
minecraft:lever[powered=false,facing=south] -> minecraft:lever[face=wall,powered=false,facing=south]
minecraft:lever[powered=false,facing=north] -> minecraft:lever[face=wall,powered=false,facing=north]
minecraft:lever[powered=false,facing=up_z] -> minecraft:lever[face=floor,powered=false,facing=north]
minecraft:lever[powered=false,facing=up_x] -> minecraft:lever[face=floor,powered=false,facing=west]
minecraft:lever[powered=false,facing=down_z] -> minecraft:lever[face=ceiling,powered=false,facing=north]
minecraft:lever[powered=true,facing=down_x] -> minecraft:lever[face=ceiling,powered=true,facing=west]
minecraft:lever[powered=true,facing=east] -> minecraft:lever[face=wall,powered=true,facing=east]
minecraft:lever[powered=true,facing=west] -> minecraft:lever[face=wall,powered=true,facing=west]
minecraft:lever[powered=true,facing=south] -> minecraft:lever[face=wall,powered=true,facing=south]
minecraft:lever[powered=true,facing=north] -> minecraft:lever[face=wall,powered=true,facing=north]
minecraft:lever[powered=true,facing=up_z] -> minecraft:lever[face=floor,powered=true,facing=north]
minecraft:lever[powered=true,facing=up_x] -> minecraft:lever[face=floor,powered=true,facing=west]
minecraft:lever[powered=true,facing=down_z] -> minecraft:lever[face=ceiling,powered=true,facing=north]
minecraft:stone_pressure_plate[powered=false] -> minecraft:stone_pressure_plate[powered=false]
minecraft:stone_pressure_plate[powered=true] -> minecraft:stone_pressure_plate[powered=true]
minecraft:iron_door[hinge=left,half=lower,powered=false,facing=east,open=false] -> minecraft:iron_door[hinge=right,half=lower,powered=false,facing=east,open=false]
minecraft:iron_door[hinge=left,half=lower,powered=false,facing=south,open=false] -> minecraft:iron_door[hinge=right,half=lower,powered=false,facing=south,open=false]
minecraft:iron_door[hinge=left,half=lower,powered=false,facing=west,open=false] -> minecraft:iron_door[hinge=right,half=lower,powered=false,facing=west,open=false]
minecraft:iron_door[hinge=left,half=lower,powered=false,facing=north,open=false] -> minecraft:iron_door[hinge=right,half=lower,powered=false,facing=north,open=false]
minecraft:iron_door[hinge=left,half=lower,powered=false,facing=east,open=true] -> minecraft:iron_door[hinge=right,half=lower,powered=false,facing=east,open=true]
minecraft:iron_door[hinge=left,half=lower,powered=false,facing=south,open=true] -> minecraft:iron_door[hinge=right,half=lower,powered=false,facing=south,open=true]
minecraft:iron_door[hinge=left,half=lower,powered=false,facing=west,open=true] -> minecraft:iron_door[hinge=right,half=lower,powered=false,facing=west,open=true]
minecraft:iron_door[hinge=left,half=lower,powered=false,facing=north,open=true] -> minecraft:iron_door[hinge=right,half=lower,powered=false,facing=north,open=true]
minecraft:iron_door[hinge=left,half=upper,powered=false,facing=north,open=false] -> minecraft:iron_door[hinge=left,half=upper,powered=false,facing=east,open=false]
minecraft:iron_door[hinge=right,half=upper,powered=false,facing=north,open=false] -> minecraft:iron_door[hinge=right,half=upper,powered=false,facing=east,open=false]
minecraft:iron_door[hinge=left,half=upper,powered=true,facing=north,open=false] -> minecraft:iron_door[hinge=left,half=upper,powered=true,facing=east,open=false]
minecraft:iron_door[hinge=right,half=upper,powered=true,facing=north,open=false] -> minecraft:iron_door[hinge=right,half=upper,powered=true,facing=east,open=false]
minecraft:wooden_pressure_plate[powered=false] -> minecraft:oak_pressure_plate[powered=false]
minecraft:wooden_pressure_plate[powered=true] -> minecraft:oak_pressure_plate[powered=true]
minecraft:redstone_ore -> minecraft:redstone_ore[lit=false]
minecraft:lit_redstone_ore -> minecraft:redstone_ore[lit=true]
minecraft:unlit_redstone_torch[facing=east] -> minecraft:redstone_wall_torch[lit=false,facing=east]
minecraft:unlit_redstone_torch[facing=west] -> minecraft:redstone_wall_torch[lit=false,facing=west]
minecraft:unlit_redstone_torch[facing=south] -> minecraft:redstone_wall_torch[lit=false,facing=south]
minecraft:unlit_redstone_torch[facing=north] -> minecraft:redstone_wall_torch[lit=false,facing=north]
minecraft:unlit_redstone_torch[facing=up] -> minecraft:redstone_torch[lit=false]
minecraft:redstone_torch[facing=east] -> minecraft:redstone_wall_torch[lit=true,facing=east]
minecraft:redstone_torch[facing=west] -> minecraft:redstone_wall_torch[lit=true,facing=west]
minecraft:redstone_torch[facing=south] -> minecraft:redstone_wall_torch[lit=true,facing=south]
minecraft:redstone_torch[facing=north] -> minecraft:redstone_wall_torch[lit=true,facing=north]
minecraft:redstone_torch[facing=up] -> minecraft:redstone_torch[lit=true]
minecraft:stone_button[powered=false,facing=down] -> minecraft:stone_button[face=ceiling,powered=false,facing=north]
minecraft:stone_button[powered=false,facing=east] -> minecraft:stone_button[face=wall,powered=false,facing=east]
minecraft:stone_button[powered=false,facing=west] -> minecraft:stone_button[face=wall,powered=false,facing=west]
minecraft:stone_button[powered=false,facing=south] -> minecraft:stone_button[face=wall,powered=false,facing=south]
minecraft:stone_button[powered=false,facing=north] -> minecraft:stone_button[face=wall,powered=false,facing=north]
minecraft:stone_button[powered=false,facing=up] -> minecraft:stone_button[face=floor,powered=false,facing=north]
minecraft:stone_button[powered=true,facing=down] -> minecraft:stone_button[face=ceiling,powered=true,facing=north]
minecraft:stone_button[powered=true,facing=east] -> minecraft:stone_button[face=wall,powered=true,facing=east]
minecraft:stone_button[powered=true,facing=west] -> minecraft:stone_button[face=wall,powered=true,facing=west]
minecraft:stone_button[powered=true,facing=south] -> minecraft:stone_button[face=wall,powered=true,facing=south]
minecraft:stone_button[powered=true,facing=north] -> minecraft:stone_button[face=wall,powered=true,facing=north]
minecraft:stone_button[powered=true,facing=up] -> minecraft:stone_button[face=floor,powered=true,facing=north]
minecraft:snow_layer[layers=1] -> minecraft:snow[layers=1]
minecraft:snow_layer[layers=2] -> minecraft:snow[layers=2]
minecraft:snow_layer[layers=3] -> minecraft:snow[layers=3]
minecraft:snow_layer[layers=4] -> minecraft:snow[layers=4]
minecraft:snow_layer[layers=5] -> minecraft:snow[layers=5]
minecraft:snow_layer[layers=6] -> minecraft:snow[layers=6]
minecraft:snow_layer[layers=7] -> minecraft:snow[layers=7]
minecraft:snow_layer[layers=8] -> minecraft:snow[layers=8]
minecraft:ice -> minecraft:ice
minecraft:snow -> minecraft:snow_block
minecraft:cactus[age=0] -> minecraft:cactus[age=0]
minecraft:cactus[age=1] -> minecraft:cactus[age=1]
minecraft:cactus[age=2] -> minecraft:cactus[age=2]
minecraft:cactus[age=3] -> minecraft:cactus[age=3]
minecraft:cactus[age=4] -> minecraft:cactus[age=4]
minecraft:cactus[age=5] -> minecraft:cactus[age=5]
minecraft:cactus[age=6] -> minecraft:cactus[age=6]
minecraft:cactus[age=7] -> minecraft:cactus[age=7]
minecraft:cactus[age=8] -> minecraft:cactus[age=8]
minecraft:cactus[age=9] -> minecraft:cactus[age=9]
minecraft:cactus[age=10] -> minecraft:cactus[age=10]
minecraft:cactus[age=11] -> minecraft:cactus[age=11]
minecraft:cactus[age=12] -> minecraft:cactus[age=12]
minecraft:cactus[age=13] -> minecraft:cactus[age=13]
minecraft:cactus[age=14] -> minecraft:cactus[age=14]
minecraft:cactus[age=15] -> minecraft:cactus[age=15]
minecraft:clay -> minecraft:clay
minecraft:reeds[age=0] -> minecraft:sugar_cane[age=0]
minecraft:reeds[age=1] -> minecraft:sugar_cane[age=1]
minecraft:reeds[age=2] -> minecraft:sugar_cane[age=2]
minecraft:reeds[age=3] -> minecraft:sugar_cane[age=3]
minecraft:reeds[age=4] -> minecraft:sugar_cane[age=4]
minecraft:reeds[age=5] -> minecraft:sugar_cane[age=5]
minecraft:reeds[age=6] -> minecraft:sugar_cane[age=6]
minecraft:reeds[age=7] -> minecraft:sugar_cane[age=7]
minecraft:reeds[age=8] -> minecraft:sugar_cane[age=8]
minecraft:reeds[age=9] -> minecraft:sugar_cane[age=9]
minecraft:reeds[age=10] -> minecraft:sugar_cane[age=10]
minecraft:reeds[age=11] -> minecraft:sugar_cane[age=11]
minecraft:reeds[age=12] -> minecraft:sugar_cane[age=12]
minecraft:reeds[age=13] -> minecraft:sugar_cane[age=13]
minecraft:reeds[age=14] -> minecraft:sugar_cane[age=14]
minecraft:reeds[age=15] -> minecraft:sugar_cane[age=15]
minecraft:jukebox[has_record=false] -> minecraft:jukebox[has_record=false]
minecraft:jukebox[has_record=true] -> minecraft:jukebox[has_record=true]
minecraft:fence[east=false,south=false,north=false,west=false] -> minecraft:oak_fence[east=false,waterlogged=false,south=false,north=false,west=false]
minecraft:pumpkin[facing=south] -> minecraft:carved_pumpkin[facing=south]
minecraft:pumpkin[facing=west] -> minecraft:carved_pumpkin[facing=west]
minecraft:pumpkin[facing=north] -> minecraft:carved_pumpkin[facing=north]
minecraft:pumpkin[facing=east] -> minecraft:carved_pumpkin[facing=east]
minecraft:netherrack -> minecraft:netherrack
minecraft:soul_sand -> minecraft:soul_sand
minecraft:glowstone -> minecraft:glowstone
minecraft:portal[axis=x] -> minecraft:nether_portal[axis=x]
minecraft:portal[axis=z] -> minecraft:nether_portal[axis=z]
minecraft:lit_pumpkin[facing=south] -> minecraft:jack_o_lantern[facing=south]
minecraft:lit_pumpkin[facing=west] -> minecraft:jack_o_lantern[facing=west]
minecraft:lit_pumpkin[facing=north] -> minecraft:jack_o_lantern[facing=north]
minecraft:lit_pumpkin[facing=east] -> minecraft:jack_o_lantern[facing=east]
minecraft:cake[bites=0] -> minecraft:cake[bites=0]
minecraft:cake[bites=1] -> minecraft:cake[bites=1]
minecraft:cake[bites=2] -> minecraft:cake[bites=2]
minecraft:cake[bites=3] -> minecraft:cake[bites=3]
minecraft:cake[bites=4] -> minecraft:cake[bites=4]
minecraft:cake[bites=5] -> minecraft:cake[bites=5]
minecraft:cake[bites=6] -> minecraft:cake[bites=6]
minecraft:unpowered_repeater[delay=1,facing=south,locked=false] -> minecraft:repeater[delay=1,powered=false,facing=south,locked=false]
minecraft:unpowered_repeater[delay=1,facing=west,locked=false] -> minecraft:repeater[delay=1,powered=false,facing=west,locked=false]
minecraft:unpowered_repeater[delay=1,facing=north,locked=false] -> minecraft:repeater[delay=1,powered=false,facing=north,locked=false]
minecraft:unpowered_repeater[delay=1,facing=east,locked=false] -> minecraft:repeater[delay=1,powered=false,facing=east,locked=false]
minecraft:unpowered_repeater[delay=2,facing=south,locked=false] -> minecraft:repeater[delay=2,powered=false,facing=south,locked=false]
minecraft:unpowered_repeater[delay=2,facing=west,locked=false] -> minecraft:repeater[delay=2,powered=false,facing=west,locked=false]
minecraft:unpowered_repeater[delay=2,facing=north,locked=false] -> minecraft:repeater[delay=2,powered=false,facing=north,locked=false]
minecraft:unpowered_repeater[delay=2,facing=east,locked=false] -> minecraft:repeater[delay=2,powered=false,facing=east,locked=false]
minecraft:unpowered_repeater[delay=3,facing=south,locked=false] -> minecraft:repeater[delay=3,powered=false,facing=south,locked=false]
minecraft:unpowered_repeater[delay=3,facing=west,locked=false] -> minecraft:repeater[delay=3,powered=false,facing=west,locked=false]
minecraft:unpowered_repeater[delay=3,facing=north,locked=false] -> minecraft:repeater[delay=3,powered=false,facing=north,locked=false]
minecraft:unpowered_repeater[delay=3,facing=east,locked=false] -> minecraft:repeater[delay=3,powered=false,facing=east,locked=false]
minecraft:unpowered_repeater[delay=4,facing=south,locked=false] -> minecraft:repeater[delay=4,powered=false,facing=south,locked=false]
minecraft:unpowered_repeater[delay=4,facing=west,locked=false] -> minecraft:repeater[delay=4,powered=false,facing=west,locked=false]
minecraft:unpowered_repeater[delay=4,facing=north,locked=false] -> minecraft:repeater[delay=4,powered=false,facing=north,locked=false]
minecraft:unpowered_repeater[delay=4,facing=east,locked=false] -> minecraft:repeater[delay=4,powered=false,facing=east,locked=false]
minecraft:powered_repeater[delay=1,facing=south,locked=false] -> minecraft:repeater[delay=1,powered=true,facing=south,locked=false]
minecraft:powered_repeater[delay=1,facing=west,locked=false] -> minecraft:repeater[delay=1,powered=true,facing=west,locked=false]
minecraft:powered_repeater[delay=1,facing=north,locked=false] -> minecraft:repeater[delay=1,powered=true,facing=north,locked=false]
minecraft:powered_repeater[delay=1,facing=east,locked=false] -> minecraft:repeater[delay=1,powered=true,facing=east,locked=false]
minecraft:powered_repeater[delay=2,facing=south,locked=false] -> minecraft:repeater[delay=2,powered=true,facing=south,locked=false]
minecraft:powered_repeater[delay=2,facing=west,locked=false] -> minecraft:repeater[delay=2,powered=true,facing=west,locked=false]
minecraft:powered_repeater[delay=2,facing=north,locked=false] -> minecraft:repeater[delay=2,powered=true,facing=north,locked=false]
minecraft:powered_repeater[delay=2,facing=east,locked=false] -> minecraft:repeater[delay=2,powered=true,facing=east,locked=false]
minecraft:powered_repeater[delay=3,facing=south,locked=false] -> minecraft:repeater[delay=3,powered=true,facing=south,locked=false]
minecraft:powered_repeater[delay=3,facing=west,locked=false] -> minecraft:repeater[delay=3,powered=true,facing=west,locked=false]
minecraft:powered_repeater[delay=3,facing=north,locked=false] -> minecraft:repeater[delay=3,powered=true,facing=north,locked=false]
minecraft:powered_repeater[delay=3,facing=east,locked=false] -> minecraft:repeater[delay=3,powered=true,facing=east,locked=false]
minecraft:powered_repeater[delay=4,facing=south,locked=false] -> minecraft:repeater[delay=4,powered=true,facing=south,locked=false]
minecraft:powered_repeater[delay=4,facing=west,locked=false] -> minecraft:repeater[delay=4,powered=true,facing=west,locked=false]
minecraft:powered_repeater[delay=4,facing=north,locked=false] -> minecraft:repeater[delay=4,powered=true,facing=north,locked=false]
minecraft:powered_repeater[delay=4,facing=east,locked=false] -> minecraft:repeater[delay=4,powered=true,facing=east,locked=false]
minecraft:stained_glass[color=white] -> minecraft:white_stained_glass
minecraft:stained_glass[color=orange] -> minecraft:orange_stained_glass
minecraft:stained_glass[color=magenta] -> minecraft:magenta_stained_glass
minecraft:stained_glass[color=lightblue] -> minecraft:air
minecraft:stained_glass[color=yellow] -> minecraft:yellow_stained_glass
minecraft:stained_glass[color=lime] -> minecraft:lime_stained_glass
minecraft:stained_glass[color=pink] -> minecraft:pink_stained_glass
minecraft:stained_glass[color=gray] -> minecraft:gray_stained_glass
minecraft:stained_glass[color=silver] -> minecraft:light_gray_stained_glass
minecraft:stained_glass[color=cyan] -> minecraft:cyan_stained_glass
minecraft:stained_glass[color=purple] -> minecraft:purple_stained_glass
minecraft:stained_glass[color=blue] -> minecraft:blue_stained_glass
minecraft:stained_glass[color=brown] -> minecraft:brown_stained_glass
minecraft:stained_glass[color=green] -> minecraft:green_stained_glass
minecraft:stained_glass[color=red] -> minecraft:red_stained_glass
minecraft:stained_glass[color=black] -> minecraft:black_stained_glass
minecraft:trapdoor[half=bottom,facing=north,open=false] -> minecraft:oak_trapdoor[half=bottom,waterlogged=false,powered=false,facing=north,open=false]
minecraft:trapdoor[half=bottom,facing=south,open=false] -> minecraft:oak_trapdoor[half=bottom,waterlogged=false,powered=false,facing=south,open=false]
minecraft:trapdoor[half=bottom,facing=west,open=false] -> minecraft:oak_trapdoor[half=bottom,waterlogged=false,powered=false,facing=west,open=false]
minecraft:trapdoor[half=bottom,facing=east,open=false] -> minecraft:oak_trapdoor[half=bottom,waterlogged=false,powered=false,facing=east,open=false]
minecraft:trapdoor[half=bottom,facing=north,open=true] -> minecraft:oak_trapdoor[half=bottom,waterlogged=false,powered=false,facing=north,open=true]
minecraft:trapdoor[half=bottom,facing=south,open=true] -> minecraft:oak_trapdoor[half=bottom,waterlogged=false,powered=false,facing=south,open=true]
minecraft:trapdoor[half=bottom,facing=west,open=true] -> minecraft:oak_trapdoor[half=bottom,waterlogged=false,powered=false,facing=west,open=true]
minecraft:trapdoor[half=bottom,facing=east,open=true] -> minecraft:oak_trapdoor[half=bottom,waterlogged=false,powered=false,facing=east,open=true]
minecraft:trapdoor[half=top,facing=north,open=false] -> minecraft:oak_trapdoor[half=top,waterlogged=false,powered=false,facing=north,open=false]
minecraft:trapdoor[half=top,facing=south,open=false] -> minecraft:oak_trapdoor[half=top,waterlogged=false,powered=false,facing=south,open=false]
minecraft:trapdoor[half=top,facing=west,open=false] -> minecraft:oak_trapdoor[half=top,waterlogged=false,powered=false,facing=west,open=false]
minecraft:trapdoor[half=top,facing=east,open=false] -> minecraft:oak_trapdoor[half=top,waterlogged=false,powered=false,facing=east,open=false]
minecraft:trapdoor[half=top,facing=north,open=true] -> minecraft:oak_trapdoor[half=top,waterlogged=false,powered=false,facing=north,open=true]
minecraft:trapdoor[half=top,facing=south,open=true] -> minecraft:oak_trapdoor[half=top,waterlogged=false,powered=false,facing=south,open=true]
minecraft:trapdoor[half=top,facing=west,open=true] -> minecraft:oak_trapdoor[half=top,waterlogged=false,powered=false,facing=west,open=true]
minecraft:trapdoor[half=top,facing=east,open=true] -> minecraft:oak_trapdoor[half=top,waterlogged=false,powered=false,facing=east,open=true]
minecraft:monster_egg[variant=stone] -> minecraft:infested_stone
minecraft:monster_egg[variant=cobblestone] -> minecraft:infested_cobblestone
minecraft:monster_egg[variant=stone_brick] -> minecraft:infested_stone_bricks
minecraft:monster_egg[variant=mossy_brick] -> minecraft:infested_mossy_stone_bricks
minecraft:monster_egg[variant=cracked_brick] -> minecraft:infested_cracked_stone_bricks
minecraft:monster_egg[variant=chiseled_brick] -> minecraft:infested_chiseled_stone_bricks
minecraft:stonebrick[variant=stonebrick] -> minecraft:stone_bricks
minecraft:stonebrick[variant=mossy_stonebrick] -> minecraft:mossy_stone_bricks
minecraft:stonebrick[variant=cracked_stonebrick] -> minecraft:cracked_stone_bricks
minecraft:stonebrick[variant=chiseled_stonebrick] -> minecraft:chiseled_stone_bricks
minecraft:brown_mushroom_block[variant=all_inside] -> minecraft:brown_mushroom_block[east=false,south=false,north=false,west=false,up=false,down=false]
minecraft:brown_mushroom_block[variant=north_west] -> minecraft:brown_mushroom_block[east=false,south=false,north=true,west=true,up=true,down=false]
minecraft:brown_mushroom_block[variant=north] -> minecraft:brown_mushroom_block[east=false,south=false,north=true,west=false,up=true,down=false]
minecraft:brown_mushroom_block[variant=north_east] -> minecraft:brown_mushroom_block[east=true,south=false,north=true,west=false,up=true,down=false]
minecraft:brown_mushroom_block[variant=west] -> minecraft:brown_mushroom_block[east=false,south=false,north=false,west=true,up=true,down=false]
minecraft:brown_mushroom_block[variant=center] -> minecraft:brown_mushroom_block[east=false,south=false,north=false,west=false,up=true,down=false]
minecraft:brown_mushroom_block[variant=east] -> minecraft:brown_mushroom_block[east=true,south=false,north=false,west=false,up=true,down=false]
minecraft:brown_mushroom_block[variant=south_west] -> minecraft:brown_mushroom_block[east=false,south=true,north=false,west=true,up=true,down=false]
minecraft:brown_mushroom_block[variant=south] -> minecraft:brown_mushroom_block[east=false,south=true,north=false,west=false,up=true,down=false]
minecraft:brown_mushroom_block[variant=south_east] -> minecraft:brown_mushroom_block[east=true,south=true,north=false,west=false,up=true,down=false]
minecraft:brown_mushroom_block[variant=stem] -> minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=false,down=false]
minecraft:brown_mushroom_block[variant=all_outside] -> minecraft:brown_mushroom_block[east=true,south=true,north=true,west=true,up=true,down=true]
minecraft:brown_mushroom_block[variant=all_stem] -> minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=true,down=true]
minecraft:red_mushroom_block[variant=all_inside] -> minecraft:red_mushroom_block[east=false,south=false,north=false,west=false,up=false,down=false]
minecraft:red_mushroom_block[variant=north_west] -> minecraft:red_mushroom_block[east=false,south=false,north=true,west=true,up=true,down=false]
minecraft:red_mushroom_block[variant=north] -> minecraft:red_mushroom_block[east=false,south=false,north=true,west=false,up=true,down=false]
minecraft:red_mushroom_block[variant=north_east] -> minecraft:red_mushroom_block[east=true,south=false,north=true,west=false,up=true,down=false]
minecraft:red_mushroom_block[variant=west] -> minecraft:red_mushroom_block[east=false,south=false,north=false,west=true,up=true,down=false]
minecraft:red_mushroom_block[variant=center] -> minecraft:red_mushroom_block[east=false,south=false,north=false,west=false,up=true,down=false]
minecraft:red_mushroom_block[variant=east] -> minecraft:red_mushroom_block[east=true,south=false,north=false,west=false,up=true,down=false]
minecraft:red_mushroom_block[variant=south_west] -> minecraft:red_mushroom_block[east=false,south=true,north=false,west=true,up=true,down=false]
minecraft:red_mushroom_block[variant=south] -> minecraft:red_mushroom_block[east=false,south=true,north=false,west=false,up=true,down=false]
minecraft:red_mushroom_block[variant=south_east] -> minecraft:red_mushroom_block[east=true,south=true,north=false,west=false,up=true,down=false]
minecraft:red_mushroom_block[variant=stem] -> minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=false,down=false]
minecraft:red_mushroom_block[variant=all_outside] -> minecraft:red_mushroom_block[east=true,south=true,north=true,west=true,up=true,down=true]
minecraft:red_mushroom_block[variant=all_stem] -> minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=true,down=true]
minecraft:iron_bars[east=false,south=false,north=false,west=false] -> minecraft:iron_bars[east=false,waterlogged=false,south=false,north=false,west=false]
minecraft:glass_pane[east=false,south=false,north=false,west=false] -> minecraft:glass_pane[east=false,waterlogged=false,south=false,north=false,west=false]
minecraft:melon_block -> minecraft:melon
minecraft:pumpkin_stem[facing=up,age=0] -> minecraft:pumpkin_stem[age=0]
minecraft:pumpkin_stem[facing=up,age=1] -> minecraft:pumpkin_stem[age=1]
minecraft:pumpkin_stem[facing=up,age=2] -> minecraft:pumpkin_stem[age=2]
minecraft:pumpkin_stem[facing=up,age=3] -> minecraft:pumpkin_stem[age=3]
minecraft:pumpkin_stem[facing=up,age=4] -> minecraft:pumpkin_stem[age=4]
minecraft:pumpkin_stem[facing=up,age=5] -> minecraft:pumpkin_stem[age=5]
minecraft:pumpkin_stem[facing=up,age=6] -> minecraft:pumpkin_stem[age=6]
minecraft:pumpkin_stem[facing=up,age=7] -> minecraft:pumpkin_stem[age=7]
minecraft:melon_stem[facing=up,age=0] -> minecraft:melon_stem[age=0]
minecraft:melon_stem[facing=up,age=1] -> minecraft:melon_stem[age=1]
minecraft:melon_stem[facing=up,age=2] -> minecraft:melon_stem[age=2]
minecraft:melon_stem[facing=up,age=3] -> minecraft:melon_stem[age=3]
minecraft:melon_stem[facing=up,age=4] -> minecraft:melon_stem[age=4]
minecraft:melon_stem[facing=up,age=5] -> minecraft:melon_stem[age=5]
minecraft:melon_stem[facing=up,age=6] -> minecraft:melon_stem[age=6]
minecraft:melon_stem[facing=up,age=7] -> minecraft:melon_stem[age=7]
minecraft:vine[east=false,south=false,north=false,west=false,up=false] -> minecraft:vine[east=false,south=false,north=false,west=false,up=true]
minecraft:vine[east=false,south=true,north=false,west=false,up=false] -> minecraft:vine[east=false,south=true,north=false,west=false,up=true]
minecraft:vine[east=false,south=false,north=false,west=true,up=false] -> minecraft:vine[east=false,south=false,north=false,west=true,up=true]
minecraft:vine[east=false,south=true,north=false,west=true,up=false] -> minecraft:vine[east=false,south=true,north=false,west=true,up=true]
minecraft:vine[east=false,south=false,north=true,west=false,up=false] -> minecraft:vine[east=false,south=false,north=true,west=false,up=true]
minecraft:vine[east=false,south=true,north=true,west=false,up=false] -> minecraft:vine[east=false,south=true,north=true,west=false,up=true]
minecraft:vine[east=false,south=false,north=true,west=true,up=false] -> minecraft:vine[east=false,south=false,north=true,west=true,up=true]
minecraft:vine[east=false,south=true,north=true,west=true,up=false] -> minecraft:vine[east=false,south=true,north=true,west=true,up=true]
minecraft:vine[east=true,south=false,north=false,west=false,up=false] -> minecraft:vine[east=true,south=false,north=false,west=false,up=true]
minecraft:vine[east=true,south=true,north=false,west=false,up=false] -> minecraft:vine[east=true,south=true,north=false,west=false,up=true]
minecraft:vine[east=true,south=false,north=false,west=true,up=false] -> minecraft:vine[east=true,south=false,north=false,west=true,up=true]
minecraft:vine[east=true,south=true,north=false,west=true,up=false] -> minecraft:vine[east=true,south=true,north=false,west=true,up=true]
minecraft:vine[east=true,south=false,north=true,west=false,up=false] -> minecraft:vine[east=true,south=false,north=true,west=false,up=true]
minecraft:vine[east=true,south=true,north=true,west=false,up=false] -> minecraft:vine[east=true,south=true,north=true,west=false,up=true]
minecraft:vine[east=true,south=false,north=true,west=true,up=false] -> minecraft:vine[east=true,south=false,north=true,west=true,up=true]
minecraft:vine[east=true,south=true,north=true,west=true,up=false] -> minecraft:vine[east=true,south=true,north=true,west=true,up=true]
minecraft:fence_gate[in_wall=false,powered=false,facing=south,open=false] -> minecraft:oak_fence_gate[in_wall=false,powered=false,facing=south,open=false]
minecraft:fence_gate[in_wall=false,powered=false,facing=west,open=false] -> minecraft:oak_fence_gate[in_wall=false,powered=false,facing=west,open=false]
minecraft:fence_gate[in_wall=false,powered=false,facing=north,open=false] -> minecraft:oak_fence_gate[in_wall=false,powered=false,facing=north,open=false]
minecraft:fence_gate[in_wall=false,powered=false,facing=east,open=false] -> minecraft:oak_fence_gate[in_wall=false,powered=false,facing=east,open=false]
minecraft:fence_gate[in_wall=false,powered=false,facing=south,open=true] -> minecraft:oak_fence_gate[in_wall=false,powered=false,facing=south,open=true]
minecraft:fence_gate[in_wall=false,powered=false,facing=west,open=true] -> minecraft:oak_fence_gate[in_wall=false,powered=false,facing=west,open=true]
minecraft:fence_gate[in_wall=false,powered=false,facing=north,open=true] -> minecraft:oak_fence_gate[in_wall=false,powered=false,facing=north,open=true]
minecraft:fence_gate[in_wall=false,powered=false,facing=east,open=true] -> minecraft:oak_fence_gate[in_wall=false,powered=false,facing=east,open=true]
minecraft:fence_gate[in_wall=false,powered=true,facing=south,open=false] -> minecraft:oak_fence_gate[in_wall=false,powered=true,facing=south,open=false]
minecraft:fence_gate[in_wall=false,powered=true,facing=west,open=false] -> minecraft:oak_fence_gate[in_wall=false,powered=true,facing=west,open=false]
minecraft:fence_gate[in_wall=false,powered=true,facing=north,open=false] -> minecraft:oak_fence_gate[in_wall=false,powered=true,facing=north,open=false]
minecraft:fence_gate[in_wall=false,powered=true,facing=east,open=false] -> minecraft:oak_fence_gate[in_wall=false,powered=true,facing=east,open=false]
minecraft:fence_gate[in_wall=false,powered=true,facing=south,open=true] -> minecraft:oak_fence_gate[in_wall=false,powered=true,facing=south,open=true]
minecraft:fence_gate[in_wall=false,powered=true,facing=west,open=true] -> minecraft:oak_fence_gate[in_wall=false,powered=true,facing=west,open=true]
minecraft:fence_gate[in_wall=false,powered=true,facing=north,open=true] -> minecraft:oak_fence_gate[in_wall=false,powered=true,facing=north,open=true]
minecraft:fence_gate[in_wall=false,powered=true,facing=east,open=true] -> minecraft:oak_fence_gate[in_wall=false,powered=true,facing=east,open=true]
minecraft:brick_stairs[half=bottom,shape=straight,facing=east] -> minecraft:brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:brick_stairs[half=bottom,shape=straight,facing=west] -> minecraft:brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:brick_stairs[half=bottom,shape=straight,facing=south] -> minecraft:brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:brick_stairs[half=bottom,shape=straight,facing=north] -> minecraft:brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:brick_stairs[half=top,shape=straight,facing=east] -> minecraft:brick_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:brick_stairs[half=top,shape=straight,facing=west] -> minecraft:brick_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:brick_stairs[half=top,shape=straight,facing=south] -> minecraft:brick_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:brick_stairs[half=top,shape=straight,facing=north] -> minecraft:brick_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:stone_brick_stairs[half=bottom,shape=straight,facing=east] -> minecraft:stone_brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:stone_brick_stairs[half=bottom,shape=straight,facing=west] -> minecraft:stone_brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:stone_brick_stairs[half=bottom,shape=straight,facing=south] -> minecraft:stone_brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:stone_brick_stairs[half=bottom,shape=straight,facing=north] -> minecraft:stone_brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:stone_brick_stairs[half=top,shape=straight,facing=east] -> minecraft:stone_brick_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:stone_brick_stairs[half=top,shape=straight,facing=west] -> minecraft:stone_brick_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:stone_brick_stairs[half=top,shape=straight,facing=south] -> minecraft:stone_brick_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:stone_brick_stairs[half=top,shape=straight,facing=north] -> minecraft:stone_brick_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:mycelium[snowy=false] -> minecraft:mycelium[snowy=false]
minecraft:waterlily -> minecraft:lily_pad
minecraft:nether_brick -> minecraft:nether_bricks
minecraft:nether_brick_fence[east=false,south=false,north=false,west=false] -> minecraft:nether_brick_fence[east=false,waterlogged=false,south=false,north=false,west=false]
minecraft:nether_brick_stairs[half=bottom,shape=straight,facing=east] -> minecraft:nether_brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:nether_brick_stairs[half=bottom,shape=straight,facing=west] -> minecraft:nether_brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:nether_brick_stairs[half=bottom,shape=straight,facing=south] -> minecraft:nether_brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:nether_brick_stairs[half=bottom,shape=straight,facing=north] -> minecraft:nether_brick_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:nether_brick_stairs[half=top,shape=straight,facing=east] -> minecraft:nether_brick_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:nether_brick_stairs[half=top,shape=straight,facing=west] -> minecraft:nether_brick_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:nether_brick_stairs[half=top,shape=straight,facing=south] -> minecraft:nether_brick_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:nether_brick_stairs[half=top,shape=straight,facing=north] -> minecraft:nether_brick_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:nether_wart[age=0] -> minecraft:nether_wart[age=0]
minecraft:nether_wart[age=1] -> minecraft:nether_wart[age=1]
minecraft:nether_wart[age=2] -> minecraft:nether_wart[age=2]
minecraft:nether_wart[age=3] -> minecraft:nether_wart[age=3]
minecraft:enchanting_table -> minecraft:enchanting_table
minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false] -> minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]
minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false] -> minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]
minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false] -> minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]
minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false] -> minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]
minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true] -> minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]
minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true] -> minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]
minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true] -> minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]
minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true] -> minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]
minecraft:cauldron[level=0] -> minecraft:cauldron[level=0]
minecraft:cauldron[level=1] -> minecraft:cauldron[level=1]
minecraft:cauldron[level=2] -> minecraft:cauldron[level=2]
minecraft:cauldron[level=3] -> minecraft:cauldron[level=3]
minecraft:end_portal -> minecraft:end_portal
minecraft:end_portal_frame[eye=false,facing=south] -> minecraft:end_portal_frame[eye=false,facing=south]
minecraft:end_portal_frame[eye=false,facing=west] -> minecraft:end_portal_frame[eye=false,facing=west]
minecraft:end_portal_frame[eye=false,facing=north] -> minecraft:end_portal_frame[eye=false,facing=north]
minecraft:end_portal_frame[eye=false,facing=east] -> minecraft:end_portal_frame[eye=false,facing=east]
minecraft:end_portal_frame[eye=true,facing=south] -> minecraft:end_portal_frame[eye=true,facing=south]
minecraft:end_portal_frame[eye=true,facing=west] -> minecraft:end_portal_frame[eye=true,facing=west]
minecraft:end_portal_frame[eye=true,facing=north] -> minecraft:end_portal_frame[eye=true,facing=north]
minecraft:end_portal_frame[eye=true,facing=east] -> minecraft:end_portal_frame[eye=true,facing=east]
minecraft:end_stone -> minecraft:end_stone
minecraft:dragon_egg -> minecraft:dragon_egg
minecraft:redstone_lamp -> minecraft:redstone_lamp[lit=false]
minecraft:lit_redstone_lamp -> minecraft:redstone_lamp[lit=true]
minecraft:double_wooden_slab[variant=oak] -> minecraft:oak_slab[waterlogged=false,type=double]
minecraft:double_wooden_slab[variant=spruce] -> minecraft:spruce_slab[waterlogged=false,type=double]
minecraft:double_wooden_slab[variant=birch] -> minecraft:birch_slab[waterlogged=false,type=double]
minecraft:double_wooden_slab[variant=jungle] -> minecraft:jungle_slab[waterlogged=false,type=double]
minecraft:double_wooden_slab[variant=acacia] -> minecraft:acacia_slab[waterlogged=false,type=double]
minecraft:double_wooden_slab[variant=dark_oak] -> minecraft:dark_oak_slab[waterlogged=false,type=double]
minecraft:wooden_slab[half=bottom,variant=oak] -> minecraft:oak_slab[waterlogged=false,type=bottom]
minecraft:wooden_slab[half=bottom,variant=spruce] -> minecraft:spruce_slab[waterlogged=false,type=bottom]
minecraft:wooden_slab[half=bottom,variant=birch] -> minecraft:birch_slab[waterlogged=false,type=bottom]
minecraft:wooden_slab[half=bottom,variant=jungle] -> minecraft:jungle_slab[waterlogged=false,type=bottom]
minecraft:wooden_slab[half=bottom,variant=acacia] -> minecraft:acacia_slab[waterlogged=false,type=bottom]
minecraft:wooden_slab[half=bottom,variant=dark_oak] -> minecraft:dark_oak_slab[waterlogged=false,type=bottom]
minecraft:wooden_slab[half=top,variant=oak] -> minecraft:oak_slab[waterlogged=false,type=top]
minecraft:wooden_slab[half=top,variant=spruce] -> minecraft:spruce_slab[waterlogged=false,type=top]
minecraft:wooden_slab[half=top,variant=birch] -> minecraft:birch_slab[waterlogged=false,type=top]
minecraft:wooden_slab[half=top,variant=jungle] -> minecraft:jungle_slab[waterlogged=false,type=top]
minecraft:wooden_slab[half=top,variant=acacia] -> minecraft:acacia_slab[waterlogged=false,type=top]
minecraft:wooden_slab[half=top,variant=dark_oak] -> minecraft:dark_oak_slab[waterlogged=false,type=top]
minecraft:cocoa[facing=south,age=0] -> minecraft:cocoa[facing=south,age=0]
minecraft:cocoa[facing=west,age=0] -> minecraft:cocoa[facing=west,age=0]
minecraft:cocoa[facing=north,age=0] -> minecraft:cocoa[facing=north,age=0]
minecraft:cocoa[facing=east,age=0] -> minecraft:cocoa[facing=east,age=0]
minecraft:cocoa[facing=south,age=1] -> minecraft:cocoa[facing=south,age=1]
minecraft:cocoa[facing=west,age=1] -> minecraft:cocoa[facing=west,age=1]
minecraft:cocoa[facing=north,age=1] -> minecraft:cocoa[facing=north,age=1]
minecraft:cocoa[facing=east,age=1] -> minecraft:cocoa[facing=east,age=1]
minecraft:cocoa[facing=south,age=2] -> minecraft:cocoa[facing=south,age=2]
minecraft:cocoa[facing=west,age=2] -> minecraft:cocoa[facing=west,age=2]
minecraft:cocoa[facing=north,age=2] -> minecraft:cocoa[facing=north,age=2]
minecraft:cocoa[facing=east,age=2] -> minecraft:cocoa[facing=east,age=2]
minecraft:sandstone_stairs[half=bottom,shape=straight,facing=east] -> minecraft:sandstone_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:sandstone_stairs[half=bottom,shape=straight,facing=west] -> minecraft:sandstone_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:sandstone_stairs[half=bottom,shape=straight,facing=south] -> minecraft:sandstone_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:sandstone_stairs[half=bottom,shape=straight,facing=north] -> minecraft:sandstone_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:sandstone_stairs[half=top,shape=straight,facing=east] -> minecraft:sandstone_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:sandstone_stairs[half=top,shape=straight,facing=west] -> minecraft:sandstone_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:sandstone_stairs[half=top,shape=straight,facing=south] -> minecraft:sandstone_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:sandstone_stairs[half=top,shape=straight,facing=north] -> minecraft:sandstone_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:emerald_ore -> minecraft:emerald_ore
minecraft:ender_chest[facing=north] -> minecraft:ender_chest[waterlogged=false,facing=north]
minecraft:ender_chest[facing=south] -> minecraft:ender_chest[waterlogged=false,facing=south]
minecraft:ender_chest[facing=west] -> minecraft:ender_chest[waterlogged=false,facing=west]
minecraft:ender_chest[facing=east] -> minecraft:ender_chest[waterlogged=false,facing=east]
minecraft:tripwire_hook[powered=false,attached=false,facing=south] -> minecraft:tripwire_hook[powered=false,attached=false,facing=south]
minecraft:tripwire_hook[powered=false,attached=false,facing=west] -> minecraft:tripwire_hook[powered=false,attached=false,facing=west]
minecraft:tripwire_hook[powered=false,attached=false,facing=north] -> minecraft:tripwire_hook[powered=false,attached=false,facing=north]
minecraft:tripwire_hook[powered=false,attached=false,facing=east] -> minecraft:tripwire_hook[powered=false,attached=false,facing=east]
minecraft:tripwire_hook[powered=false,attached=true,facing=south] -> minecraft:tripwire_hook[powered=false,attached=true,facing=south]
minecraft:tripwire_hook[powered=false,attached=true,facing=west] -> minecraft:tripwire_hook[powered=false,attached=true,facing=west]
minecraft:tripwire_hook[powered=false,attached=true,facing=north] -> minecraft:tripwire_hook[powered=false,attached=true,facing=north]
minecraft:tripwire_hook[powered=false,attached=true,facing=east] -> minecraft:tripwire_hook[powered=false,attached=true,facing=east]
minecraft:tripwire_hook[powered=true,attached=false,facing=south] -> minecraft:tripwire_hook[powered=true,attached=false,facing=south]
minecraft:tripwire_hook[powered=true,attached=false,facing=west] -> minecraft:tripwire_hook[powered=true,attached=false,facing=west]
minecraft:tripwire_hook[powered=true,attached=false,facing=north] -> minecraft:tripwire_hook[powered=true,attached=false,facing=north]
minecraft:tripwire_hook[powered=true,attached=false,facing=east] -> minecraft:tripwire_hook[powered=true,attached=false,facing=east]
minecraft:tripwire_hook[powered=true,attached=true,facing=south] -> minecraft:tripwire_hook[powered=true,attached=true,facing=south]
minecraft:tripwire_hook[powered=true,attached=true,facing=west] -> minecraft:tripwire_hook[powered=true,attached=true,facing=west]
minecraft:tripwire_hook[powered=true,attached=true,facing=north] -> minecraft:tripwire_hook[powered=true,attached=true,facing=north]
minecraft:tripwire_hook[powered=true,attached=true,facing=east] -> minecraft:tripwire_hook[powered=true,attached=true,facing=east]
minecraft:tripwire[disarmed=false,east=false,powered=false,south=false,north=false,attached=false,west=false] -> minecraft:tripwire[disarmed=false,east=false,powered=false,south=false,north=false,attached=false,west=false]
minecraft:tripwire[disarmed=false,east=false,powered=true,south=false,north=false,attached=false,west=false] -> minecraft:tripwire[disarmed=false,east=false,powered=true,south=false,north=false,attached=false,west=false]
minecraft:tripwire[disarmed=false,east=false,powered=false,south=false,north=false,attached=true,west=false] -> minecraft:tripwire[disarmed=false,east=false,powered=false,south=false,north=false,attached=true,west=false]
minecraft:tripwire[disarmed=false,east=false,powered=true,south=false,north=false,attached=true,west=false] -> minecraft:tripwire[disarmed=false,east=false,powered=true,south=false,north=false,attached=true,west=false]
minecraft:tripwire[disarmed=true,east=false,powered=false,south=false,north=false,attached=false,west=false] -> minecraft:tripwire[disarmed=true,east=false,powered=false,south=false,north=false,attached=false,west=false]
minecraft:tripwire[disarmed=true,east=false,powered=true,south=false,north=false,attached=false,west=false] -> minecraft:tripwire[disarmed=true,east=false,powered=true,south=false,north=false,attached=false,west=false]
minecraft:tripwire[disarmed=true,east=false,powered=false,south=false,north=false,attached=true,west=false] -> minecraft:tripwire[disarmed=true,east=false,powered=false,south=false,north=false,attached=true,west=false]
minecraft:tripwire[disarmed=true,east=false,powered=true,south=false,north=false,attached=true,west=false] -> minecraft:tripwire[disarmed=true,east=false,powered=true,south=false,north=false,attached=true,west=false]
minecraft:emerald_block -> minecraft:emerald_block
minecraft:spruce_stairs[half=bottom,shape=straight,facing=east] -> minecraft:spruce_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:spruce_stairs[half=bottom,shape=straight,facing=west] -> minecraft:spruce_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:spruce_stairs[half=bottom,shape=straight,facing=south] -> minecraft:spruce_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:spruce_stairs[half=bottom,shape=straight,facing=north] -> minecraft:spruce_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:spruce_stairs[half=top,shape=straight,facing=east] -> minecraft:spruce_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:spruce_stairs[half=top,shape=straight,facing=west] -> minecraft:spruce_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:spruce_stairs[half=top,shape=straight,facing=south] -> minecraft:spruce_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:spruce_stairs[half=top,shape=straight,facing=north] -> minecraft:spruce_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:birch_stairs[half=bottom,shape=straight,facing=east] -> minecraft:birch_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:birch_stairs[half=bottom,shape=straight,facing=west] -> minecraft:birch_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:birch_stairs[half=bottom,shape=straight,facing=south] -> minecraft:birch_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:birch_stairs[half=bottom,shape=straight,facing=north] -> minecraft:birch_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:birch_stairs[half=top,shape=straight,facing=east] -> minecraft:birch_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:birch_stairs[half=top,shape=straight,facing=west] -> minecraft:birch_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:birch_stairs[half=top,shape=straight,facing=south] -> minecraft:birch_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:birch_stairs[half=top,shape=straight,facing=north] -> minecraft:birch_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:jungle_stairs[half=bottom,shape=straight,facing=east] -> minecraft:jungle_stairs[half=bottom,waterlogged=false,shape=straight,facing=east]
minecraft:jungle_stairs[half=bottom,shape=straight,facing=west] -> minecraft:jungle_stairs[half=bottom,waterlogged=false,shape=straight,facing=west]
minecraft:jungle_stairs[half=bottom,shape=straight,facing=south] -> minecraft:jungle_stairs[half=bottom,waterlogged=false,shape=straight,facing=south]
minecraft:jungle_stairs[half=bottom,shape=straight,facing=north] -> minecraft:jungle_stairs[half=bottom,waterlogged=false,shape=straight,facing=north]
minecraft:jungle_stairs[half=top,shape=straight,facing=east] -> minecraft:jungle_stairs[half=top,waterlogged=false,shape=straight,facing=east]
minecraft:jungle_stairs[half=top,shape=straight,facing=west] -> minecraft:jungle_stairs[half=top,waterlogged=false,shape=straight,facing=west]
minecraft:jungle_stairs[half=top,shape=straight,facing=south] -> minecraft:jungle_stairs[half=top,waterlogged=false,shape=straight,facing=south]
minecraft:jungle_stairs[half=top,shape=straight,facing=north] -> minecraft:jungle_stairs[half=top,waterlogged=false,shape=straight,facing=north]
minecraft:command_block[conditional=false,facing=down] -> minecraft:command_block[conditional=false,facing=down]
minecraft:command_block[conditional=false,facing=up] -> minecraft:command_block[conditional=false,facing=up]
minecraft:command_block[conditional=false,facing=north] -> minecraft:command_block[conditional=false,facing=north]
minecraft:command_block[conditional=false,facing=south] -> minecraft:command_block[conditional=false,facing=south]
minecraft:command_block[conditional=false,facing=west] -> minecraft:command_block[conditional=false,facing=west]
minecraft:command_block[conditional=false,facing=east] -> minecraft:command_block[conditional=false,facing=east]
minecraft:command_block[conditional=true,facing=down] -> minecraft:command_block[conditional=true,facing=down]
minecraft:command_block[conditional=true,facing=up] -> minecraft:command_block[conditional=true,facing=up]
minecraft:command_block[conditional=true,facing=north] -> minecraft:command_block[conditional=true,facing=north]
minecraft:command_block[conditional=true,facing=south] -> minecraft:command_block[conditional=true,facing=south]
minecraft:command_block[conditional=true,facing=west] -> minecraft:command_block[conditional=true,facing=west]
minecraft:command_block[conditional=true,facing=east] -> minecraft:command_block[conditional=true,facing=east]
minecraft:beacon -> minecraft:beacon
minecraft:cobblestone_wall[east=false,south=false,north=false,variant=cobblestone,west=false,up=false] -> minecraft:cobblestone_wall[east=false,waterlogged=false,south=false,north=false,west=false,up=false]
minecraft:cobblestone_wall[east=false,south=false,north=false,variant=mossy_cobblestone,west=false,up=false] -> minecraft:mossy_cobblestone_wall[east=false,waterlogged=false,south=false,north=false,west=false,up=false]
minecraft:flower_pot[contents=empty,legacy_data=0] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=1] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=2] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=3] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=4] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=5] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=6] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=7] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=8] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=9] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=10] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=11] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=12] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=13] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=14] -> minecraft:flower_pot
minecraft:flower_pot[contents=empty,legacy_data=15] -> minecraft:flower_pot
minecraft:carrots[age=0] -> minecraft:carrots[age=0]
minecraft:carrots[age=1] -> minecraft:carrots[age=1]
minecraft:carrots[age=2] -> minecraft:carrots[age=2]
minecraft:carrots[age=3] -> minecraft:carrots[age=3]
minecraft:carrots[age=4] -> minecraft:carrots[age=4]
minecraft:carrots[age=5] -> minecraft:carrots[age=5]
minecraft:carrots[age=6] -> minecraft:carrots[age=6]
minecraft:carrots[age=7] -> minecraft:carrots[age=7]
minecraft:potatoes[age=0] -> minecraft:potatoes[age=0]
minecraft:potatoes[age=1] -> minecraft:potatoes[age=1]
minecraft:potatoes[age=2] -> minecraft:potatoes[age=2]
minecraft:potatoes[age=3] -> minecraft:potatoes[age=3]
minecraft:potatoes[age=4] -> minecraft:potatoes[age=4]
minecraft:potatoes[age=5] -> minecraft:potatoes[age=5]
minecraft:potatoes[age=6] -> minecraft:potatoes[age=6]
minecraft:potatoes[age=7] -> minecraft:potatoes[age=7]
minecraft:wooden_button[powered=false,facing=down] -> minecraft:oak_button[face=ceiling,powered=false,facing=north]
minecraft:wooden_button[powered=false,facing=east] -> minecraft:oak_button[face=wall,powered=false,facing=east]
minecraft:wooden_button[powered=false,facing=west] -> minecraft:oak_button[face=wall,powered=false,facing=west]
minecraft:wooden_button[powered=false,facing=south] -> minecraft:oak_button[face=wall,powered=false,facing=south]
minecraft:wooden_button[powered=false,facing=north] -> minecraft:oak_button[face=wall,powered=false,facing=north]
minecraft:wooden_button[powered=false,facing=up] -> minecraft:oak_button[face=floor,powered=false,facing=north]
minecraft:wooden_button[powered=true,facing=down] -> minecraft:oak_button[face=ceiling,powered=true,facing=north]
minecraft:wooden_button[powered=true,facing=east] -> minecraft:oak_button[face=wall,powered=true,facing=east]
minecraft:wooden_button[powered=true,facing=west] -> minecraft:oak_button[face=wall,powered=true,facing=west]
minecraft:wooden_button[powered=true,facing=south] -> minecraft:oak_button[face=wall,powered=true,facing=south]
minecraft:wooden_button[powered=true,facing=north] -> minecraft:oak_button[face=wall,powered=true,facing=north]
minecraft:wooden_button[powered=true,facing=up] -> minecraft:oak_button[face=floor,powered=true,facing=north]
minecraft:anvil[damage=0,facing=south] -> minecraft:anvil[facing=south]
minecraft:anvil[damage=0,facing=west] -> minecraft:anvil[facing=west]
minecraft:anvil[damage=0,facing=north] -> minecraft:anvil[facing=north]
minecraft:anvil[damage=0,facing=east] -> minecraft:anvil[facing=east]
minecraft:anvil[damage=1,facing=south] -> minecraft:chipped_anvil[facing=south]
minecraft:anvil[damage=1,facing=west] -> minecraft:chipped_anvil[facing=west]
minecraft:anvil[damage=1,facing=north] -> minecraft:chipped_anvil[facing=north]
minecraft:anvil[damage=1,facing=east] -> minecraft:chipped_anvil[facing=east]
minecraft:anvil[damage=2,facing=south] -> minecraft:damaged_anvil[facing=south]
minecraft:anvil[damage=2,facing=west] -> minecraft:damaged_anvil[facing=west]
minecraft:anvil[damage=2,facing=north] -> minecraft:damaged_anvil[facing=north]
minecraft:anvil[damage=2,facing=east] -> minecraft:damaged_anvil[facing=east]
minecraft:trapped_chest[facing=north] -> minecraft:trapped_chest[waterlogged=false,facing=north,type=single]
minecraft:trapped_chest[facing=south] -> minecraft:trapped_chest[waterlogged=false,facing=south,type=single]
minecraft:trapped_chest[facing=west] -> minecraft:trapped_chest[waterlogged=false,facing=west,type=single]
minecraft:trapped_chest[facing=east] -> minecraft:trapped_chest[waterlogged=false,facing=east,type=single]
minecraft:light_weighted_pressure_plate[power=0] -> minecraft:light_weighted_pressure_plate[power=0]
minecraft:light_weighted_pressure_plate[power=1] -> minecraft:light_weighted_pressure_plate[power=1]
minecraft:light_weighted_pressure_plate[power=2] -> minecraft:light_weighted_pressure_plate[power=2]
minecraft:light_weighted_pressure_plate[power=3] -> minecraft:light_weighted_pressure_plate[power=3]
minecraft:light_weighted_pressure_plate[power=4] -> minecraft:light_weighted_pressure_plate[power=4]
minecraft:light_weighted_pressure_plate[power=5] -> minecraft:light_weighted_pressure_plate[power=5]
minecraft:light_weighted_pressure_plate[power=6] -> minecraft:light_weighted_pressure_plate[power=6]
minecraft:light_weighted_pressure_plate[power=7] -> minecraft:light_weighted_pressure_plate[power=7]
minecraft:light_weighted_pressure_plate[power=8] -> minecraft:light_weighted_pressure_plate[power=8]
minecraft:light_weighted_pressure_plate[power=9] -> minecraft:light_weighted_pressure_plate[power=9]
minecraft:light_weighted_pressure_plate[power=10] -> minecraft:light_weighted_pressure_plate[power=10]
minecraft:light_weighted_pressure_plate[power=11] -> minecraft:light_weighted_pressure_plate[power=11]
minecraft:light_weighted_pressure_plate[power=12] -> minecraft:light_weighted_pressure_plate[power=12]
minecraft:light_weighted_pressure_plate[power=13] -> minecraft:light_weighted_pressure_plate[power=13]
minecraft:light_weighted_pressure_plate[power=14] -> minecraft:light_weighted_pressure_plate[power=14]
minecraft:light_weighted_pressure_plate[power=15] -> minecraft:light_weighted_pressure_plate[power=15]
minecraft:heavy_weighted_pressure_plate[power=0] -> minecraft:heavy_weighted_pressure_plate[power=0]
minecraft:heavy_weighted_pressure_plate[power=1] -> minecraft:heavy_weighted_pressure_plate[power=1]
minecraft:heavy_weighted_pressure_plate[power=2] -> minecraft:heavy_weighted_pressure_plate[power=2]
minecraft:heavy_weighted_pressure_plate[power=3] -> minecraft:heavy_weighted_pressure_plate[power=3]
minecraft:heavy_weighted_pressure_plate[power=4] -> minecraft:heavy_weighted_pressure_plate[power=4]
minecraft:heavy_weighted_pressure_plate[power=5] -> minecraft:heavy_weighted_pressure_plate[power=5]
minecraft:heavy_weighted_pressure_plate[power=6] -> minecraft:heavy_weighted_pressure_plate[power=6]
minecraft:heavy_weighted_pressure_plate[power=7] -> minecraft:heavy_weighted_pressure_plate[power=7]
minecraft:heavy_weighted_pressure_plate[power=8] -> minecraft:heavy_weighted_pressure_plate[power=8]
minecraft:heavy_weighted_pressure_plate[power=9] -> minecraft:heavy_weighted_pressure_plate[power=9]
minecraft:heavy_weighted_pressure_plate[power=10] -> minecraft:heavy_weighted_pressure_plate[power=10]
minecraft:heavy_weighted_pressure_plate[power=11] -> minecraft:heavy_weighted_pressure_plate[power=11]
minecraft:heavy_weighted_pressure_plate[power=12] -> minecraft:heavy_weighted_pressure_plate[power=12]
minecraft:heavy_weighted_pressure_plate[power=13] -> minecraft:heavy_weighted_pressure_plate[power=13]
minecraft:heavy_weighted_pressure_plate[power=14] -> minecraft:heavy_weighted_pressure_plate[power=14]
minecraft:heavy_weighted_pressure_plate[power=15] -> minecraft:heavy_weighted_pressure_plate[power=15]
minecraft:unpowered_comparator[mode=compare,powered=false,facing=south] -> minecraft:comparator[mode=compare,powered=false,facing=south]
minecraft:unpowered_comparator[mode=compare,powered=false,facing=west] -> minecraft:comparator[mode=compare,powered=false,facing=west]
minecraft:unpowered_comparator[mode=compare,powered=false,facing=north] -> minecraft:comparator[mode=compare,powered=false,facing=north]
minecraft:unpowered_comparator[mode=compare,powered=false,facing=east] -> minecraft:comparator[mode=compare,powered=false,facing=east]
minecraft:unpowered_comparator[mode=subtract,powered=false,facing=south] -> minecraft:comparator[mode=subtract,powered=false,facing=south]
minecraft:unpowered_comparator[mode=subtract,powered=false,facing=west] -> minecraft:comparator[mode=subtract,powered=false,facing=west]
minecraft:unpowered_comparator[mode=subtract,powered=false,facing=north] -> minecraft:comparator[mode=subtract,powered=false,facing=north]
minecraft:unpowered_comparator[mode=subtract,powered=false,facing=east] -> minecraft:comparator[mode=subtract,powered=false,facing=east]
minecraft:unpowered_comparator[mode=compare,powered=true,facing=south] -> minecraft:comparator[mode=compare,powered=true,facing=south]
minecraft:unpowered_comparator[mode=compare,powered=true,facing=west] -> minecraft:comparator[mode=compare,powered=true,facing=west]
minecraft:unpowered_comparator[mode=compare,powered=true,facing=north] -> minecraft:comparator[mode=compare,powered=true,facing=north]
minecraft:unpowered_comparator[mode=compare,powered=true,facing=east] -> minecraft:comparator[mode=compare,powered=true,facing=east]
minecraft:unpowered_comparator[mode=subtract,powered=true,facing=south] -> minecraft:comparator[mode=subtract,powered=true,facing=south]
minecraft:unpowered_comparator[mode=subtract,powered=true,facing=west] -> minecraft:comparator[mode=subtract,powered=true,facing=west]
minecraft:unpowered_comparator[mode=subtract,powered=true,facing=north] -> minecraft:comparator[mode=subtract,powered=true,facing=north]
minecraft:unpowered_comparator[mode=subtract,powered=true,facing=east] -> minecraft:comparator[mode=subtract,powered=true,facing=east]
minecraft:powered_comparator[mode=compare,powered=false,facing=south] -> minecraft:comparator[mode=compare,powered=false,facing=south]
minecraft:powered_comparator[mode=compare,powered=false,facing=west] -> minecraft:comparator[mode=compare,powered=false,facing=west]
minecraft:powered_comparator[mode=compare,powered=false,facing=north] -> minecraft:comparator[mode=compare,powered=false,facing=north]
minecraft:powered_comparator[mode=compare,powered=false,facing=east] -> minecraft:comparator[mode=compare,powered=false,facing=east]
minecraft:powered_comparator[mode=subtract,powered=false,facing=south] -> minecraft:comparator[mode=subtract,powered=false,facing=south]
minecraft:powered_comparator[mode=subtract,powered=false,facing=west] -> minecraft:comparator[mode=subtract,powered=false,facing=west]
minecraft:powered_comparator[mode=subtract,powered=false,facing=north] -> minecraft:comparator[mode=subtract,powered=false,facing=north]
minecraft:powered_comparator[mode=subtract,powered=false,facing=east] -> minecraft:comparator[mode=subtract,powered=false,facing=east]
minecraft:powered_comparator[mode=compare,powered=true,facing=south] -> minecraft:comparator[mode=compare,powered=true,facing=south]
minecraft:powered_comparator[mode=compare,powered=true,facing=west] -> minecraft:comparator[mode=compare,powered=true,facing=west]
minecraft:powered_comparator[mode=compare,powered=true,facing=north] -> minecraft:comparator[mode=compare,powered=true,facing=north]